diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml
new file mode 100644
index 0000000000000..e7b0e0bb3eb38
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug.yml
@@ -0,0 +1,74 @@
+name: Баг
+description: Сообщить об ошибке
+title: "Bug: "
+labels: [bug, triage]
+body:
+ - type: input
+ id: ckey
+ attributes:
+ label: Ckey
+ description: Ваш ckey в byond
+ validations:
+ required: true
+ - type: textarea
+ id: bug_description
+ attributes:
+ label: Описание бага
+ description: Четкое и понятное описание сути бага.
+ validations:
+ required: true
+ - type: textarea
+ id: bug_reproduction
+ attributes:
+ label: Шаги воспроизведения
+ description: Опишите способ воспроизведения бага.
+ validations:
+ required: true
+ - type: textarea
+ id: expected_behaviour
+ attributes:
+ label: Ожидаемое поведение
+ description: Четкое и понятное описание того, что должно было произойти.
+ validations:
+ required: true
+ - type: textarea
+ id: additional_info
+ attributes:
+ label: Дополнительная информация
+ description: (Опционально) Здесь можете описать любую дополнительную информацию, которая касается бага. Также можете приложить скриншоты.
+ - type: markdown
+ attributes:
+ value: "## Характеристики"
+ - type: input
+ id: os
+ attributes:
+ label: Операционная система
+ description: Выберите операционную систему, на которой произошёл баг.
+ validations:
+ required: true
+ - type: input
+ id: client_version
+ attributes:
+ label: Версия клиента
+ description: Укажите версию клиента, на которой произошёл баг. Указана в клиенте BYOND в меню 'About BYOND...'.
+ validations:
+ required: true
+ - type: dropdown
+ id: server_name
+ attributes:
+ label: Название сервера
+ description: Укажите название сервера на котором произошел баг (MAIN, EX...)
+ options:
+ - MAIN
+ - EX
+ - WL
+ - PRIME
+ validations:
+ required: true
+ - type: input
+ id: server_time
+ attributes:
+ label: Примерное время и дата
+ description: Укажите время и дату, когда произошёл баг.
+ validations:
+ required: true
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index 2b4c3586bf972..0000000000000
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,35 +0,0 @@
----
-name: Bug report
-about: Create a report to help us improve
-title: ''
-labels: ''
-assignees: ''
-
----
-
-**Issue Description**:
-
-
-
-**What did you expect to happen**:
-
-
-
-**What happened instead**:
-
-
-
-**Why is this bad/What are the consequences**:
-
-
-
-**Steps to reproduce the problem**:
-
-
-
-**When did the problem start happening**:
-
-
-
-**Extra information**:
-
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000000000..bcf6b11099224
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,5 @@
+blank_issues_enabled: false
+contact_links:
+ - name: Наше дискорд сообщество
+ url: http://discord.ss220.space
+ about: Основное место обитания сообщества проекта
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
deleted file mode 100644
index a8a0459bcb190..0000000000000
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ /dev/null
@@ -1,10 +0,0 @@
----
-name: Feature request
-about: Suggest an idea for this project
-title: ''
-labels: ''
-assignees: ''
-
----
-
-Please place all features requests here: https://www.paradisestation.org/forum/60-suggestions/
diff --git a/.github/ISSUE_TEMPLATE/improvement.yml b/.github/ISSUE_TEMPLATE/improvement.yml
new file mode 100644
index 0000000000000..f297467722eb0
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/improvement.yml
@@ -0,0 +1,33 @@
+name: Улучшение
+description: Предложить идею по улучшению сборки
+title: "Feat: "
+labels: [enhancement, triage]
+body:
+ - type: textarea
+ id: problem
+ attributes:
+ label: Проблема
+ description: Четко и понятно опишите в чем заключается проблема. Можно приложить скриншоты.
+ validations:
+ required: true
+ - type: textarea
+ id: solution
+ attributes:
+ label: Решение
+ description: Опишите ваше решение проблемы. Можно приложить скриншоты.
+ validations:
+ required: true
+ - type: textarea
+ id: pros
+ attributes:
+ label: Плюсы
+ description: Опишите возможные плюсы решения.
+ validations:
+ required: true
+ - type: textarea
+ id: cons
+ attributes:
+ label: Минусы
+ description: Опишите возможные минусы решения.
+ validations:
+ required: true
diff --git a/.gitignore b/.gitignore
index a8ccd115662f5..dc7913007271d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -35,3 +35,5 @@ stddef.dm
# ignore midi2piano build cache
/tools/midi2piano/midi2piano/obj/*
+
+*/node_modules/*
diff --git a/SQL/paradise_schema.sql b/SQL/paradise_schema.sql
index 3b44b3c4c21a4..a7f414a63e1ce 100644
--- a/SQL/paradise_schema.sql
+++ b/SQL/paradise_schema.sql
@@ -582,3 +582,23 @@ CREATE TABLE `round` (
`station_name` VARCHAR(80) NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+
+--
+-- Table structure for table `ckey_whitelist`
+--
+DROP TABLE IF EXISTS `ckey_whitelist`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `ckey_whitelist`
+(
+ `id` INT(11) NOT NULL AUTO_INCREMENT,
+ `date` DATETIME DEFAULT now() NOT NULL,
+ `ckey` VARCHAR(32) NOT NULL,
+ `adminwho` VARCHAR(32) NOT NULL,
+ `port` INT(5) UNSIGNED NOT NULL,
+ `date_start` DATETIME DEFAULT now() NOT NULL,
+ `date_end` DATETIME NULL,
+ `is_valid` BOOLEAN DEFAULT true NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+/*!40101 SET character_set_client = @saved_cs_client */;
diff --git a/SQL/paradise_schema_prefixed.sql b/SQL/paradise_schema_prefixed.sql
index 7d2b37211eefb..49857adfa7880 100644
--- a/SQL/paradise_schema_prefixed.sql
+++ b/SQL/paradise_schema_prefixed.sql
@@ -579,3 +579,24 @@ CREATE TABLE `SS13_round` (
`station_name` VARCHAR(80) NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+
+--
+-- Table structure for table `ckey_whitelist`
+--
+DROP TABLE IF EXISTS `SS13_ckey_whitelist`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `SS13_ckey_whitelist`
+(
+ `id` INT(11) NOT NULL AUTO_INCREMENT,
+ `date` DATETIME DEFAULT now() NOT NULL,
+ `ckey` VARCHAR(32) NOT NULL,
+ `adminwho` VARCHAR(32) NOT NULL,
+ `port` INT(5) UNSIGNED NOT NULL,
+ `date_start` DATETIME DEFAULT now() NOT NULL,
+ `date_end` DATETIME NULL,
+ `is_valid` BOOLEAN DEFAULT true NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
diff --git a/SQL/updates/ckey_whitelist.sql b/SQL/updates/ckey_whitelist.sql
new file mode 100644
index 0000000000000..e891b10ed79c5
--- /dev/null
+++ b/SQL/updates/ckey_whitelist.sql
@@ -0,0 +1,18 @@
+--
+-- Table structure for table `ckey_whitelist`
+--
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `ckey_whitelist`
+(
+ `id` INT(11) NOT NULL AUTO_INCREMENT,
+ `date` DATETIME DEFAULT now() NOT NULL,
+ `ckey` VARCHAR(32) NOT NULL,
+ `adminwho` VARCHAR(32) NOT NULL,
+ `port` INT(5) UNSIGNED NOT NULL,
+ `date_start` DATETIME DEFAULT now() NOT NULL,
+ `date_end` DATETIME NULL,
+ `is_valid` BOOLEAN DEFAULT true NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+/*!40101 SET character_set_client = @saved_cs_client */;
diff --git a/_maps/delta.dm b/_maps/delta.dm
index e0ec3f4079ddc..f619e9230150f 100644
--- a/_maps/delta.dm
+++ b/_maps/delta.dm
@@ -10,6 +10,7 @@ z4 = lavaland
Original design by Okand37 of TG Station
Lovingly ported by Purpose2 to Paradise
+And remapped by ThaumicNik as per SS220 community requests
*/
#if !defined(USING_MAP_DATUM)
diff --git a/_maps/map_files/Delta/Lavaland.dmm b/_maps/map_files/Delta/Lavaland.dmm
index 62a2c7f3b7f50..193f8762633b4 100644
--- a/_maps/map_files/Delta/Lavaland.dmm
+++ b/_maps/map_files/Delta/Lavaland.dmm
@@ -2383,7 +2383,7 @@
/area/lavaland/surface/outdoors)
"gT" = (
/obj/structure/stone_tile/slab/cracked,
-/mob/living/simple_animal/hostile/faithless,
+/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient,
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
"hg" = (
@@ -2444,7 +2444,7 @@
dir = 1
},
/obj/structure/stone_tile,
-/mob/living/simple_animal/hostile/faithless,
+/mob/living/simple_animal/hostile/asteroid/basilisk/watcher/magmawing,
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
"hG" = (
@@ -2534,17 +2534,15 @@
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
"ij" = (
-/obj/structure/stone_tile{
- dir = 1
+/obj/structure/stone_tile/block/cracked{
+ dir = 8
},
/obj/structure/stone_tile{
- dir = 4
+ dir = 1
},
/obj/structure/stone_tile,
-/obj/structure/stone_tile{
- dir = 8
- },
-/mob/living/simple_animal/hostile/faithless,
+/obj/structure/table/reinforced/brass,
+/obj/item/clockwork/weapon/ratvarian_spear,
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
"ir" = (
@@ -2928,6 +2926,9 @@
"kp" = (
/turf/simulated/floor/plasteel,
/area/mine/eva)
+"ks" = (
+/turf/simulated/wall,
+/area/lavaland/surface/outdoors/explored)
"ky" = (
/obj/structure/stone_tile/cracked{
dir = 4
@@ -3417,17 +3418,17 @@
/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"mz" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 8
+/obj/structure/stone_tile/cracked{
+ dir = 1
},
/obj/structure/stone_tile{
- dir = 1
+ dir = 4
},
/obj/structure/stone_tile,
-/obj/machinery/door/airlock/cult/unruned/friendly{
- locked = 1;
- name = "Ancient Door"
+/obj/structure/stone_tile{
+ dir = 8
},
+/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient,
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
"mA" = (
@@ -3724,6 +3725,11 @@
},
/turf/simulated/floor/plating,
/area/mine/eva)
+"no" = (
+/obj/structure/stone_tile/slab/cracked,
+/mob/living/simple_animal/hostile/asteroid/basilisk/watcher/magmawing,
+/turf/simulated/floor/indestructible/boss,
+/area/lavaland/surface/outdoors)
"nr" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/warning_stripes/yellow/partial,
@@ -4335,7 +4341,7 @@
/obj/structure/stone_tile{
dir = 8
},
-/mob/living/simple_animal/hostile/faithless,
+/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient,
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
"uS" = (
@@ -4573,6 +4579,10 @@
},
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
+"yd" = (
+/obj/vehicle/lavaboat,
+/turf/simulated/floor/plating/lava/smooth/lava_land_surface,
+/area/lavaland/surface/outdoors)
"yj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -4688,10 +4698,18 @@
/turf/simulated/floor/plasteel,
/area/mine/eva)
"zM" = (
-/obj/structure/stone_tile/slab/cracked,
-/obj/machinery/door/airlock/cult/unruned/friendly{
- name = "Ancient Door"
+/obj/structure/stone_tile/cracked{
+ dir = 1
+ },
+/obj/structure/stone_tile{
+ dir = 4
+ },
+/obj/structure/stone_tile,
+/obj/structure/stone_tile{
+ dir = 8
},
+/obj/structure/table/reinforced/brass,
+/obj/item/storage/toolbox/brass,
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
"Ak" = (
@@ -4738,19 +4756,14 @@
},
/area/mine/eva)
"AU" = (
-/obj/structure/stone_tile,
-/obj/structure/stone_tile{
- dir = 4
+/obj/structure/stone_tile/block/cracked{
+ dir = 8
},
/obj/structure/stone_tile{
dir = 1
},
-/obj/structure/stone_tile{
- dir = 8
- },
-/obj/machinery/door/airlock/cult/unruned/friendly{
- name = "Ancient Door"
- },
+/obj/structure/stone_tile,
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion,
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
"Bj" = (
@@ -4882,25 +4895,21 @@
"CE" = (
/obj/structure/stone_tile,
/obj/structure/stone_tile{
- dir = 8
+ dir = 4
},
-/obj/structure/stone_tile/block/cracked{
+/obj/structure/stone_tile{
dir = 1
},
-/mob/living/simple_animal/hostile/faithless,
+/obj/structure/stone_tile{
+ dir = 8
+ },
+/mob/living/simple_animal/hostile/asteroid/basilisk/watcher/magmawing,
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
"CH" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 4
- },
-/obj/structure/stone_tile/cracked{
- dir = 8
- },
-/obj/structure/stone_tile{
- dir = 4
- },
-/mob/living/simple_animal/hostile/faithless,
+/obj/structure/stone_tile/surrounding,
+/obj/structure/stone_tile/center/cracked,
+/mob/living/simple_animal/hostile/asteroid/basilisk/watcher/magmawing,
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
"CS" = (
@@ -4953,6 +4962,18 @@
tag = "icon-wood-broken6"
},
/area/mine/laborcamp)
+"Dh" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 8
+ },
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/obj/structure/stone_tile,
+/obj/structure/table/reinforced/brass,
+/obj/item/weldingtool/experimental/brass,
+/turf/simulated/floor/indestructible/boss,
+/area/lavaland/surface/outdoors)
"Dl" = (
/obj/structure/stone_tile/cracked{
dir = 1
@@ -5027,19 +5048,17 @@
},
/area/mine/production)
"Eh" = (
-/obj/structure/stone_tile/cracked{
- dir = 4
- },
/obj/structure/stone_tile{
dir = 1
},
+/obj/structure/stone_tile{
+ dir = 4
+ },
/obj/structure/stone_tile,
/obj/structure/stone_tile{
dir = 8
},
-/obj/machinery/door/airlock/cult/unruned/friendly{
- name = "Ancient Door"
- },
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion,
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
"El" = (
@@ -5407,6 +5426,20 @@
/obj/machinery/vending/cola/free,
/turf/simulated/floor/plasteel/dark,
/area/mine/laborcamp)
+"Ir" = (
+/obj/structure/stone_tile/cracked{
+ dir = 1
+ },
+/obj/structure/stone_tile{
+ dir = 4
+ },
+/obj/structure/stone_tile,
+/obj/structure/stone_tile{
+ dir = 8
+ },
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion,
+/turf/simulated/floor/indestructible/boss,
+/area/lavaland/surface/outdoors)
"IC" = (
/obj/machinery/firealarm{
dir = 1;
@@ -5416,17 +5449,16 @@
/turf/simulated/floor/plasteel,
/area/mine/production)
"IH" = (
-/obj/structure/stone_tile/cracked{
+/obj/structure/stone_tile/block/cracked{
dir = 4
},
-/obj/structure/stone_tile{
- dir = 1
+/obj/structure/stone_tile/cracked{
+ dir = 8
},
-/obj/structure/stone_tile,
/obj/structure/stone_tile{
- dir = 8
+ dir = 4
},
-/mob/living/simple_animal/hostile/faithless,
+/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient,
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
"IK" = (
@@ -5463,15 +5495,17 @@
/turf/simulated/floor/plasteel,
/area/mine/production)
"Jy" = (
-/obj/structure/stone_tile/block/cracked{
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/obj/structure/stone_tile{
dir = 4
},
-/obj/structure/stone_tile/block{
+/obj/structure/stone_tile,
+/obj/structure/stone_tile{
dir = 8
},
-/obj/machinery/door/airlock/cult/unruned/friendly{
- name = "Ancient Door"
- },
+/mob/living/simple_animal/hostile/big_legion,
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
"JJ" = (
@@ -6003,6 +6037,7 @@
/area/mine/production)
"SJ" = (
/obj/structure/stone_tile/surrounding,
+/obj/structure/closet/crate/necropolis/tendril,
/turf/simulated/floor/indestructible/boss,
/area/lavaland/surface/outdoors)
"SK" = (
@@ -6142,6 +6177,20 @@
icon_state = "purple"
},
/area/mine/living_quarters)
+"UH" = (
+/obj/structure/stone_tile,
+/obj/structure/stone_tile{
+ dir = 4
+ },
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/obj/structure/stone_tile{
+ dir = 8
+ },
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion,
+/turf/simulated/floor/indestructible/boss,
+/area/lavaland/surface/outdoors)
"UJ" = (
/obj/structure/stone_tile/block/cracked{
dir = 8
@@ -8167,7 +8216,7 @@ aj
aj
aj
aj
-aj
+yd
an
an
an
@@ -9055,7 +9104,7 @@ aw
aw
aw
aw
-aw
+aD
aw
aw
aw
@@ -9309,12 +9358,12 @@ aD
aw
aw
aw
-aw
-aw
-aw
-aw
-aw
-aw
+aD
+aD
+aD
+aD
+aD
+aD
aw
aw
aw
@@ -9565,14 +9614,14 @@ aw
aw
aw
aD
-aw
-aw
-aw
-aw
-aw
aD
-aw
-aw
+aD
+ks
+aD
+aD
+aD
+ks
+aD
aD
aw
aw
@@ -10088,7 +10137,7 @@ aD
aD
aD
aD
-aw
+aD
aw
ab
aj
@@ -10334,8 +10383,6 @@ OF
wD
aw
aw
-aw
-aw
aD
aD
aD
@@ -10345,8 +10392,10 @@ aD
aD
aD
aD
-aw
-aw
+aD
+aD
+aD
+aD
aw
aj
aj
@@ -10592,7 +10641,7 @@ GF
aj
aw
aw
-aw
+aD
aD
aD
aD
@@ -10849,7 +10898,7 @@ ap
qT
aw
aw
-aw
+aD
aD
aD
aD
@@ -30945,7 +30994,7 @@ aj
aa
aa
qS
-gC
+CE
Sk
mY
aa
@@ -32487,9 +32536,9 @@ aj
aa
aa
hD
-CH
+mq
Tl
-gC
+UH
Qy
hD
aa
@@ -33003,7 +33052,7 @@ aa
aa
qS
aa
-zM
+nf
aa
aa
aa
@@ -34030,7 +34079,7 @@ aa
aa
Sn
mq
-mS
+mz
nc
xU
XW
@@ -34286,8 +34335,8 @@ aj
aa
aa
yp
-Sk
-CE
+CH
+ng
gC
Sk
Sm
@@ -34801,7 +34850,7 @@ aa
aa
aa
gC
-mY
+AU
nf
aa
aa
@@ -35059,7 +35108,7 @@ aa
aa
qS
aa
-Eh
+nc
aa
aa
aa
@@ -35830,7 +35879,7 @@ aa
aa
aa
aa
-zM
+nf
aa
aa
aa
@@ -36092,7 +36141,7 @@ Qy
qS
aa
mS
-nf
+no
YI
hG
aa
@@ -36601,10 +36650,10 @@ aa
aa
Dw
Sk
-IH
+nc
gC
mq
-Jy
+mW
nc
wr
aa
@@ -37371,7 +37420,7 @@ aa
aa
aa
aa
-mY
+hE
nc
nf
qS
@@ -37886,7 +37935,7 @@ aa
aa
aa
aa
-AU
+gC
aa
aa
aa
@@ -39942,7 +39991,7 @@ aa
aa
aa
aa
-mz
+mY
aa
aa
aa
@@ -41741,9 +41790,9 @@ aa
aa
wr
Sk
-mq
+IH
Sk
-mS
+Ir
aa
aa
aa
@@ -41995,13 +42044,13 @@ aj
(139,1,1) = {"
aa
aa
-tu
+ij
mS
-mZ
+Eh
mZ
mZ
nf
-tu
+Dh
aa
aa
ab
@@ -42254,7 +42303,7 @@ aa
qS
Dw
Sk
-ij
+mZ
SJ
mZ
Sk
@@ -42509,11 +42558,11 @@ aj
(141,1,1) = {"
aa
aa
-iO
+zM
mq
+Jy
mZ
-mZ
-ij
+Eh
mY
iO
aa
diff --git a/_maps/map_files/Delta/delta.dmm b/_maps/map_files/Delta/delta.dmm
index 3276469cccbe2..9e6032bc35fa2 100644
--- a/_maps/map_files/Delta/delta.dmm
+++ b/_maps/map_files/Delta/delta.dmm
@@ -2,201 +2,295 @@
"aaa" = (
/turf/space,
/area/space)
-"aab" = (
-/obj/machinery/porta_turret/syndicate,
-/turf/space,
-/turf/simulated/shuttle/wall{
+"aac" = (
+/obj/docking_port/stationary{
dir = 8;
- icon_state = "diagonalWall3"
+ dwidth = 10;
+ height = 35;
+ id = "whiteship_home";
+ name = "north of Kerberos";
+ width = 21
},
-/area/shuttle/syndicate)
-"aac" = (
-/obj/machinery/porta_turret/syndicate,
/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
+/area/space)
"aad" = (
-/obj/structure/shuttle/engine/propulsion/burst,
-/turf/simulated/floor/plating,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f5"
+ dir = 8;
+ icon_state = "diagonalWall3"
},
-/area/shuttle/pod_1)
+/area/shuttle/vox)
"aae" = (
-/obj/structure/shuttle/engine/propulsion/burst,
-/turf/simulated/floor/plating,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f9"
+/obj/effect/landmark{
+ name = "carpspawn"
},
-/area/shuttle/pod_1)
+/turf/space,
+/area/space)
"aaf" = (
-/obj/structure/shuttle/engine/propulsion/burst,
-/turf/simulated/floor/plating,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f5"
+ icon_state = "wall3"
},
-/area/shuttle/pod_2)
+/area/shuttle/vox)
"aag" = (
-/obj/structure/shuttle/engine/propulsion/burst,
-/turf/simulated/floor/plating,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f9"
+/obj/machinery/door/airlock/hatch{
+ frequency = 1331;
+ icon_state = "door_locked";
+ id_tag = "vox_northwest_lock";
+ locked = 1;
+ req_access_txt = "152";
+ req_one_access = null
},
-/area/shuttle/pod_2)
-"aah" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- tag = "icon-propulsion (NORTH)"
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1331;
+ master_tag = "vox_west_control";
+ pixel_x = -29;
+ req_one_access_txt = "152"
},
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
+"aah" = (
+/obj/effect/decal/warning_stripes/east,
/turf/space,
-/turf/simulated/shuttle/wall/interior{
- icon_state = "swall_f6";
- tag = "icon-swall_f6"
- },
-/area/shuttle/transport)
-"aai" = (
-/obj/structure/shuttle/engine/propulsion{
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aak" = (
+/turf/simulated/shuttle/wall{
dir = 1;
- tag = "icon-propulsion (NORTH)"
- },
-/turf/space,
-/turf/simulated/shuttle/wall/interior{
- icon_state = "swall_f10";
- tag = "icon-swall_f10"
+ icon_state = "diagonalWall3"
},
-/area/shuttle/transport)
-"aaj" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f6";
- tag = "icon-swall_f6"
+/area/shuttle/vox)
+"aam" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/shuttle/trade/sol)
-"aak" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f10"
+/obj/structure/table/glass,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/reagent_containers/dropper,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
},
-/area/shuttle/trade/sol)
+/obj/effect/decal/warning_stripes/east,
+/obj/item/reagent_containers/dropper/precision,
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
"aan" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f5";
- tag = "icon-swall_f5"
+ icon_state = "swall3"
},
/area/shuttle/trade/sol)
"aao" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f9"
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
},
-/area/shuttle/trade/sol)
+/area/hallway/secondary/entry/commercial)
"aaq" = (
/turf/space,
/turf/space,
/area/space)
"aar" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 8
},
-/mob/living/simple_animal/mouse,
+/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
+/area/maintenance/fpmaint2)
"aas" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/obj/machinery/door/airlock/hatch{
+ frequency = 1331;
+ icon_state = "door_locked";
+ id_tag = "vox_northeast_lock";
+ locked = 1;
+ req_access_txt = "152";
+ req_one_access = null
},
-/mob/living/simple_animal/mouse/brown,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
+/obj/docking_port/mobile{
+ dir = 2;
+ dwidth = 2;
+ height = 18;
+ id = "skipjack";
+ name = "Vox Skipjack";
+ roundstart_move = "skipjack_away";
+ width = 19
+ },
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 2;
+ height = 18;
+ id = "skipjack_ne";
+ name = "northeast of SS13";
+ width = 19
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1331;
+ master_tag = "vox_east_control";
+ pixel_x = 28;
+ req_access_txt = "152"
+ },
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
"aat" = (
-/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f10"
+ dir = 4;
+ icon_state = "wall3"
},
-/area/shuttle/pod_3)
+/area/shuttle/vox)
"aau" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f9"
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
},
-/area/shuttle/pod_3)
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
"aav" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/machinery/airlock_sensor{
+ frequency = 1331;
+ id_tag = "vox_west_sensor";
+ pixel_x = 25;
+ req_access_txt = "152"
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1331;
+ id_tag = "vox_west_vent"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
+"aaw" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/vox,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"aaL" = (
+/obj/structure/table/reinforced,
+/obj/item/taperecorder,
+/obj/item/folder/red{
+ pixel_y = 3
},
-/mob/living/carbon/human/monkey,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1
},
-/area/medical/genetics)
-"aaw" = (
-/obj/structure/window/reinforced{
- dir = 8
+/area/security/main)
+"aaS" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-25";
+ tag = "icon-plant-25"
},
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -28
+/obj/machinery/vending/wallmed{
+ pixel_y = 30
},
-/obj/structure/cable,
-/mob/living/carbon/human/monkey,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 5;
+ icon_state = "neutral"
},
-/area/medical/genetics)
+/area/crew_quarters/courtroom)
"aaZ" = (
-/obj/effect/landmark{
- name = "carpspawn"
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate_elite)
+"aba" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
-/turf/space,
-/area/space)
-"abb" = (
/turf/simulated/floor/plasteel{
- dir = 6;
+ dir = 4;
icon_state = "red"
},
-/area/security/permabrig)
+/area/security/range)
+"abb" = (
+/obj/machinery/computer/shuttle/vox,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
"abi" = (
-/obj/structure/grille,
-/turf/simulated/wall/r_wall,
-/area/space/nearstation)
+/obj/structure/table,
+/obj/machinery/door_control{
+ id = "voxshutters";
+ name = "remote shutter control";
+ req_access_txt = "152"
+ },
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
"abj" = (
/obj/structure/lattice,
/turf/space,
/area/space/nearstation)
+"abl" = (
+/obj/machinery/airlock_sensor{
+ frequency = 1331;
+ id_tag = "vox_east_sensor";
+ pixel_x = -25;
+ req_access_txt = "152"
+ },
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1331;
+ id_tag = "vox_east_vent"
+ },
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
"abq" = (
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ frequency = 1331;
+ id_tag = "vox_west_control";
+ pixel_x = 24;
+ req_access_txt = "152";
+ tag_airpump = "vox_west_vent";
+ tag_chamber_sensor = "vox_west_sensor";
+ tag_exterior_door = "vox_northwest_lock";
+ tag_interior_door = "vox_southwest_lock"
},
-/area/shuttle/syndicate)
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
"abr" = (
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"abs" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate)
+"abt" = (
/obj/machinery/door/poddoor/shutters{
density = 0;
dir = 2;
icon_state = "open";
- id_tag = "syndieshutters";
+ id_tag = "voxshutters";
name = "Blast Shutters";
opacity = 0
},
@@ -206,12 +300,18 @@
icon_state = "window5_end";
tag = "icon-window5_end"
},
-/turf/simulated/shuttle/plating,
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
+"abz" = (
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "wall3"
+ },
/area/shuttle/syndicate)
-"abs" = (
+"abA" = (
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 2;
+ dir = 1;
icon_state = "open";
id_tag = "syndieshutters";
name = "Blast Shutters";
@@ -220,15 +320,20 @@
/obj/structure/grille,
/obj/structure/shuttle/window{
icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- tag = "icon-window5_mid"
+ icon_state = "window5_end";
+ tag = "icon-window5_end"
},
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate)
-"abt" = (
+"abB" = (
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate)
+"abC" = (
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 2;
+ dir = 1;
icon_state = "open";
id_tag = "syndieshutters";
name = "Blast Shutters";
@@ -236,55 +341,13 @@
},
/obj/structure/grille,
/obj/structure/shuttle/window{
- dir = 1;
icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- tag = "icon-window5_end (NORTH)"
+ icon_state = "window5_mid";
+ tag = "icon-window5_mid"
},
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate)
-"abv" = (
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 10;
- height = 35;
- id = "whiteship_home";
- name = "north of Kerberos";
- width = 21
- },
-/turf/space,
-/area/space)
-"abz" = (
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "wall3"
- },
-/area/shuttle/syndicate)
-"abA" = (
-/obj/structure/table,
-/obj/machinery/kitchen_machine/microwave,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate)
-"abB" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate)
-"abC" = (
-/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate)
"abD" = (
-/obj/machinery/computer/shuttle/syndicate,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate)
-"abE" = (
/obj/structure/table,
/obj/machinery/door_control{
id = "syndieshutters";
@@ -296,2633 +359,2733 @@
},
/area/shuttle/syndicate)
"abF" = (
-/obj/structure/computerframe,
+/obj/machinery/computer/shuttle/syndicate,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"abG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxstarboard)
-"abN" = (
-/obj/structure/table,
-/obj/item/storage/box/syndidonkpockets,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate)
-"abO" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 1;
+ icon_state = "open";
+ id_tag = "syndieshutters";
+ name = "Blast Shutters";
+ opacity = 0
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/structure/grille,
+/obj/structure/shuttle/window{
+ dir = 1;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_end";
+ tag = "icon-window5_end (NORTH)"
},
+/turf/simulated/shuttle/plating,
/area/shuttle/syndicate)
-"abP" = (
+"abN" = (
/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"abS" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 10
- },
-/obj/item/multitool,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+"abO" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
},
-/area/shuttle/syndicate)
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
"abT" = (
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate)
-"abU" = (
-/obj/item/radio/intercom/syndicate{
- pixel_y = -28
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "voxshutters";
+ name = "Blast Shutters";
+ opacity = 0
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/structure/grille,
+/obj/structure/shuttle/window{
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_mid";
+ tag = "icon-window5_mid"
},
-/area/shuttle/syndicate)
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
"abV" = (
-/obj/structure/closet/syndicate/personal,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate)
-"abW" = (
-/obj/machinery/power/solar{
- name = "Aft Starboard Solar Panel"
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ frequency = 1331;
+ id_tag = "vox_east_control";
+ pixel_x = -24;
+ req_access_txt = "152";
+ tag_airpump = "vox_east_vent";
+ tag_chamber_sensor = "vox_east_sensor";
+ tag_exterior_door = "vox_northeast_lock";
+ tag_interior_door = "vox_southeast_lock"
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
+"abX" = (
+/obj/machinery/door/airlock/hatch{
+ frequency = 1331;
+ icon_state = "door_locked";
+ id_tag = "vox_southwest_lock";
+ locked = 1;
+ req_access_txt = "152";
+ req_one_access = null
},
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1331;
+ master_tag = "vox_west_control";
+ pixel_x = 28;
+ req_one_access_txt = "152"
},
-/area/solar/auxstarboard)
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
"acb" = (
/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "diagonalWall3"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
/area/shuttle/syndicate)
"acc" = (
-/obj/machinery/door/window{
- dir = 2;
- name = "Cockpit";
- req_access_txt = "150"
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"acd" = (
-/turf/space,
+/obj/structure/computerframe,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate)
+"acg" = (
/turf/simulated/shuttle/wall{
dir = 4;
icon_state = "diagonalWall3"
},
-/area/shuttle/syndicate)
-"ace" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxstarboard)
-"acf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
+/area/shuttle/vox)
+"acj" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "open";
+ id_tag = "voxshutters";
+ name = "Blast Shutters";
+ opacity = 0
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/structure/grille,
+/obj/structure/shuttle/window{
+ dir = 8;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_end";
+ tag = "icon-window5_end (WEST)"
},
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
+"ack" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxstarboard)
-"acg" = (
-/obj/machinery/computer/arcade/orion_trail,
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"ach" = (
-/obj/structure/cable,
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxstarboard)
-"acj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 8;
- icon_state = "1-8";
- tag = ""
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"acn" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"acr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark/start{
+ name = "Coroner"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/morgue)
+"act" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxstarboard)
-"acm" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil,
-/obj/item/crowbar/red,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate)
-"acn" = (
-/obj/structure/table,
-/obj/item/storage/box/zipties,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate)
-"aco" = (
-/obj/machinery/power/solar{
- name = "Aft Starboard Solar Panel"
- },
-/obj/structure/cable,
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/solar/auxstarboard)
-"acp" = (
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxstarboard)
-"acs" = (
-/obj/structure/chair/comfy/shuttle{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/shuttle/syndicate)
-"act" = (
+/turf/simulated/floor/plasteel,
+/area/medical/virology)
+"acu" = (
/obj/structure/chair/comfy/shuttle{
- dir = 8
+ dir = 1
},
+/turf/space,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"acu" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 8;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
"acv" = (
-/obj/machinery/porta_turret/syndicate,
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "wall3"
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "voxshutters";
+ name = "Blast Shutters";
+ opacity = 0
},
-/area/shuttle/syndicate)
-"acw" = (
-/obj/structure/shuttle/engine/propulsion{
+/obj/structure/grille,
+/obj/structure/shuttle/window{
dir = 1;
- icon_state = "propulsion_r";
- tag = "icon-propulsion_r (NORTH)"
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/syndicate_elite)
-"acx" = (
-/obj/machinery/suit_storage_unit/syndicate/secure,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_end";
+ tag = "icon-window5_end (NORTH)"
},
-/area/shuttle/syndicate)
-"acy" = (
-/obj/structure/closet/syndicate/nuclear,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
+"acw" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
},
-/area/shuttle/syndicate)
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
"acz" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chem_dispenser/beer/upgraded,
/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 8;
- icon_state = "diagonalWall3"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
/area/shuttle/administration)
"acA" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- tag = "icon-propulsion (NORTH)"
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "voxshutters";
+ name = "Blast Shutters";
+ opacity = 0
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/administration)
-"acB" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 1;
- icon_state = "diagonalWall3"
+/obj/structure/grille,
+/obj/structure/shuttle/window{
+ dir = 8;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_end";
+ tag = "icon-window5_end (WEST)"
},
-/area/shuttle/administration)
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
"acC" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
-"acD" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "port4";
- name = "exterior access button";
- pixel_x = 24;
- pixel_y = 4
- },
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- id_tag = "port4_outer";
- locked = 1
- },
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry/additional)
"acE" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
+/turf/simulated/shuttle/wall{
+ icon_state = "diagonalWall3"
},
-/area/solar/auxstarboard)
+/area/shuttle/vox)
"acF" = (
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
-"acG" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxstarboard)
"acH" = (
-/obj/structure/chair/stool,
+/obj/effect/landmark{
+ name = "Nuclear-Bomb"
+ },
+/obj/machinery/light/spot,
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Secure Storage";
+ req_access_txt = "150"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"acI" = (
-/obj/structure/table,
-/obj/item/aicard,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1331;
+ master_tag = "synd_airlock";
+ name = "interior access button";
+ pixel_x = 25;
+ pixel_y = 25
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"acJ" = (
-/obj/machinery/door/airlock/external{
+/obj/machinery/door/airlock/hatch{
frequency = 1331;
icon_state = "door_locked";
- id_tag = "synd_outer";
- name = "Ship External Access";
- req_access = null;
- req_access_txt = "150"
+ id_tag = "vox_southeast_lock";
+ locked = 1;
+ req_access_txt = "152";
+ req_one_access = null
},
-/obj/machinery/door/poddoor{
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1331;
+ master_tag = "vox_east_control";
+ pixel_x = -30;
+ req_one_access_txt = "152"
+ },
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
+"acK" = (
+/obj/machinery/door/poddoor/shutters{
density = 0;
+ dir = 8;
icon_state = "open";
- id_tag = "smindicate";
- name = "Outer Airlock";
+ id_tag = "voxshutters";
+ name = "Blast Shutters";
opacity = 0
},
-/obj/machinery/door_control{
- id = "smindicate";
- name = "External Door Control";
- pixel_x = -26;
- pixel_y = -2;
- req_access_txt = "150"
- },
-/obj/docking_port/mobile{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 22;
- id = "syndicate";
- name = "syndicate infiltrator";
- roundstart_move = "syndicate_away";
- width = 18
- },
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 22;
- id = "syndicate_nw";
- name = "northwest of station";
- width = 18
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/syndicate)
-"acK" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
+/obj/structure/grille,
+/obj/structure/shuttle/window{
+ dir = 4;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_end";
+ tag = "icon-window5_end (EAST)"
},
-/area/shuttle/syndicate)
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
"acL" = (
-/turf/space,
/turf/simulated/shuttle/wall{
- dir = 1;
- icon_state = "diagonalWall3"
+ icon_state = "swall_s6"
},
-/area/shuttle/syndicate)
+/area/shuttle/administration)
"acM" = (
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
+/obj/machinery/computer/cloning,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
},
/area/shuttle/administration)
"acN" = (
-/obj/structure/shuttle/engine/heater{
+/obj/structure/shuttle/engine/propulsion{
dir = 1;
- tag = "icon-heater (NORTH)"
+ tag = "icon-propulsion (NORTH)"
},
-/obj/structure/window/plasmareinforced{
- color = "#d70000"
+/turf/simulated/shuttle/plating,
+/area/shuttle/administration)
+"acP" = (
+/turf/simulated/shuttle/wall{
+ dir = 8;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate_elite)
+"acQ" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1;
+ icon_state = "propulsion_r";
+ tag = "icon-propulsion_r (NORTH)"
},
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate_elite)
+"acS" = (
/turf/simulated/shuttle/wall{
- icon_state = "wall3"
+ icon_state = "swall_s10"
},
/area/shuttle/administration)
-"acO" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- frequency = 1379;
- id_tag = "port4_pump"
- },
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "port4";
- pixel_x = 25;
- tag_airpump = "port4_pump";
- tag_chamber_sensor = "port4_sensor";
- tag_exterior_door = "port4_outer";
- tag_interior_door = "port4_inner"
+"acT" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1;
+ tag = "icon-propulsion (NORTH)"
},
-/obj/machinery/airlock_sensor{
- id_tag = "port4_sensor";
- pixel_x = 25;
- pixel_y = 5
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate_elite)
+"acU" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1;
+ icon_state = "propulsion_l";
+ tag = "icon-propulsion_l (NORTH)"
},
-/obj/machinery/light/small{
- dir = 8
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate_elite)
+"acV" = (
+/turf/simulated/shuttle/wall{
+ dir = 1;
+ icon_state = "diagonalWall3"
},
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry/additional)
-"acP" = (
-/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+/area/shuttle/syndicate_elite)
+"acW" = (
+/obj/machinery/light/spot,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"acY" = (
+/obj/structure/window/reinforced,
+/obj/structure/shuttle/engine/heater{
+ dir = 1;
+ tag = "icon-heater (NORTH)"
},
-/obj/machinery/suit_storage_unit/syndicate/secure,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate_elite)
+"acZ" = (
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/syndicate)
-"acQ" = (
-/obj/structure/table,
-/obj/item/grenade/plastic/c4{
- pixel_x = 2;
- pixel_y = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/shuttle/administration)
+"ada" = (
+/obj/item/clothing/head/collectable/petehat{
+ desc = "It smells faintly of reptile.";
+ name = "fancy leader hat"
},
-/area/shuttle/syndicate)
-"acR" = (
-/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"add" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc4"
},
+/area/shuttle/administration)
+"ade" = (
+/obj/machinery/light/spot,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"acS" = (
-/obj/machinery/atmospherics/unary/tank/air,
+"adf" = (
/turf/simulated/shuttle/wall{
dir = 4;
icon_state = "wall3"
},
-/area/shuttle/syndicate)
-"acT" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- frequency = 1331;
- id_tag = "synd_pump"
+/area/shuttle/syndicate_elite)
+"adg" = (
+/obj/item/radio/intercom/syndicate{
+ pixel_y = -28
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"acU" = (
-/obj/machinery/bodyscanner,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"acV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump{
+"adh" = (
+/obj/structure/shuttle/engine/heater{
dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1
+ tag = "icon-heater (NORTH)"
},
-/area/security/brig)
-"acW" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
+/obj/structure/window/plasmareinforced{
+ color = "#d70000"
},
+/turf/simulated/shuttle/plating,
/area/shuttle/administration)
-"acX" = (
-/obj/machinery/dna_scannernew/upgraded,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"acY" = (
-/obj/machinery/vending/snack,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"acZ" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"ada" = (
-/obj/structure/table,
-/obj/machinery/kitchen_machine/microwave/upgraded,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"adb" = (
-/turf/simulated/wall,
-/area/hallway/secondary/entry)
-"adc" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- id_tag = "port4_inner";
- locked = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "port4";
- name = "exterior access button";
- pixel_x = 24;
- pixel_y = -4
- },
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry/additional)
-"add" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f6"
- },
-/area/shuttle/pod_1)
-"ade" = (
-/obj/structure/window/full/shuttle,
-/obj/structure/grille,
-/turf/simulated/shuttle/plating,
-/area/shuttle/pod_1)
-"adf" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f10"
- },
-/area/shuttle/pod_1)
-"adg" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f6"
- },
-/area/shuttle/pod_2)
-"adh" = (
-/obj/structure/window/full/shuttle,
-/obj/structure/grille,
-/turf/simulated/shuttle/plating,
-/area/shuttle/pod_2)
"adi" = (
-/turf/space,
+/obj/machinery/porta_turret/syndicate{
+ pixel_y = -2
+ },
/turf/simulated/shuttle/wall{
- icon_state = "swall_f10"
+ dir = 4;
+ icon_state = "diagonalWall3"
},
-/area/shuttle/pod_2)
-"adj" = (
+/area/shuttle/syndicate)
+"adn" = (
/obj/machinery/door/window{
- name = "Equipment Room";
+ dir = 2;
+ name = "Cockpit";
req_access_txt = "150"
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"adk" = (
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1331;
- master_tag = "synd_airlock";
- name = "interior access button";
- pixel_x = 25;
- pixel_y = 25
+"adq" = (
+/obj/machinery/sleeper/syndie{
+ dir = 4
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/syndicate)
-"adl" = (
-/obj/machinery/door/airlock/external{
- frequency = 1331;
- icon_state = "door_locked";
- id_tag = "synd_inner";
- locked = 1;
- name = "Ship External Access";
- req_access = null;
- req_access_txt = "150"
+/area/shuttle/syndicate_elite)
+"adr" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "voxshutters";
+ name = "Blast Shutters";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
+/obj/structure/grille,
+/obj/structure/shuttle/window{
+ dir = 4;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_end";
+ tag = "icon-window5_end (EAST)"
+ },
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
+"ads" = (
+/obj/structure/chair/comfy/shuttle,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
},
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"adw" = (
+/obj/machinery/sleeper/syndie,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
+/area/shuttle/syndicate_elite)
+"ady" = (
+/obj/machinery/porta_turret/syndicate{
+ pixel_y = -2
+ },
+/turf/simulated/shuttle/wall{
+ icon_state = "diagonalWall3"
+ },
/area/shuttle/syndicate)
-"adm" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+"adE" = (
+/obj/machinery/recharge_station/upgraded,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"adn" = (
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1331;
- id_tag = "synd_airlock";
- pixel_x = 25;
- req_access_txt = "150";
- tag_airpump = "synd_pump";
- tag_chamber_sensor = "synd_sensor";
- tag_exterior_door = "synd_outer";
- tag_interior_door = "synd_inner"
- },
-/obj/machinery/airlock_sensor{
- frequency = 1331;
- id_tag = "synd_sensor";
- pixel_x = 25;
- pixel_y = 12;
- req_access_txt = "150"
+"adG" = (
+/obj/machinery/door/airlock/hatch{
+ req_access_txt = "152"
},
-/obj/machinery/light{
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"adI" = (
+/obj/machinery/atmospherics/unary/tank/nitrogen{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 4
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "wall3"
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/shuttle/vox)
+"adJ" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "open";
+ id_tag = "voxshutters";
+ name = "Blast Shutters";
+ opacity = 0
},
-/area/shuttle/syndicate)
-"ado" = (
-/obj/machinery/iv_drip,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
+/obj/structure/grille,
+/obj/structure/shuttle/window{
+ dir = 4;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_mid";
+ tag = "icon-window5 (EAST)"
},
-/area/shuttle/administration)
-"adp" = (
-/obj/machinery/computer/cloning,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
+"adK" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/shuttle/administration)
-"adq" = (
-/obj/machinery/vending/cola,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/structure/table,
+/obj/machinery/recharger,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"adN" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/shuttle/administration)
-"adr" = (
-/obj/machinery/door/window/northright{
- dir = 4;
- name = "bar"
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weed_extract,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"adR" = (
+/obj/machinery/computer/cryopod{
+ layer = 4;
+ pixel_y = 32
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkred"
},
-/area/shuttle/administration)
-"ads" = (
-/obj/machinery/vending/boozeomat,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/security/permabrig)
+"adS" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/shuttle/administration)
-"adt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
+/obj/structure/table,
+/mob/living/simple_animal/bot/floorbot{
+ on = 0
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"adu" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 8
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"adT" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"adv" = (
-/obj/machinery/light/small{
- dir = 8
+/obj/structure/table,
+/obj/item/broken_device,
+/obj/item/robot_parts/chest,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"adW" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/northwest,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/structure/table,
+/obj/item/pickaxe,
+/obj/item/storage/firstaid/toxin,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"adX" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"adw" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall3"
+/obj/structure/table,
+/obj/item/scalpel,
+/obj/item/stack/cable_coil,
+/obj/item/storage/firstaid/regular,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"adY" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/shuttle/pod_1)
-"adx" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = 32
+/obj/structure/table,
+/obj/item/circular_saw,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"adZ" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/machinery/light{
+/obj/machinery/optable,
+/obj/item/organ/internal/brain,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"aea" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "voxshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/shuttle/window{
+ dir = 4;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_mid";
+ tag = "icon-window5 (EAST)"
+ },
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
+"aec" = (
+/turf/space,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"aed" = (
+/obj/structure/chair/comfy/shuttle{
dir = 4
},
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate_elite)
+"aef" = (
+/obj/item/storage/toolbox/syndicate,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"aeg" = (
/obj/structure/chair/comfy/shuttle{
- dir = 1
+ dir = 8
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/pod_1)
-"ady" = (
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate_elite)
+"aej" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall3"
+ icon_state = "swall7"
},
-/area/shuttle/pod_2)
-"adz" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = 32
+/area/shuttle/administration)
+"ael" = (
+/obj/machinery/atmospherics/unary/tank/nitrogen{
+ dir = 8
},
-/obj/machinery/light{
- dir = 4
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "wall3"
},
-/obj/structure/chair/comfy/shuttle{
- dir = 1
+/area/shuttle/vox)
+"aem" = (
+/obj/item/skeleton/r_arm,
+/turf/space,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"aen" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1331;
+ id_tag = "vox_west_vent"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/pod_2)
-"adA" = (
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
+"aeo" = (
/obj/machinery/door/window{
base_state = "right";
icon_state = "right";
- name = "Equipment Room";
+ name = "Infirmary";
req_access_txt = "150"
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"adB" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate)
-"adC" = (
+"aep" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 1;
frequency = 1331;
- id_tag = "synd_pump"
+ id_tag = "vox_east_vent"
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
+"aeq" = (
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
-/area/shuttle/syndicate)
-"adD" = (
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"aer" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"aes" = (
+/obj/item/storage/toolbox/electrical,
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"aet" = (
/obj/structure/rack,
-/obj/item/clothing/suit/space/syndicate/black/red,
-/obj/item/clothing/head/helmet/space/syndicate/black/red,
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 1;
- frequency = 1331;
- id_tag = "synd_pump"
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/suit/space/vox/carapace,
+/obj/item/clothing/head/helmet/space/vox/carapace,
+/obj/item/clothing/mask/breath,
+/obj/item/storage/backpack/duffel/syndie{
+ slowdown = 1
},
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"aeu" = (
+/obj/structure/rack,
+/obj/item/gun/dartgun/vox/raider,
+/obj/item/gun/dartgun/vox/medical,
+/obj/item/dart_cartridge,
+/obj/item/dart_cartridge,
+/obj/item/dart_cartridge,
+/obj/item/dart_cartridge,
+/obj/item/gun/dartgun/vox/medical,
+/obj/item/gun/dartgun/vox/medical,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"aey" = (
+/obj/structure/table,
+/obj/item/aicard,
+/obj/item/storage/box/zipties,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"adE" = (
-/obj/structure/table,
-/obj/item/bonegel,
-/obj/item/bonesetter,
-/obj/item/hemostat,
-/obj/item/cautery,
-/obj/item/surgicaldrill,
-/obj/item/circular_saw,
-/obj/item/scalpel,
-/obj/item/retractor,
-/obj/item/FixOVein,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
+"aez" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall11"
},
/area/shuttle/administration)
-"adF" = (
-/obj/machinery/clonepod/upgraded,
-/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
- },
+"aeA" = (
+/obj/machinery/dna_scannernew/upgraded,
/turf/simulated/shuttle/floor{
icon_state = "floor3"
},
/area/shuttle/administration)
-"adG" = (
-/obj/machinery/vending/coffee,
-/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+"aeC" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/administration)
-"adH" = (
-/obj/structure/chair/stool,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/shuttle/syndicate)
+"aeG" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "port4";
+ name = "exterior access button";
+ pixel_x = 24;
+ pixel_y = 4
},
-/area/shuttle/administration)
-"adI" = (
-/obj/structure/table,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ id_tag = "port4_outer";
+ locked = 1
},
-/area/shuttle/administration)
-"adJ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chem_dispenser/beer,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/additional)
+"aeH" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/administration)
-"adK" = (
-/obj/machinery/light/small{
+/area/shuttle/syndicate_elite)
+"aeI" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"adN" = (
-/turf/simulated/wall/r_wall,
-/area/hallway/secondary/entry/westarrival)
-"adO" = (
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28
+/obj/machinery/power/grounding_rod{
+ anchored = 1
},
-/obj/structure/chair/comfy/shuttle{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "caution"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/pod_1)
-"adP" = (
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28
+/area/engine/controlroom)
+"aeJ" = (
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
/obj/structure/chair/comfy/shuttle{
dir = 1
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/pod_2)
-"adS" = (
-/obj/item/radio/intercom/syndicate{
- pixel_x = -28
- },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"adT" = (
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 2;
- height = 18;
- id = "skipjack_nw";
- name = "northwest of SS13";
- width = 19
- },
-/turf/space,
-/area/space)
-"adU" = (
-/obj/machinery/optable,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
+"aeK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Exp_lockdown";
+ name = "Expedition Lockdown";
+ opacity = 0
},
-/area/shuttle/administration)
-"adV" = (
-/obj/machinery/chem_master,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
+/obj/machinery/door/airlock/command/glass{
+ name = "Space Expedition Storage";
+ req_one_access_txt = "18;48;70"
},
-/area/shuttle/administration)
-"adW" = (
-/obj/machinery/vending/cigarette,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "rampbottom";
+ tag = "icon-stage_stairs"
},
-/area/shuttle/administration)
-"adX" = (
-/obj/structure/table,
-/obj/item/ashtray/glass,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/engine/mechanic_workshop/expedition)
+"aeL" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "vault"
},
-/area/shuttle/administration)
-"adY" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/drinkingglasses,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/engine/mechanic_workshop/expedition)
+"aeM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/shuttle/administration)
-"adZ" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"aea" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutral"
},
-/area/hallway/secondary/entry/additional)
-"aeb" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"aec" = (
-/obj/effect/decal/warning_stripes/northeast,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/engine/mechanic_workshop/expedition)
+"aeO" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"aeP" = (
+/turf/space,
+/turf/simulated/shuttle/wall{
+ icon_state = "wall3"
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "vault"
+/area/shuttle/syndicate)
+"aeQ" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1331;
+ icon_state = "door_locked";
+ id_tag = "synd_outer";
+ name = "Ship External Access";
+ req_access = null;
+ req_access_txt = "150"
},
-/area/security/podbay)
-"aed" = (
-/obj/docking_port/mobile/pod{
- id = "pod1";
- name = "escape pod 1"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "smindicate";
+ layer = 5;
+ name = "Outer Airlock";
+ opacity = 0
},
-/obj/machinery/door/airlock/shuttle{
- id_tag = "s_docking_airlock";
- name = "Escape Pod Hatch"
+/obj/machinery/door_control{
+ id = "smindicate";
+ name = "External Door Control";
+ pixel_x = -26;
+ pixel_y = -2;
+ req_access_txt = "150"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/pod_1)
-"aee" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- tag = "icon-propulsion (NORTH)"
+/obj/docking_port/mobile{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 22;
+ id = "syndicate";
+ name = "syndicate infiltrator";
+ roundstart_move = "syndicate_away";
+ width = 18
+ },
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 22;
+ id = "syndicate_nw";
+ name = "northwest of station";
+ width = 18
},
/turf/simulated/shuttle/plating,
-/area/shuttle/arrival/station)
-"aef" = (
+/area/shuttle/syndicate)
+"aeS" = (
/obj/machinery/door/airlock/external{
- id_tag = "admin_home"
+ frequency = 1331;
+ icon_state = "door_locked";
+ id_tag = "synd_outer";
+ name = "Ship External Access";
+ req_access = null;
+ req_access_txt = "150"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"aeg" = (
-/obj/docking_port/mobile/pod{
- id = "pod2";
- name = "escape pod 2"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "smindicate";
+ layer = 5;
+ name = "Outer Airlock";
+ opacity = 0
},
-/obj/machinery/door/airlock/shuttle{
- id_tag = "s_docking_airlock";
- name = "Escape Pod Hatch"
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"aeT" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/pod_2)
-"aei" = (
-/obj/machinery/recharge_station/upgraded,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/shuttle/wall{
+ icon_state = "wall3"
},
/area/shuttle/syndicate)
-"aej" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
+"aeV" = (
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/syndicate)
-"aek" = (
-/obj/structure/table,
+/area/shuttle/syndicate_elite)
+"aeW" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc3"
+ },
+/area/shuttle/administration)
+"aeY" = (
+/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/item/stock_parts/cell/high,
+/obj/machinery/status_display{
+ pixel_y = -32
},
-/area/shuttle/syndicate)
-"ael" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
-/area/shuttle/syndicate)
-"aem" = (
-/obj/machinery/vending/wallmed/syndicate{
- pixel_x = -30
+/area/engine/hardsuitstorage)
+"afb" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "port4_pump"
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "port4";
+ pixel_x = 25;
+ tag_airpump = "port4_pump";
+ tag_chamber_sensor = "port4_sensor";
+ tag_exterior_door = "port4_outer";
+ tag_interior_door = "port4_inner"
},
-/area/shuttle/syndicate)
-"aen" = (
-/obj/structure/table,
-/obj/item/stock_parts/cell/high{
- pixel_x = -3;
- pixel_y = 3
+/obj/machinery/airlock_sensor{
+ id_tag = "port4_sensor";
+ pixel_x = 25;
+ pixel_y = 5
},
-/obj/item/stock_parts/cell/high,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/additional)
+"afc" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Airlock";
+ req_access_txt = "150"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "syndicate_elite";
+ name = "Side Hull Door";
+ opacity = 0;
+ req_access_txt = "150"
+ },
+/obj/docking_port/mobile{
+ dir = 4;
+ dwidth = 7;
+ height = 5;
+ id = "sst";
+ name = "SST shuttle";
+ roundstart_move = "sst_away";
+ width = 11
+ },
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 7;
+ height = 5;
+ id = "sst_home";
+ name = "Near Kerberos Arrivals";
+ width = 11
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate_elite)
+"afg" = (
+/obj/structure/chair/comfy/shuttle,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/syndicate)
-"aeo" = (
-/obj/structure/table,
-/obj/item/screwdriver{
- pixel_y = 9
+/area/shuttle/syndicate_elite)
+"afh" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/machinery/light/spot,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"afi" = (
+/obj/machinery/atmospherics/unary/tank/nitrogen{
+ dir = 1
},
-/obj/item/assembly/voice{
- pixel_y = 3
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"afj" = (
+/obj/structure/rack,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/suit/space/vox/medic,
+/obj/item/clothing/head/helmet/space/vox/medic,
+/obj/item/clothing/mask/breath,
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"afn" = (
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"aep" = (
-/obj/structure/table,
-/obj/item/wrench,
-/obj/item/assembly/infra,
+"afo" = (
+/obj/structure/closet/syndicate/nuclear,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"aeq" = (
-/obj/structure/table,
-/obj/item/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
+"afp" = (
+/obj/machinery/sleeper/upgraded{
+ dir = 4
},
-/obj/item/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
},
-/obj/item/assembly/signaler,
-/obj/item/assembly/signaler,
+/area/shuttle/administration)
+"afq" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"aer" = (
-/obj/structure/table,
-/obj/item/weldingtool/largetank,
-/obj/item/multitool,
+"afs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"aes" = (
-/obj/machinery/vending/medical,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
+"aft" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1331;
+ id_tag = "synd_pump"
},
-/area/shuttle/administration)
-"aet" = (
-/obj/machinery/chem_dispenser,
/turf/simulated/shuttle/floor{
- icon_state = "floor3"
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate)
+"afu" = (
+/obj/machinery/clonepod/upgraded,
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
},
-/area/shuttle/administration)
-"aeu" = (
-/obj/machinery/computer/scan_consolenew,
/turf/simulated/shuttle/floor{
icon_state = "floor3"
},
/area/shuttle/administration)
-"aev" = (
-/obj/structure/table,
-/obj/item/storage/fancy/cigarettes/dromedaryco,
-/obj/item/lighter/zippo{
- pixel_x = 5
- },
+"afv" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/drinkingglasses,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
-"aew" = (
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+"afw" = (
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
-/area/shuttle/administration)
-"aex" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chem_dispenser/soda,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
-"aey" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry/westarrival)
-"aez" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry/westarrival)
-"aeA" = (
-/obj/machinery/light/small{
+"afx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry/westarrival)
-"aeB" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/auxsolarstarboard)
-"aeC" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"aeD" = (
-/obj/machinery/door/window{
- name = "Infirmary";
- req_access_txt = "150"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/light/spot{
+/turf/simulated/floor/plasteel{
dir = 1;
- tag = "icon-tube1 (NORTH)"
+ icon_state = "neutral"
+ },
+/area/engine/mechanic_workshop/expedition)
+"afy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/light/small,
+/obj/machinery/door_control{
+ desc = "A remote control-switch for the pod doors.";
+ id = "explorerpod";
+ name = "Pod Door Control";
+ pixel_x = 26;
+ pixel_y = -8;
+ req_one_access_txt = "18;48;70"
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"afB" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "wall3"
},
+/area/shuttle/syndicate_elite)
+"afC" = (
+/obj/structure/table,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/syndicate)
-"aeE" = (
-/obj/machinery/door/window/westright{
- name = "Tool Storage";
- req_access_txt = "150"
+/area/shuttle/administration)
+"afD" = (
+/obj/effect/spawner/window/reinforced,
+/turf/space,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/additional)
+"afE" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ id_tag = "port4_inner";
+ locked = 1
},
-/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "port4";
+ name = "exterior access button";
+ pixel_x = 24;
+ pixel_y = -4
},
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/additional)
+"afF" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/sst,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/syndicate)
-"aeF" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/syndicate,
-/obj/item/crowbar/red,
+/area/shuttle/syndicate_elite)
+"afG" = (
+/obj/machinery/computer/shuttle/sst,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/syndicate)
-"aeG" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "adminshuttle";
- name = "Medbay";
- opacity = 1;
- req_access_txt = "103"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/shuttle/syndicate_elite)
+"afH" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f6"
},
-/area/shuttle/administration)
-"aeH" = (
-/obj/machinery/door/airlock/glass,
+/area/shuttle/pod_1)
+"afI" = (
+/turf/space,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
-"aeI" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
+"afK" = (
+/obj/structure/window/full/shuttle,
/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 1
- },
-/obj/structure/window/plasmareinforced{
- dir = 8
- },
-/obj/structure/window/plasmareinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/engine/controlroom)
-"aeJ" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry/additional)
-"aeK" = (
-/obj/machinery/door/airlock/external,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"aeL" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/showcase,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/podbay)
-"aeM" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/shuttle/plating,
+/area/shuttle/pod_1)
+"afM" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f10"
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
+/area/shuttle/pod_1)
+"afN" = (
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "red"
- },
-/area/security/podbay)
-"aeN" = (
-/obj/machinery/computer/secure_data,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/podbay)
-"aeO" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = -32
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"aeP" = (
-/obj/machinery/door/airlock/external,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"aeQ" = (
-/obj/structure/window/reinforced{
- dir = 8
+ icon_state = "darkyellow"
},
-/obj/machinery/suit_storage_unit/security/pod_pilot,
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- name = "Security Pilot Equipment";
- req_access_txt = "71"
+/area/engine/mechanic_workshop/hangar)
+"afO" = (
+/obj/structure/rack,
+/obj/item/pneumatic_cannon,
+/obj/item/harpoon,
+/obj/item/harpoon,
+/obj/item/harpoon,
+/obj/item/harpoon,
+/obj/item/tank/nitrogen,
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/light{
- dir = 1;
- in_use = 1
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"afQ" = (
+/obj/machinery/door_control{
+ desc = "A remote control-switch for the pod doors.";
+ id = "explorerpod";
+ name = "Pod Door Control";
+ pixel_x = 26;
+ pixel_y = 5;
+ req_one_access_txt = "18;48;70"
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "red"
- },
-/area/security/podbay)
-"aeR" = (
-/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+ icon_state = "darkyellow"
},
-/obj/machinery/sleeper/syndie{
- dir = 4
+/area/engine/mechanic_workshop/hangar)
+"afR" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f6"
},
+/area/shuttle/pod_2)
+"afT" = (
+/obj/structure/window/full/shuttle,
+/obj/structure/grille,
+/turf/simulated/shuttle/plating,
+/area/shuttle/pod_2)
+"afU" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"aeS" = (
-/obj/machinery/door/window{
- base_state = "right";
- icon_state = "right";
- name = "Infirmary";
- req_access_txt = "150"
+"afV" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f10"
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/shuttle/pod_2)
+"afW" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_r";
+ tag = "icon-propulsion_r"
},
+/turf/simulated/shuttle/plating,
/area/shuttle/syndicate)
-"aeT" = (
-/obj/machinery/door/window{
- dir = 8;
- name = "Tool Storage";
- req_access_txt = "150"
+"afX" = (
+/obj/machinery/atmospherics/unary/tank/nitrogen{
+ dir = 1
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/space,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"afY" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1331;
+ id_tag = "synd_pump"
},
-/area/shuttle/syndicate)
-"aeU" = (
-/obj/structure/closet/crate/internals,
-/obj/item/tank/oxygen/red,
-/obj/item/clothing/mask/gas,
-/obj/item/tank/oxygen/red,
-/obj/item/clothing/mask/gas,
-/obj/item/tank/oxygen/red,
-/obj/item/clothing/mask/gas,
-/obj/item/tank/oxygen/red,
-/obj/item/clothing/mask/gas,
-/obj/item/tank/oxygen/red,
-/obj/item/clothing/mask/gas,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"aeV" = (
-/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+"afZ" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
},
+/turf/simulated/shuttle/plating,
+/area/shuttle/vox)
+"aga" = (
+/obj/machinery/vending/snack,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
-"aeW" = (
-/obj/machinery/door_control{
- id = "adminshuttleblast";
- name = "blast door control";
- pixel_y = 30;
- req_access_txt = "106"
- },
+"agb" = (
/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+ icon_state = "floor3"
},
/area/shuttle/administration)
-"aeX" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "adminshuttle";
- name = "General Access";
- opacity = 1;
- req_access_txt = "101"
+"agc" = (
+/obj/structure/sign/poster/contraband/syndicate_recruitment{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
+/area/shuttle/syndicate)
+"age" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chem_dispenser/soda/upgraded,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
-"aeY" = (
-/obj/machinery/light{
- dir = 1;
- in_use = 1
+"agf" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1331;
+ icon_state = "door_locked";
+ id_tag = "synd_inner";
+ locked = 1;
+ name = "Ship External Access";
+ req_access = null;
+ req_access_txt = "150"
},
-/obj/machinery/door_control{
- id = "adminshuttleblast";
- name = "blast door control";
- pixel_y = 30;
- req_access_txt = "106"
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/administration)
-"aeZ" = (
-/obj/machinery/door/airlock/external{
- id_tag = "s_docking_airlock";
- name = "Shuttle Hatch";
- req_access_txt = "106"
+/area/shuttle/syndicate)
+"agg" = (
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "diagonalWall3"
},
+/area/shuttle/syndicate_elite)
+"agh" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/emergency,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"agi" = (
+/obj/effect/spawner/window/reinforced,
+/turf/space,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/eastarrival)
+"agj" = (
+/turf/simulated/floor/plating/airless,
+/area/shuttle/syndicate_elite)
+"agk" = (
+/obj/machinery/vending/cigarette,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
-"afa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+"agl" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/space,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"ago" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/northeast,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door/airlock/security{
- name = "Security Pods";
- req_access_txt = "71";
- security_level = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"agp" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/westarrival)
+"agt" = (
+/obj/structure/rack,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/suit/space/vox/pressure,
+/obj/item/clothing/head/helmet/space/vox/pressure,
+/obj/item/clothing/mask/breath,
+/turf/space,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"agu" = (
+/obj/structure/table,
+/obj/item/ashtray/glass,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"agC" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 8
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"afb" = (
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry/additional)
-"afc" = (
-/obj/structure/sign/pods{
- pixel_x = -32
+"agM" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/glass/beaker/thermite{
+ pixel_x = -5;
+ pixel_y = 5
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"afd" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high{
- charge = 100;
- maxcharge = 15000
+/obj/item/clothing/glasses/welding{
+ pixel_x = 4;
+ pixel_y = -4
},
-/obj/item/clothing/glasses/welding,
-/obj/machinery/light_switch{
- pixel_x = -23
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"agN" = (
+/obj/docking_port/mobile/pod{
+ id = "pod2";
+ name = "escape pod 2"
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "s_docking_airlock";
+ name = "Escape Pod Hatch"
},
-/area/security/podbay)
-"afe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/shuttle/floor,
+/area/shuttle/pod_2)
+"agO" = (
+/turf/simulated/wall,
+/area/engine/mechanic_workshop/expedition)
+"agP" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "diagonalWall3"
},
-/obj/structure/disposalpipe/segment,
+/area/shuttle/syndicate_elite)
+"agQ" = (
+/obj/structure/rack,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/suit/space/vox/stealth,
+/obj/item/clothing/head/helmet/space/vox/stealth,
+/obj/item/clothing/mask/breath,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"agR" = (
+/turf/space,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall4"
+ },
+/area/shuttle/administration)
+"agU" = (
+/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+ icon_state = "cmo"
},
-/area/security/podbay)
-"aff" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"ahc" = (
+/obj/machinery/light{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkyellow"
},
-/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"afg" = (
-/obj/effect/landmark/start{
- name = "Security Pod Pilot"
+/area/engine/mechanic_workshop/hangar)
+"ahd" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Airlock";
+ req_access_txt = "150"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/door_control{
+ id = "syndicate_elite";
+ name = "Blast Doors";
+ pixel_x = -25;
+ req_access_txt = "150"
},
-/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"afh" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"afi" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "syndicate_elite";
+ name = "Front Hull Door";
+ opacity = 0;
+ req_access_txt = "150"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate_elite)
+"ahe" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
},
-/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"afj" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+/obj/machinery/light{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"afl" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Security Pods";
- req_access_txt = "71"
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+/turf/simulated/shuttle/floor,
+/area/shuttle/pod_1)
+"ahf" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
},
-/area/security/podbay)
-"afm" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/machinery/light{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
},
-/area/security/podbay)
-"afn" = (
-/obj/effect/decal/warning_stripes/northwest,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/shuttle/floor,
+/area/shuttle/pod_2)
+"ahg" = (
+/obj/structure/rack,
+/obj/item/storage/belt/military{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/item/storage/belt/military{
+ pixel_x = -1;
+ pixel_y = 1
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "vault"
+/obj/item/storage/belt/military{
+ pixel_x = 1;
+ pixel_y = -1
},
-/area/security/podbay)
-"afo" = (
-/obj/structure/table/glass,
-/obj/item/storage/backpack/duffel/syndie/surgery_fake,
-/obj/item/circular_saw,
-/obj/item/surgicaldrill,
-/obj/item/clothing/gloves/color/latex/nitrile,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/item/storage/belt/military{
+ pixel_x = 3;
+ pixel_y = -3
},
-/area/shuttle/syndicate)
-"afp" = (
-/obj/structure/closet/crate/medical,
-/obj/item/reagent_containers/glass/bottle/morphine,
-/obj/item/storage/box/beakers,
-/obj/item/robot_parts/l_arm,
-/obj/item/robot_parts/r_arm,
-/obj/item/clothing/mask/surgical,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/tank/anesthetic,
-/obj/item/clothing/mask/breath/medical,
-/obj/item/robot_parts/l_leg,
-/obj/item/robot_parts/r_leg,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"ahh" = (
+/obj/machinery/vending/coffee,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/syndicate)
-"afq" = (
-/obj/structure/table,
-/obj/item/reagent_containers/syringe/charcoal,
-/obj/item/reagent_containers/syringe/charcoal{
- pixel_y = 2
+/area/shuttle/administration)
+"ahk" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
-/obj/item/reagent_containers/syringe/charcoal{
- pixel_y = 4
+/obj/machinery/door_control{
+ id = "adminshuttleblast";
+ name = "blast door control";
+ pixel_y = 30;
+ req_access_txt = "101"
},
-/obj/item/gun/syringe/syndicate,
-/obj/item/storage/firstaid/regular,
-/obj/item/storage/firstaid/adv,
-/obj/item/storage/box/syndie_kit/bonerepair,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/syndicate)
-"afr" = (
-/obj/structure/window/reinforced{
- dir = 1
+/area/shuttle/administration)
+"ahn" = (
+/obj/structure/grille,
+/obj/structure/shuttle/window{
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_end";
+ tag = "icon-window5_end"
},
-/obj/structure/window/reinforced{
- dir = 1
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
+"aho" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
},
+/area/shuttle/pod_2)
+"ahq" = (
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave/upgraded,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/syndicate)
-"afs" = (
-/obj/machinery/door/window{
- dir = 1;
- name = "Secure Storage";
- req_access_txt = "150"
+/area/shuttle/administration)
+"ahr" = (
+/obj/machinery/light/small{
+ dir = 4
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/effect/decal/warning_stripes/north,
+/turf/space,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/westarrival)
+"ahs" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/eastarrival)
+"ahv" = (
+/obj/machinery/light/small{
+ dir = 4
},
-/area/shuttle/syndicate)
-"aft" = (
-/obj/structure/table,
-/obj/item/radio/beacon/syndicate/bomb{
- pixel_y = 5
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/eastarrival)
+"ahw" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1331;
+ icon_state = "door_locked";
+ id_tag = "synd_inner";
+ locked = 1;
+ name = "Ship External Access";
+ req_access = null;
+ req_access_txt = "150"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
},
-/obj/item/radio/beacon/syndicate/bomb,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"afu" = (
-/obj/structure/table,
-/obj/item/grenade/syndieminibomb{
- pixel_x = 4;
+"ahB" = (
+/obj/machinery/porta_turret/syndicate{
pixel_y = 2
},
-/obj/item/grenade/syndieminibomb{
- pixel_x = -1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/shuttle/wall{
+ dir = 8;
+ icon_state = "diagonalWall3"
},
/area/shuttle/syndicate)
-"afv" = (
-/obj/machinery/light{
- dir = 8
+"ahC" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"ahE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"ahH" = (
+/obj/machinery/suit_storage_unit/standard_unit,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
-"afw" = (
-/obj/machinery/door/airlock/external{
- id_tag = "s_docking_airlock";
- name = "Shuttle Hatch";
- req_access_txt = "106"
- },
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 8;
- height = 15;
- id = "admin";
- name = "administration shuttle";
- roundstart_move = "admin_away";
- width = 18
+"ahI" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_y = 32
},
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 8;
- height = 15;
- id = "admin_home";
- name = "port bay 1";
- width = 18
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/engine/mechanic_workshop/hangar)
+"ahL" = (
+/obj/structure/chair/stool/bar,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
-"afx" = (
+"ahN" = (
/obj/structure/table,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
+/obj/item/lighter/zippo{
+ pixel_x = 5
},
-/obj/machinery/light{
- dir = 8
+/obj/item/storage/fancy/cigarettes/dromedaryco,
+/turf/space,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
+/area/shuttle/administration)
+"ahO" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/item/flashlight,
-/obj/item/gps,
-/obj/item/radio{
- pixel_y = 6
+/obj/effect/decal/warning_stripes/northwest,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"ahQ" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/space,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "neutralfull"
},
-/area/security/podbay)
-"afy" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=pilot_east";
- location = "pilot_west"
+/area/hallway/secondary/entry/westarrival)
+"ahR" = (
+/obj/structure/chair{
+ dir = 8
},
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"afz" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+/area/hallway/secondary/entry/westarrival)
+"ahS" = (
+/turf/space,
+/turf/simulated/wall,
+/area/hallway/secondary/entry/westarrival)
+"ahT" = (
+/obj/structure/grille,
+/obj/structure/shuttle/window{
+ dir = 1;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_end";
+ tag = "icon-window5_end (NORTH)"
},
-/area/security/podbay)
-"afA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
+"aia" = (
+/obj/item/broken_bottle,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"aie" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"aii" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 28
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
},
-/area/engine/mechanic_workshop/hanger)
-"afB" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/pod_1)
+"aip" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=pilot_west";
- location = "pilot_east"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/mob/living/simple_animal/bot/secbot/podsky{
- auto_patrol = 1
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/item/radio/beacon,
+/obj/effect/landmark{
+ name = "blobstart"
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"afC" = (
+/area/toxins/mixing)
+"aix" = (
+/obj/machinery/porta_turret/syndicate{
+ pixel_y = 2
+ },
+/turf/simulated/shuttle/wall{
+ dir = 1;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"aiC" = (
+/obj/structure/dispenser/oxygen,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"afD" = (
-/obj/structure/mirror{
- pixel_x = 28
+/area/engine/mechanic_workshop/expedition)
+"aiE" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/eastarrival)
+"aiF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/sink{
+/obj/structure/chair/office/light{
+ dir = 1;
+ pixel_y = 3
+ },
+/turf/simulated/floor/plasteel{
dir = 4;
- pixel_x = 11
+ icon_state = "whitepurplecorner"
+ },
+/area/toxins/lab)
+"aiL" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/pod_2)
+"aiO" = (
+/obj/machinery/door/window{
+ name = "Infirmary";
+ req_access_txt = "150"
+ },
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"afE" = (
-/obj/effect/landmark{
- name = "Nuclear-Bomb"
+"aiR" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"aiT" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "neutral"
+ },
+/area/engine/mechanic_workshop/expedition)
+"aiU" = (
+/obj/item/tank/emergency_oxygen,
+/obj/item/clothing/mask/breath,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"aiX" = (
+/obj/item/radio/intercom/syndicate{
+ pixel_x = -28
},
-/obj/machinery/light/spot,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"afG" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "adminshuttle";
- name = "Holding Cell";
- opacity = 1;
- req_access_txt = "104"
+"aiZ" = (
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 2;
+ height = 18;
+ id = "skipjack_nw";
+ name = "northwest of SS13";
+ width = 19
+ },
+/turf/space,
+/area/space)
+"aja" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "wall3"
},
+/area/shuttle/specops)
+"ajb" = (
+/obj/machinery/iv_drip,
/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+ icon_state = "floor3"
},
/area/shuttle/administration)
-"afH" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "adminshuttle";
- name = "Bridge";
- opacity = 1;
- req_access_txt = "106"
+"ajj" = (
+/obj/machinery/door/window/northright{
+ dir = 8;
+ name = "bar"
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
-"afI" = (
+"ajk" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall8"
+ },
+/area/shuttle/administration)
+"ajl" = (
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "adminshuttleblast";
+ name = "Blast Doors";
+ req_access_txt = "101"
+ },
/obj/machinery/door/airlock/centcom{
id_tag = "adminshuttle";
- name = "Workshop";
+ name = "General Access";
opacity = 1;
- req_access_txt = "105"
+ req_access_txt = "101"
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
-"afJ" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = -32
- },
+"ajn" = (
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry/additional)
-"afK" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = 32
+"ajo" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A8";
+ location = "A7"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry/additional)
-"afM" = (
+"ajq" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/turf/space,
+/area/space/nearstation)
+"ajr" = (
+/obj/structure/shuttle/engine/propulsion/burst,
/turf/simulated/shuttle/wall{
- icon_state = "wall3"
+ icon_state = "swall_f5"
},
-/area/shuttle/arrival/station)
-"afN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/area/shuttle/pod_1)
+"aju" = (
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/shuttle/specops)
+"ajv" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f9"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/shuttle/pod_1)
+"ajz" = (
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
},
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"afO" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "garbage"
- },
-/obj/structure/sign/vacuum{
- pixel_y = 32
+/area/engine/mechanic_workshop/expedition)
+"ajG" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/south,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"afP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"ajM" = (
+/obj/structure/spacepoddoor{
+ luminosity = 3
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"ajN" = (
+/turf/simulated/wall,
+/area/hallway/secondary/entry/eastarrival)
+"ajP" = (
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/yellow/partial{
dir = 4
},
+/obj/machinery/atm{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
+ },
+/area/quartermaster/office)
+"ajQ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Exp_lockdown";
+ name = "Expedition Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/engine/mechanic_workshop/expedition)
+"ajR" = (
+/obj/item/clothing/head/bearpelt,
+/obj/item/xenos_claw,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"ajS" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f5"
+ },
+/area/shuttle/pod_2)
+"ajU" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f9"
+ },
+/area/shuttle/pod_2)
+"ajY" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"aka" = (
+/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"afQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"akb" = (
+/obj/structure/chair{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/item/clothing/mask/breath,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"ake" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- icon_state = "pipe-c"
+ id_tag = "Virology";
+ name = "Virology Shutters"
},
-/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"afR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating,
+/area/medical/virology/lab)
+"akh" = (
+/obj/item/clothing/head/collectable/xenom,
+/obj/item/clothing/head/chicken,
+/obj/item/aiModule/syndicate,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"akk" = (
+/obj/item/stack/spacecash/c1000,
+/obj/item/stack/spacecash/c500,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"akl" = (
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/space,
/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"afS" = (
-/obj/machinery/optable,
+/area/engine/mechanic_workshop/expedition)
+"akn" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"afT" = (
-/obj/machinery/bodyscanner,
+"ako" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stack/cable_coil{
+ pixel_y = 10
+ },
+/obj/item/stock_parts/cell/high{
+ pixel_x = 6;
+ pixel_y = 1
+ },
+/obj/item/stock_parts/cell/high{
+ pixel_x = 6;
+ pixel_y = 1
+ },
+/obj/item/stock_parts/cell/high{
+ pixel_x = 6;
+ pixel_y = 1
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"afU" = (
-/obj/machinery/iv_drip,
+"akr" = (
+/obj/machinery/door/airlock/centcom{
+ id_tag = "adminshuttle";
+ name = "Workshop";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aks" = (
+/obj/item/stack/spacecash/c50,
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"akt" = (
+/obj/structure/table,
+/obj/machinery/recharger,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"afV" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1
+"akw" = (
+/obj/machinery/vending/wallmed/syndicate{
+ pixel_x = -30
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/shuttle/plating,
/area/shuttle/syndicate)
-"afW" = (
+"aky" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/security/main)
+"akz" = (
+/obj/item/radio/intercom{
+ pixel_y = -28
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/obj/structure/rack,
+/obj/item/gun/energy/kinetic_accelerator{
+ pixel_y = -6
+ },
+/obj/item/gun/energy/kinetic_accelerator{
+ pixel_y = -3
+ },
+/obj/item/gun/energy/kinetic_accelerator,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"akA" = (
/obj/structure/computerframe,
/obj/item/paper/synditele,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"afX" = (
+"akC" = (
/obj/machinery/teleport/station,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"afY" = (
+"akD" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkyellow"
+ },
+/area/engine/mechanic_workshop/hangar)
+"akG" = (
/obj/machinery/teleport/hub/upgraded,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"afZ" = (
-/obj/structure/table,
-/obj/item/storage/lockbox/mindshield,
+"akJ" = (
+/obj/structure/closet/crate/internals,
+/obj/item/tank/oxygen/red,
+/obj/item/clothing/mask/gas,
+/obj/item/tank/oxygen/red,
+/obj/item/clothing/mask/gas,
+/obj/item/tank/oxygen/red,
+/obj/item/clothing/mask/gas,
+/obj/item/tank/oxygen/red,
+/obj/item/clothing/mask/gas,
+/obj/item/tank/oxygen/red,
+/obj/item/clothing/mask/gas,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/administration)
-"aga" = (
-/obj/structure/table,
-/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
- },
-/obj/item/storage/box/handcuffs,
+/area/shuttle/syndicate)
+"akL" = (
+/obj/machinery/vending/boozeomat,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
-"agb" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+"akQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
},
-/area/shuttle/administration)
-"agc" = (
+/area/engine/mechanic_workshop/expedition)
+"akV" = (
/obj/structure/table,
-/obj/machinery/cell_charger,
+/obj/item/storage/box/syndidonkpockets,
+/obj/item/storage/box/syndidonkpockets,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/administration)
-"agd" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"age" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/shuttle/syndicate)
+"akW" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry/additional)
-"agf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4;
+ icon_state = "neutral"
},
-/obj/machinery/light{
+/area/engine/mechanic_workshop/expedition)
+"akY" = (
+/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Arrivals Port Fore";
- dir = 8
- },
-/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry/additional)
-"agg" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = -32
- },
-/obj/machinery/light{
- dir = 8
+"ala" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/eastarrival)
+"alb" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"agh" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = 32
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Arrivals Center Fore";
- dir = 8
- },
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"agi" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f6"
- },
-/area/shuttle/arrival/station)
-"agj" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall12"
- },
-/area/shuttle/arrival/station)
-"agk" = (
-/obj/structure/window/reinforced,
-/obj/structure/shuttle/engine/heater{
- dir = 1;
- tag = "icon-heater (NORTH)"
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/shuttle/plating,
-/area/shuttle/arrival/station)
-"agl" = (
/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f10"
- },
-/area/shuttle/arrival/station)
-"agm" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Arrivals Fore Starboard";
- dir = 4;
- pixel_y = -22
- },
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = -32
- },
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"ago" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/item/radio/intercom{
- pixel_y = -28
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
+ dir = 5;
+ icon_state = "vault"
},
-/area/security/podbay)
-"agp" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/engine/mechanic_workshop)
+"ald" = (
+/obj/effect/decal/warning_stripes/northeast,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/podbay)
-"agq" = (
-/obj/structure/rack{
- dir = 1
+ dir = 9;
+ icon_state = "vault"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/engine/mechanic_workshop/expedition)
+"alf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/item/tank/jetpack/oxygen,
-/obj/item/tank/oxygen,
-/obj/item/clothing/shoes/magboots,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutral"
},
-/area/security/podbay)
-"agr" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l"
+/area/engine/mechanic_workshop/expedition)
+"alh" = (
+/obj/structure/closet/syndicate/personal,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/syndicate)
-"ags" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/simulated/shuttle/plating,
/area/shuttle/syndicate)
-"agt" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r";
- tag = "icon-propulsion_r"
+"alk" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/syndicate)
-"agu" = (
-/obj/structure/table,
-/obj/item/storage/box/chemimp{
- pixel_x = 4;
- pixel_y = 3
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "Pilotp";
+ name = "Pilot Privacy Shutters"
},
-/obj/item/storage/box/trackimp,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Exp_lockdown";
+ name = "Expedition Lockdown";
+ opacity = 0
},
-/area/shuttle/administration)
-"agv" = (
-/obj/structure/table/reinforced,
+/turf/simulated/floor/plating,
+/area/engine/mechanic_workshop/expedition)
+"all" = (
/obj/machinery/door_control{
- id = "adminshuttleshutters";
- name = "remote shutter control";
- req_access_txt = "106"
+ id = "adminshuttleblast";
+ name = "blast door control";
+ pixel_y = 30;
+ req_access_txt = "101"
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
-"agw" = (
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+"alp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/shuttle/administration)
-"agx" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/shuttle/administration)
-"agy" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"alq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/shuttle/administration)
-"agz" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/multitool,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/shuttle/administration)
-"agA" = (
-/obj/structure/sign/vacuum{
- pixel_x = -32
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"agB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"agC" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/item/radio/intercom{
- pixel_x = 30
+/area/engine/mechanic_workshop/expedition)
+"alr" = (
+/obj/effect/decal/warning_stripes/southwest,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"agD" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall7"
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "vault"
},
-/area/shuttle/arrival/station)
-"agE" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- tag = "icon-swall12"
+/area/engine/mechanic_workshop/expedition)
+"alt" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/shuttle/arrival/station)
-"agF" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "8"
+/area/hallway/secondary/entry/additional)
+"alv" = (
+/obj/machinery/light/small{
+ dir = 8
},
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/shuttle/arrival/station)
-"agG" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall11"
- },
-/area/shuttle/arrival/station)
-"agH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"agI" = (
-/turf/simulated/wall/r_wall,
-/area/security/podbay)
-"agJ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "Pilotp";
- name = "Pilot Privacy Shutters"
+/area/hallway/secondary/entry/westarrival)
+"alw" = (
+/obj/machinery/light/small{
+ dir = 8
},
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/security/podbay)
-"agK" = (
-/turf/simulated/wall/r_wall,
-/area/engine/mechanic_workshop/hanger)
-"agM" = (
-/obj/machinery/computer/card/centcom,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/hallway/secondary/entry/eastarrival)
+"alx" = (
+/obj/structure/AIcore,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"alD" = (
+/obj/machinery/door/window/westright{
+ name = "Tool Storage";
+ req_access_txt = "150"
},
-/area/shuttle/administration)
-"agN" = (
-/obj/machinery/computer/shuttle/admin,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
-/area/shuttle/administration)
-"agO" = (
-/obj/machinery/computer/communications,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/administration)
-"agP" = (
-/obj/machinery/recharge_station/upgraded,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/shuttle/syndicate)
+"alF" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/shuttle/administration)
-"agQ" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/space,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"alG" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "vault"
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/engine/mechanic_workshop)
+"alI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/shuttle/administration)
-"agR" = (
-/obj/machinery/computer/security{
- network = list("SS13","Research Outpost","Mining Outpost")
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"alL" = (
+/obj/machinery/iv_drip,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/specops)
-"agS" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall3"
- },
-/area/shuttle/arrival/station)
-"agT" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"agU" = (
-/obj/structure/closet/wardrobe/mixed,
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"agV" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/emergency,
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"agW" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/regular,
-/obj/machinery/camera{
- c_tag = "Arrivals Shuttle North";
- dir = 6
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"agX" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"agY" = (
-/obj/machinery/door_control{
- id = "hangar";
- name = "Hangar Doors Control";
- pixel_y = -8;
- req_one_access_txt = "18;70;71"
- },
-/turf/simulated/wall/r_wall,
-/area/engine/mechanic_workshop/hanger)
-"ahb" = (
-/obj/machinery/light{
- dir = 1;
- in_use = 1
- },
-/obj/machinery/camera{
- c_tag = "Hangar North";
- dir = 6
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkyellow"
+/area/shuttle/syndicate)
+"alO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/area/engine/mechanic_workshop/hanger)
-"ahc" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkyellow"
+ dir = 5;
+ icon_state = "red"
},
-/area/engine/mechanic_workshop/hanger)
-"ahd" = (
+/area/security/main)
+"alQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkyellow"
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/engine/mechanic_workshop/hanger)
-"ahe" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"alS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/table/reinforced,
+/obj/item/gps{
+ pixel_x = 3;
+ pixel_y = -3
},
-/area/engine/mechanic_workshop/hanger)
-"ahf" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/item/gps,
+/obj/item/gps{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gps{
+ pixel_x = -6;
+ pixel_y = 6
},
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"alT" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkyellow"
- },
-/area/engine/mechanic_workshop/hanger)
-"ahg" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkyellowcorners"
+ icon_state = "1-2"
},
-/area/engine/mechanic_workshop/hanger)
-"ahh" = (
-/obj/effect/decal/warning_stripes/northwest,
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"alU" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/mechanic_workshop/hanger)
-"ahk" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/door/poddoor/multi_tile/two_tile_hor{
+ id_tag = "explorerpod"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxstarboard)
-"ahl" = (
-/turf/simulated/wall,
-/area/hallway/secondary/entry/additional)
-"ahm" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "diagonalWall3"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Exp_lockdown";
+ name = "Expedition Lockdown";
+ opacity = 0
},
-/area/shuttle/administration)
-"ahn" = (
-/obj/structure/window/plasmareinforced{
- color = "#d70000";
- dir = 1
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"alV" = (
+/obj/structure/table,
+/obj/item/grenade/plastic/c4{
+ pixel_x = -4;
+ pixel_y = -2
},
-/obj/structure/chair/comfy/shuttle{
- dir = 4
+/obj/item/grenade/syndieminibomb{
+ pixel_x = 8
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/item/radio/beacon/syndicate/bomb{
+ pixel_x = -5;
+ pixel_y = 12
},
-/area/shuttle/administration)
-"aho" = (
-/obj/machinery/door/window/northleft{
- color = "#d70000";
- req_access_txt = "104"
+/obj/item/radio/beacon/syndicate/bomb{
+ pixel_x = -5;
+ pixel_y = 12
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/item/grenade/plastic/c4{
+ pixel_x = -4;
+ pixel_y = -2
},
-/area/shuttle/administration)
-"ahp" = (
-/obj/structure/window/plasmareinforced{
- color = "#d70000";
- dir = 1
+/obj/item/grenade/syndieminibomb{
+ pixel_x = 8
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/administration)
-"ahq" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- icon_state = "shutter0";
- id_tag = "adminshuttleshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- tag = "icon-window5_end"
- },
-/turf/simulated/floor/plating,
-/area/shuttle/administration)
-"ahr" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- icon_state = "shutter0";
- id_tag = "adminshuttleshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- tag = "icon-window5_mid"
- },
-/turf/simulated/floor/plating,
-/area/shuttle/administration)
-"ahs" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- icon_state = "shutter0";
- id_tag = "adminshuttleshutters";
- name = "Blast Shutters";
- opacity = 0
+/area/shuttle/syndicate)
+"alX" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = -30
},
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- dir = 1;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- tag = "icon-window5_end (NORTH)"
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkyellow"
},
-/turf/simulated/floor/plating,
-/area/shuttle/administration)
-"aht" = (
+/area/engine/mechanic_workshop/hangar)
+"alY" = (
/obj/structure/table,
-/obj/item/stack/sheet/metal,
-/obj/item/stack/sheet/glass{
- pixel_x = 4;
- pixel_y = 4
- },
+/obj/item/bonegel,
+/obj/item/bonesetter,
+/obj/item/hemostat,
+/obj/item/cautery,
+/obj/item/surgicaldrill,
+/obj/item/circular_saw,
+/obj/item/scalpel,
+/obj/item/retractor,
+/obj/item/FixOVein,
/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"ahu" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "diagonalWall3"
+ icon_state = "floor3"
},
/area/shuttle/administration)
-"ahv" = (
-/obj/machinery/recharge_station,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/specops)
-"ahw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- name = "Auxiliary Storage";
- req_one_access_txt = "65;12"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"ahx" = (
-/obj/machinery/door/airlock/shuttle{
- id_tag = "s_docking_airlock"
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
-"ahy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/glass{
- name = "Vacant Office"
+"ama" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
},
-/turf/simulated/floor/plasteel,
-/area/security/vacantoffice)
-"ahz" = (
-/obj/machinery/door/airlock/external{
- locked = 1
+/obj/machinery/light{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"ahA" = (
-/obj/machinery/door/airlock/external{
- name = "Arrival Airlock"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkyellow"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"ahB" = (
-/obj/machinery/door/airlock/shuttle{
- id_tag = "s_docking_airlock"
+/area/engine/mechanic_workshop/hangar)
+"amc" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/hallway/secondary/entry/additional)
+"ame" = (
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/shuttle/arrival/station)
-"ahC" = (
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"ahD" = (
-/obj/effect/landmark{
- name = "HONKsquad"
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"ahE" = (
-/obj/machinery/door/airlock/shuttle{
- id_tag = "s_docking_airlock"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/shuttle/arrival/station)
-"ahF" = (
-/obj/machinery/door/airlock/external{
- name = "Arrival Airlock"
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"ahG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/hallway/secondary/entry/additional)
+"amh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/effect/landmark{
+ name = "blobstart"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkyellow"
- },
-/area/engine/mechanic_workshop/hanger)
-"ahH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"amj" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"amk" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/bluegrid{
+ icon_state = "dark";
+ name = "Mainframe Floor";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/mechanic_workshop/hanger)
-"ahI" = (
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/toxins/server)
+"aml" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"amp" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12";
+ tag = "icon-swall12"
},
+/area/shuttle/arrival/station)
+"amt" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/mechanic_workshop/hanger)
-"ahJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 1;
+ icon_state = "neutral"
},
+/area/engine/mechanic_workshop/expedition)
+"amu" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -2933,718 +3096,892 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"amw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Exp_lockdown";
+ name = "Expedition Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/command/glass{
+ name = "Space Expedition Storage";
+ req_one_access_txt = "18;48;70"
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"amx" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Exp_lockdown";
+ name = "Expedition Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/engine/mechanic_workshop/expedition)
+"amz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "neutral"
},
-/area/engine/mechanic_workshop/hanger)
-"ahK" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northwest,
+/area/engine/mechanic_workshop/expedition)
+"amC" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"amE" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "neutral"
},
-/area/engine/mechanic_workshop/hanger)
-"ahL" = (
+/area/engine/mechanic_workshop/expedition)
+"amJ" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"amL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "arrival"
},
-/area/engine/mechanic_workshop/hanger)
-"ahM" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA"
+/area/hallway/secondary/entry)
+"amN" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/wall/r_wall,
-/area/engine/mechanic_workshop/hanger)
-"ahN" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
+/area/engine/mechanic_workshop/expedition)
+"amQ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"amR" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"amS" = (
+/obj/structure/table,
+/obj/item/storage/box/prisoner,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/security/prisonershuttle)
+"amV" = (
+/obj/machinery/bodyscanner,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/administration)
-"ahO" = (
-/obj/machinery/autolathe/upgraded{
- hacked = 1
+/area/shuttle/syndicate)
+"anb" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/camera{
+ c_tag = "Expedition Hangar";
+ network = list("SS13","Security")
},
-/area/shuttle/administration)
-"ahP" = (
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"anc" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/wall/r_wall,
+/area/engine/mechanic_workshop/expedition)
+"and" = (
/obj/machinery/mecha_part_fabricator/upgraded,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
-"ahQ" = (
-/turf/simulated/shuttle/floor,
-/turf/simulated/shuttle/wall/interior{
- icon_state = "swall_f9";
- tag = "icon-swall_f9"
+"ane" = (
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
-/area/shuttle/transport)
-"ahR" = (
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
-"ahS" = (
-/turf/simulated/shuttle/floor,
-/turf/simulated/shuttle/wall/interior{
- icon_state = "swall_f5";
- tag = "icon-swall_f5"
+/obj/machinery/sleeper/syndie{
+ dir = 4
},
-/area/shuttle/transport)
-"ahT" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"ahU" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/shuttle/syndicate)
+"ang" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
dir = 8;
- external_pressure_bound = 100;
- on = 1
+ icon_state = "whiteyellowcorner"
+ },
+/area/medical/chemistry)
+"ani" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/secondary/entry/westarrival)
-"ahW" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/light,
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"ahY" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- external_pressure_bound = 100;
- on = 1
+/area/hallway/secondary/entry)
+"anj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/engine/mechanic_workshop/hanger)
-"aia" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/engine/mechanic_workshop/hanger)
-"aic" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"ann" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/shuttle/administration)
-"aid" = (
-/obj/machinery/light/spot,
-/obj/structure/chair/comfy/shuttle{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"ano" = (
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Tool Storage";
+ req_access_txt = "150"
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/administration)
-"aie" = (
+/area/shuttle/syndicate)
+"ans" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"anu" = (
+/obj/machinery/vending/boozeomat,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"anx" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "wall3"
+ },
+/area/shuttle/syndicate)
+"anz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "red"
+ },
+/area/security/processing)
+"anC" = (
/obj/structure/dispenser,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
-"aif" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+"anF" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall4"
},
+/area/shuttle/administration)
+"anP" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/engine/mechanic_workshop/hanger)
-"aig" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"aih" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall3"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/shuttle/transport)
-"aii" = (
-/obj/machinery/light/spot{
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research/shallway)
+"anQ" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
dir = 8;
- tag = "icon-tube1 (WEST)"
+ icon_state = "neutralfull"
},
-/obj/structure/closet/crate,
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
-"aij" = (
-/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+/area/hallway/secondary/entry/louge)
+"anZ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
-"aik" = (
-/obj/machinery/light{
- dir = 1
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/closet/firecloset,
-/obj/item/radio/intercom{
- pixel_x = -30
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"aob" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (SOUTHWEST)"
},
+/area/medical/research/restroom)
+"aoc" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"ail" = (
-/obj/effect/landmark{
- name = "JoinLate"
+/area/toxins/storage)
+"aod" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/chair/comfy/shuttle{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"aim" = (
-/obj/effect/landmark{
- name = "JoinLate"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/chair/comfy/shuttle{
- dir = 8
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"ain" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall2";
- tag = "icon-swall2"
+/obj/machinery/door/airlock/command/glass{
+ name = "Space Expedition Storage";
+ req_one_access_txt = "18;48;70"
},
-/area/shuttle/arrival/station)
-"aio" = (
-/obj/machinery/light{
- dir = 1
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Exp_lockdown";
+ name = "Expedition Lockdown";
+ opacity = 0
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"aoe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"aip" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"aiq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "neutral"
},
-/area/engine/mechanic_workshop/hanger)
-"ais" = (
-/obj/machinery/light{
- dir = 1
+/area/engine/mechanic_workshop/expedition)
+"aof" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkbluecorners"
},
-/obj/machinery/vending/snack,
-/obj/effect/decal/warning_stripes/yellow,
+/area/construction/hallway)
+"aon" = (
+/obj/structure/table/wood,
+/obj/item/camera,
/obj/item/radio/intercom{
- pixel_x = -30
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"aiu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ pixel_x = 30;
+ pixel_y = -30
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "escape"
+ },
+/area/crew_quarters/fitness)
+"aoo" = (
+/turf/simulated/wall,
+/area/security/vacantoffice)
+"aou" = (
+/obj/machinery/light_switch{
+ pixel_x = -26;
+ pixel_y = 26
},
-/area/engine/mechanic_workshop/hanger)
-"aiw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/engine/mechanic_workshop/hanger)
-"aix" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "red"
},
-/area/engine/mechanic_workshop/hanger)
-"aiy" = (
-/obj/structure/spacepoddoor{
- luminosity = 3
+/area/security/checkpoint2)
+"aow" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "red"
},
-/area/engine/mechanic_workshop/hanger)
-"aiC" = (
-/obj/structure/closet/crate,
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
-"aiD" = (
-/obj/machinery/computer/shuttle/ferry/request,
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
-"aiE" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"aiF" = (
-/obj/structure/chair{
- dir = 8
+/area/security/checkpoint2)
+"aox" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/landmark/start{
- name = "Civilian"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"aiG" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/stalkybush,
-/obj/structure/window/full/shuttle{
- icon_state = "8"
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault"
},
-/turf/simulated/floor/plating,
-/area/shuttle/arrival/station)
-"aiH" = (
-/obj/structure/chair{
+/area/engine/mechanic_workshop/expedition)
+"aoL" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc1"
+ },
+/area/shuttle/administration)
+"aoM" = (
+/obj/item/storage/toolbox/mechanical,
+/obj/item/multitool,
+/obj/structure/table,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aoN" = (
+/obj/machinery/light{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"aiI" = (
-/obj/structure/chair{
+/obj/machinery/camera{
+ c_tag = "Arrivals Port Fore";
dir = 8
},
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"aoO" = (
+/obj/structure/sign/pods{
+ pixel_x = -32
+ },
+/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry/westarrival)
-"aiJ" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
+"aoR" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- icon_state = "neutralfull"
+ initialize_directions = 11
},
-/area/hallway/secondary/entry/eastarrival)
-"aiK" = (
-/obj/machinery/vending/cola,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"aiL" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"aiM" = (
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/engine/mechanic_workshop/hanger)
-"aiO" = (
-/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"aoS" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "carpet"
},
-/area/engine/mechanic_workshop/hanger)
-"aiP" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/security/vacantoffice)
+"aoT" = (
/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aoU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/engine/mechanic_workshop/hanger)
-"aiQ" = (
-/obj/structure/grille,
-/obj/structure/shuttle/window,
-/turf/simulated/shuttle/plating,
-/area/shuttle/transport)
-"aiR" = (
-/obj/structure/chair/comfy/shuttle{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light/small{
dir = 4
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
-"aiS" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"aoV" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
-"aiT" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aoX" = (
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ frequency = 1331;
+ id_tag = "synd_airlock";
+ pixel_x = 25;
+ req_access_txt = "150";
+ tag_airpump = "synd_pump";
+ tag_chamber_sensor = "synd_sensor";
+ tag_exterior_door = "synd_outer";
+ tag_interior_door = "synd_inner"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Pilotp";
- name = "Pilot Privacy Shutters"
+/obj/machinery/airlock_sensor{
+ frequency = 1331;
+ id_tag = "synd_sensor";
+ pixel_x = 25;
+ pixel_y = 12;
+ req_access_txt = "150"
},
-/turf/simulated/floor/plating,
-/area/security/podbay)
-"aiU" = (
-/obj/effect/landmark{
- name = "HONKsquad"
+/obj/machinery/light{
+ dir = 4
},
-/obj/structure/chair/comfy/shuttle{
+/obj/machinery/atmospherics/pipe/manifold/hidden{
dir = 4
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"aiV" = (
-/obj/effect/landmark{
- name = "HONKsquad"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/structure/chair/comfy/shuttle{
- dir = 8
+/area/shuttle/syndicate)
+"apa" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "bluecorner"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"aiX" = (
-/obj/structure/chair{
+/area/hallway/secondary/entry/louge)
+"aph" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/obj/machinery/light{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Civilian"
+/obj/machinery/camera{
+ c_tag = "Arrivals Center Fore";
+ dir = 8
},
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry/westarrival)
-"aiY" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/southwest,
+"api" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/area/engine/mechanic_workshop/hanger)
-"aiZ" = (
-/obj/structure/shuttle/engine/propulsion{
+/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "burst_l"
+ icon_state = "red"
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops)
-"aja" = (
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
+/area/security/checkpoint2)
+"apj" = (
+/obj/machinery/camera{
+ c_tag = "Arrivals Checkpoint";
+ dir = 8
},
-/area/shuttle/specops)
-"ajb" = (
-/obj/machinery/door/airlock/external{
- id_tag = "s_docking_airlock";
- name = "Shuttle Hatch";
- req_access_txt = "109"
+/obj/machinery/status_display{
+ pixel_x = 32
},
-/obj/structure/fans/tiny,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/computer/prisoner,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
},
-/area/shuttle/specops)
-"ajc" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
+/area/security/checkpoint2)
+"apk" = (
+/obj/structure/sign/pods{
+ pixel_x = -32
+ },
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -28;
+ pixel_y = 28
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"app" = (
+/obj/structure/window/reinforced,
+/obj/structure/shuttle/engine/heater{
dir = 1;
- icon_state = "diagonalWall3"
+ tag = "icon-heater (NORTH)"
},
-/area/shuttle/specops)
-"ajd" = (
-/obj/item/radio/beacon,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/shuttle/plating,
+/area/shuttle/arrival/station)
+"apq" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"aps" = (
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry/eastarrival)
-"aje" = (
+"apu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkyellow"
+ icon_state = "neutralfull"
},
-/area/engine/mechanic_workshop/hanger)
-"ajf" = (
-/obj/structure/closet/firecloset,
+/area/security/checkpoint2)
+"apw" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
-"ajg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/hallway/secondary/entry/eastarrival)
+"apy" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkyellow"
+/obj/machinery/camera{
+ c_tag = "Expedition EVA";
+ dir = 1;
+ network = list("SS13","Security");
+ pixel_x = -9
},
-/area/engine/mechanic_workshop/hanger)
-"ajh" = (
-/turf/simulated/floor/plasteel{
- icon_state = "darkyellow"
+/obj/machinery/light,
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/adv,
+/obj/item/storage/firstaid/o2{
+ pixel_x = 4;
+ pixel_y = 4
},
-/area/engine/mechanic_workshop/hanger)
-"ajj" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"apB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Exp_lockdown";
+ name = "Expedition Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"apF" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/alarm{
dir = 8;
- icon_state = "diagonalWall3"
+ pixel_x = 24
},
-/area/shuttle/vox)
-"ajk" = (
-/obj/structure/rack,
-/obj/item/storage/belt/military{
- pixel_x = -3;
- pixel_y = 3
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"apJ" = (
+/obj/structure/table/wood,
+/obj/item/paicard,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/item/storage/belt/military{
- pixel_x = -1;
- pixel_y = 1
+/area/security/vacantoffice)
+"apL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/storage/belt/military{
- pixel_x = 1;
- pixel_y = -1
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/obj/item/storage/belt/military{
- pixel_x = 3;
- pixel_y = -3
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"ajl" = (
-/obj/machinery/door/airlock/hatch{
- frequency = 1331;
- icon_state = "door_locked";
- id_tag = "vox_northwest_lock";
- locked = 1;
- req_access_txt = "152";
- req_one_access = null
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1331;
- master_tag = "vox_west_control";
- pixel_x = -29;
- req_one_access_txt = "152"
+/turf/simulated/floor/plasteel,
+/area/security/vacantoffice)
+"apM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"ajm" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 1;
- icon_state = "diagonalWall3"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/shuttle/vox)
-"ajn" = (
-/obj/machinery/door/airlock/hatch{
- frequency = 1331;
- icon_state = "door_locked";
- id_tag = "vox_northeast_lock";
- locked = 1;
- req_access_txt = "152";
- req_one_access = null
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/docking_port/mobile{
- dir = 2;
- dwidth = 2;
- height = 18;
- id = "skipjack";
- name = "Vox Skipjack";
- roundstart_move = "skipjack_away";
- width = 19
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 2;
- height = 18;
- id = "skipjack_ne";
- name = "northeast of SS13";
- width = 19
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"apN" = (
+/obj/machinery/light_switch{
+ pixel_x = -23
},
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1331;
- master_tag = "vox_east_control";
- pixel_x = 28;
- req_access_txt = "152"
+/obj/structure/table/reinforced,
+/obj/item/storage/belt/utility,
+/obj/item/multitool,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"apO" = (
+/obj/machinery/camera{
+ c_tag = "Customs Desk";
+ dir = 4;
+ pixel_y = -22
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"ajo" = (
-/obj/machinery/vending/wallmed{
- pixel_y = 30
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ pixel_x = -28
},
+/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "bluefull"
},
-/area/security/permabrig)
-"ajp" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8
+/area/bridge/checkpoint/north)
+"apR" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "bluecorner"
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops)
-"ajq" = (
-/obj/structure/window/reinforced{
+/area/hallway/secondary/entry/louge)
+"apT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/shuttle/engine/heater{
- dir = 8
- },
-/turf/unsimulated/floor,
-/area/shuttle/specops)
-"ajr" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the Special Ops team.";
- name = "Spec Ops Monitor";
- network = list("ERT");
- pixel_y = 30
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/computer/shuttle/ert,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/area/shuttle/specops)
-"ajs" = (
-/obj/machinery/computer/camera_advanced/shuttle_docker/ert,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/specops)
-"ajt" = (
-/obj/machinery/camera{
- c_tag = "CentComm Special Ops. Shuttle";
- network = list("ERT","CentComm")
- },
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/multitool,
-/obj/item/clothing/gloves/color/yellow,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/hallway/secondary/entry/louge)
+"apY" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/shuttle/specops)
-"aju" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"apZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/shuttle/specops)
-"ajv" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 32
+/obj/structure/table/reinforced,
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/machinery/door/window/brigdoor/southright{
+ dir = 8;
+ name = "Security Checkpoint";
+ pixel_x = -8;
+ req_access_txt = "1"
},
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
},
-/area/shuttle/specops)
-"ajw" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 32
+/area/security/checkpoint2)
+"aqa" = (
+/obj/machinery/light{
+ dir = 4
},
-/obj/machinery/light/spot{
+/obj/item/radio/intercom{
dir = 1;
- tag = "icon-tube1 (NORTH)"
+ pixel_x = 28
},
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/computer/security{
+ network = list("SS13","Research Outpost","Mining Outpost")
},
-/area/shuttle/specops)
-"ajx" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
+/area/security/checkpoint2)
+"aqc" = (
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"aqf" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "1-4"
},
+/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry/additional)
-"ajy" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"ajz" = (
-/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 4
+ dir = 9;
+ icon_state = "neutral"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
-"ajA" = (
-/obj/machinery/light/spot{
+/area/engine/mechanic_workshop/expedition)
+"aqg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- tag = "icon-tube1 (EAST)"
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 8
+ initialize_directions = 11
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
-"ajB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- on = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -3655,1794 +3992,1673 @@
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/secondary/entry/westarrival)
-"ajC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkyellow"
+/area/hallway/secondary/entry/louge)
+"aqh" = (
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "s_docking_airlock"
},
-/area/engine/mechanic_workshop/hanger)
-"ajD" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/toy/figure/assistant,
/turf/simulated/shuttle/floor,
/area/shuttle/arrival/station)
-"ajE" = (
-/turf/simulated/shuttle/wall{
- dir = 3;
- icon_state = "swall1"
+"aqq" = (
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"aqr" = (
+/obj/machinery/sleeper/syndie{
+ dir = 4
},
-/area/shuttle/arrival/station)
-"ajF" = (
-/obj/structure/table/reinforced,
-/obj/item/folder,
-/obj/item/storage/pill_bottle/dice,
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"ajG" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/item/radio/intercom/syndicate{
+ pixel_x = -28
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"ajH" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/area/engine/mechanic_workshop/hanger)
-"ajI" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/camera{
- c_tag = "Hangar Hardsuit Storage";
- dir = 4
+/area/shuttle/syndicate)
+"aqs" = (
+/obj/structure/closet/crate/medical,
+/obj/item/reagent_containers/glass/bottle/morphine,
+/obj/item/storage/box/beakers,
+/obj/item/robot_parts/l_arm,
+/obj/item/robot_parts/r_arm,
+/obj/item/clothing/mask/surgical,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/tank/anesthetic,
+/obj/item/clothing/mask/breath/medical,
+/obj/item/robot_parts/l_leg,
+/obj/item/robot_parts/r_leg,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/structure/dispenser/oxygen,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/shuttle/syndicate)
+"aqt" = (
+/obj/structure/table,
+/obj/item/reagent_containers/syringe/charcoal,
+/obj/item/reagent_containers/syringe/charcoal{
+ pixel_y = 2
},
-/area/engine/mechanic_workshop/hanger)
-"ajJ" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/item/reagent_containers/syringe/charcoal{
+ pixel_y = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/item/gun/syringe/syndicate,
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/adv,
+/obj/item/storage/box/syndie_kit/bonerepair,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/area/engine/mechanic_workshop/hanger)
-"ajK" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkyellow"
+/area/shuttle/syndicate)
+"aqu" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken7";
+ tag = "icon-wood-broken7"
},
-/area/engine/mechanic_workshop/hanger)
-"ajL" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/maintenance/abandonedbar)
+"aqx" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/item/flag/syndi{
+ layer = 5
},
-/area/engine/mechanic_workshop/hanger)
-"ajM" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/area/engine/mechanic_workshop/hanger)
-"ajN" = (
-/obj/machinery/computer/podtracker,
-/obj/machinery/door_control{
- id = "Pilotp";
- name = "Pilot Privacy Shutters Control";
- pixel_y = 24
+/area/shuttle/syndicate)
+"aqz" = (
+/obj/structure/table,
+/obj/item/multitool{
+ pixel_x = 11;
+ pixel_y = 5
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/item/assembly/prox_sensor{
+ pixel_x = 10;
+ pixel_y = -5
},
-/area/security/podbay)
-"ajO" = (
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "wall3"
+/obj/item/assembly/prox_sensor{
+ pixel_x = 10;
+ pixel_y = -5
},
-/area/shuttle/vox)
-"ajP" = (
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- pixel_x = 25
+/obj/item/assembly/signaler{
+ pixel_y = 11
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"ajQ" = (
-/obj/machinery/airlock_sensor{
- frequency = 1331;
- id_tag = "vox_west_sensor";
- pixel_x = 25;
- req_access_txt = "152"
+/obj/item/assembly/signaler{
+ pixel_y = 11
},
-/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+/obj/item/assembly/signaler{
+ pixel_y = 11
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"ajR" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "voxshutters";
- name = "Blast Shutters";
- opacity = 0
+/obj/item/assembly/infra{
+ pixel_x = -2;
+ pixel_y = -5
},
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- tag = "icon-window5_end"
+/obj/item/assembly/infra{
+ pixel_x = -2;
+ pixel_y = -5
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"ajS" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "voxshutters";
- name = "Blast Shutters";
- opacity = 0
+/obj/item/assembly/voice{
+ pixel_x = -10;
+ pixel_y = 12
},
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- tag = "icon-window5_mid"
+/obj/item/assembly/voice{
+ pixel_x = -10;
+ pixel_y = 12
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"ajT" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "voxshutters";
- name = "Blast Shutters";
- opacity = 0
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- dir = 1;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- tag = "icon-window5_end (NORTH)"
+/area/shuttle/syndicate)
+"aqA" = (
+/obj/machinery/optable,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"ajU" = (
-/obj/machinery/airlock_sensor{
- frequency = 1331;
- id_tag = "vox_east_sensor";
- pixel_x = -25;
- req_access_txt = "152"
+/area/shuttle/administration)
+"aqB" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A5";
+ location = "A4"
},
-/obj/machinery/light/spot{
+/turf/simulated/floor/plasteel{
dir = 8;
- tag = "icon-tube1 (WEST)"
+ icon_state = "neutralfull"
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"ajV" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/start{
- name = "Chef"
+/area/hallway/secondary/entry/westarrival)
+"aqF" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/engine/mechanic_workshop/hangar)
+"aqH" = (
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"aqK" = (
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 9;
+ icon_state = "blue"
},
-/area/crew_quarters/kitchen)
-"ajW" = (
-/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+/area/bridge/checkpoint/north)
+"aqM" = (
+/obj/structure/table/wood,
+/obj/item/camera_film,
+/obj/item/camera_film,
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"aqN" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/structure/chair/comfy/shuttle{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/bridge/checkpoint/north)
+"aqQ" = (
+/obj/structure/chair/comfy/brown{
dir = 4
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/area/shuttle/specops)
-"ajX" = (
-/obj/machinery/door/airlock/external{
- id_tag = "s_docking_airlock";
- name = "Shuttle Hatch";
- req_access_txt = "109"
+/area/hallway/secondary/entry/louge)
+"aqV" = (
+/obj/machinery/ai_status_display{
+ pixel_x = 32
},
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 2;
- height = 11;
- id = "specops";
- name = "ert shuttle";
- roundstart_move = "specops_away";
- width = 5
+/obj/machinery/computer/secure_data,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
},
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 2;
- height = 11;
- id = "specops_home";
- name = "port bay 2";
- width = 5
+/area/security/checkpoint2)
+"aqY" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A2";
+ location = "A1"
},
-/obj/structure/fans/tiny,
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops)
-"ajY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"ajZ" = (
+/area/hallway/secondary/entry/eastarrival)
+"ara" = (
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"arb" = (
+/obj/effect/decal/cleanable/blood/old,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"ark" = (
+/obj/machinery/chem_master,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"arl" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"arm" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry/additional)
-"aka" = (
+"arn" = (
+/obj/structure/lattice,
+/obj/structure/lattice,
+/turf/space,
+/turf/space,
+/area/space/nearstation)
+"aro" = (
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"ars" = (
/obj/machinery/light{
- dir = 1;
- in_use = 1
+ dir = 8
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"akb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/alarm{
dir = 4;
- initialize_directions = 11
+ pixel_x = -24
},
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atm{
- pixel_x = 32
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
+ },
+/area/medical/research/nhallway)
+"aru" = (
+/turf/simulated/wall/r_wall,
+/area/security/permabrig)
+"arw" = (
+/obj/machinery/door/airlock{
+ name = "Internal Affairs Office";
+ req_access_txt = "38"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"akf" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/engine/mechanic_workshop)
-"akh" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/lawoffice)
+"arA" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"arD" = (
+/obj/structure/filingcabinet,
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "blue"
+ },
+/area/bridge/checkpoint/north)
+"arF" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkyellow"
+ icon_state = "bluecorner"
},
-/area/engine/mechanic_workshop/hanger)
-"aki" = (
-/obj/effect/decal/warning_stripes/southwest,
+/area/hallway/secondary/entry/louge)
+"arG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/mechanic_workshop/hanger)
-"akj" = (
-/obj/machinery/computer/security{
- network = list("SS13","Research Outpost","Mining Outpost")
- },
-/obj/structure/window/reinforced{
- dir = 4
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/hallway/secondary/entry/louge)
+"arH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/light{
- dir = 1;
- in_use = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/podbay)
-"akk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "dark"
},
-/obj/effect/landmark/start{
- name = "Chef"
+/area/maintenance/gambling_den)
+"arL" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
},
+/area/hallway/secondary/entry/louge)
+"arM" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/kitchen)
-"akl" = (
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1331;
- id_tag = "vox_west_control";
- pixel_x = 24;
- req_access_txt = "152";
- tag_airpump = "vox_west_vent";
- tag_chamber_sensor = "vox_west_sensor";
- tag_exterior_door = "vox_northwest_lock";
- tag_interior_door = "vox_southwest_lock"
+/area/hallway/secondary/entry/additional)
+"arO" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"akm" = (
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
+/obj/structure/closet/secure_closet/security,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
},
-/area/shuttle/vox)
-"akn" = (
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"ako" = (
-/obj/machinery/computer/camera_advanced/shuttle_docker/vox,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"akp" = (
-/obj/machinery/computer/shuttle/vox,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"akq" = (
-/obj/structure/table,
-/obj/machinery/door_control{
- id = "voxshutters";
- name = "remote shutter control";
- req_access_txt = "152"
+/area/security/checkpoint2)
+"arP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"arR" = (
+/obj/machinery/door/window{
+ name = "Bar Door";
+ req_access_txt = "25"
},
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"akr" = (
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1331;
- id_tag = "vox_east_control";
- pixel_x = -24;
- req_access_txt = "152";
- tag_airpump = "vox_east_vent";
- tag_chamber_sensor = "vox_east_sensor";
- tag_exterior_door = "vox_northeast_lock";
- tag_interior_door = "vox_southeast_lock"
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 32
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"aks" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/landmark/start{
- name = "Security Officer"
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"arT" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
},
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "neutral"
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"arX" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
-/area/security/main)
-"akt" = (
-/obj/machinery/computer/communications,
-/obj/item/radio/intercom/specops{
- pixel_y = -28
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"asb" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/wall/r_wall,
+/area/engine/mechanic_workshop/expedition)
+"asd" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/shuttle/specops)
-"aku" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"asg" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/engine/mechanic_workshop/hangar)
+"asi" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/shuttle/specops)
-"akv" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "diagonalWall3"
+/area/hallway/secondary/entry/westarrival)
+"ask" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/area/shuttle/specops)
-"akw" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/structure/closet/walllocker/emerglocker/north{
- pixel_x = -32;
- pixel_y = 0
+/area/engine/mechanic_workshop/hangar)
+"asl" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1;
+ tag = "icon-propulsion (NORTH)"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"akx" = (
-/obj/structure/closet/wardrobe/black,
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"aky" = (
-/obj/structure/closet/wardrobe/grey,
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"akz" = (
-/obj/structure/closet/wardrobe/yellow,
-/turf/simulated/shuttle/floor,
+/turf/simulated/shuttle/plating,
/area/shuttle/arrival/station)
-"akA" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/secure/briefcase,
-/obj/structure/closet/walllocker/emerglocker/north{
- pixel_x = 32;
- pixel_y = 0
+"asm" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "wall3"
},
-/turf/simulated/shuttle/floor,
/area/shuttle/arrival/station)
-"akC" = (
-/obj/item/pod_parts/core,
-/obj/item/circuitboard/mecha/pod,
-/obj/item/clothing/glasses/welding{
- pixel_y = 12
+"asq" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/item/radio/intercom{
+ pixel_x = -30
},
-/obj/item/gps,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/table/reinforced,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"asr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "yellow"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/area/engine/mechanic_workshop)
-"akD" = (
-/obj/machinery/mecha_part_fabricator/spacepod,
-/obj/effect/decal/warning_stripes/yellow,
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/secondary/entry/eastarrival)
+"asD" = (
+/turf/simulated/wall/rust,
+/area/security/checkpoint2)
+"asE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/engine/mechanic_workshop)
-"akE" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "neutral"
+ },
+/area/engine/mechanic_workshop/expedition)
+"asF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/metal{
- amount = 50
+/obj/machinery/light/small,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/stack/sheet/glass{
- amount = 50
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"asH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/stack/rods{
- amount = 50
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/stack/sheet/mineral/plasma{
- amount = 30
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/item/clothing/gloves/color/yellow,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "yellow"
+ icon_state = "neutral"
},
-/area/engine/mechanic_workshop)
-"akF" = (
-/obj/effect/decal/warning_stripes/yellow,
+/area/engine/mechanic_workshop/expedition)
+"asP" = (
+/obj/machinery/computer/operating,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate)
+"asQ" = (
+/obj/structure/table,
+/obj/item/multitool,
+/obj/item/stack/sheet/glass{
+ amount = 10
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate)
+"asR" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/computer/rdconsole/mechanics,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/engine/mechanic_workshop)
-"akG" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 2
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxstarboard)
+"asT" = (
+/turf/space,
+/turf/simulated/wall,
+/area/hallway/secondary/entry/additional)
+"asU" = (
/obj/item/radio/intercom{
- pixel_y = 24
+ dir = 8;
+ pixel_x = -28
},
+/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "yellow"
+ icon_state = "dark"
},
-/area/engine/mechanic_workshop)
-"akH" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -25
+/area/crew_quarters/courtroom)
+"asW" = (
+/obj/structure/table/glass,
+/obj/item/circular_saw,
+/obj/item/surgicaldrill,
+/obj/item/clothing/gloves/color/latex/nitrile,
+/obj/structure/sink{
+ dir = 1
},
-/obj/machinery/camera{
- c_tag = "Hangar West South";
- dir = 4
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate)
+"asX" = (
+/obj/item/trash/liquidfood,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"asY" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkyellow"
+ icon_state = "red"
},
-/area/engine/mechanic_workshop/hanger)
-"akI" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/security/checkpoint2)
+"atc" = (
+/obj/structure/mirror{
+ pixel_y = -30
},
-/turf/simulated/floor/plating,
-/area/engine/mechanic_workshop/hanger)
-"akJ" = (
-/obj/machinery/door/airlock/hatch{
- frequency = 1331;
- icon_state = "door_locked";
- id_tag = "vox_southwest_lock";
- locked = 1;
- req_access_txt = "152";
- req_one_access = null
+/obj/structure/sink{
+ dir = 1
},
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1331;
- master_tag = "vox_west_control";
- pixel_x = 28;
- req_one_access_txt = "152"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"akK" = (
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- pixel_y = -30
- },
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
- },
-/area/bridge)
-"akL" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/vox)
-"akM" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/area/shuttle/syndicate)
+"atd" = (
+/turf/simulated/wall/r_wall,
+/area/engine/controlroom)
+"atl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"atm" = (
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"atq" = (
+/obj/structure/closet/wardrobe/mixed,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"atr" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
- icon_state = "open";
- id_tag = "voxshutters";
- name = "Blast Shutters";
- opacity = 0
+ external_pressure_bound = 100;
+ on = 1
},
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- dir = 8;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- tag = "icon-window5_end (WEST)"
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"atv" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Customs Desk";
+ req_access_txt = "19"
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"akN" = (
-/obj/structure/chair/comfy/shuttle{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"akO" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"akP" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- icon_state = "open";
- id_tag = "voxshutters";
- name = "Blast Shutters";
- opacity = 0
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- dir = 8;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- tag = "icon-window5_end (WEST)"
+/turf/simulated/floor/plasteel,
+/area/bridge/checkpoint/north)
+"atx" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"akQ" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "diagonalWall3"
+/area/hallway/secondary/entry/louge)
+"atA" = (
+/obj/machinery/vending/snack,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 26
},
-/area/shuttle/vox)
-"akR" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "lawyer";
- name = "Internal Affairs Privacy Shutters";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
-/turf/space,
-/area/lawoffice)
-"akS" = (
-/obj/machinery/door/airlock/hatch{
- frequency = 1331;
- icon_state = "door_locked";
- id_tag = "vox_southeast_lock";
- locked = 1;
- req_access_txt = "152";
- req_one_access = null
+/area/hallway/secondary/entry/louge)
+"atB" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1331;
- master_tag = "vox_east_control";
- pixel_x = -30;
- req_one_access_txt = "152"
+/area/hallway/secondary/entry/louge)
+"atE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"akT" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "burst_r"
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"atL" = (
+/obj/machinery/light{
+ dir = 1
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops)
-"akU" = (
-/obj/machinery/door/airlock/external{
- id_tag = "specops_home"
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/radio/intercom{
+ pixel_x = 30
},
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"akV" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA"
- },
-/turf/simulated/wall/r_wall,
-/area/engine/mechanic_workshop)
-"akW" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f5"
+/area/hallway/secondary/entry/westarrival)
+"atM" = (
+/obj/structure/sink{
+ dir = 1
},
-/area/shuttle/arrival/station)
-"akX" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall14"
+/obj/structure/mirror{
+ pixel_y = -30
},
-/area/shuttle/arrival/station)
-"akY" = (
-/obj/machinery/status_display,
-/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- tag = "icon-swall12"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/area/shuttle/arrival/station)
-"akZ" = (
-/obj/machinery/door/airlock/shuttle{
- id_tag = "s_docking_airlock"
+/area/shuttle/syndicate)
+"atO" = (
+/obj/machinery/suit_storage_unit/syndicate/secure,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"ala" = (
-/obj/machinery/ai_status_display,
-/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- tag = "icon-swall12"
+/area/shuttle/syndicate)
+"atR" = (
+/obj/machinery/vending/medical,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
},
-/area/shuttle/arrival/station)
-"alb" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f9"
+/area/shuttle/administration)
+"atV" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
},
-/area/shuttle/arrival/station)
-"ald" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/shuttle/administration)
+"atW" = (
+/obj/machinery/light{
+ dir = 8
},
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"aua" = (
+/obj/effect/decal/warning_stripes/north,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"ale" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"auc" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aud" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aue" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"auf" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"alf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/hallway/secondary/entry/additional)
+"auk" = (
+/obj/machinery/vending/hydronutrients,
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"aul" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/secondary/entry/westarrival)
+"aun" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/security/warden)
+"auo" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/obj/effect/landmark/start{
- name = "Mechanic"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "yellow"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"aup" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f6"
},
-/area/engine/mechanic_workshop)
-"alh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/shuttle/arrival/station)
+"auq" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12"
},
+/area/shuttle/arrival/station)
+"auw" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"ali" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Mechanic Workshop";
- req_access_txt = "70"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/wall,
+/area/maintenance/disposal)
+"aux" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"alj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"auy" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f10"
},
+/area/shuttle/arrival/station)
+"auz" = (
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkyellow"
- },
-/area/engine/mechanic_workshop/hanger)
-"alk" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northwestsouth,
-/obj/structure/rack{
- dir = 1;
- pixel_y = 5
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ icon_state = "neutralcorner"
},
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/area/hallway/secondary/entry/louge)
+"auB" = (
+/obj/machinery/door_control{
+ id = "hangar";
+ name = "Hangar Doors Control";
+ pixel_y = -8;
+ req_one_access_txt = "18;70;71;48"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/wall/r_wall,
+/area/engine/mechanic_workshop/hangar)
+"auE" = (
+/obj/machinery/light{
+ dir = 8
},
-/area/engine/mechanic_workshop/hanger)
-"all" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northeastsouth,
-/obj/structure/rack{
- dir = 1;
- pixel_y = 5
+/obj/machinery/camera{
+ c_tag = "Arrivals Fore Starboard";
+ dir = 4;
+ pixel_y = -22
},
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
},
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"auF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/mechanic_workshop/hanger)
-"alm" = (
+/area/engine/controlroom)
+"auG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkyellow"
- },
-/area/engine/mechanic_workshop/hanger)
-"aln" = (
-/obj/structure/bookcase,
-/obj/item/book/manual/sop_engineering,
-/obj/item/book/manual/sop_medical,
-/obj/item/book/manual/sop_security,
-/obj/item/book/manual/sop_service,
-/obj/item/book/manual/sop_supply,
-/obj/item/book/manual/sop_general,
-/obj/item/book/manual/sop_legal,
-/obj/item/book/manual/sop_command,
-/obj/item/book/manual/sop_science,
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/lawoffice)
-"alo" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
dir = 8;
- icon_state = "open";
- id_tag = "voxshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- tag = "icon-window5_end (EAST)"
- },
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"alp" = (
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"alq" = (
-/obj/item/clothing/head/collectable/petehat{
- desc = "It smells faintly of reptile.";
- name = "fancy leader hat"
- },
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"alr" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- icon_state = "open";
- id_tag = "voxshutters";
- name = "Blast Shutters";
- opacity = 0
+ icon_state = "caution"
},
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- tag = "icon-window5_end (EAST)"
+/area/engine/controlroom)
+"auH" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"als" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/vacuum{
- pixel_x = -32
+/obj/structure/table/reinforced,
+/obj/item/clothing/suit/radiation,
+/obj/item/clothing/head/radiation,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"alt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/vacuum{
- pixel_x = 32
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"alu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = 32
- },
-/obj/machinery/camera{
- c_tag = "Arrivals Port Aft";
+/area/engine/controlroom)
+"auI" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
dir = 8
},
-/obj/machinery/light{
+/obj/structure/window/plasmareinforced{
dir = 4
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"alv" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"alw" = (
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"alx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = -32
- },
-/obj/machinery/light{
- dir = 8
+/obj/structure/window/plasmareinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"aly" = (
+/turf/simulated/floor/plating,
+/area/engine/controlroom)
+"auJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/light{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/camera{
- c_tag = "Arrivals Center Aft";
- dir = 8
+/area/hallway/secondary/entry/eastarrival)
+"auS" = (
+/obj/machinery/door/airlock/external{
+ name = "Arrival Airlock"
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry/westarrival)
-"alz" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"alA" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+"auW" = (
+/obj/structure/particle_accelerator/particle_emitter/center{
+ dir = 8
},
-/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"alB" = (
-/obj/machinery/door/airlock/hatch{
- req_access_txt = "152"
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"auZ" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_l";
+ tag = "icon-propulsion_l"
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"alC" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f5"
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"avb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/area/shuttle/transport)
-"alD" = (
-/obj/structure/shuttle/window,
-/obj/structure/grille,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/shuttle/transport)
-"alE" = (
-/obj/machinery/door/airlock/shuttle{
- id_tag = "s_docking_airlock"
- },
-/obj/docking_port/mobile{
- dwidth = 2;
- height = 12;
- id = "ferry";
- name = "ferry shuttle";
- roundstart_move = "ferry_away";
- width = 5
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"avd" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Hangar";
+ req_one_access_txt = "18;70;71;48"
},
-/obj/docking_port/stationary{
- dwidth = 2;
- height = 12;
- id = "ferry_home";
- name = "port bay 3";
- width = 5
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
-"alF" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f9"
+/area/engine/mechanic_workshop/hangar)
+"avf" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ tag = "icon-pipe-j1 (EAST)"
},
-/area/shuttle/transport)
-"alG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = -32
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A39";
+ location = "A38"
},
-/obj/machinery/light{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/obj/machinery/camera{
- c_tag = "Arrivals Aft Starboard";
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"alH" = (
-/obj/structure/computerframe,
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"alI" = (
-/turf/simulated/wall,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"alJ" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"alK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/light{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"alL" = (
+/area/hallway/secondary/entry/louge)
+"avg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"alM" = (
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "vault"
- },
-/area/engine/mechanic_workshop)
-"alO" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/spacepoddoor{
- luminosity = 3
- },
-/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"alP" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkyellow"
- },
-/area/engine/mechanic_workshop/hanger)
-"alQ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"avi" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
},
-/area/engine/mechanic_workshop/hanger)
-"alS" = (
-/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/wall/r_wall,
+/area/engine/mechanic_workshop)
+"avj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/mechanic_workshop/hanger)
-"alT" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northeast,
+/area/engine/mechanic_workshop/hangar)
+"avk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/mechanic_workshop/hanger)
-"alU" = (
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"alV" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"alW" = (
-/obj/structure/lattice,
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"alX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"alY" = (
-/obj/machinery/door/airlock/external{
- id_tag = "ferry_home"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
-"alZ" = (
/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/fore{
name = "Hangar Maintenance"
})
-"ama" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+"avm" = (
+/obj/structure/disposalpipe/segment{
dir = 8;
- on = 1
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank/chem{
+ pixel_x = 32;
+ pixel_y = 32
},
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop)
+"avq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"amb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"amc" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "vault"
+/area/maintenance/disposal)
+"avr" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/engine/mechanic_workshop)
-"amd" = (
-/obj/machinery/door_control{
- id = "mechanicgate";
- name = "Mechanic Pod Door";
- pixel_x = 24;
- pixel_y = -24;
- req_access_txt = "70"
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"ame" = (
-/obj/structure/sign/botany,
-/turf/simulated/wall,
-/area/hydroponics/abandoned_garden)
-"amf" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkyellowcorners"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 4
},
-/area/engine/mechanic_workshop/hanger)
-"amg" = (
-/turf/simulated/wall/rust,
-/area/hydroponics/abandoned_garden)
-"amh" = (
-/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"amj" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 8;
- icon_state = "open";
- id_tag = "voxshutters";
- name = "Blast Shutters";
- opacity = 0
+/area/maintenance/disposal)
+"avt" = (
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- tag = "icon-window5 (EAST)"
+/area/engine/mechanic_workshop/hangar)
+"avw" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"avx" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"amk" = (
-/obj/structure/table/reinforced,
-/obj/item/pen,
-/obj/item/paper_bin/nanotrasen,
-/obj/item/flashlight/lamp,
-/obj/machinery/light_switch{
- pixel_x = 24;
- pixel_y = 25
+/obj/structure/sign/nosmoking_2{
+ pixel_y = -32
},
-/obj/item/storage/secure/safe{
- pixel_x = 32
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"avy" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -25
},
-/area/lawoffice)
-"aml" = (
-/obj/structure/window/reinforced{
- dir = 1
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"avB" = (
+/obj/machinery/atmospherics/trinary/filter{
+ dir = 4;
+ filter_type = "o2";
+ on = 1
},
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"amm" = (
-/obj/structure/window/reinforced{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/weed_extract,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"amn" = (
-/obj/structure/window/reinforced{
- dir = 1
+/area/engine/controlroom)
+"avC" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
},
-/obj/structure/table,
-/mob/living/simple_animal/bot/floorbot{
- on = 0
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"avD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"amo" = (
-/obj/structure/window/reinforced{
- dir = 1
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 32
},
-/obj/structure/table,
-/obj/item/broken_device,
-/obj/item/robot_parts/chest,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"amp" = (
-/obj/structure/window/reinforced{
- dir = 1
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"avE" = (
+/obj/machinery/chem_dispenser,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
},
-/obj/structure/table,
-/obj/item/pickaxe,
-/obj/item/storage/firstaid/toxin,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"amq" = (
-/obj/structure/window/reinforced{
- dir = 1
+/area/shuttle/administration)
+"avF" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/table,
-/obj/item/scalpel,
-/obj/item/stack/cable_coil,
-/obj/item/storage/firstaid/regular,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"amr" = (
-/obj/structure/window/reinforced{
- dir = 1
+/area/engine/mechanic_workshop/hangar)
+"avH" = (
+/obj/machinery/door_control{
+ desc = "A remote control-switch for the pod doors.";
+ id = "secpodbay";
+ name = "Pod Door Control";
+ pixel_x = 26;
+ pixel_y = -7
},
-/obj/structure/table,
-/obj/item/circular_saw,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"ams" = (
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/camera{
+ c_tag = "Hangar East North";
+ dir = 8
},
-/obj/machinery/optable,
-/obj/item/organ/internal/brain,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"amt" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- icon_state = "open";
- id_tag = "voxshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/shuttle/window{
+/turf/simulated/floor/plasteel{
dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- tag = "icon-window5 (EAST)"
+ icon_state = "darkyellow"
},
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"amu" = (
-/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"amv" = (
-/obj/structure/sign/vacuum{
- pixel_x = -32
+/area/engine/mechanic_workshop/hangar)
+"avL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"amw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/southeast,
+/area/toxins/xenobiology)
+"avS" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"avX" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall/rust,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"avZ" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/landmark/start{
+ name = "Cyborg"
+ },
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"amx" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
+/area/assembly/chargebay)
+"awb" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/public/glass,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry)
-"amy" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/sign/vacuum,
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry)
-"amz" = (
+/area/hallway/primary/fore)
+"awc" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/public/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"amA" = (
-/obj/effect/decal/warning_stripes/south,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"amB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"amC" = (
-/obj/machinery/firealarm{
- pixel_y = -28
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/fore)
+"awd" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/public/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "yellow"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/engine/mechanic_workshop)
-"amD" = (
+/area/hallway/primary/fore)
+"awg" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"amE" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = -30
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxstarboard)
+"awh" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "yellow"
+ icon_state = "grimy"
},
-/area/engine/mechanic_workshop)
-"amF" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/twohanded/required/kirbyplants,
-/obj/item/radio/intercom{
- pixel_y = -28
+/area/hallway/secondary/entry/louge)
+"awk" = (
+/obj/machinery/computer/scan_consolenew,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "yellow"
+/area/shuttle/administration)
+"awl" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
},
-/area/engine/mechanic_workshop)
-"amH" = (
-/obj/item/radio/intercom{
- pixel_y = -28
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkyellow"
+/area/shuttle/administration)
+"awo" = (
+/obj/structure/sign/vacuum{
+ pixel_x = -32
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"awr" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall7"
+ },
+/area/shuttle/arrival/station)
+"aws" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall11"
+ },
+/area/shuttle/arrival/station)
+"aww" = (
+/turf/simulated/wall,
+/area/maintenance/abandonedbar)
+"awA" = (
+/obj/structure/sign/vacuum{
+ pixel_x = -32
},
-/area/engine/mechanic_workshop/hanger)
-"amI" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"awC" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "darkyellow"
},
-/area/engine/mechanic_workshop/hanger)
-"amJ" = (
-/obj/item/storage/toolbox/syndicate,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"amK" = (
-/obj/item/skeleton/r_arm,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"amL" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/area/engine/mechanic_workshop/hangar)
+"awF" = (
+/obj/structure/chair/comfy/shuttle,
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"awH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
-"amM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
-"amN" = (
-/obj/structure/sign/pods,
-/turf/simulated/wall,
-/area/hallway/secondary/entry)
-"amO" = (
-/obj/machinery/hydroponics/soil,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/seeds/tea,
-/obj/machinery/light/small{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6
},
-/turf/simulated/floor/plasteel,
-/area/hydroponics/abandoned_garden)
-"amP" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"awI" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/engine/supermatter)
+"awJ" = (
+/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light/small{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"amQ" = (
-/obj/machinery/biogenerator,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/light/small{
- dir = 8
- },
/turf/simulated/floor/plasteel,
-/area/hydroponics/abandoned_garden)
-"amR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/engine/controlroom)
+"awM" = (
+/obj/structure/chair/comfy/shuttle,
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
},
-/obj/structure/dispenser/oxygen,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/machinery/door_control{
+ id = "adminshuttleshutters";
+ name = "Shutter control";
+ pixel_x = 35;
+ pixel_y = -5;
+ req_access = list(101)
+ },
+/obj/machinery/door_control{
+ id = "adminshuttleblast";
+ name = "Blast door control";
+ pixel_x = 35;
+ pixel_y = 5;
+ req_access = list(101)
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"awN" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
},
-/area/security/podbay)
-"amT" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"amV" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plating,
-/area/security/podbay)
-"amW" = (
-/obj/machinery/atmospherics/unary/tank/nitrogen{
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
dir = 1
},
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"amX" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"amY" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"amZ" = (
-/obj/structure/rack,
-/obj/item/rcd,
-/obj/item/rcd_ammo,
-/obj/item/rcd_ammo,
-/obj/item/rcd_ammo,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"ana" = (
-/obj/structure/rack,
-/obj/item/tank/nitrogen,
-/obj/item/tank/nitrogen,
-/obj/item/tank/nitrogen,
-/obj/item/tank/nitrogen,
-/obj/item/tank/nitrogen,
-/obj/item/tank/nitrogen,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"anb" = (
-/obj/structure/rack,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/suit/space/vox/carapace,
-/obj/item/clothing/head/helmet/space/vox/carapace,
-/obj/item/clothing/mask/breath,
-/obj/item/storage/backpack/duffel/syndie{
- slowdown = 1
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"anc" = (
-/obj/structure/rack,
-/obj/item/gun/dartgun/vox/raider,
-/obj/item/gun/dartgun/vox/medical,
-/obj/item/dart_cartridge,
-/obj/item/dart_cartridge,
-/obj/item/dart_cartridge,
-/obj/item/dart_cartridge,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"and" = (
-/obj/machinery/sleeper/upgraded{
+/obj/structure/window/plasmareinforced{
dir = 4
},
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"ane" = (
-/obj/machinery/bodyscanner,
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"ang" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/engine/controlroom)
+"awP" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
-"ani" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
+/area/hallway/secondary/entry/additional)
+"awQ" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/area/hallway/secondary/entry)
-"anj" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/shuttle/administration)
+"awU" = (
+/obj/structure/closet/wardrobe/black,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"awV" = (
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
-"ank" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A7";
- location = "A6"
+/area/hallway/secondary/entry/eastarrival)
+"awW" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"awX" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"awY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_one_access_txt = "18;70;71;48"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
+ icon_state = "dark"
},
-/area/hallway/secondary/entry)
-"anm" = (
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"axa" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"axc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random_spawners/blood_maybe,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"axd" = (
+/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 100;
on = 1
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"axf" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
},
-/area/hallway/secondary/entry)
-"ann" = (
-/obj/machinery/light{
- dir = 1
+/obj/machinery/computer/shuttle/ferry/request,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport)
+"axg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"ano" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+/area/hallway/secondary/entry/additional)
+"axh" = (
+/obj/structure/sign/vacuum{
+ pixel_x = -32
},
-/area/hallway/secondary/entry)
-"anp" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 100;
+ on = 1
},
-/obj/machinery/power/apc{
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"axj" = (
+/obj/machinery/firealarm{
dir = 1;
- name = "north bump";
- pixel_y = 24
- },
-/obj/machinery/camera{
- c_tag = "Arrivals Hall Center"
+ pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
+ icon_state = "neutralcorner"
},
-/area/hallway/secondary/entry)
-"anq" = (
+/area/hallway/secondary/entry/louge)
+"axm" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A6";
- location = "A5"
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 100;
+ on = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"anr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A4";
- location = "A3"
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/security/checkpoint2)
+"axq" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/item/hand_labeler,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"ans" = (
-/obj/machinery/light{
- dir = 1
+ icon_state = "brown"
},
-/obj/item/radio/intercom{
- pixel_y = 26
+/area/quartermaster/storage)
+"axu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/secondary/entry)
-"ant" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A1";
- location = "A40"
+/area/hallway/secondary/entry/westarrival)
+"axw" = (
+/obj/machinery/atmospherics/unary/tank/air{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/shuttle/wall{
+ icon_state = "wall3"
+ },
+/area/shuttle/syndicate)
+"axA" = (
+/obj/machinery/hologram/holopad,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/secondary/entry/additional)
+"axD" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/computer/rdconsole/mechanics,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "arrival"
+ icon_state = "yellow"
},
-/area/hallway/secondary/entry)
-"anu" = (
+/area/engine/mechanic_workshop)
+"axE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -5452,286 +5668,375 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ icon_state = "dark"
},
-/area/hallway/secondary/entry)
-"anv" = (
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "arrival"
+/area/engine/mechanic_workshop/hangar)
+"axG" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 4
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 1
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
-/area/hallway/secondary/entry)
-"anx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"any" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/window/eastright{
- name = "Hydroponics Delivery";
- req_access_txt = "35";
- tag = "icon-right"
+/area/engine/supermatter)
+"axM" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"axN" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/sign/vacuum{
+ pixel_x = 32
},
-/area/hydroponics)
-"anz" = (
-/obj/machinery/light/small{
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"axP" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 8
+ },
+/obj/structure/window/plasmareinforced{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/engine/controlroom)
+"axT" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Civilian"
+ },
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
-"anA" = (
-/obj/structure/closet/cardboard,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 26
+/area/hallway/secondary/entry/additional)
+"axU" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"ayb" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/regular,
+/obj/machinery/camera{
+ c_tag = "Arrivals Shuttle North";
+ dir = 6
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"aye" = (
+/obj/machinery/atmospherics/unary/outlet_injector/on{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"anB" = (
-/obj/machinery/light/small{
- dir = 1
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/engine/controlroom)
+"ayi" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"ayj" = (
+/obj/structure/sign/directions/engineering{
+ pixel_y = 8
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/sign/directions/science{
+ pixel_y = 1
+ },
+/obj/structure/sign/directions/evac{
+ pixel_y = -8
+ },
+/turf/simulated/wall,
+/area/janitor)
+"aym" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkred"
+ dir = 1
+ },
+/area/janitor)
+"ayo" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/area/security/podbay)
-"anC" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/hallway/secondary/entry/eastarrival)
+"ayr" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
- },
-/area/security/podbay)
-"anD" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1
+ icon_state = "4-8"
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/vox)
-"anE" = (
-/obj/structure/rack,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/suit/space/vox/medic,
-/obj/item/clothing/head/helmet/space/vox/medic,
-/obj/item/clothing/mask/breath,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"anF" = (
-/obj/structure/rack,
-/obj/item/pneumatic_cannon,
-/obj/item/harpoon,
-/obj/item/harpoon,
-/obj/item/harpoon,
-/obj/item/harpoon,
-/obj/item/tank/nitrogen,
-/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"anH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"ays" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/area/hallway/secondary/entry/commercial)
-"anI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
},
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Arrivals Second Port";
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"ayv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"ayw" = (
+/turf/space,
+/turf/simulated/floor/plasteel{
dir = 1;
- pixel_x = -5
+ icon_state = "darkyellow"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/engine/mechanic_workshop/hangar)
+"ayA" = (
+/turf/simulated/wall,
+/area/quartermaster/sorting)
+"ayB" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/westarrival)
+"ayD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"ayH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/hallway/secondary/entry)
-"anJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop)
+"ayI" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Mechanic Workshop";
+ req_access_txt = "70"
},
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/hallway/secondary/entry)
-"anK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop)
+"ayK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"anL" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hallway/secondary/entry/eastarrival)
+"ayQ" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id_tag = "hangar";
+ name = "Hangar Gate"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/hangar)
+"ayU" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass,
+/area/hallway/secondary/exit)
+"ayW" = (
+/obj/machinery/camera{
+ c_tag = "Fore Hallway North 2";
+ dir = 8
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/hallway/secondary/entry)
-"anM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/hallway/primary/fore)
+"ayZ" = (
+/obj/machinery/light{
dir = 1;
- initialize_directions = 11
+ in_use = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Hangar North";
+ dir = 6
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/light_switch{
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ dir = 1;
+ icon_state = "darkyellow"
},
-/area/hallway/secondary/entry)
-"anO" = (
+/area/engine/mechanic_workshop/hangar)
+"aza" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkyellow"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/area/engine/mechanic_workshop/hangar)
+"azf" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ dir = 1;
+ icon_state = "darkyellow"
},
-/area/hallway/secondary/entry)
-"anP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/engine/mechanic_workshop/hangar)
+"azi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ dir = 1
},
-/area/hallway/secondary/entry)
-"anQ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/area/janitor)
+"azj" = (
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"azk" = (
+/obj/effect/landmark/start{
+ name = "Janitor"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitecorner"
+ dir = 1
},
-/area/hallway/secondary/entry)
-"anR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/janitor)
+"azl" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/engine/mechanic_workshop/hangar)
+"azp" = (
+/obj/item/radio/intercom{
+ pixel_y = 24
},
/obj/structure/cable{
d1 = 4;
@@ -5739,1058 +6044,883 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry)
-"anS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ dir = 1;
+ icon_state = "darkyellow"
},
+/area/engine/mechanic_workshop/hangar)
+"azr" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry)
-"anT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 1;
+ icon_state = "darkyellowcorners"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/engine/mechanic_workshop/hangar)
+"azs" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry)
-"anU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/landmark{
- name = "lightsout"
+ icon_state = "brown"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/quartermaster/sorting)
+"azu" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/hologram/holopad,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry)
-"anV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ icon_state = "dark"
},
+/area/engine/mechanic_workshop/hangar)
+"azv" = (
+/obj/structure/closet/crate/internals,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"azw" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "bluecorner"
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"azx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ name = "Cargo Bay";
+ req_access_txt = "31"
},
-/area/hallway/secondary/entry)
-"anW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Arrivals Hall Starboard";
- dir = 1
- },
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"azy" = (
+/obj/machinery/hologram/holopad,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/vending/wallmed{
- pixel_y = -30
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"anX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
- },
-/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ icon_state = "neutralfull"
},
-/area/hallway/secondary/entry)
-"anY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/area/quartermaster/storage)
+"azz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"anZ" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -28
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/quartermaster/storage)
+"azA" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "arrival"
+ icon_state = "dark"
},
-/area/hallway/secondary/entry)
-"aoa" = (
+/area/engine/mechanic_workshop/hangar)
+"azB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"aod" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/unary/vent_pump,
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"aoe" = (
-/obj/structure/table,
-/obj/random/toolbox,
-/obj/machinery/newscaster{
- pixel_x = 32
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/quartermaster/storage)
+"azC" = (
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
-"aof" = (
-/obj/machinery/conveyor{
+/obj/structure/closet/crate,
+/obj/structure/disposalpipe/segment{
dir = 8;
- id = "garbage"
+ icon_state = "pipe-c"
},
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/warning_stripes/south,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"aog" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/area/quartermaster/storage)
+"azM" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"aoh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/shuttle/administration)
+"azP" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"azQ" = (
+/obj/machinery/power/solar{
+ name = "Aft Starboard Solar Panel"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"aoi" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
},
-/area/security/podbay)
-"aoj" = (
-/turf/space,
+/area/solar/auxstarboard)
+"azS" = (
/turf/simulated/shuttle/wall{
- dir = 8;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate_elite)
-"aok" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l"
+ icon_state = "swall3"
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/vox)
-"aol" = (
-/obj/structure/rack,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/suit/space/vox/pressure,
-/obj/item/clothing/head/helmet/space/vox/pressure,
-/obj/item/clothing/mask/breath,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"aom" = (
-/obj/structure/rack,
-/obj/item/reagent_containers/glass/beaker/thermite{
- pixel_x = -5;
- pixel_y = 5
+/area/shuttle/administration)
+"azW" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/admin{
+ name = "NTV Argos shuttle navigation computer"
},
-/obj/item/clothing/glasses/welding{
- pixel_x = 4;
- pixel_y = -4
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"aAa" = (
+/obj/machinery/computer/shuttle/admin{
+ name = "NTV Argos shuttle console"
},
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"aon" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"aAc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aoo" = (
-/turf/simulated/wall,
-/area/security/vacantoffice)
-"aop" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/security/vacantoffice)
-"aor" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aos" = (
-/turf/simulated/wall,
-/area/bridge/checkpoint/north)
-"aot" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
-/area/bridge/checkpoint/north)
-"aou" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "arrival"
+ icon_state = "neutralfull"
},
-/area/hallway/secondary/entry)
-"aov" = (
+/area/hallway/secondary/entry/additional)
+"aAn" = (
+/obj/machinery/computer/communications,
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"aAs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/secondary/entry)
-"aow" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/area/hallway/secondary/entry/additional)
+"aAt" = (
+/obj/structure/janitorialcart,
+/obj/machinery/light_switch{
+ pixel_y = -26
},
-/area/hallway/secondary/entry)
-"aox" = (
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "purple"
},
-/obj/machinery/camera{
- c_tag = "Security Pod Pilot Hangar";
- network = list("SS13","Security")
+/area/janitor)
+"aAv" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/item/crowbar,
+/obj/machinery/light,
+/obj/item/stack/sheet/glass{
+ amount = 20
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkred"
+/obj/machinery/computer/guestpass{
+ pixel_y = -32
},
-/area/security/podbay)
-"aoy" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ icon_state = "purple"
},
-/area/hallway/secondary/entry)
-"aoz" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
+/area/janitor)
+"aAB" = (
+/obj/structure/table/wood,
+/obj/machinery/status_display{
+ pixel_x = -32
},
+/obj/item/newspaper,
+/obj/item/newspaper,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ icon_state = "dark"
},
-/area/hallway/secondary/entry)
-"aoA" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/library)
+"aAC" = (
+/obj/machinery/light/small{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "brown"
},
-/area/hallway/secondary/entry)
-"aoB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "arrival"
+/area/quartermaster/sorting)
+"aAE" = (
+/obj/structure/cable,
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/starboard)
+"aAG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
},
-/area/hallway/secondary/entry)
-"aoC" = (
-/turf/simulated/wall,
-/area/security/checkpoint2)
-"aoD" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/security/checkpoint2)
-"aoE" = (
+/area/maintenance/asmaint2)
+"aAI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"aoF" = (
-/obj/machinery/vending/coffee,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ dir = 1;
+ icon_state = "yellow"
},
-/area/hallway/secondary/entry)
-"aoI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/engine/mechanic_workshop)
+"aAJ" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1;
+ tag = "icon-propulsion (NORTH)"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/shuttle/plating,
+/area/shuttle/transport)
+"aAK" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"aoL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/quartermaster/storage)
+"aAM" = (
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "s_docking_airlock"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport)
+"aAN" = (
+/obj/machinery/door/airlock/external{
+ locked = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"aoM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aAO" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/structure/sign/electricshock{
- pixel_y = -32
+/obj/structure/closet/walllocker/emerglocker/north,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/obj/machinery/door/airlock/engineering{
- icon_state = "door_closed";
- name = "Fore Starboard Solar Access";
- req_access_txt = "10"
+/area/hallway/primary/port)
+"aAQ" = (
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "s_docking_airlock"
},
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/shuttle/arrival/station)
+"aAW" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"aoN" = (
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/power/terminal{
- dir = 1
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK"
},
/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"aoO" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (NORTH)"
+/area/quartermaster/storage)
+"aAY" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/syndicate_elite)
-"aoP" = (
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 2;
- height = 18;
- id = "skipjack_ne";
- name = "northeast of SS13";
- width = 19
+/obj/machinery/light{
+ dir = 4
},
-/turf/space,
-/area/space)
-"aoQ" = (
-/obj/structure/rack,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/suit/space/vox/stealth,
-/obj/item/clothing/head/helmet/space/vox/stealth,
-/obj/item/clothing/mask/breath,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"aoR" = (
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/camera{
+ c_tag = "Mechanic Office";
+ dir = 8;
+ network = list("Engineering","SS13");
+ pixel_y = -1
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aoS" = (
-/obj/structure/table,
-/obj/random/toolbox,
-/obj/item/wrench,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aoT" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/pen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_state = "yellow"
},
-/area/security/vacantoffice)
-"aoU" = (
+/area/engine/mechanic_workshop)
+"aBb" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/item/reagent_containers/food/drinks/bottle/whiskey{
+ pixel_x = -2;
+ pixel_y = 13
},
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"aBc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/vacantoffice)
-"aoV" = (
-/obj/machinery/photocopier,
-/obj/machinery/light/small{
- dir = 1
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/area/hallway/secondary/entry/westarrival)
+"aBd" = (
+/obj/machinery/light{
+ dir = 8
},
-/area/security/vacantoffice)
-"aoW" = (
-/obj/structure/table/wood,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/vacantoffice)
-"aoX" = (
-/obj/structure/table/wood,
-/obj/item/storage/briefcase{
- pixel_x = 4;
- pixel_y = 4
+ dir = 8;
+ icon_state = "darkyellow"
},
+/area/engine/mechanic_workshop/hangar)
+"aBe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/security/vacantoffice)
-"aoY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/firealarm{
- pixel_y = 32
+/area/engine/mechanic_workshop/hangar)
+"aBh" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA"
+ },
+/turf/simulated/wall/r_wall,
+/area/engine/supermatter)
+"aBj" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"aBl" = (
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"aBm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"aoZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = 26
+/turf/space,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"apa" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
+/area/hallway/secondary/entry/additional)
+"aBn" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/security/vacantoffice)
-"apb" = (
-/obj/structure/table/wood,
-/obj/item/taperecorder,
-/obj/machinery/light/small{
- dir = 1
+/area/engine/mechanic_workshop/hangar)
+"aBp" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc2"
},
-/obj/machinery/status_display{
- pixel_y = 32
+/area/shuttle/administration)
+"aBq" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j2s";
+ name = "Library Junction";
+ sortType = 16
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/vacantoffice)
-"apc" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"aBr" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "construction access"
},
-/area/security/vacantoffice)
-"apd" = (
+/obj/structure/barricade/wooden,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"aBs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/security/vacantoffice)
-"ape" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/ids,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "blue"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/bridge/checkpoint/north)
-"apf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"aBt" = (
+/turf/simulated/wall,
+/area/maintenance/engrooms)
+"aBx" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "blue"
- },
-/area/bridge/checkpoint/north)
-"apg" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/firealarm{
- pixel_y = 32
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "blue"
+/area/janitor)
+"aBy" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atm{
+ pixel_x = -32
},
-/area/bridge/checkpoint/north)
-"aph" = (
-/obj/structure/sign/nosmoking_2,
-/turf/simulated/wall/r_wall,
-/area/security/podbay)
-"api" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "bluecorner"
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/commercial)
+"aBz" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"aBB" = (
+/obj/machinery/door/airlock/centcom{
+ id_tag = "adminshuttle";
+ name = "Medbay";
+ opacity = 1;
+ req_access_txt = "101"
},
-/area/hallway/secondary/entry/louge)
-"apj" = (
-/obj/machinery/ai_status_display,
-/turf/simulated/wall,
-/area/hallway/secondary/entry/louge)
-"apk" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/hallway/secondary/entry/louge)
-"apl" = (
-/obj/structure/filingcabinet,
-/obj/machinery/firealarm{
- pixel_y = 32
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
+/area/shuttle/administration)
+"aBF" = (
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
- },
-/area/security/checkpoint2)
-"apm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ dir = 4;
+ icon_state = "brown"
},
-/obj/structure/table/reinforced,
-/obj/item/crowbar,
-/obj/item/restraints/handcuffs,
-/turf/simulated/floor/plasteel{
+/area/quartermaster/sorting)
+"aBI" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "red"
+ name = "Quartermaster Junction";
+ sortType = 1
},
-/area/security/checkpoint2)
-"apn" = (
-/obj/structure/table/reinforced,
-/obj/item/book/manual/security_space_law,
-/obj/item/radio,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
- },
-/area/security/checkpoint2)
-"apo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/quartermaster/storage)
+"aBO" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"app" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/hallway/secondary/entry/westarrival)
+"aBS" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"apq" = (
+/area/quartermaster/storage)
+"aBU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 1
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/structure/cable{
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"aBV" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "engsm";
+ name = "Supermatter Blast Doors";
+ opacity = 0
+ },
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"apr" = (
+/area/engine/supermatter)
+"aBX" = (
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"aBZ" = (
+/obj/effect/decal/warning_stripes/west,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"aCb" = (
+/obj/structure/lattice,
+/turf/space,
+/turf/space,
+/area/space/nearstation)
+"aCc" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/auxstarboard)
+"aCe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/random/toolbox,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"aps" = (
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"aCf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"apu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/secondary/entry/louge)
-"apv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+/area/quartermaster/storage)
+"aCi" = (
+/obj/machinery/power/rad_collector,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/hallway/secondary/entry/louge)
-"apw" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
+/turf/simulated/floor/greengrid,
+/area/engine/supermatter)
+"aCo" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/abandonedbar)
-"apx" = (
-/obj/structure/table/wood,
-/obj/item/toy/figure/bartender,
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+"aCq" = (
+/obj/machinery/door/airlock/public/glass,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/area/maintenance/abandonedbar)
-"apy" = (
-/obj/machinery/vending/cigarette,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"apA" = (
+/area/shuttle/administration)
+"aCv" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "brown"
+ },
+/area/quartermaster/sorting)
+"aCx" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/research{
- name = "Research Division"
- })
-"apB" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- tag = "icon-propulsion (NORTH)"
+/area/quartermaster/sorting)
+"aCA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/syndicate_elite)
-"apC" = (
+/turf/simulated/wall,
+/area/quartermaster/sorting)
+"aCC" = (
/turf/space,
/turf/simulated/shuttle/wall{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate_elite)
-"apD" = (
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- tag = "icon-window5_end"
- },
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"apE" = (
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- dir = 1;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- tag = "icon-window5_end (NORTH)"
- },
-/turf/simulated/shuttle/plating/vox,
-/area/shuttle/vox)
-"apF" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
- },
-/area/solar/auxport)
-"apJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ icon_state = "swall12"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"apK" = (
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"apL" = (
-/obj/structure/chair/office/light{
+/area/shuttle/administration)
+"aCD" = (
+/obj/machinery/light{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/vacantoffice)
-"apM" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/vacantoffice)
-"apN" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/closet/firecloset,
+/obj/item/radio/intercom{
+ pixel_x = -30
},
-/area/security/vacantoffice)
-"apO" = (
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"aCE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/vacantoffice)
-"apP" = (
+/area/quartermaster/storage)
+"aCF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"apQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"apR" = (
-/obj/structure/table/wood,
-/obj/item/folder/blue{
- pixel_x = 5;
- pixel_y = 5
+ dir = 4
},
-/obj/item/folder/yellow,
-/obj/item/pen,
+/obj/machinery/light,
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/vacantoffice)
-"apS" = (
-/obj/structure/chair/office/light{
- dir = 8
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel{
- icon_state = "carpet"
+/area/quartermaster/storage)
+"aCG" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the Special Ops team.";
+ name = "Spec Ops Monitor";
+ network = list("ERT");
+ pixel_y = 30
},
-/area/security/vacantoffice)
-"apT" = (
-/obj/machinery/status_display{
- pixel_x = 32
+/obj/machinery/computer/shuttle/ert,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/structure/computerframe,
+/area/shuttle/specops)
+"aCU" = (
+/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
- icon_state = "carpet"
- },
-/area/security/vacantoffice)
-"apV" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ dir = 9;
+ icon_state = "vault"
},
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+/area/engine/mechanic_workshop)
+"aCV" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "engsm";
+ name = "Supermatter Blast Doors";
+ opacity = 0
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "blue"
+/obj/machinery/door/airlock/highsecurity{
+ heat_proof = 1;
+ name = "Supermatter Chamber";
+ req_one_access_txt = "24; 10"
},
-/area/bridge/checkpoint/north)
-"apW" = (
-/obj/machinery/light/small{
+/turf/simulated/floor/engine,
+/area/engine/supermatter)
+"aDc" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/obj/machinery/alarm{
+ pixel_y = 23
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"apX" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/engine/supermatter)
+"aDe" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aDf" = (
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop)
+"aDg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = 26
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "blue"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/bridge/checkpoint/north)
-"apY" = (
-/obj/structure/table,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/item/paper/deltainfo,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"aDh" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/medical/research{
- name = "Research Division"
- })
-"apZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aDj" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "bluecorner"
- },
-/area/hallway/secondary/entry/louge)
-"aqa" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/obj/machinery/camera{
- c_tag = "Arrivals Lobby"
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/area/hallway/secondary/entry/additional)
+"aDl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/hallway/secondary/entry/louge)
-"aqb" = (
-/obj/structure/chair/comfy/brown,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"aDm" = (
+/obj/structure/bed,
+/obj/item/bedsheet/orange,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"aDn" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop)
+"aDu" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/hallway/secondary/entry/louge)
-"aqc" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"aDx" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"aDA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/hallway/secondary/entry/louge)
-"aqd" = (
-/obj/structure/chair/comfy/brown,
-/obj/effect/landmark/start{
- name = "Civilian"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry/louge)
-"aqe" = (
-/obj/structure/table/wood,
-/obj/item/stack/tape_roll,
-/obj/item/stack/tape_roll{
- pixel_x = -4;
- pixel_y = 4
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/item/stack/tape_roll{
- pixel_x = 4;
- pixel_y = 4
+/area/hallway/secondary/entry/additional)
+"aDC" = (
+/obj/machinery/power/supermatter_shard{
+ anchored = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/turf/simulated/floor/engine,
+/area/engine/supermatter)
+"aDD" = (
+/obj/machinery/light{
+ dir = 8
},
-/area/hallway/secondary/entry/louge)
-"aqf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/hallway/secondary/entry/louge)
-"aqg" = (
+/area/hallway/primary/fore)
+"aDE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -6798,3854 +6928,3804 @@
dir = 8;
icon_state = "neutralfull"
},
-/area/bridge/checkpoint/north)
-"aqh" = (
-/obj/machinery/light_switch{
- pixel_x = -26;
- pixel_y = 26
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/checkpoint2)
-"aqi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hallway/secondary/entry/westarrival)
+"aDF" = (
+/obj/machinery/computer/shuttle/trade/sol,
+/turf/simulated/floor/carpet/black,
+/area/shuttle/trade/sol)
+"aDG" = (
+/obj/machinery/light{
+ dir = 1
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Customs Desk";
- req_access_txt = "19"
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
},
/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/north)
-"aqj" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/hallway/secondary/entry/westarrival)
+"aDI" = (
+/turf/simulated/wall,
+/area/janitor)
+"aDL" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/table/reinforced,
+/obj/item/hand_labeler,
+/obj/item/stamp/granted{
+ pixel_x = 3;
+ pixel_y = -4
},
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/obj/item/stamp/denied{
+ pixel_x = -4;
+ pixel_y = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+/obj/item/radio/intercom{
+ dir = 0;
+ pixel_x = -28
},
-/area/security/checkpoint2)
-"aqk" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/cigbutt/roach,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"aql" = (
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"aqq" = (
-/obj/item/broken_bottle,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"aqr" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"aqs" = (
-/obj/item/tank/emergency_oxygen,
-/obj/item/clothing/mask/breath,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"aqt" = (
-/obj/item/clothing/head/bearpelt,
-/obj/item/xenos_claw,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"aqu" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Checkpoint";
- req_access_txt = "1"
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel,
-/area/security/checkpoint2)
-"aqv" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/grown/corn,
-/obj/item/reagent_containers/food/snacks/grown/garlic,
-/obj/item/reagent_containers/food/snacks/grown/citrus/orange,
-/obj/item/reagent_containers/food/snacks/grown/cannabis{
- pixel_y = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "green"
- },
-/area/hydroponics/abandoned_garden)
-"aqx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/hydroponics/soil,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/seeds/sunflower,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"aqy" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/table,
-/obj/item/plant_analyzer,
-/obj/item/hatchet,
-/obj/item/cultivator,
-/obj/item/reagent_containers/glass/bucket,
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"aqz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "greencorner"
+/area/quartermaster/storage)
+"aDM" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall2";
+ tag = "icon-swall2"
},
-/area/hydroponics/abandoned_garden)
-"aqA" = (
-/obj/item/mounted/frame/apc_frame,
-/obj/machinery/light/small{
+/area/shuttle/arrival/station)
+"aDN" = (
+/obj/machinery/light{
dir = 1
},
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"aqB" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "green"
- },
-/area/hydroponics/abandoned_garden)
-"aqC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/seed_extractor,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"aqE" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/vending/snack,
/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
+/obj/item/radio/intercom{
+ pixel_x = -30
},
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel,
-/area/hydroponics/abandoned_garden)
-"aqF" = (
-/obj/structure/table,
-/obj/item/wrench,
-/obj/item/crowbar,
-/obj/item/reagent_containers/glass/bucket,
-/obj/machinery/light/small,
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "green"
+/area/hallway/secondary/entry/eastarrival)
+"aDO" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/area/hydroponics/abandoned_garden)
-"aqG" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "garbage"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/south,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"aqH" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 8
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aqI" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/vacantoffice)
-"aqJ" = (
-/obj/structure/chair/office/light{
+/area/hallway/secondary/entry/eastarrival)
+"aDP" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/carpet,
-/area/security/vacantoffice)
-"aqK" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/security/vacantoffice)
-"aqL" = (
-/obj/structure/table/wood,
-/turf/simulated/floor/carpet,
-/area/security/vacantoffice)
-"aqM" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/vacantoffice)
-"aqN" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"aqO" = (
-/obj/structure/table/wood,
-/obj/item/paicard,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/vacantoffice)
-"aqP" = (
-/turf/simulated/floor/plasteel{
- icon_state = "carpet"
- },
-/area/security/vacantoffice)
-"aqQ" = (
-/obj/machinery/ai_status_display{
- pixel_x = 32
- },
-/obj/structure/computerframe,
-/turf/simulated/floor/plasteel{
- icon_state = "carpet"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/vacantoffice)
-"aqR" = (
-/obj/machinery/ai_status_display{
- pixel_x = -32
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/computer/crew,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "blue"
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"aDR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/area/bridge/checkpoint/north)
-"aqS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/bridge/checkpoint/north)
-"aqT" = (
+/area/hallway/secondary/entry/eastarrival)
+"aDS" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f9"
+ },
+/area/shuttle/arrival/station)
+"aEb" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/table/reinforced,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
+/obj/item/storage/toolbox/mechanical,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "blue"
+ icon_state = "dark"
},
-/area/bridge/checkpoint/north)
-"aqU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
+/area/engine/mechanic_workshop/hangar)
+"aEc" = (
+/obj/machinery/door/poddoor/shutters{
dir = 8;
- icon_state = "bluecorner"
+ id_tag = "hangar";
+ name = "Hangar Gate"
},
-/area/hallway/secondary/entry/louge)
-"aqV" = (
-/obj/structure/chair/comfy/brown{
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry/louge)
-"aqW" = (
-/turf/simulated/floor/carpet,
-/area/hallway/secondary/entry/louge)
-"aqX" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/carpet,
-/area/hallway/secondary/entry/louge)
-"aqY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/chair/comfy/brown{
- dir = 8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/hangar)
+"aEd" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "engsm";
+ name = "Supermatter Blast Doors";
+ opacity = 0
},
-/area/hallway/secondary/entry/louge)
-"aqZ" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/hallway/secondary/entry/louge)
-"ara" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
+/turf/simulated/floor/plating,
+/area/engine/supermatter)
+"aEe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/checkpoint2)
-"arb" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/obj/structure/disposalpipe/segment{
dir = 8;
- on = 1
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/plasteel{
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"aEg" = (
+/obj/machinery/atmospherics/binary/pump{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/checkpoint2)
-"arc" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Checkpoint";
- dir = 8
- },
-/obj/machinery/status_display{
- pixel_x = 32
+ name = "Gas to Filter";
+ on = 1
},
-/obj/machinery/computer/prisoner,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aEh" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/toolbox/mechanical,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/checkpoint2)
-"ard" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/hydroponics/abandoned_garden)
-"arj" = (
-/obj/machinery/door/window{
- name = "Bar Door";
- req_access_txt = "25"
- },
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 32
+ icon_state = "white"
},
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"ark" = (
-/obj/structure/chair{
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"aEi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/clothing/mask/breath,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"arl" = (
-/obj/item/clothing/head/collectable/xenom,
-/obj/item/clothing/head/chicken,
-/obj/item/aiModule/syndicate,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"arm" = (
-/obj/item/stack/spacecash/c1000,
-/obj/item/stack/spacecash/c500,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"arn" = (
-/obj/item/stack/spacecash/c50,
-/obj/structure/chair/comfy/shuttle{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"aro" = (
-/obj/machinery/hydroponics/soil,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"art" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Pilotp";
- name = "Pilot Privacy Shutters"
- },
-/turf/simulated/floor/plating,
-/area/security/podbay)
-"arw" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/hydroponics/abandoned_garden)
-"ary" = (
-/obj/structure/table,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/reagent_containers/glass/bottle/nutrient/rh{
- pixel_x = 7;
- pixel_y = 6
- },
-/obj/item/reagent_containers/spray/pestspray,
-/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 5;
- pixel_y = 6
- },
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"arz" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 8
+ icon_state = "4-8"
},
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"arA" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "darkyellow"
},
-/area/security/vacantoffice)
-"arB" = (
-/turf/simulated/floor/carpet,
-/area/security/vacantoffice)
-"arC" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/turf/simulated/floor/carpet,
-/area/security/vacantoffice)
-"arD" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"arE" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/engine/mechanic_workshop/hangar)
+"aEj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"arF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"arG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"arH" = (
+/area/engine/mechanic_workshop/hangar)
+"aEl" = (
+/obj/effect/decal/warning_stripes/southwest,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"arI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "vault"
+ },
+/area/engine/mechanic_workshop)
+"aEm" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"aEn" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aEo" = (
+/obj/machinery/light/small{
dir = 8
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
-"arJ" = (
-/obj/machinery/camera{
- c_tag = "Customs Desk";
- dir = 4;
- pixel_y = -22
+"aEp" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/light{
- dir = 8
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "neutral"
},
-/obj/item/radio/intercom{
- pixel_x = -28
+/area/maintenance/engrooms)
+"aEr" = (
+/obj/machinery/door_control{
+ id = "mechanicgate";
+ name = "Mechanic Pod Door";
+ pixel_x = 24;
+ pixel_y = -24;
+ req_access_txt = "70"
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop)
+"aEs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
- icon_state = "bluefull"
+ dir = 1
},
-/area/bridge/checkpoint/north)
-"arK" = (
+/area/janitor)
+"aEt" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/poddoor/multi_tile/two_tile_ver{
+ id_tag = "mechanicgate"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop)
+"aEu" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/west,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/chair/office/dark{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/engine/mechanic_workshop/hangar)
+"aEw" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkyellowcorners"
},
-/area/bridge/checkpoint/north)
-"arL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/engine/mechanic_workshop/hangar)
+"aEx" = (
+/obj/machinery/power/solar{
+ name = "Aft Starboard Solar Panel"
},
-/obj/structure/table/reinforced,
-/obj/item/folder/blue,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "blue"
+/obj/structure/cable,
+/turf/space,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
},
-/area/bridge/checkpoint/north)
-"arM" = (
+/area/solar/auxstarboard)
+"aEy" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxstarboard)
+"aEB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/security/checkpoint2)
-"arN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"arO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/quartermaster/sorting)
+"aEF" = (
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"aEL" = (
+/obj/machinery/flasher{
+ id = "soltraderflash";
+ pixel_x = -30
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/hallway/secondary/entry/louge)
-"arP" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/shuttle/trade/sol)
+"aEM" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/carpet,
-/area/hallway/secondary/entry/louge)
-"arQ" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/storage)
+"aEN" = (
+/obj/structure/closet{
+ icon_closed = "grey";
+ icon_state = "grey";
+ name = "Donksoft gear"
+ },
+/obj/effect/spawner/lootdrop/trade_sol/donksoft{
+ loot = list(/obj/item/gun/projectile/automatic/c20r/toy = 50, /obj/item/gun/projectile/automatic/c20r/toy = 50, /obj/item/gun/projectile/automatic/c20r/toy = 50, /obj/item/gun/projectile/automatic/l6_saw/toy = 50, /obj/item/gun/projectile/automatic/l6_saw/toy = 50, /obj/item/gun/projectile/automatic/toy/pistol = 100, /obj/item/gun/projectile/automatic/toy/pistol = 100, /obj/item/gun/projectile/automatic/toy/pistol/enforcer = 50, /obj/item/gun/projectile/automatic/toy/pistol/enforcer = 50, /obj/item/gun/projectile/shotgun/toy = 50, /obj/item/gun/projectile/shotgun/toy = 50, /obj/item/gun/projectile/shotgun/toy/crossbow = 50, /obj/item/gun/projectile/shotgun/toy/crossbow = 50, /obj/item/gun/projectile/shotgun/toy/tommygun = 50, /obj/item/gun/projectile/shotgun/toy/tommygun = 50, /obj/item/gun/projectile/automatic/sniper_rifle/toy = 50, /obj/item/gun/projectile/automatic/sniper_rifle/toy = 50, /obj/item/ammo_box/foambox/sniper = 50, /obj/item/ammo_box/foambox = 50, /obj/item/ammo_box/foambox = 50, /obj/item/ammo_box/foambox = 50, /obj/item/ammo_box/foambox/riot = 50, /obj/item/ammo_box/foambox/riot = 50, /obj/item/ammo_box/foambox/sniper/riot = 50, /obj/item/twohanded/toy/chainsaw = 50, /obj/item/twohanded/dualsaber/toy = 50);
+ lootcount = 8;
+ name = "2. Donksoft gear"
+ },
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"aES" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"aEV" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxstarboard)
+"aEY" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/brigdoor/southright{
+/area/security/armoury)
+"aEZ" = (
+/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"aFa" = (
+/obj/machinery/light/spot{
dir = 8;
- name = "Customs Desk";
- req_access_txt = "19"
+ tag = "icon-tube1 (WEST)"
},
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/north)
-"arR" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/ert,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/specops)
+"aFc" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/machinery/door/window/brigdoor/southright{
+/turf/simulated/floor/plasteel{
dir = 8;
- name = "Security Checkpoint";
- pixel_x = -8;
- req_access_txt = "1"
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/engine/controlroom)
+"aFf" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light/small{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+/obj/item/clothing/glasses/welding,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aFg" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aFj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/remains/human,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
},
-/area/security/checkpoint2)
-"arS" = (
-/obj/structure/cable{
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"aFl" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aFo" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "Clown";
+ name = "Clown Privacy Shutters"
},
-/area/security/checkpoint2)
-"arT" = (
-/obj/machinery/light{
+/turf/simulated/floor/plating,
+/area/clownoffice)
+"aFq" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = 28
+/turf/simulated/wall,
+/area/crew_quarters/bar)
+"aFr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/computer/security{
- network = list("SS13","Research Outpost","Mining Outpost")
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/poster/random{
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/crew_quarters/bar)
+"aFt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/security/checkpoint2)
-"arU" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/podbay)
-"arW" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"arX" = (
-/obj/structure/table/reinforced,
-/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
+ icon_state = "grimy"
},
-/area/maintenance/abandonedbar)
-"arY" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"asa" = (
-/obj/structure/table/reinforced,
+/area/crew_quarters/bar)
+"aFu" = (
+/turf/simulated/wall,
+/area/hallway/secondary/entry/additional)
+"aFy" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/sign/vacuum,
/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"asb" = (
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = 28
+/area/hallway/secondary/entry)
+"aFA" = (
+/turf/simulated/wall,
+/area/crew_quarters/bar)
+"aFB" = (
+/obj/structure/chair{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/maintenance/abandonedbar)
-"asc" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aFF" = (
/obj/effect/spawner/window/reinforced,
+/turf/space,
/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"asd" = (
-/turf/simulated/wall,
-/area/maintenance/disposal)
-"ase" = (
-/obj/structure/AIcore,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"asf" = (
-/obj/item/stack/spacecash/c200,
-/obj/item/stack/spacecash/c50,
-/obj/machinery/light/spot,
-/obj/structure/chair/comfy/shuttle{
- dir = 1
+/area/hallway/secondary/entry/westarrival)
+"aFH" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Hatch";
+ req_access_txt = "109"
},
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"asg" = (
-/obj/item/storage/box/zipties,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"ash" = (
-/obj/machinery/power/solar{
- name = "Aft Starboard Solar Panel"
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 2;
+ height = 11;
+ id = "specops";
+ name = "ert shuttle";
+ roundstart_move = "specops_away";
+ width = 5
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 2;
+ height = 11;
+ id = "specops_home";
+ name = "port bay 2";
+ width = 5
},
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops)
+"aFI" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/stalkybush,
+/obj/structure/window/full/shuttle{
+ icon_state = "8"
},
-/area/solar/auxport)
-"asi" = (
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"ask" = (
+/area/shuttle/arrival/station)
+"aFL" = (
+/obj/structure/closet/crate/internals,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "greencorner"
+ icon_state = "neutralfull"
},
-/area/hydroponics/abandoned_garden)
-"asl" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/area/quartermaster/storage)
+"aFT" = (
+/obj/machinery/vending/cola,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"aFU" = (
+/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"aFV" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "yellow"
},
+/area/engine/mechanic_workshop)
+"aFY" = (
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/hydroponics/abandoned_garden)
-"asm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/remains/human,
+/area/hallway/secondary/entry/westarrival)
+"aGa" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/twohanded/required/kirbyplants,
+/obj/item/radio/intercom{
+ pixel_y = -28
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "greencorner"
+ dir = 6;
+ icon_state = "yellow"
},
-/area/hydroponics/abandoned_garden)
-"aso" = (
-/obj/machinery/hydroponics/soil,
+/area/engine/mechanic_workshop)
+"aGc" = (
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/light/small{
- dir = 4
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"aGh" = (
+/obj/structure/grille,
+/obj/structure/shuttle/window,
+/turf/simulated/shuttle/plating,
+/area/shuttle/transport)
+"aGk" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/window/eastright{
+ dir = 2;
+ name = "Clown Delivery";
+ req_access_txt = "46"
},
-/obj/item/seeds/wheat,
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"asp" = (
-/obj/machinery/light/small{
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "bar"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"asq" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"asr" = (
-/obj/structure/chair/office/light,
+/area/clownoffice)
+"aGl" = (
+/obj/structure/chair/comfy/shuttle,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport)
+"aGm" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/floodlight,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"aGn" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/camera{
+ c_tag = "Service Hall North";
+ dir = 4;
+ pixel_y = -22
+ },
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/area/security/vacantoffice)
-"ass" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"ast" = (
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"asu" = (
-/obj/structure/table/wood,
-/obj/item/camera_film,
-/obj/item/camera_film,
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"asw" = (
-/obj/machinery/status_display{
- pixel_x = -32
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "blue"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/bridge/checkpoint/north)
-"asx" = (
+/area/crew_quarters/serviceyard)
+"aGo" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/bridge/checkpoint/north)
-"asy" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "blue"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/bridge/checkpoint/north)
-"asz" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/bridge/checkpoint/north)
-"asA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "bluecorner"
+ icon_state = "grimy"
},
-/area/hallway/secondary/entry/louge)
-"asB" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/door/airlock/external{
- locked = 1
+/area/crew_quarters/bar)
+"aGp" = (
+/obj/effect/landmark/start{
+ name = "Bartender"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"asC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/hallway/secondary/entry/eastarrival)
-"asD" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 100;
- on = 1
+/area/crew_quarters/bar)
+"aGq" = (
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkyellow"
},
-/turf/simulated/floor/carpet,
-/area/hallway/secondary/entry/louge)
-"asE" = (
-/obj/structure/chair/comfy/brown{
+/area/engine/mechanic_workshop/hangar)
+"aGr" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
dir = 8
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/crew_quarters/bar)
+"aGt" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/hallway/secondary/entry/louge)
-"asF" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/checkpoint2)
-"asG" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/security/checkpoint2)
-"asH" = (
-/obj/machinery/ai_status_display{
- pixel_x = 32
+/area/crew_quarters/bar)
+"aGu" = (
+/obj/machinery/door_control{
+ id = "Bar";
+ name = "Bar Privacy Shutters Control";
+ pixel_x = -25;
+ req_access_txt = "28"
},
-/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "red"
- },
-/area/security/checkpoint2)
-"asI" = (
-/obj/structure/sign/poster/contraband/random{
- pixel_x = -32
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/machinery/light/small{
- dir = 8
+/area/crew_quarters/bar)
+"aGw" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"asL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"asM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"asN" = (
-/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+/area/crew_quarters/bar)
+"aGx" = (
+/obj/effect/landmark/start{
+ name = "Bartender"
},
-/area/maintenance/abandonedbar)
-"asP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/cobweb,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"asQ" = (
-/obj/machinery/conveyor{
+/turf/simulated/floor/plasteel{
dir = 5;
- id = "garbage"
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/effect/decal/warning_stripes/northwest,
-/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"asR" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "garbage"
+/area/crew_quarters/bar)
+"aGy" = (
+/obj/structure/chair{
+ dir = 4
},
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 32
+/obj/effect/landmark/start{
+ name = "Civilian"
},
-/obj/effect/decal/warning_stripes/south,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"asS" = (
-/obj/machinery/light/small{
- dir = 1
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aGz" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/southeast,
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/mass_driver{
- dir = 4;
- id_tag = "trash"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"asT" = (
-/obj/structure/fans/tiny,
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/door/poddoor{
- id_tag = "trash";
- name = "disposals blast door";
- protected = 0
+/area/hallway/primary/fore)
+"aGD" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"asV" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
+/obj/machinery/door/window{
+ dir = 2
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxport)
-"asW" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/delivery)
+"aGE" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window{
+ dir = 2
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plasteel,
+/area/quartermaster/delivery)
+"aGF" = (
+/obj/effect/landmark{
+ name = "HONKsquad"
+ },
+/obj/structure/chair/comfy/shuttle{
dir = 4
},
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"aGI" = (
+/obj/structure/chair/comfy/brown,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+ dir = 8;
+ icon_state = "brown"
},
-/area/hallway/secondary/entry/louge)
-"asX" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/quartermaster/storage)
+"aGJ" = (
+/obj/effect/landmark{
+ name = "HONKsquad"
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
},
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"aGL" = (
+/obj/item/radio/beacon,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"aGM" = (
+/turf/space,
+/turf/simulated/wall/r_wall,
+/area/engine/mechanic_workshop)
+"aGO" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "70"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"aGQ" = (
+/obj/machinery/door/airlock/external{
+ name = "Arrival Airlock"
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"aGZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel,
-/area/security/checkpoint2)
-"asY" = (
+/area/maintenance/turbine)
+"aHb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "bluecorner"
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/serviceyard)
+"aHc" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
+ },
+/area/engine/controlroom)
+"aHe" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/hallway/secondary/entry/louge)
-"asZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aHf" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
- },
-/area/hallway/secondary/entry/louge)
-"ata" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "dark"
},
+/area/engine/mechanic_workshop/hangar)
+"aHi" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/south,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"aHn" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/engine/mechanic_workshop/hangar)
+"aHo" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxport)
-"atb" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/light,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxport)
-"atc" = (
-/obj/structure/cable,
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxport)
-"atd" = (
-/turf/simulated/wall/r_wall,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"ate" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/hydroponics/soil,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/seeds/harebell,
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"ath" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+"aHs" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
-/turf/simulated/floor/plasteel,
-/area/hydroponics/abandoned_garden)
-"ati" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/structure/closet{
+ icon_closed = "red";
+ icon_state = "red";
+ name = "Sec. gear"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/effect/spawner/lootdrop/trade_sol/sec{
+ loot = list(/obj/item/clothing/gloves/combat = 50, /obj/item/grenade/clusterbuster/smoke = 50, /obj/item/clothing/suit/armor/laserproof = 50, /obj/item/clothing/suit/armor/vest/combat = 50, /obj/item/clothing/suit/armor/vest/combat = 50, /obj/item/clothing/suit/armor/vest/combat = 50, /obj/item/kitchen/knife/combat = 50, /obj/item/kitchen/knife/combat = 50, /obj/item/kitchen/knife/combat = 50, /obj/item/fluff/desolate_baton_kit = 50, /obj/item/storage/belt/military/assault = 50, /obj/item/storage/belt/military/assault = 50, /obj/item/storage/belt/military/assault = 50, /obj/item/clothing/mask/gas/sechailer/swat = 50, /obj/item/clothing/mask/gas/sechailer/swat = 50, /obj/item/clothing/suit/space/swat = 50, /obj/item/clothing/suit/space/swat = 50, /obj/item/clothing/glasses/thermal = 50, /obj/item/storage/box/enforcer_rubber = 50, /obj/item/storage/box/enforcer_rubber = 50, /obj/item/storage/box/enforcer_lethal = 50, /obj/item/melee/classic_baton/telescopic = 50, /obj/item/melee/classic_baton/telescopic = 50, /obj/item/gun/projectile/shotgun/automatic/combat = 50, /obj/item/gun/projectile/shotgun/automatic/combat = 50, /obj/item/gun/projectile/shotgun/automatic/combat = 50, /obj/item/gun/projectile/shotgun/automatic/dual_tube = 50, /obj/item/gun/projectile/shotgun/automatic/dual_tube = 50, /obj/item/storage/box/buck = 50, /obj/item/storage/box/buck = 50, /obj/item/storage/box/buck = 50, /obj/item/ammo_box/shotgun/buck = 50, /obj/item/ammo_box/shotgun/buck = 50, /obj/item/grenade/clusterbuster = 50, /obj/item/grenade/clusterbuster = 50, /obj/item/grenade/clusterbuster/teargas = 50, /obj/item/grenade/clusterbuster/n2o = 50);
+ lootcount = 10;
+ name = "1. Sec. gear"
},
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"aHu" = (
/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"atj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/area/maintenance/engrooms)
+"aHw" = (
+/obj/structure/table/reinforced,
+/obj/item/toy/figure/mime{
+ pixel_x = 6;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/plasteel,
-/area/hydroponics/abandoned_garden)
-"atl" = (
-/turf/simulated/floor/plasteel,
-/area/hydroponics/abandoned_garden)
-"atm" = (
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"atn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "green"
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
-/area/hydroponics/abandoned_garden)
-"atq" = (
-/obj/structure/table/wood,
-/obj/item/phone,
+/area/mimeoffice)
+"aHy" = (
/obj/machinery/newscaster{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ pixel_y = 32
},
-/area/security/vacantoffice)
-"atr" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1;
+ icon_state = "arrival"
},
-/area/security/vacantoffice)
-"ats" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/newscaster{
- pixel_y = -32
+/area/hallway/secondary/entry/commercial)
+"aHB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/vacantoffice)
-"att" = (
+/area/crew_quarters/bar)
+"aHD" = (
/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/machinery/camera{
- c_tag = "Journalist Office";
- dir = 1
+/obj/item/ammo_box/shotgun/beanbag,
+/obj/item/gun/projectile/revolver/doublebarrel,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/item/radio/intercom{
- pixel_y = -28
+/area/crew_quarters/bar)
+"aHE" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/crew_quarters/bar)
+"aHF" = (
+/obj/machinery/smartfridge/drinks{
+ opacity = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/door/window/eastleft{
+ dir = 1;
+ name = "Bar Desk";
+ req_access_txt = "25"
},
-/area/security/vacantoffice)
-"atu" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"atv" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"atw" = (
-/obj/structure/table/wood,
-/obj/item/camera,
-/obj/machinery/light/small,
-/obj/machinery/vending/wallmed{
- pixel_y = -30
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"atx" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"aty" = (
+/area/crew_quarters/bar)
+"aHG" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"atz" = (
-/obj/structure/closet/secure_closet,
-/obj/item/storage/secure/briefcase,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
+/area/engine/mechanic_workshop)
+"aHJ" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "blue"
+ dir = 8;
+ icon_state = "darkyellow"
},
-/area/bridge/checkpoint/north)
-"atA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/engine/mechanic_workshop/hangar)
+"aHM" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "burst_l"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "blue"
- },
-/area/bridge/checkpoint/north)
-"atB" = (
-/obj/structure/filingcabinet,
-/obj/machinery/newscaster{
- pixel_x = 32
- },
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "blue"
- },
-/area/bridge/checkpoint/north)
-"atC" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/structure/chair/comfy/brown{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Civilian"
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops)
+"aHO" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 100;
+ on = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry/louge)
-"atD" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/newscaster{
- pixel_y = -32
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/area/engine/mechanic_workshop/hangar)
+"aHS" = (
+/obj/machinery/computer/card,
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"aHT" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Hatch";
+ req_access_txt = "109"
},
-/area/hallway/secondary/entry/louge)
-"atE" = (
-/obj/structure/chair/comfy/brown{
- dir = 1
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
+/area/shuttle/specops)
+"aHZ" = (
+/obj/structure/table,
+/obj/item/storage/firstaid,
+/turf/simulated/floor/plasteel,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"aIh" = (
/obj/item/radio/intercom{
- pixel_y = -28
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -38
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_state = "darkyellow"
},
-/area/hallway/secondary/entry/louge)
-"atF" = (
-/obj/structure/table/wood,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
+/area/engine/mechanic_workshop/hangar)
+"aIl" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry/louge)
-"atG" = (
-/obj/machinery/newscaster/security_unit{
- pixel_x = -30
+ dir = 1;
+ icon_state = "arrival"
},
-/obj/structure/closet/wardrobe/red,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
+/area/hallway/secondary/entry)
+"aIo" = (
+/obj/structure/particle_accelerator/fuel_chamber{
+ dir = 8
},
-/area/security/checkpoint2)
-"atH" = (
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"aIr" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "red"
- },
-/area/security/checkpoint2)
-"atI" = (
-/obj/machinery/alarm{
dir = 8;
- pixel_x = 24
- },
-/obj/structure/closet/secure_closet/security,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/checkpoint2)
-"atJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"atK" = (
+/area/maintenance/turbine)
+"aIs" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxport)
-"atL" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
- icon_state = "1-8";
- tag = ""
+ icon_state = "1-8"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/maintenance/turbine)
+"aIt" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxport)
-"atM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Turbine Generator Access";
+ req_access_txt = "24"
},
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"atN" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/maintenance/turbine)
+"aIu" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aIz" = (
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/closet{
+ icon_closed = "green";
+ icon_state = "green";
+ name = "Service gear"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/spawner/lootdrop/trade_sol/serv{
+ loot = list(/obj/item/storage/box/beakers/bluespace = 50, /obj/item/storage/box/monkeycubes = 50, /obj/item/storage/box/monkeycubes = 50, /obj/item/storage/box/stockparts/deluxe = 50, /obj/item/storage/box/rndboards = 50, /obj/item/reagent_containers/spray/cleaner = 50, /obj/item/soap = 50, /obj/item/clothing/under/syndicate/combat = 50, /obj/item/soap/syndie = 50, /obj/item/lighter/zippo/gonzofist = 50, /obj/item/clothing/under/psyjump = 50, /obj/item/immortality_talisman = 50, /obj/item/t_scanner/adv_mining_scanner = 50, /obj/item/storage/box/bartender_rare_ingredients_kit = 50, /obj/item/storage/box/chef_rare_ingredients_kit = 50, /obj/item/grenade/clusterbuster/cleaner = 50, /obj/item/mining_voucher = 50, /obj/item/gun/energy/kinetic_accelerator/experimental = 50, /obj/item/borg/upgrade/modkit/aoe/turfs/andmobs = 50, /obj/item/seeds/random/labelled = 50, /obj/item/seeds/random/labelled = 50, /obj/item/seeds/random/labelled = 50, /obj/item/grenade/clusterbuster/honk = 50, /obj/item/bikehorn/golden = 50);
+ lootcount = 8;
+ name = "7. Service gear"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"atO" = (
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"aIB" = (
+/turf/space,
+/turf/simulated/shuttle/wall{
+ icon_state = "wall3"
+ },
+/area/shuttle/specops)
+"aIC" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/light/small{
- dir = 1
+/area/hallway/secondary/entry/additional)
+"aIE" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"atR" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aII" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"atS" = (
-/obj/structure/chair/wood/wings,
-/turf/simulated/floor/wood{
- icon_state = "wood-broken5";
- tag = "icon-wood-broken5"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/maintenance/abandonedbar)
-"atT" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/area/hallway/secondary/entry/westarrival)
+"aIJ" = (
+/obj/structure/closet/wardrobe/yellow,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"aIO" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry)
+"aIP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"atU" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxport)
-"atV" = (
-/obj/structure/chair/stool,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/driver_button{
- id_tag = "trash";
- name = "Trash Ejector Button";
- pixel_x = -26
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "caution"
},
-/obj/machinery/light/small{
- dir = 8
+/area/maintenance/engrooms)
+"aIU" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "gwall_f1"
},
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"atW" = (
+/area/shuttle/specops)
+"aIX" = (
+/obj/structure/closet/firecloset,
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
},
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"atX" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"atY" = (
-/obj/machinery/power/solar{
- name = "Aft Starboard Solar Panel"
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"aJa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
},
-/obj/structure/cable,
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/solar/auxport)
-"atZ" = (
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxport)
-"aua" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"aJb" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A7";
+ location = "A6"
},
-/area/engine/controlroom)
-"aub" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "dark"
- },
-/area/engine/controlroom)
-"auc" = (
-/obj/machinery/light/small{
- dir = 1
+ icon_state = "arrival"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/area/hallway/secondary/entry)
+"aJg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/controlroom)
-"aud" = (
-/obj/machinery/camera{
- c_tag = "Supermatter North";
- network = list("SS13","Engineering")
+/area/quartermaster/storage)
+"aJh" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"aJl" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Hatch";
+ req_access_txt = "31"
},
-/obj/structure/closet/walllocker/emerglocker/north,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"aJm" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/conveyor/east{
+ id = "QMLoad"
},
-/area/engine/controlroom)
-"aue" = (
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"aJr" = (
+/obj/machinery/light{
+ dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/item/radio/intercom{
+ pixel_x = 30
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 5;
+ icon_state = "red"
},
-/area/engine/controlroom)
-"auf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/security/brigstaff)
+"aJu" = (
+/obj/structure/rack,
+/obj/item/weldingtool,
+/obj/item/clothing/head/welding,
+/obj/item/assembly/voice,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"aJv" = (
+/obj/machinery/light{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
},
-/area/engine/controlroom)
-"aug" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"aJy" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "neutralfull"
},
/area/engine/controlroom)
-"auh" = (
-/obj/effect/decal/warning_stripes/yellow,
+"aJz" = (
/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -28
},
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"aui" = (
-/obj/structure/sink{
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aJC" = (
+/obj/machinery/light/small{
dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "green"
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/area/hydroponics/abandoned_garden)
-"auj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/tower,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"auk" = (
-/obj/structure/table,
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"aul" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/hydroponics/abandoned_garden)
-"aum" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"aun" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/grown/grapes,
-/obj/item/reagent_containers/food/snacks/grown/holymelon,
-/obj/item/reagent_containers/food/snacks/grown/cocoapod,
-/obj/item/reagent_containers/food/snacks/grown/chili,
/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"auo" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sink{
- dir = 1
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"aJF" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "green"
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aJK" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8;
+ name = "Gas to Thermo"
},
-/area/hydroponics/abandoned_garden)
-"aup" = (
-/obj/structure/table,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/firealarm{
+/turf/simulated/floor/plasteel,
+/area/maintenance/turbine)
+"aJL" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба служит для подачу горючей смеси в турбину для её работы";
dir = 4;
- pixel_x = 28
+ name = "Труба турбины"
},
-/obj/item/storage/bag/plants/portaseeder,
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"aus" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/conveyor_switch/oneway{
- dir = 8;
- id = "garbage"
+/turf/simulated/floor/plasteel,
+/area/maintenance/turbine)
+"aJN" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"aut" = (
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aJO" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes/southeast,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/door/airlock/maintenance{
- name = "Security Maintenance";
- req_access_txt = "63"
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aJQ" = (
+/obj/machinery/light/small,
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/security/checkpoint2)
-"auu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/engine/controlroom)
+"aJV" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"auv" = (
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "0-8"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aJW" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -22
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"auw" = (
-/turf/simulated/floor/wood{
- icon_state = "wood-broken";
- tag = "icon-wood-broken"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/radiation,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aJY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/maintenance/abandonedbar)
-"aux" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"auy" = (
-/obj/machinery/light/small{
- dir = 4;
- tag = "icon-bulb1 (EAST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/table/wood,
-/turf/simulated/floor/wood,
-/area/maintenance/abandonedbar)
-"auz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
},
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/area/atmos)
+"aKc" = (
+/obj/structure/closet{
+ icon_closed = "pink";
+ icon_state = "pink";
+ name = "Science gear"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"auA" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "garbage"
+/obj/effect/spawner/lootdrop/trade_sol/sci{
+ loot = list(/obj/item/mmi/robotic_brain = 50, /obj/item/assembly/signaler/anomaly = 50, /obj/item/mecha_parts/mecha_equipment/weapon/energy/xray = 50, /obj/item/mecha_parts/mecha_equipment/teleporter/precise = 50, /obj/item/autoimplanter = 50, /obj/item/paper/researchnotes = 50, /obj/item/paper/researchnotes = 50, /obj/item/slimepotion/fireproof = 50, /obj/item/slimepotion/speed = 50, /obj/item/slimepotion/enhancer = 50,/obj/item/slimepotion/slime/mutator = 50, /obj/item/slimepotion/transference = 50, /obj/item/slimepotion/slime/steroid = 50, /obj/item/slimepotion/slime/stabilizer = 50, /obj/item/slimepotion/slime/docility = 50, /obj/item/slime_extract/bluespace = 50, /obj/item/slime_extract/adamantine = 50, /obj/item/slime_extract/rainbow = 50, /obj/item/slime_extract/sepia = 50, /obj/item/assembly/signaler/anomaly/vortex = 50, /obj/item/assembly/signaler/anomaly/bluespace = 50, /obj/item/assembly/signaler/anomaly/flux = 50, /obj/item/assembly/signaler/anomaly/grav = 50, /obj/item/assembly/signaler/anomaly/pyro = 50);
+ lootcount = 8;
+ name = "6. Science gear"
},
-/obj/machinery/light/small{
- dir = 4
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"aKd" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/light,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"aKe" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "Mime";
+ name = "Mime Privacy Shutters"
},
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"auB" = (
-/obj/structure/disposalpipe/trunk{
- dir = 2
+/area/mimeoffice)
+"aKg" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/disposal/deliveryChute{
- dir = 4
+/turf/simulated/floor/plating,
+/area/engine/mechanic_workshop/hangar)
+"aKi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/window/reinforced{
- dir = 8
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkyellow"
},
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"auC" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "garbage"
+/area/engine/mechanic_workshop/hangar)
+"aKj" = (
+/obj/machinery/door/poddoor/multi_tile/four_tile_ver{
+ id_tag = "secpodbay"
},
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 1;
- icon_state = "left";
- name = "Danger: Conveyor Access";
- req_access_txt = "12"
+/obj/structure/spacepoddoor{
+ luminosity = 3
},
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"auD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 32
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"auE" = (
-/turf/simulated/wall/rust,
-/area/maintenance/disposal)
-"auF" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/engine/mechanic_workshop/hangar)
+"aKm" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "gwall_f3"
},
-/obj/machinery/power/emitter,
-/turf/simulated/floor/greengrid,
-/area/engine/controlroom)
-"auG" = (
-/obj/structure/sign/electricshock,
-/turf/simulated/wall/r_wall,
-/area/engine/controlroom)
-"auH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/greengrid,
-/area/engine/controlroom)
-"auI" = (
-/turf/simulated/floor/greengrid,
-/area/engine/controlroom)
-"auJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/greengrid,
-/area/engine/controlroom)
-"auK" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/engine/controlroom)
-"auL" = (
-/turf/simulated/wall,
-/area/hydroponics/abandoned_garden)
-"auM" = (
-/obj/machinery/door/airlock/maintenance{
- name = "construction access"
+/area/shuttle/specops)
+"aKo" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба служит для подачу горючей смеси в турбину для её работы";
+ dir = 4;
+ name = "Труба турбины"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/meter,
+/turf/simulated/floor/plasteel,
+/area/maintenance/turbine)
+"aKq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"auN" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"auO" = (
-/obj/structure/sign/botany,
-/turf/simulated/wall/rust,
-/area/hydroponics/abandoned_garden)
-"auP" = (
-/obj/machinery/light/small{
- dir = 1
+/area/maintenance/asmaint2)
+"aKt" = (
+/obj/machinery/door_control{
+ desc = "A remote control-switch for the pod doors.";
+ id = "secpodbay";
+ name = "Pod Door Control";
+ pixel_x = -9;
+ pixel_y = -23
},
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/obj/machinery/light/small,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"aKx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"auS" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "2-4"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxstarboard)
+"aKy" = (
+/obj/structure/table,
+/obj/item/storage/fancy/donut_box,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"auV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/light{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"auW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/light/small{
- dir = 1
+/area/crew_quarters/courtroom)
+"aKD" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3";
+ tag = "icon-swall3"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"auX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/shuttle/supply)
+"aKF" = (
+/obj/machinery/conveyor/northwest{
+ id = "QMLoad2"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"aKI" = (
+/obj/machinery/status_display,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12";
+ tag = "icon-swall12"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"auY" = (
+/area/shuttle/arrival/station)
+"aKK" = (
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/poster/official/obey{
- pixel_y = 32
+ icon_state = "0-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxstarboard)
+"aKL" = (
+/obj/machinery/light{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"auZ" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/window/reinforced{
- dir = 4
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
-/obj/machinery/mineral/stacking_machine{
- input_dir = 2;
- stack_amt = 10
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"aKM" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12";
+ tag = "icon-swall12"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/area/shuttle/arrival/station)
+"aKO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"avb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/hallway/secondary/entry/commercial)
+"aKS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/hallway/secondary/entry/louge)
-"avc" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/obj/machinery/light,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
-/area/hallway/secondary/entry/louge)
-"avd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "arrival"
},
-/area/security/podbay)
-"avf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/hallway/secondary/entry/commercial)
+"aKT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- name = "Checkpoint Maintenance";
- req_access_txt = "19"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/north)
-"avg" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
+/obj/machinery/firealarm{
dir = 1;
- icon_state = "neutralcorner"
+ pixel_y = -28
},
-/area/hallway/secondary/entry/louge)
-"avh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "arrival"
},
-/area/hallway/secondary/entry/louge)
-"avi" = (
-/obj/structure/closet/firecloset,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/cobweb,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"avj" = (
+/area/hallway/secondary/entry)
+"aKW" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"avk" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/obj/item/radio/intercom{
+ pixel_y = 28
},
-/obj/machinery/light/small{
- dir = 1
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 100;
+ on = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"avm" = (
-/turf/simulated/wall/r_wall,
-/area/engine/mechanic_workshop)
-"avn" = (
-/obj/structure/chair/stool/bar,
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/maintenance/abandonedbar)
-"avp" = (
-/obj/structure/table/wood,
-/obj/item/storage/pill_bottle/random_drug_bottle,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"avq" = (
-/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
- },
-/area/maintenance/abandonedbar)
-"avr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/wood/wings{
- dir = 1;
- tag = "icon-wooden_chair_wings (NORTH)"
+/area/maintenance/auxsolarstarboard)
+"aKY" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Turbine Generator Access";
+ req_access_txt = "32"
},
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба служит для подачу горючей смеси в турбину для её работы";
+ name = "Труба турбины"
},
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"avs" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/maintenance/disposal)
-"avt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"avu" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/south,
-/obj/effect/decal/warning_stripes/northeastcorner,
-/obj/machinery/conveyor{
- dir = 9;
- id = "garbage"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"avv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/mineral/stacking_unit_console{
- machinedir = 8;
- pixel_x = 32
- },
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"avw" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "garbage"
- },
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"avx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"aLd" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Atmospherics Access";
+ req_one_access_txt = "24"
},
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/glasses/meson,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"aLe" = (
+/obj/structure/cable,
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxstarboard)
+"aLf" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"avy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/effect/decal/warning_stripes/northwest,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/item/radio/intercom{
- pixel_y = 24
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxstarboard)
+"aLg" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f6";
+ tag = "icon-swall_f6"
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"avz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/shuttle/trade/sol)
+"aLh" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall14"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/shuttle/trade/sol)
+"aLi" = (
+/obj/structure/window/full/shuttle,
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "trader_privacy";
+ name = "Privacy Shutters";
+ opacity = 0
},
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/shuttle/plating,
+/area/shuttle/trade/sol)
+"aLl" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба служит для подачу горючей смеси в турбину для её работы";
+ dir = 10;
+ name = "Труба турбины"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"avA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/maintenance/turbine)
+"aLm" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f10"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/area/shuttle/trade/sol)
+"aLn" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8
},
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops)
+"aLo" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"avB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"avC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/engine/mechanic_workshop)
+"aLp" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/light/small{
- dir = 1
+/obj/structure/shuttle/engine/heater{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"avD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/warning_stripes/northeast,
+/turf/unsimulated/floor,
+/area/shuttle/specops)
+"aLr" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"avE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/maintenance/turbine)
+"aLs" = (
+/obj/item/radio/intercom/specops{
+ pixel_y = 28
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "caution"
+/obj/structure/table,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/multitool,
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/area/engine/controlroom)
-"avF" = (
+/area/shuttle/specops)
+"aLu" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/effect/decal/warning_stripes,
-/turf/simulated/floor/engine,
-/area/engine/controlroom)
-"avG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "caution"
+/obj/effect/landmark/start{
+ name = "Mechanic"
},
-/area/engine/controlroom)
-"avH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"avI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"avJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"avK" = (
-/obj/structure/table/reinforced,
-/obj/item/tank/emergency_oxygen/engi,
-/obj/item/tank/emergency_oxygen/engi,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"avL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "yellow"
},
+/area/engine/mechanic_workshop)
+"aLx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"avM" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"avN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "solar_chapel_airlock";
+ name = "interior access button";
+ pixel_x = 25;
+ pixel_y = 25;
+ req_access_txt = "13"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"aLy" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Special Ops. Shuttle";
+ network = list("ERT","CentComm")
+ },
+/obj/machinery/recharge_station/ert,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/specops)
+"aLz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance{
+ name = "Auxiliary Storage";
+ req_one_access_txt = "65;12"
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
-"avO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+"aLB" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 32
+ },
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/structure/chair/comfy/shuttle{
dir = 4
},
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/specops)
+"aLC" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -25
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
+/area/crew_quarters/serviceyard)
+"aLE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"avP" = (
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkyellow"
},
+/area/engine/mechanic_workshop/hangar)
+"aLG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"avQ" = (
-/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"aLH" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/northwestsouth,
+/obj/structure/rack{
+ dir = 1;
+ pixel_y = 5
+ },
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"avS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+ dir = 4;
+ initialize_directions = 11
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"avV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/area/engine/mechanic_workshop/hangar)
+"aLI" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkyellow"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"avW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/engine/mechanic_workshop/hangar)
+"aLJ" = (
+/obj/item/flag/species/human,
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"aLM" = (
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/hallway/primary/central/sw)
+"aLQ" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/maintenance/turbine)
+"aLV" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"awa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"aLW" = (
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/chair/comfy/shuttle,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport)
+"aLX" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "soltradeship_south";
+ name = "Security Doors";
+ opacity = 0
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"awb" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/door/airlock/shuttle/glass{
+ id_tag = "soltrader_south";
+ name = "trader shuttle airlock";
+ req_access_txt = "160";
+ security_level = 6
+ },
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"aLZ" = (
+/obj/machinery/light/spot{
dir = 4;
- icon_state = "pipe-c"
+ tag = "icon-tube1 (EAST)"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/structure/chair/comfy/shuttle,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport)
+"aMf" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aMg" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/camera{
+ c_tag = "Arrivals Shuttle South West";
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"awc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"aMl" = (
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/commercial)
+"aMm" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/toy/figure/assistant,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"aMn" = (
+/turf/simulated/shuttle/wall{
+ dir = 3;
+ icon_state = "swall1"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"awd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/shuttle/arrival/station)
+"aMp" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/light{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Arrivals Center Aft";
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"awf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aMr" = (
+/obj/structure/table/reinforced,
+/obj/item/folder,
+/obj/item/storage/pill_bottle/dice,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"aMt" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/shuttle/arrival/station)
+"aMu" = (
+/obj/structure/chair/comfy/shuttle,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"aMv" = (
+/obj/structure/table/wood,
+/obj/item/taperecorder,
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/status_display{
+ pixel_y = 32
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"awg" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ icon_state = "grimy"
},
-/area/quartermaster/storage)
-"awh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+/area/security/vacantoffice)
+"aMz" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/hallway/secondary/entry/louge)
+"aMB" = (
+/obj/structure/rack{
+ dir = 1
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/item/extinguisher,
+/obj/item/storage/belt/utility,
+/obj/item/storage/toolbox/electrical,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/radio{
+ pixel_y = 6
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/light{
+ dir = 8
},
+/obj/machinery/light_switch{
+ pixel_x = -23
+ },
+/obj/item/weldingtool/largetank,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "yellow"
},
-/area/hallway/secondary/entry/louge)
-"awi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/engine/mechanic_workshop)
+"aMC" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop)
+"aMD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkred"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/area/security/securearmoury)
+"aMF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop)
+"aMI" = (
+/obj/machinery/status_display{
+ pixel_y = 32
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/light/small{
+ dir = 1
},
+/obj/machinery/computer/atmoscontrol,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "dark"
},
-/area/hallway/secondary/entry/louge)
-"awj" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/area/atmos)
+"aMK" = (
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A12";
- location = "A11"
+/area/atmos)
+"aMM" = (
+/obj/machinery/power/solar{
+ name = "Aft Starboard Solar Panel"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
},
-/area/hallway/secondary/entry/louge)
-"awk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/solar/auxstarboard)
+"aMO" = (
+/obj/structure/sign/vacuum,
+/turf/simulated/wall/r_wall,
+/area/maintenance/turbine)
+"aMP" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/camera{
+ c_tag = "Arrivals Shuttle South East";
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/requests_console{
+ department = "Arrival Shuttle";
+ name = "Arrival Shuttle Requests Console";
+ pixel_x = 32
},
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"aMT" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "redcorner"
},
/area/hallway/secondary/entry/louge)
-"awl" = (
-/obj/item/radio/intercom,
+"aMW" = (
/turf/simulated/wall,
-/area/hallway/secondary/entry/commercial)
-"awm" = (
-/obj/structure/disposalpipe/segment{
+/area/maintenance/gambling_den)
+"aMX" = (
+/obj/structure/chair/office/dark{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"aMY" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"aNb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"aNc" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atm{
+ pixel_x = 32
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"aNd" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/camera{
+ c_tag = "Hangar Hardsuit Storage";
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/hologram/holopad,
+/obj/structure/dispenser/oxygen,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/hallway/secondary/entry/louge)
-"awn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/engine/mechanic_workshop/hangar)
+"aNe" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/item/radio/intercom{
+ pixel_x = 30
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"aNf" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/engine/mechanic_workshop/hangar)
+"aNg" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/hallway/secondary/entry/louge)
-"awo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/disposalpipe/junction{
- dir = 8;
- tag = "icon-pipe-j1 (EAST)"
+/area/engine/mechanic_workshop/hangar)
+"aNj" = (
+/obj/structure/plasticflaps,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/delivery)
+"aNk" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"aNl" = (
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 26
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A39";
- location = "A38"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "blue"
},
+/area/bridge/checkpoint/north)
+"aNm" = (
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/secondary/entry/louge)
-"awp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/quartermaster/office)
+"aNp" = (
+/obj/structure/chair/comfy/brown,
+/obj/effect/landmark/start{
+ name = "Civilian"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
/area/hallway/secondary/entry/louge)
-"awq" = (
-/obj/structure/disposalpipe/segment{
+"aNq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"awr" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hallway/secondary/entry/louge)
+"aNr" = (
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding4"
+ },
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"aws" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "asteroid";
+ tag = "icon-asteroid (NORTH)"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/hydroponics)
+"aNu" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Checkpoint";
+ req_access_txt = "1"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"awt" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance{
- name = "construction access"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/barricade/wooden,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"awu" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plasteel,
+/area/security/checkpoint2)
+"aNv" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken3";
+ tag = "icon-wood-broken3"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/area/maintenance/abandonedbar)
+"aNw" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/item/radio/intercom{
+ pixel_x = 30
},
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aNx" = (
+/obj/structure/computerframe,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"aNy" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/northwest,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"aww" = (
-/turf/simulated/wall,
-/area/maintenance/abandonedbar)
-"awx" = (
-/turf/simulated/wall/rust,
-/area/security/checkpoint2)
-"awy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"awz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/engine/mechanic_workshop/hangar)
+"aNz" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "burst_l"
},
-/turf/simulated/wall,
-/area/maintenance/disposal)
-"awA" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "garbage"
- },
-/obj/effect/decal/warning_stripes/west,
+/turf/simulated/shuttle/plating,
+/area/shuttle/trade/sol)
+"aNA" = (
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"awB" = (
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"aNB" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/computer/podtracker,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "yellow"
},
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"awC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/engine/mechanic_workshop)
+"aNE" = (
+/obj/machinery/door/airlock/shuttle/glass{
+ name = "trader shuttle airlock";
+ req_access_txt = "160";
+ security_level = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"aNF" = (
+/obj/structure/table/wood,
+/turf/simulated/floor/carpet,
+/area/security/vacantoffice)
+"aNG" = (
/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"awD" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/conveyor{
- dir = 8;
- id = "garbage"
+/area/security/vacantoffice)
+"aNH" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"aNI" = (
+/obj/machinery/ai_status_display{
+ pixel_x = 32
},
-/obj/effect/decal/warning_stripes/southwest,
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/disposaloutlet{
- dir = 4
+/obj/structure/computerframe,
+/turf/simulated/floor/plasteel{
+ icon_state = "carpet"
},
-/obj/machinery/conveyor{
- dir = 4;
- id = "garbage"
+/area/security/vacantoffice)
+"aNJ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/louge)
+"aNK" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"awE" = (
-/obj/effect/decal/warning_stripes/northeast,
-/obj/effect/decal/warning_stripes/southwestcorner,
-/obj/machinery/door/window/eastright{
- base_state = "left";
- icon_state = "left";
- name = "Danger: Conveyor Access";
- req_access_txt = "12"
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"aNM" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
},
-/obj/machinery/conveyor/northwest/ccw{
- id = "garbage"
+/turf/simulated/floor/carpet/black,
+/area/shuttle/trade/sol)
+"aNO" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"awF" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"awG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/table/reinforced,
-/obj/item/clothing/glasses/meson,
-/obj/item/clothing/glasses/meson,
-/obj/item/clothing/glasses/meson,
-/obj/item/analyzer,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/shuttle/trade/sol)
+"aNP" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/item/flag/species/human,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/shuttle/trade/sol)
+"aNQ" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "specops_home"
},
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"awH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hallway/secondary/entry/additional)
+"aNS" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/vacantoffice)
+"aNT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
-/obj/effect/decal/warning_stripes/east,
+/obj/structure/table/reinforced,
+/obj/item/tank/emergency_oxygen/engi,
+/obj/item/clothing/glasses/meson,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "caution"
},
-/area/engine/controlroom)
-"awI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/area/maintenance/turbine)
+"aNX" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/pen,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/engine/controlroom)
-"awJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/security/vacantoffice)
+"aOc" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"aOd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/area/engine/controlroom)
-"awK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "purplefull"
},
-/area/engine/controlroom)
-"awL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/research/nhallway)
+"aOg" = (
+/turf/simulated/wall/r_wall,
+/area/atmos)
+"aOk" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/airlock/external{
+ locked = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aOn" = (
+/obj/structure/sink{
+ pixel_y = 29
},
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
- },
-/area/engine/controlroom)
-"awM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "freezerfloor"
},
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/security/permabrig)
+"aOo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/chair/stool,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"aOq" = (
+/obj/machinery/light{
dir = 1;
- on = 1
+ in_use = 1
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"awN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"aOr" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "caution"
- },
-/area/engine/controlroom)
-"awO" = (
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/louge)
+"aOs" = (
+/obj/machinery/slot_machine,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"aOt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/louge)
+"aOu" = (
+/obj/effect/decal/warning_stripes/southwest,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/greengrid,
-/area/engine/controlroom)
-"awP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/engine/mechanic_workshop/hangar)
+"aOw" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "caution"
+/turf/simulated/shuttle/plating,
+/area/shuttle/trade/sol)
+"aOx" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/area/engine/controlroom)
-"awQ" = (
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "darkyellow"
},
-/area/engine/controlroom)
-"awR" = (
+/area/engine/mechanic_workshop/hangar)
+"aOB" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/crew_quarters/chief)
+"aOF" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/controlroom)
-"awS" = (
+/area/hallway/primary/fore)
+"aOG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/engine/controlroom)
-"awT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop)
+"aOH" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ id = "cargodisposals"
},
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"aOJ" = (
+/obj/machinery/atm,
+/turf/simulated/shuttle/wall{
+ dir = 3;
+ icon_state = "swall1"
},
-/area/engine/controlroom)
-"awU" = (
+/area/shuttle/trade/sol)
+"aOK" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/table/reinforced,
-/obj/item/clothing/suit/radiation,
-/obj/item/clothing/head/radiation,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"awV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"awW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"awX" = (
-/obj/machinery/door/airlock/maintenance{
- name = "construction access"
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/structure/barricade/wooden,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"awY" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/westright{
- name = "Mechanic's Desk";
- req_access = null;
- req_access_txt = "70"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/cell_charger,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxport)
+"aOL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_pump{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"awZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"aOP" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
+/obj/structure/beebox/unwrenched,
/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
- on = 1
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel,
/area/hydroponics)
-"axa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark{
- name = "blobstart"
- },
+"aOR" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/southwest,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"axb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"axc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"axd" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"aOS" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/shuttle/trade/sol)
+"aOT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"axf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 6
},
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/hallway/secondary/entry/louge)
-"axg" = (
+/turf/simulated/floor/plasteel,
+/area/hydroponics/abandoned_garden)
+"aOV" = (
+/obj/machinery/light/spot,
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"aOY" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"aOZ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/checkpoint2)
+"aPc" = (
+/obj/structure/chair/stool/bar,
+/turf/simulated/floor/carpet,
+/area/maintenance/abandonedbar)
+"aPd" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/commercial)
+"aPf" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "neutralfull"
},
-/area/hallway/secondary/entry/louge)
-"axh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/hallway/secondary/entry/eastarrival)
+"aPg" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/commercial)
+"aPk" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/light,
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/turf/space,
+/turf/unsimulated/floor,
+/area/shuttle/specops)
+"aPl" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 6;
+ name = "Труба дыхательной смеси"
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "dark"
+ },
+/area/atmos)
+"aPt" = (
+/obj/structure/table/wood,
+/obj/item/stack/tape_roll,
+/obj/item/stack/tape_roll{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/stack/tape_roll{
+ pixel_x = 4;
+ pixel_y = 4
},
-/area/hallway/secondary/entry/louge)
-"axi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
/area/hallway/secondary/entry/louge)
-"axj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+"aPu" = (
+/obj/machinery/computer/communications,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the Special Ops team.";
+ name = "Security Station Monitor";
+ network = list("SS13","Research Outpost","Mining Outpost");
+ pixel_y = -30
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"axk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/shuttle/specops)
+"aPz" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
},
-/obj/machinery/firealarm{
- dir = 1;
+/obj/item/radio/intercom{
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
/area/hallway/secondary/entry/louge)
-"axl" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/camera{
- c_tag = "Arrivals South End";
- dir = 8
- },
+"aPA" = (
+/obj/structure/closet/wardrobe/red,
+/obj/item/clothing/suit/tracksuit/red,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/secondary/entry/louge)
-"axm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"axn" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"axo" = (
+/area/security/customs)
+"aPE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering";
+ req_access_txt = "32"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"axp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"axq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"aPJ" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken6";
+ tag = "icon-wood-broken6"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"axr" = (
+/area/maintenance/abandonedbar)
+"aPM" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 2;
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"axs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"aPO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"axt" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "2-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"axu" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"aPR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"axv" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"aPS" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/area/lawoffice)
+"aPY" = (
+/obj/structure/statue/bananium/clown{
+ name = "Статуя Великого Кекеги"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"axw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/radio/intercom{
+ pixel_y = -35
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "bar"
},
-/obj/effect/decal/cleanable/dirt,
+/area/clownoffice)
+"aQb" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/snacks/grown/grapes,
+/obj/item/reagent_containers/food/snacks/grown/holymelon,
+/obj/item/reagent_containers/food/snacks/grown/cocoapod,
+/obj/item/reagent_containers/food/snacks/grown/chili,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"axx" = (
+/area/hydroponics/abandoned_garden)
+"aQe" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "greencorner"
+ },
+/area/hydroponics/abandoned_garden)
+"aQf" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/camera{
+ c_tag = "Cargo Office SouthWest";
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "brown"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/quartermaster/storage)
+"aQg" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkyellow"
},
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"axy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/engine/mechanic_workshop/hangar)
+"aQi" = (
+/obj/machinery/firealarm{
+ pixel_y = -28
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "yellow"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/engine/mechanic_workshop)
+"aQk" = (
+/obj/structure/chair/comfy/shuttle{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"axz" = (
+/area/shuttle/specops)
+"aQp" = (
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"aQs" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop)
+"aQv" = (
+/obj/item/radio/intercom{
+ pixel_y = -28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "darkyellow"
},
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/engine/mechanic_workshop/hangar)
+"aQx" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"axA" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/hallway/secondary/entry/louge)
+"aQy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"axB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/louge)
+"aQz" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"axC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"aQF" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/machinery/mineral/stacking_unit_console{
+ machinedir = 8;
+ pixel_x = 32
},
/turf/simulated/floor/plating,
/area/maintenance/disposal)
-"axD" = (
+"aQI" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"axE" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxport)
+"aQJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/space,
+/turf/simulated/floor/greengrid,
+/area/engine/controlroom)
+"aQK" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 4
+/obj/effect/decal/warning_stripes,
+/turf/simulated/floor/engine,
+/area/engine/controlroom)
+"aQM" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 6;
+ name = "Труба смешивания"
},
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"axF" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/vending/cola,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"aQO" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 4;
+ name = "Труба дыхательной смеси"
},
-/area/hallway/secondary/entry/louge)
-"axG" = (
+/obj/machinery/meter,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"aQR" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/hydroponics/abandoned_garden)
+"aQS" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 4;
+ name = "Труба дыхательной смеси"
},
-/obj/effect/decal/warning_stripes/yellow,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/dispenser,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"axH" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
- dir = 8
+/area/atmos)
+"aQV" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ name = "Труба дыхательной смеси"
},
-/turf/simulated/wall/r_wall,
-/area/engine/controlroom)
-"axI" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
+ },
+/area/atmos)
+"aRj" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12"
+ },
+/area/shuttle/trade/sol)
+"aRl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark";
+ temperature = 80
+ },
+/area/toxins/xenobiology)
+"aRo" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"axJ" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
+/area/hallway/secondary/entry/commercial)
+"aRq" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/effect/decal/warning_stripes/southeastcorner,
+/obj/machinery/camera{
+ c_tag = "Atrium";
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/bar/atrium)
+"aRC" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = -27
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "brown"
+ },
+/area/quartermaster/office)
+"aRD" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"axK" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
+/area/hallway/secondary/entry/commercial)
+"aRG" = (
+/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/meter,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 28
+ },
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/engine/controlroom)
-"axL" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/area/crew_quarters/sleep)
+"aRH" = (
+/obj/structure/closet/wardrobe/grey,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"aRJ" = (
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
+ },
+/area/quartermaster/office)
+"aRL" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "ferry_home"
},
-/obj/machinery/light,
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"axM" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/area/hallway/secondary/entry)
+"aRN" = (
+/obj/structure/plasticflaps/mining,
+/obj/machinery/conveyor/west{
+ id = "QMLoad2"
},
-/obj/effect/decal/warning_stripes/south,
+/turf/simulated/shuttle/plating,
+/area/shuttle/supply)
+"aRO" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/storage)
+"aRQ" = (
+/obj/structure/closet/firecloset,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"axN" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/area/hallway/secondary/entry)
+"aRS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = -25
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "brown"
},
-/obj/effect/decal/warning_stripes/south,
+/area/quartermaster/storage)
+"aRT" = (
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"axO" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/area/crew_quarters/serviceyard)
+"aSc" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/southeast,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"axP" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
+/area/security/checkpoint2)
+"aSd" = (
+/obj/structure/closet/firecloset,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb,
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"aSf" = (
+/obj/structure/sign/pods,
+/turf/simulated/wall,
+/area/hallway/secondary/entry)
+"aSg" = (
+/turf/simulated/wall,
+/area/hallway/secondary/entry)
+"aSh" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry)
+"aSl" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ icon_state = "left";
+ name = "Danger: Conveyor Access";
+ req_access_txt = "12"
+ },
+/obj/machinery/conveyor/northwest/ccw{
+ id = "garbage"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"aSn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/sign/electricshock{
pixel_y = -32
},
-/obj/machinery/power/grounding_rod{
- anchored = 1
+/obj/machinery/door/airlock/engineering{
+ icon_state = "door_closed";
+ name = "Fore Starboard Solar Access";
+ req_access_txt = "10"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "caution"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/engine/controlroom)
-"axQ" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"aSy" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/turbine)
+"aSA" = (
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_x = 32;
+ pixel_y = 0
},
-/turf/simulated/floor/greengrid,
-/area/engine/controlroom)
-"axR" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
},
-/obj/machinery/power/grounding_rod{
- anchored = 1
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"aSE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- icon_state = "caution"
+ initialize_directions = 11
},
-/area/engine/controlroom)
-"axS" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/obj/structure/sign/nosmoking_2{
- pixel_y = -32
+/area/medical/sleeper)
+"aSF" = (
+/obj/machinery/vending/medical{
+ req_access_txt = "63"
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"axT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible{
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/security/medbay)
+"aSG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"axU" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 10
+"aSH" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "air_sensor"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"axV" = (
-/obj/machinery/atmospherics/trinary/filter{
- dir = 4;
- filter_type = "o2";
- on = 1
+/turf/simulated/floor/engine/air,
+/area/atmos)
+"aSM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ dir = 4;
+ icon_state = "caution"
},
/area/engine/controlroom)
-"axW" = (
+"aSO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/sign/nosmoking_2{
- pixel_x = 32
+/turf/simulated/floor/greengrid,
+/area/engine/controlroom)
+"aSP" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aSQ" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"aST" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"axX" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+"aSV" = (
+/obj/structure/chair/stool/bar,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"aSW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "privateroom"
},
-/area/hallway/secondary/entry/louge)
-"axZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/obj/item/clothing/gloves/color/yellow,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "yellow"
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "privateroom"
},
-/area/maintenance/engrooms)
-"aya" = (
-/obj/structure/closet/radiation,
-/turf/simulated/floor/plasteel{
+/obj/structure/window/reinforced/polarized{
dir = 1;
- icon_state = "yellow"
- },
-/area/maintenance/engrooms)
-"ayb" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/light/small{
- dir = 1
+ id = "privateroom"
},
+/turf/simulated/floor/plating,
+/area/crew_quarters/bar/atrium)
+"aSY" = (
/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"ayd" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
+ },
+/area/medical/medbay2)
+"aSZ" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aye" = (
+/area/hallway/secondary/entry/eastarrival)
+"aTm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/hologram/holopad,
+/obj/effect/landmark/start{
+ name = "Quartermaster"
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/greengrid,
-/area/engine/controlroom)
-"ayg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/dresser,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"ayh" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/bed,
-/obj/item/bedsheet/green,
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"ayj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"ayl" = (
+/area/quartermaster/storage)
+"aTn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- name = "Custodial Junction";
- sortType = 22
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aym" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"ayn" = (
-/obj/machinery/door/airlock/maintenance{
- name = "construction access"
- },
-/obj/structure/barricade/wooden,
/turf/simulated/floor/plasteel,
/area/maintenance/fpmaint2)
-"ayo" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"ayp" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"ayq" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/window/westleft{
- dir = 2;
- name = "Janitoral Delivery";
- req_access_txt = "26"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "purple"
+"aTu" = (
+/obj/item/pod_parts/core,
+/obj/item/circuitboard/mecha/pod,
+/obj/item/clothing/glasses/welding{
+ pixel_y = 12
},
-/area/janitor)
-"ayr" = (
+/obj/item/gps,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/reagent_dispensers/spacecleanertank{
- pixel_y = 30
- },
/obj/structure/table/reinforced,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/item/reagent_containers/spray/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/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "purple"
- },
-/area/janitor)
-"ays" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
pixel_y = 24
},
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/obj/structure/closet/jcloset,
-/obj/item/reagent_containers/spray/pestspray,
-/obj/item/reagent_containers/spray/pestspray,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "purple"
+ dir = 9;
+ icon_state = "yellow"
},
-/area/janitor)
-"ayt" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/reagent_dispensers/spacecleanertank{
- pixel_y = 30
+/area/engine/mechanic_workshop)
+"aTv" = (
+/obj/structure/closet/secure_closet/quartermaster,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
},
-/obj/structure/table/reinforced,
-/obj/item/key/janitor,
+/obj/item/stamp/denied,
+/obj/item/stamp/denied,
+/obj/item/stamp/granted,
+/obj/item/stamp/granted,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "purple"
+ dir = 4;
+ icon_state = "brown"
},
-/area/janitor)
-"ayu" = (
-/obj/machinery/vending/snack,
+/area/quartermaster/qm)
+"aTx" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/hallway/secondary/entry/louge)
-"ayv" = (
-/obj/structure/sign/directions/engineering{
- pixel_y = 8
- },
-/obj/structure/sign/directions/science{
- pixel_y = 1
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 2
},
-/obj/structure/sign/directions/evac{
- pixel_y = -8
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/turf/simulated/wall,
-/area/janitor)
-"ayw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "yellow"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/engine/mechanic_workshop)
+"aTy" = (
+/obj/machinery/camera{
+ c_tag = "Hangar West South";
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkyellow"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/engine/mechanic_workshop/hangar)
+"aTA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/cable{
@@ -10653,102 +10733,168 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
-"ayx" = (
+"aTB" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/table,
+/obj/item/plant_analyzer,
+/obj/item/hatchet,
+/obj/item/cultivator,
+/obj/item/reagent_containers/glass/bucket,
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"aTC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"aTD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
initialize_directions = 11
},
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "neutralfull"
},
/area/hallway/secondary/entry/louge)
-"ayy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+"aTE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/secondary/entry/louge)
-"ayz" = (
-/obj/structure/sign/directions/evac{
- pixel_y = -8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/sign/directions/medical,
-/obj/structure/sign/directions/security{
- pixel_y = 8
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/wall,
-/area/quartermaster/sorting)
-"ayA" = (
-/turf/simulated/wall,
-/area/quartermaster/sorting)
-"ayB" = (
+/area/hallway/secondary/entry/louge)
+"aTS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- name = "Cargo Bay Maintenance";
- req_access_txt = "31"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"ayC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/quartermaster/sorting)
-"ayD" = (
-/turf/simulated/wall,
-/area/quartermaster/storage)
-"ayE" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/turf_decal/loading_area{
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/door/airlock/maintenance{
- name = "Cargo Bay Maintenance";
- req_access_txt = "31"
+/area/engine/mechanic_workshop/hangar)
+"aTU" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба содержит газ для обработки и после возвращает его обратно в трубу смешивания";
+ dir = 4;
+ name = "Труба обработки"
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/meter,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/atmos)
+"aTY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
/area/maintenance/fore{
name = "Hangar Maintenance"
})
-"ayF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+"aUb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"ayG" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/turf/space,
-/area/space/nearstation)
-"ayH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/engine/break_room)
+"aUc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"aUe" = (
+/obj/machinery/door/poddoor/shutters{
+ closingLayer = 5;
+ density = 0;
+ icon_state = "open";
+ id_tag = "trader_privacy";
+ layer = 5;
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/obj/structure/table/reinforced/brass,
+/obj/machinery/door/window/brigdoor/southright{
+ dir = 4;
+ name = "Customs Desk";
+ req_access_txt = "160"
+ },
+/turf/simulated/floor/carpet/black,
+/area/shuttle/trade/sol)
+"aUm" = (
/obj/machinery/conveyor{
dir = 4;
id = "garbage"
@@ -10758,2133 +10904,2082 @@
/obj/machinery/recycler,
/turf/simulated/floor/plating,
/area/maintenance/disposal)
-"ayI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"ayJ" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1;
- name = "Gas to Loop"
+"aUp" = (
+/obj/structure/chair,
+/obj/structure/sign/vacuum{
+ pixel_x = -32
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/firealarm{
dir = 8;
- icon_state = "neutralfull"
+ pixel_x = -28;
+ pixel_y = 28
},
-/area/engine/controlroom)
-"ayK" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"ayL" = (
-/obj/machinery/ai_status_display,
-/turf/simulated/wall/r_wall,
-/area/engine/supermatter)
-"ayM" = (
-/turf/simulated/wall/r_wall,
-/area/engine/supermatter)
-"ayN" = (
-/turf/simulated/wall/r_wall/coated,
-/area/engine/supermatter)
-"ayO" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced,
-/obj/structure/window/plasmareinforced{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/window/plasmareinforced{
- dir = 1
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/commercial)
+"aUq" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/machinery/door/window/eastright{
+ name = "Danger: Conveyor Access";
+ req_access_txt = "12"
},
-/obj/structure/window/plasmareinforced{
- dir = 8
+/obj/machinery/conveyor/northeast/ccw{
+ id = "garbage"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/engine/supermatter)
-"ayP" = (
-/obj/machinery/status_display,
-/turf/simulated/wall/r_wall,
-/area/engine/supermatter)
-"ayQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/maintenance/disposal)
+"aUr" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6
+/obj/machinery/light{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/item/radio/intercom{
+ pixel_x = 31
},
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"ayR" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/floor/plasteel{
+/area/hallway/secondary/entry/commercial)
+"aUs" = (
+/obj/structure/shuttle/engine/propulsion{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/controlroom)
-"ayS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"ayT" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 1
+ icon_state = "burst_r"
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"ayU" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops)
+"aUt" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 1
- },
-/obj/structure/window/plasmareinforced{
- dir = 8
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/window/plasmareinforced{
- dir = 4
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plating,
-/area/engine/controlroom)
-"ayV" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"ayW" = (
-/obj/effect/decal/warning_stripes/yellow,
+/area/crew_quarters/serviceyard)
+"aUv" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
- location = "Janitor"
+ dir = 4;
+ location = "Bar"
},
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/plasticflaps{
opacity = 1
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/janitor)
-"ayY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "caution"
- },
-/area/maintenance/engrooms)
-"ayZ" = (
-/obj/machinery/door/airlock/maintenance{
- name = "construction access"
- },
-/obj/structure/barricade/wooden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aza" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/bar)
+"aUx" = (
+/obj/machinery/door/airlock/glass{
+ id = "privateroom";
+ id_tag = "privateroom";
+ name = "Private Room"
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aze" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/safe/floor,
-/obj/item/pneumatic_cannon/ghetto,
-/obj/item/tank/oxygen,
-/obj/item/clothing/gloves/color/yellow,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "neutral"
- },
-/area/maintenance/engrooms)
-"azf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/structure/rack,
-/obj/item/weldingtool,
-/obj/item/assembly/voice,
-/obj/item/clothing/head/welding,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"azg" = (
+/area/crew_quarters/bar/atrium)
+"aUy" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"azi" = (
-/obj/structure/table,
-/obj/item/camera,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"azj" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"azk" = (
-/obj/structure/table,
-/obj/item/screwdriver,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"azl" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"aUB" = (
+/obj/structure/sign/vacuum{
+ pixel_x = -32
},
-/obj/machinery/light/small{
- dir = 1
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aUC" = (
+/obj/structure/sign/vacuum{
+ pixel_x = 32
},
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"azm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"azn" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light/small{
- dir = 4
+/area/hallway/secondary/entry/westarrival)
+"aUE" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/closet/secure_closet/miner,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"aUG" = (
+/obj/effect/landmark/start{
+ name = "Chef"
},
-/obj/structure/table,
-/obj/item/storage/briefcase{
- pixel_x = 4;
- pixel_y = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"azo" = (
-/obj/structure/disposalpipe/segment,
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
+/area/crew_quarters/kitchen)
+"aUH" = (
+/obj/item/stack/spacecash/c200,
+/obj/item/stack/spacecash/c50,
+/obj/machinery/light/spot,
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "purple"
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"aUI" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f5"
},
-/area/janitor)
-"azp" = (
-/obj/effect/landmark/start{
- name = "Janitor"
+/area/shuttle/arrival/station)
+"aUJ" = (
+/obj/effect/landmark{
+ name = "blobstart"
},
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/janitor)
-"azr" = (
-/obj/effect/landmark/start{
- name = "Janitor"
+/area/quartermaster/sorting)
+"aUK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"aUL" = (
+/mob/living/simple_animal/pet/sloth/paperwork,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "purplecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/janitor)
-"azs" = (
-/obj/structure/sink{
- pixel_y = 31
+/area/quartermaster/office)
+"aUN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/mop,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/quartermaster/office)
+"aUO" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "purple"
+ dir = 8;
+ icon_state = "brown"
},
-/area/janitor)
-"azt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/quartermaster/storage)
+"aUP" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "purple"
- },
-/area/janitor)
-"azu" = (
-/obj/machinery/newscaster{
- pixel_y = 32
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/quartermaster/storage)
+"aUQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/secondary/entry/commercial)
-"azv" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/quartermaster/storage)
+"aUS" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall14"
},
+/area/shuttle/arrival/station)
+"aUT" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/fore)
-"azw" = (
+/area/quartermaster/storage)
+"aUU" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j2"
+ },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
+ dir = 8;
initialize_directions = 11
},
-/obj/machinery/camera{
- c_tag = "Fore Hallway North 2";
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/primary/fore)
-"azx" = (
-/obj/structure/reagent_dispensers/fueltank,
+/area/hallway/secondary/entry/eastarrival)
+"aUY" = (
+/obj/structure/sign/custodian,
+/turf/simulated/wall,
+/area/janitor)
+"aVc" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Kitchen Windows";
+ name = "Kitchen Privacy Shutters"
+ },
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/quartermaster/sorting)
-"azy" = (
+/area/crew_quarters/kitchen)
+"aVg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "brown"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/quartermaster/sorting)
-"azz" = (
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 32
+/area/engine/controlroom)
+"aVh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ dir = 4;
+ icon_state = "caution"
},
-/area/quartermaster/sorting)
-"azA" = (
+/area/engine/controlroom)
+"aVi" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/quartermaster/sorting)
-"azB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small{
- dir = 1
+/area/engine/controlroom)
+"aVj" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
- },
-/area/quartermaster/sorting)
-"azC" = (
-/obj/machinery/camera{
- c_tag = "Cargo Backroom"
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/engine/controlroom)
+"aVk" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "brown"
+ icon_state = "arrival"
},
-/area/quartermaster/sorting)
-"azD" = (
+/area/hallway/secondary/entry/commercial)
+"aVB" = (
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery1)
+"aVO" = (
/obj/item/radio/intercom{
- pixel_y = 26
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/quartermaster/sorting)
-"azE" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+/area/hallway/primary/central/south)
+"aVS" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"aWb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/quartermaster/sorting)
-"azF" = (
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "brown"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/quartermaster/sorting)
-"azG" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 4;
- location = "QM #1"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/mob/living/simple_animal/bot/mulebot{
- home_destination = "QM #1";
- suffix = "#1"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"azH" = (
-/obj/machinery/alarm{
- pixel_y = 22
+/area/hallway/secondary/entry/eastarrival)
+"aWc" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -3;
+ pixel_y = 11
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 4;
- location = "QM #2"
+/obj/item/reagent_containers/food/condiment/peppermill{
+ pixel_x = 3;
+ pixel_y = 11
},
-/mob/living/simple_animal/bot/mulebot{
- home_destination = "QM #2";
- suffix = "#2"
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"aWd" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ icon_state = "grimy"
},
-/area/quartermaster/storage)
-"azI" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 4;
- location = "QM #3"
+/area/crew_quarters/bar/atrium)
+"aWf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "brown"
+ icon_state = "arrival"
},
-/area/quartermaster/storage)
-"azJ" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+/area/hallway/secondary/entry)
+"aWk" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Mechanic Workshop";
+ req_access_txt = "70"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/window/reinforced{
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 4;
- location = "QM #4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/mob/living/simple_animal/bot/mulebot{
- home_destination = "QM #4";
- suffix = "#4"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop)
+"aWp" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/quartermaster/storage)
-"azK" = (
-/obj/structure/disposalpipe/segment,
+/area/quartermaster/sorting)
+"aWq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
- },
-/area/quartermaster/storage)
-"azL" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ icon_state = "purple"
},
/area/quartermaster/storage)
-"azM" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/item/stack/packageWrap,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/item/hand_labeler,
+"aWr" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "brown"
},
/area/quartermaster/storage)
-"azN" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/lights/mixed,
-/obj/item/radio/intercom{
- pixel_y = 26
+"aWt" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ dir = 6;
+ icon_state = "purple"
},
/area/quartermaster/storage)
-"azO" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/camera{
- c_tag = "Cargo Supply North"
- },
+"aWw" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "brown"
- },
-/area/quartermaster/storage)
-"azP" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+ icon_state = "arrival"
},
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+/area/hallway/secondary/entry)
+"aWx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/quartermaster/storage)
-"azQ" = (
-/obj/structure/closet/crate,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "brown"
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/area/quartermaster/storage)
-"azR" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/space,
-/area/space/nearstation)
-"azS" = (
-/obj/effect/decal/warning_stripes/southeast,
-/obj/effect/decal/warning_stripes/northwestcorner,
-/obj/machinery/door/window/eastright{
- name = "Danger: Conveyor Access";
- req_access_txt = "12"
- },
-/obj/machinery/conveyor/northeast/ccw{
- id = "garbage"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"azT" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "engsm";
- name = "Supermatter Blast Doors";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/east,
-/obj/structure/cable/yellow{
+/area/quartermaster/qm)
+"aWB" = (
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/engine/supermatter)
-"azU" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/meter,
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/engine/controlroom)
-"azV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"azW" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
+/area/engine/mechanic_workshop)
+"aWC" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"azX" = (
-/obj/machinery/power/rad_collector,
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/greengrid,
-/area/engine/supermatter)
-"azY" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 1
+/area/engine/mechanic_workshop/hangar)
+"aWD" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "arrival"
},
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 4
+/area/hallway/secondary/entry)
+"aWF" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/northeastsouth,
+/obj/structure/rack{
+ dir = 1;
+ pixel_y = 5
},
-/obj/structure/window/plasmareinforced{
- dir = 1
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/obj/structure/window/plasmareinforced{
- dir = 8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/engine/supermatter)
-"azZ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/mechanic_workshop/hangar)
+"aWI" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
dir = 8;
- on = 1
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/engine,
-/area/engine/supermatter)
-"aAa" = (
-/turf/simulated/floor/engine,
-/area/engine/supermatter)
-"aAb" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/hallway/secondary/entry/louge)
+"aWP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/power/apc{
dir = 4;
- external_pressure_bound = 101;
- on = 1
+ name = "east bump";
+ pixel_x = 24
},
-/turf/simulated/floor/engine,
-/area/engine/supermatter)
-"aAc" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 10
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/obj/structure/window/plasmareinforced{
+/area/hallway/primary/aft)
+"aWR" = (
+/turf/simulated/wall/r_wall/coated,
+/area/maintenance/turbine)
+"aWS" = (
+/obj/structure/window/reinforced{
dir = 1
},
-/obj/structure/window/plasmareinforced{
- dir = 8
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "rampbottom";
+ tag = "icon-stage_stairs"
},
-/turf/simulated/floor/plating,
-/area/engine/supermatter)
-"aAd" = (
-/obj/machinery/power/rad_collector,
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
+/area/crew_quarters/fitness)
+"aWY" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/pen,
+/turf/simulated/floor/wood,
+/area/library/abandoned)
+"aXc" = (
+/obj/machinery/light{
+ dir = 4
},
-/turf/simulated/floor/greengrid,
-/area/engine/supermatter)
-"aAe" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 6
+/obj/item/radio/intercom{
+ pixel_x = 30;
+ pixel_y = 3
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"aAf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/camera{
- c_tag = "Supermatter West";
+/obj/machinery/door_control{
+ id = "ShootRange";
+ name = "Shooting Range Shutters Control";
+ pixel_x = 26;
+ pixel_y = -6
+ },
+/turf/simulated/floor/plasteel{
dir = 4;
- network = list("Engineering","SS13");
- pixel_y = -22
+ icon_state = "red"
},
+/area/security/range)
+"aXd" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/southwest,
+/obj/structure/window/reinforced,
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/item/extinguisher/mini,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"aXe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry/commercial)
+"aXh" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/suit_storage_unit/atmos,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"aXk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/plasteel{
+ dir = 7;
+ icon_state = "yellow"
+ },
+/area/engine/engineering/monitor)
+"aXl" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/cold_sink/freezer{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aAg" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
- },
-/area/engine/controlroom)
-"aAh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11
- },
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aAi" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+/area/crew_quarters/locker)
+"aXs" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"aAn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/random_spawners/blood_maybe,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aAq" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aAr" = (
-/obj/structure/bed,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aAs" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate/engineering,
-/obj/item/multitool,
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aAt" = (
-/obj/structure/table,
-/obj/item/wrench,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aAu" = (
-/obj/structure/table,
-/obj/item/hand_labeler,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aAv" = (
-/obj/structure/table,
-/obj/item/flashlight/lamp,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aAx" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/rack,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aAB" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/janitor)
-"aAC" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+ icon_state = "arrival"
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/area/hallway/secondary/entry/commercial)
+"aXt" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "trade_dock"
},
-/area/janitor)
-"aAD" = (
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/janitor)
-"aAF" = (
+/area/hallway/secondary/entry/commercial)
+"aXx" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall,
+/area/hydroponics)
+"aXz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/radio/intercom{
- pixel_y = -30
- },
/turf/simulated/floor/plasteel{
icon_state = "arrival"
},
/area/hallway/secondary/entry/commercial)
-"aAG" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+"aXA" = (
+/obj/structure/chair/sofa/left,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"aXB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atm{
+ pixel_y = -32
},
-/area/hallway/primary/fore)
-"aAH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "arrival"
},
-/area/hallway/primary/fore)
-"aAI" = (
-/obj/machinery/door/airlock{
- name = "Custodial Closet";
- req_access_txt = "26"
+/area/hallway/secondary/entry)
+"aXC" = (
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Arrivals Second Port";
+ dir = 1;
+ pixel_x = -5
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/janitor)
-"aAJ" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ icon_state = "1-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/quartermaster/sorting)
-"aAK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry)
+"aXF" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"aXI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/quartermaster/sorting)
-"aAL" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/crate,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aAM" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "arrival"
},
-/area/quartermaster/sorting)
-"aAN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/hallway/secondary/entry)
+"aXJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aAO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aAP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/closet/cardboard,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aAQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry)
+"aXK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aAR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atm{
+ pixel_y = -32
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
+ icon_state = "arrival"
},
-/area/quartermaster/sorting)
-"aAS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hallway/secondary/entry)
+"aXL" = (
+/obj/machinery/light,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining/glass{
- name = "Cargo Bay";
- req_access_txt = "31"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aAT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
},
+/area/hallway/secondary/entry)
+"aXM" = (
/obj/effect/decal/warning_stripes/northwest,
-/obj/effect/decal/warning_stripes/yellow/partial,
-/obj/effect/decal/warning_stripes/arrow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aAV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/warning_stripes/yellow/partial,
-/obj/effect/decal/warning_stripes/arrow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aAW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/area/hallway/secondary/entry/commercial)
+"aXP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining{
+ name = "Mining Dock";
+ req_access_txt = "48"
},
-/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aAX" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aAY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/quartermaster/miningdock)
+"aXS" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/secondary/entry/commercial)
+"aXV" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/quartermaster/qm)
+"aXW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aAZ" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/recharge_station,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aBa" = (
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aBb" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aBc" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f6";
- tag = "icon-swall_f6"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/shuttle/supply)
-"aBd" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- tag = "icon-swall12"
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
},
-/area/shuttle/supply)
-"aBe" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f10";
- tag = "icon-swall_f10"
+/area/hallway/secondary/entry)
+"aYd" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
},
-/area/shuttle/supply)
-"aBf" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "engsm";
- name = "Supermatter Blast Doors";
- opacity = 0
+/obj/machinery/light{
+ dir = 8
},
/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable/yellow{
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"aYe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/starboard/east)
+"aYj" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aYo" = (
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/engine/supermatter)
-"aBh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/unary/cold_sink/freezer{
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -24
+/area/medical/virology)
+"aYt" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
},
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"aBi" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 8
- },
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 4
+"aYx" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/suit_storage_unit/atmos,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"aYC" = (
+/obj/machinery/light,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -29
},
-/obj/structure/window/plasmareinforced{
- dir = 8
+/obj/machinery/computer/station_alert,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/turf/simulated/floor/plating,
-/area/engine/supermatter)
-"aBj" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/public/glass,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/area/engine/engineering)
+"aYE" = (
+/obj/structure/sign/nosmoking_1{
+ pixel_x = 28;
+ pixel_y = -28
},
+/obj/machinery/computer/atmos_alert,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/hallway/primary/fore)
-"aBk" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
+/area/engine/engineering)
+"aYF" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 4
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aYH" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
},
-/obj/structure/window/plasmareinforced{
+/obj/machinery/camera{
+ c_tag = "Arrivals Port Aft";
dir = 8
},
-/turf/simulated/floor/plating,
-/area/engine/supermatter)
-"aBl" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"aYJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/structure/sign/electricshock{
+ pixel_y = -32
+ },
+/obj/machinery/power/grounding_rod{
+ anchored = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "caution"
+ },
+/area/engine/controlroom)
+"aYP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/camera{
- c_tag = "Supermatter East";
+/turf/simulated/floor/plasteel{
dir = 8;
- network = list("Engineering","SS13")
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/portable_atmospherics/canister/nitrogen,
+/area/hallway/secondary/entry/louge)
+"aYQ" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"aYW" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/floor/greengrid,
/area/engine/controlroom)
-"aBm" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+"aYY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/controlroom)
-"aBn" = (
-/obj/effect/decal/warning_stripes/arrow{
- dir = 8
- },
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8
+/area/hallway/secondary/entry)
+"aYZ" = (
+/turf/simulated/wall,
+/area/crew_quarters/kitchen)
+"aZb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "brown"
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/fore)
+"aZd" = (
+/obj/machinery/autolathe,
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ id = "Autolathe";
+ name = "Autolathe Access";
+ req_access_txt = "31"
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/office)
+"aZe" = (
+/obj/item/storage/box/mousetraps,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"aZf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/quartermaster/storage)
-"aBo" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aBp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/girder,
-/obj/machinery/light/small,
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aBr" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aBs" = (
-/obj/machinery/door/airlock/maintenance{
- name = "construction access"
+/area/hallway/secondary/entry)
+"aZg" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/obj/structure/barricade/wooden,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aBt" = (
-/turf/simulated/wall,
-/area/maintenance/engrooms)
-"aBu" = (
-/obj/structure/disposalpipe/segment,
-/obj/vehicle/janicart{
- dir = 4
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/machinery/newscaster{
- pixel_x = -30
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
+/obj/structure/closet/jcloset,
+/obj/item/reagent_containers/spray/pestspray,
+/obj/item/reagent_containers/spray/pestspray,
/turf/simulated/floor/plasteel{
- dir = 8;
+ dir = 1;
icon_state = "purple"
},
/area/janitor)
-"aBv" = (
-/obj/machinery/light/small{
+"aZh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aBw" = (
-/obj/structure/bed,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aBx" = (
-/obj/structure/chair/stool,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aBy" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aBz" = (
-/obj/machinery/door/airlock/maintenance{
- name = "construction access"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/barricade/wooden,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aBA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aBB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hallway/secondary/entry)
+"aZi" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
},
+/area/hallway/secondary/entry)
+"aZj" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -25
+ },
+/obj/structure/rack,
+/obj/item/storage/toolbox/emergency{
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/item/storage/toolbox/emergency,
+/obj/item/shovel,
+/obj/item/shovel,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"aZk" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_y = -28
+ pixel_x = -24;
+ pixel_y = -24
},
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+/obj/machinery/light_switch{
+ pixel_x = -24
},
-/area/hallway/secondary/entry/commercial)
-"aBC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/secure_closet/cargotech,
+/obj/item/stamp/granted,
+/obj/item/stamp/denied,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ dir = 10;
+ icon_state = "brown"
},
-/area/hallway/primary/fore)
-"aBD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/quartermaster/storage)
+"aZm" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -28
},
-/mob/living/simple_animal/pet/sloth/paperwork,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 6;
+ icon_state = "arrival"
},
-/area/quartermaster/office)
-"aBF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/hallway/secondary/entry)
+"aZp" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/mineral/equipment_vendor,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"aZq" = (
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/quartermaster/sorting)
-"aBG" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
- },
+/area/quartermaster/qm)
+"aZt" = (
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "brown"
},
-/area/quartermaster/sorting)
-"aBH" = (
-/obj/item/storage/box/lights/mixed,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/quartermaster/qm)
+"aZu" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"aZv" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Arrivals Aft Starboard";
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"aZx" = (
+/obj/structure/table,
+/obj/random/toolbox,
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry)
+"aZz" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/quartermaster/sorting)
-"aBI" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/area/quartermaster/sorting)
-"aBJ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aBK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"aZA" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/light{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aBL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hallway/secondary/entry/eastarrival)
+"aZZ" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/quartermaster/delivery)
+"baf" = (
+/obj/effect/landmark{
+ name = "carpspawn"
},
-/obj/structure/closet/crate/internals,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"bah" = (
+/obj/machinery/portable_atmospherics/canister,
/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aBM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance{
- name = "construction access"
+/area/atmos)
+"bai" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "brown"
},
-/obj/structure/barricade/wooden,
+/area/quartermaster/storage)
+"baj" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/suit_storage_unit/atmos,
+/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aBN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/atmos)
+"bal" = (
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/suit_storage_unit/atmos,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"bam" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "burst_r"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/trade/sol)
+"ban" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ name = "Труба смешивания"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
+ dir = 1;
+ icon_state = "dark"
},
-/area/quartermaster/sorting)
-"aBO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/atmos)
+"bax" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining/glass{
- name = "Cargo Bay";
- req_access_txt = "31"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aBP" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/closet/crate/internals,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/quartermaster/storage)
-"aBQ" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/closet/crate,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"baB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/quartermaster/storage)
-"aBR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/hydroponics)
+"baC" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -23
},
-/area/quartermaster/storage)
-"aBS" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "red"
},
-/area/quartermaster/storage)
-"aBU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/public/glass,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/area/security/lobby)
+"baD" = (
+/obj/structure/closet{
+ icon_closed = "yellow";
+ icon_state = "yellow";
+ name = "Engineering gear"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/obj/effect/spawner/lootdrop/trade_sol/eng{
+ loot = list(/obj/item/pickaxe/drill/jackhammer = 50, /obj/item/storage/belt/utility/chief/full = 50, /obj/item/clothing/glasses/welding = 50, /obj/item/storage/belt/utility/full/multitool = 50, /obj/item/clothing/shoes/magboots = 50, /obj/item/rcd/combat = 50, /obj/item/rpd/bluespace = 50, /obj/item/tank/emergency_oxygen/double/full = 50, /obj/item/storage/backpack/holding = 50, /obj/item/clothing/glasses/meson/night = 50, /obj/item/clothing/glasses/material = 50, /obj/item/grenade/clusterbuster/metalfoam = 50, /obj/item/crowbar/power = 50, /obj/item/screwdriver/power = 50, /obj/item/t_scanner/extended_range = 50, /obj/item/borg/upgrade/abductor_engi = 50);
+ lootcount = 8;
+ name = "8. Eng. gear"
},
-/area/hallway/primary/fore)
-"aBV" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 5
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"baE" = (
+/turf/simulated/floor/greengrid,
+/area/engine/controlroom)
+"baF" = (
+/turf/simulated/wall,
+/area/hydroponics)
+"baG" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"aBW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/manifold/visible,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aBX" = (
-/obj/machinery/power/supermatter_shard{
- anchored = 1
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"baI" = (
+/obj/structure/table,
+/obj/item/paper/deltainfo,
+/obj/machinery/light{
+ dir = 8
},
-/turf/simulated/floor/engine,
-/area/engine/supermatter)
-"aBY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -28
},
-/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "red"
},
-/area/quartermaster/storage)
-"aBZ" = (
-/obj/effect/spawner/window/reinforced,
+/area/security/processing)
+"baK" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
+/obj/machinery/light/small,
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aCa" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- tag = "icon-swall3"
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"baL" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/shuttle/supply)
-"aCb" = (
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"aCc" = (
-/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"aCd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"baS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitehall"
+ },
+/area/toxins/xenobiology)
+"baY" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "purple"
+ },
+/area/quartermaster/miningdock)
+"bbb" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "brown"
+ },
+/area/quartermaster/miningdock)
+"bbe" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bbf" = (
+/turf/simulated/wall/r_wall/coated,
+/area/engine/supermatter)
+"bbh" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/obj/machinery/portable_atmospherics/canister,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aCe" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+ d2 = 8;
+ icon_state = "1-8"
},
+/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aCf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aCg" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/quartermaster/qm)
+"bbk" = (
/obj/structure/grille,
/obj/structure/window/plasmareinforced,
/obj/structure/window/plasmareinforced{
dir = 4
},
/obj/structure/window/plasmareinforced{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/engine/supermatter)
-"aCh" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced,
-/obj/structure/window/plasmareinforced{
- dir = 4
+ dir = 1
},
/obj/structure/window/plasmareinforced{
dir = 8
},
/turf/simulated/floor/plating,
/area/engine/supermatter)
-"aCi" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aCk" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/engine/controlroom)
-"aCl" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/maintenance/engrooms)
-"aCo" = (
-/obj/effect/landmark{
- name = "blobstart"
- },
+"bbl" = (
/turf/simulated/floor/plating,
/area/maintenance/fore{
name = "Hangar Maintenance"
})
-"aCp" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"bbn" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "purple"
- },
-/area/janitor)
-"aCq" = (
-/obj/machinery/door_control{
- id = "janitorshutters";
- name = "Janitor Shutters Control";
- pixel_y = -7;
- req_access_txt = "26"
+ icon_state = "grimy"
},
-/turf/simulated/wall,
-/area/janitor)
-"aCr" = (
-/obj/effect/decal/cleanable/dirt,
+/area/shuttle/trade/sol)
+"bbw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "yellow"
+ icon_state = "neutralfull"
},
-/area/maintenance/engrooms)
-"aCs" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 8
+/area/hallway/secondary/entry/commercial)
+"bbA" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/area/maintenance/gambling_den)
+"bbC" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aCu" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
+/area/hallway/secondary/entry/additional)
+"bbJ" = (
/obj/machinery/disposal,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/vending/wallmed{
- pixel_y = -30
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "purple"
- },
-/area/janitor)
-"aCv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/medical/research/restroom)
+"bbN" = (
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/sorting)
-"aCw" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/reagent_dispensers/watertank/high,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "purple"
- },
-/area/janitor)
-"aCx" = (
-/obj/structure/closet/l3closet/janitor,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/fireaxecabinet{
+ pixel_x = 30
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "purple"
+ icon_state = "caution"
},
-/area/janitor)
-"aCy" = (
+/area/atmos)
+"bbR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1
+ },
+/area/janitor)
+"bbV" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f5"
+ },
+/area/shuttle/transport)
+"bbY" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/machinery/keycard_auth{
+ pixel_x = -26
},
-/area/hallway/primary/fore)
-"aCz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/hallway/primary/fore)
-"aCA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/crew_quarters/heads/hop)
+"bbZ" = (
+/obj/structure/sink{
+ pixel_y = 31
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/quartermaster/sorting)
-"aCB" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/mop,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "purple"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/janitor)
+"bca" = (
/turf/simulated/floor/plasteel{
+ icon_state = "blue"
+ },
+/area/hydroponics)
+"bcc" = (
+/obj/machinery/light,
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/simulated/floor/plasteel,
+/area/hydroponics)
+"bcd" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/power/apc{
dir = 8;
- icon_state = "neutralfull"
+ name = "west bump";
+ pixel_x = -24
},
-/area/quartermaster/sorting)
-"aCC" = (
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ icon_state = "0-2"
},
+/obj/machinery/kitchen_machine/candy_maker,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/quartermaster/sorting)
-"aCD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/crew_quarters/kitchen)
+"bce" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/landmark/start{
- name = "Cargo Technician"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/door/airlock/freezer{
+ req_access_txt = "28"
},
-/area/quartermaster/sorting)
-"aCE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/landmark{
- name = "blobstart"
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/kitchen)
+"bcf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/quartermaster/sorting)
-"aCF" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/kitchen)
+"bci" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/kitchen)
+"bck" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/shuttle/transport)
+"bcn" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/quartermaster/sorting)
-"aCG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/area/hallway/primary/central/north)
+"bco" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 25
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/kitchen)
+"bcr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/sorting)
-"aCI" = (
-/obj/item/storage/box/mousetraps,
+/area/hallway/primary/fore)
+"bcw" = (
+/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aCK" = (
-/obj/machinery/conveyor/north{
- id = "QMLoad2"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/conveyor/northwest/ccw{
- id = "QMLoad2"
+/area/quartermaster/office)
+"bcy" = (
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "s_docking_airlock"
},
+/obj/docking_port/mobile{
+ dwidth = 2;
+ height = 12;
+ id = "ferry";
+ name = "ferry shuttle";
+ roundstart_move = "ferry_away";
+ width = 5
+ },
+/obj/docking_port/stationary{
+ dwidth = 2;
+ height = 12;
+ id = "ferry_home";
+ name = "port bay 3";
+ width = 5
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport)
+"bcz" = (
+/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aCL" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/maintenance/apmaint)
+"bcA" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f9"
},
+/area/shuttle/transport)
+"bcB" = (
+/obj/item/twohanded/required/kirbyplants,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aCM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+ icon_state = "purple"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
+/area/quartermaster/miningdock)
+"bcD" = (
+/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aCN" = (
-/obj/machinery/conveyor/auto{
- id = "QMLoad2"
- },
-/obj/machinery/conveyor/north{
- id = "QMLoad2"
+ external_pressure_bound = 100;
+ on = 1
},
-/obj/machinery/conveyor/west{
- id = "QMLoad2"
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bcL" = (
+/obj/machinery/light{
+ dir = 4
},
-/area/quartermaster/storage)
-"aCO" = (
-/obj/machinery/conveyor/west{
- id = "QMLoad2"
+/obj/structure/table/reinforced,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 5;
icon_state = "brown"
},
-/area/quartermaster/storage)
-"aCP" = (
-/obj/effect/spawner/window/reinforced,
+/area/quartermaster/qm)
+"bcM" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bcQ" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aCQ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/engine/mechanic_workshop)
+"bda" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
+/area/security/permabrig)
+"bdd" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbage"
},
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bdh" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/camera{
+ c_tag = "Cargo Office NorthWest";
+ dir = 4
+ },
+/obj/machinery/photocopier,
+/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
-"aCR" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+"bdi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aCS" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/engine/mechanic_workshop/hangar)
+"bdq" = (
+/obj/machinery/conveyor{
+ dir = 5;
+ id = "garbage"
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/effect/decal/warning_stripes/northwest,
+/obj/effect/decal/warning_stripes/southeastcorner,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bds" = (
+/obj/machinery/door_control{
+ id = "soltradeship_south";
+ name = "Trade Deposits Door";
+ pixel_x = 24;
+ pixel_y = 8;
+ req_access_txt = "160"
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aCT" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -6;
- pixel_y = 32
+/obj/machinery/flasher_button{
+ id = "soltraderflash";
+ pixel_x = 24;
+ pixel_y = -8
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aCU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/door_control{
+ id = "trader_privacy";
+ name = "Privacy Shutters Control";
+ pixel_x = 24;
+ req_access_txt = "160"
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/item/flag/species/human,
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"bdu" = (
+/turf/simulated/floor/plating,
+/area/construction/hallway)
+"bdx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass{
+ name = "Vacant Office"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aCV" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/area/security/vacantoffice)
+"bdz" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/radio/intercom{
+ pixel_y = 22
+ },
+/obj/machinery/requests_console{
+ department = "Kitchen";
+ departmentType = 2;
+ name = "Kitchen Requests Console";
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/engine/controlroom)
-"aCW" = (
-/obj/effect/decal/warning_stripes/east,
+/area/crew_quarters/kitchen)
+"bdA" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall4"
+ },
+/area/shuttle/trade/sol)
+"bdB" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aCX" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
+/area/hallway/secondary/entry/commercial)
+"bdE" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 30
},
-/turf/simulated/wall/r_wall/coated,
-/area/engine/supermatter)
-"aCY" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 10
+/obj/machinery/camera{
+ c_tag = "Kitchen South"
},
-/obj/machinery/meter,
-/turf/simulated/wall/r_wall/coated,
-/area/engine/supermatter)
-"aCZ" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "engsm";
- name = "Supermatter Blast Doors";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/door/airlock/highsecurity{
- heat_proof = 1;
- id_tag = "smbolts";
- locked = 1;
- name = "Supermatter Chamber";
- req_one_access_txt = "24; 10"
+/area/crew_quarters/kitchen)
+"bdF" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/engine,
-/area/engine/supermatter)
-"aDa" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 1
+/area/hallway/secondary/entry)
+"bdG" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
},
-/obj/machinery/meter,
-/turf/simulated/wall/r_wall/coated,
-/area/engine/supermatter)
-"aDb" = (
+/area/hallway/secondary/entry)
+"bdI" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"bdL" = (
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
+ dir = 4
},
-/turf/simulated/wall/r_wall/coated,
-/area/engine/supermatter)
-"aDc" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"aDd" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 8
+"bdO" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/commercial)
+"bdQ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/kitchen_machine/microwave{
+ pixel_x = -1;
+ pixel_y = 7
},
-/obj/machinery/meter,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/engine/controlroom)
-"aDe" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
+/area/crew_quarters/kitchen)
+"bdR" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aDf" = (
-/obj/item/wrench,
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
+/area/security/prisonershuttle)
+"bdY" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aDg" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+/area/quartermaster/miningdock)
+"bea" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "purple"
},
+/area/quartermaster/miningdock)
+"beb" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "brown"
},
-/obj/structure/window/plasmareinforced{
- dir = 8
+/area/quartermaster/miningdock)
+"bed" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bef" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/window/plasmareinforced{
- dir = 4
+/area/hallway/secondary/entry/commercial)
+"beh" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "brown"
},
-/turf/simulated/floor/plating,
-/area/engine/controlroom)
-"aDh" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 10
+/area/quartermaster/miningdock)
+"bei" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bej" = (
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
},
-/obj/machinery/light{
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bem" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/effect/decal/warning_stripes/east,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aDi" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
+/area/hallway/secondary/entry)
+"beo" = (
+/obj/item/twohanded/required/kirbyplants,
/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
},
-/area/quartermaster/storage)
-"aDj" = (
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/area/hallway/secondary/entry)
+"bep" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aDk" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aDl" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"bev" = (
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
- dir = 1
+ dir = 8
},
-/obj/structure/rack,
+/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 3;
name = "3maintenance loot spawner"
},
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aDm" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aDn" = (
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "neutral"
- },
-/area/maintenance/engrooms)
-"aDp" = (
-/obj/effect/spawner/random_spawners/blood_maybe,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aDq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 32
- },
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aDr" = (
-/obj/effect/decal/remains/human,
/turf/simulated/floor/plasteel,
/area/maintenance/engrooms)
-"aDt" = (
+"bew" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
dir = 4
@@ -12892,748 +12987,614 @@
/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel,
/area/maintenance/engrooms)
-"aDu" = (
+"bey" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/westright{
+ name = "Mechanic's Desk";
+ req_access = null;
+ req_access_txt = "70"
+ },
+/obj/machinery/cell_charger,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop)
+"beC" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/landmark/start{
+ name = "Mechanic"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop)
+"beN" = (
+/obj/machinery/door_control{
+ id = "mechanicgate";
+ name = "Mechanic Pod Door";
+ pixel_x = -24;
+ pixel_y = -24;
+ req_access_txt = "70"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aDx" = (
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkyellow"
+ },
+/area/engine/mechanic_workshop/hangar)
+"beO" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "n2_sensor"
+ },
+/turf/simulated/floor/engine/n2,
+/area/atmos)
+"beU" = (
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/janitor)
+"beV" = (
+/obj/effect/decal/warning_stripes/southeast,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/engine/mechanic_workshop/hangar)
+"beW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "purplecorner"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/janitor)
+"beY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aDy" = (
+/obj/effect/landmark/start{
+ name = "Chef"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/kitchen)
+"beZ" = (
+/obj/machinery/door/poddoor/shutters{
+ id_tag = "janitorshutters";
+ name = "Janitor Shutters"
+ },
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "purple"
+ },
+/area/janitor)
+"bfc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"bfg" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"bfi" = (
+/obj/effect/spawner/lootdrop/trade_sol/vehicle{
+ loot = list(/obj/vehicle/motorcycle = 50, /obj/vehicle/snowmobile/key = 50, /obj/vehicle/snowmobile/blue/key = 50, /obj/vehicle/space/speedbike/red = 50, /obj/vehicle/space/speedbike = 50);
+ name = "4. Vehicle"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"bfl" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "brown"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aDz" = (
+/area/quartermaster/sorting)
+"bfn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "solar_chapel_inner";
+ locked = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "13"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aDA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aDB" = (
-/obj/structure/disposalpipe/segment{
+/area/maintenance/auxsolarstarboard)
+"bfq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/rack,
+/obj/item/clothing/shoes/magboots{
+ pixel_x = -4;
+ pixel_y = 3
},
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aDC" = (
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"bfs" = (
+/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 10
+ dir = 4
},
-/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
-"aDD" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+"bfw" = (
+/obj/structure/ore_box,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bfx" = (
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
},
-/obj/structure/disposalpipe/sortjunction{
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- icon_state = "pipe-j2s";
- name = "Bar Junction";
- sortType = 19
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bfz" = (
+/obj/machinery/light/spot,
+/obj/effect/spawner/lootdrop/trade_sol/largeitem{
+ loot = list(/obj/machinery/floodlight = 50, /obj/machinery/disco = 50, /obj/mecha/combat/durand/old = 50, /obj/machinery/snow_machine = 50);
+ name = "3. Large item"
+ },
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"bfA" = (
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bfF" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aDE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/quartermaster/miningdock)
+"bfL" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plating,
+/area/quartermaster/miningdock)
+"bfO" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 8
+ },
+/obj/structure/window/plasmareinforced{
dir = 4
},
+/obj/structure/window/plasmareinforced,
+/turf/simulated/floor/plating,
+/area/engine/controlroom)
+"bfQ" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
-"aDG" = (
-/obj/structure/disposalpipe/segment{
+"bfU" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/commercial)
+"bfY" = (
+/obj/structure/table,
+/obj/item/screwdriver,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bfZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 8;
- icon_state = "pipe-c"
+ frequency = 1379;
+ id_tag = "solar_chapel_pump"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "solar_chapel_airlock";
+ pixel_y = 25;
+ req_access_txt = "13";
+ tag_airpump = "solar_chapel_pump";
+ tag_chamber_sensor = "solar_chapel_sensor";
+ tag_exterior_door = "solar_chapel_outer";
+ tag_interior_door = "solar_chapel_inner"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/airlock_sensor{
+ id_tag = "solar_chapel_sensor";
+ pixel_y = 32
},
+/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aDI" = (
-/turf/simulated/wall,
-/area/janitor)
-"aDJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/maintenance/auxsolarstarboard)
+"bgb" = (
+/obj/structure/table/wood,
+/obj/item/camera_film,
+/obj/item/camera_film,
+/obj/machinery/firealarm{
dir = 4;
- initialize_directions = 11
+ pixel_x = 24
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/hallway/primary/fore)
-"aDK" = (
-/obj/item/crowbar/red{
- desc = "...";
- force = 20;
- name = "Легендарная монтировка"
+/obj/machinery/camera{
+ c_tag = "Librarian Desk";
+ dir = 9;
+ pixel_x = 1;
+ pixel_y = -2
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "neutral"
+ icon_state = "grimy"
+ },
+/area/library)
+"bge" = (
+/obj/machinery/chem_dispenser,
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/door_control{
+ id = "Chemistry2";
+ name = "Chem Medbey Desk Shutters";
+ pixel_x = -18;
+ pixel_y = -24
},
-/area/maintenance/engrooms)
-"aDL" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Cargo Bay Maintenance";
- req_access_txt = "31"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/sorting)
-"aDM" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/structure/reagent_dispensers/fueltank/chem{
+ pixel_y = -32
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/engine,
+/area/medical/chemistry)
+"bgi" = (
+/obj/structure/filingcabinet,
+/obj/machinery/firealarm{
+ pixel_y = 32
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "red"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/security/checkpoint2)
+"bgj" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/item/radio/intercom{
+ pixel_y = -28
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/crate/medical,
/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aDN" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/area/hallway/secondary/exit)
+"bgk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "eva-shutters";
+ name = "E.V.A. Storage Shutters"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aDO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/ai_monitored/storage/eva)
+"bgl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aDP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aDQ" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
+ icon_state = "purplefull"
+ },
+/area/janitor)
+"bgm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics";
+ req_access_txt = "35"
},
-/area/quartermaster/sorting)
-"aDR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aDS" = (
-/obj/structure/plasticflaps,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aDT" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aDU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "4-8"
},
-/area/quartermaster/storage)
-"aDW" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "QMLoad2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/quartermaster/storage)
-"aDX" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
- },
-/area/quartermaster/storage)
-"aDY" = (
-/obj/machinery/conveyor/northwest{
- id = "QMLoad2"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aDZ" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
- dir = 8
+ icon_state = "dark"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/engine/controlroom)
-"aEa" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+/area/hydroponics)
+"bgn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"aEb" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxport)
-"aEc" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxport)
-"aEd" = (
-/obj/machinery/atmospherics/trinary/filter{
- dir = 1;
- filter_type = "n2";
- name = "nitrogen filter";
- on = 1
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ icon_state = "purplecorner"
},
-/area/engine/controlroom)
-"aEe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
+/area/janitor)
+"bgo" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/window/reinforced{
+ dir = 1
},
+/obj/machinery/chem_master/condimaster,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aEf" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
+/area/crew_quarters/kitchen)
+"bgq" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aEg" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA"
- },
-/turf/simulated/wall/r_wall,
-/area/engine/supermatter)
-"aEh" = (
-/obj/machinery/atmospherics/binary/pump{
- name = "Gas to Filter"
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/engine,
-/area/engine/supermatter)
-"aEi" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1;
- name = "Gas to Chamber"
- },
-/obj/machinery/camera{
- c_tag = "Supermatter Pump Airlock";
- network = list("SS13","Engineering")
- },
-/obj/machinery/light/small{
+/area/quartermaster/storage)
+"bgs" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/engine,
-/area/engine/supermatter)
-"aEj" = (
-/obj/machinery/atmospherics/binary/pump,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aEk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aEl" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8;
- name = "Nitrogen to Loop"
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aEm" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 8
- },
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ icon_state = "white"
},
-/area/engine/controlroom)
-"aEn" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/area/crew_quarters/kitchen)
+"bgt" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/effect/decal/warning_stripes/northeastcorner,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aEo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plating,
+/area/security/evidence)
+"bgw" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "darkyellow"
},
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 8
+/area/engine/mechanic_workshop/hangar)
+"bgx" = (
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
},
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/quartermaster/storage)
+"bgz" = (
+/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aEp" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/turf/space,
-/area/space/nearstation)
-"aEq" = (
+/area/hallway/secondary/entry/commercial)
+"bgB" = (
+/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aEr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/random_spawners/blood_maybe,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "neutral"
- },
-/area/maintenance/engrooms)
-"aEs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aEt" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/random_spawners/blood_maybe,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/hallway/secondary/entry/additional)
+"bgD" = (
+/mob/living/simple_animal/pet/dog/corgi/Ian,
+/obj/structure/bed/dogbed/ian,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"bgE" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aEu" = (
+/area/quartermaster/miningdock)
+"bgF" = (
+/obj/effect/decal/warning_stripes/south,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aEv" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/plasticflaps{
- opacity = 1
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"bgH" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"bgI" = (
+/obj/structure/cable,
+/obj/machinery/power/solar_control{
+ id = "auxsolareast";
+ name = "Fore Starboard Solar Control"
},
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plating,
-/area/crew_quarters/serviceyard)
-"aEw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/maintenance/auxsolarstarboard)
+"bgJ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aEx" = (
+/area/hallway/secondary/entry)
+"bgK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/wall,
-/area/crew_quarters/serviceyard)
-"aEy" = (
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding4"
- },
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding8"
- },
-/obj/machinery/light{
- dir = 1
+ icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/yellow/partial,
+/obj/effect/decal/warning_stripes/arrow,
/turf/simulated/floor/plasteel{
- icon_state = "asteroid";
- tag = "icon-asteroid (NORTH)"
- },
-/area/hydroponics)
-"aEz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aEA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "brown"
},
-/obj/machinery/light/small{
- dir = 1
+/area/quartermaster/miningdock)
+"bgL" = (
+/obj/machinery/door/airlock{
+ name = "Magistrate's Office";
+ req_access_txt = "74"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aEB" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "purplecorner"
- },
-/area/janitor)
-"aEC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aED" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/fore)
-"aEE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/fore)
-"aEF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ icon_state = "cult";
+ tag = "icon-cult"
},
+/area/magistrateoffice)
+"bgM" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "yellowfull"
},
-/area/hallway/primary/fore)
-"aEG" = (
+/area/engine/controlroom)
+"bgN" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/quartermaster/sorting)
-"aEH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/closet/crate,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
-"aEI" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- sortType = 21;
- tag = "icon-pipe-j1s (EAST)"
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
- },
-/area/quartermaster/sorting)
-"aEJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/machinery/door/firedoor,
+/area/magistrateoffice)
+"bgO" = (
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"aEK" = (
+/area/hallway/secondary/entry)
+"bgR" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13641,1650 +13602,1741 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/sorting)
-"aEL" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bgU" = (
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/westarrival)
+"bgY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining/glass{
- name = "Cargo Bay";
- req_access_txt = "31"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/delivery)
-"aEM" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/area/engine/controlroom)
+"bgZ" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
},
-/obj/structure/disposaloutlet,
-/obj/structure/window/reinforced{
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
dir = 4
},
-/obj/structure/window/reinforced{
+/obj/structure/window/plasmareinforced{
dir = 8
},
-/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plating,
+/area/engine/supermatter)
+"bhn" = (
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
-/area/quartermaster/delivery)
-"aEN" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
+/area/hallway/secondary/entry/westarrival)
+"bhq" = (
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
},
-/obj/machinery/door/window{
- dir = 2
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/quartermaster/delivery)
-"aEO" = (
-/obj/structure/janitorialcart,
-/obj/machinery/light_switch{
- pixel_y = -26
+/area/hallway/secondary/entry/eastarrival)
+"bhs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "purple"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/janitor)
-"aEP" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/turf/simulated/floor/plasteel,
+/area/hydroponics)
+"bht" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"bhv" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/eastarrival)
+"bhw" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "brown"
+ icon_state = "red"
},
-/area/quartermaster/sorting)
-"aEQ" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/crew_quarters/serviceyard)
+"bhx" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/window/eastleft{
+ name = "Kitchen Desk";
+ req_access_txt = "28"
},
-/area/quartermaster/storage)
-"aER" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- initialize_directions = 11
+ id_tag = "Kitchen Windows";
+ name = "Kitchen Privacy Shutters"
},
+/obj/item/clipboard,
+/obj/item/toy/figure/chef,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/quartermaster/storage)
-"aES" = (
-/obj/structure/grille,
-/turf/space,
-/area/space/nearstation)
-"aET" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/crew_quarters/kitchen)
+"bhy" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/area/quartermaster/storage)
-"aEU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/chair/office/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aEV" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+ icon_state = "freezerfloor"
},
+/area/crew_quarters/kitchen)
+"bhz" = (
+/obj/machinery/light,
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/snacks/sliceable/flatdough,
+/obj/item/reagent_containers/food/snacks/meat,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/quartermaster/storage)
-"aEW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/crew_quarters/kitchen)
+"bhB" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 101;
+ on = 1
},
-/area/quartermaster/storage)
-"aEX" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/engine,
+/area/engine/supermatter)
+"bhE" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/quartermaster/storage)
-"aEY" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/crew_quarters/kitchen)
+"bhF" = (
+/obj/structure/foodcart,
+/obj/machinery/light,
+/obj/machinery/computer/guestpass{
+ pixel_y = -32
},
-/area/quartermaster/storage)
-"aEZ" = (
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aFa" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/conveyor/west{
- id = "QMLoad2"
+ icon_state = "white"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aFb" = (
-/obj/machinery/door/airlock/external{
- id_tag = "s_docking_airlock";
- name = "Shuttle Hatch";
- req_access_txt = "31"
+/area/crew_quarters/kitchen)
+"bhJ" = (
+/obj/machinery/door_control{
+ id = "Kitchen Windows";
+ name = "Kitchen Privacy Shutters Control";
+ pixel_y = -26;
+ req_access_txt = "28"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"aFc" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1;
- name = "Gas to Thermo"
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
+/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/engine/controlroom)
-"aFd" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aFe" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
+/area/crew_quarters/kitchen)
+"bhL" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aFf" = (
-/obj/machinery/atmospherics/trinary/filter{
- dir = 8;
- filter_type = "n2"
- },
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aFg" = (
-/obj/structure/sign/fire,
-/turf/simulated/wall/r_wall,
-/area/engine/supermatter)
-"aFh" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/wall/r_wall,
-/area/engine/supermatter)
-"aFi" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aFj" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
+/obj/structure/window/plasmareinforced{
dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/controlroom)
-"aFk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
+/turf/simulated/floor/plating,
+/area/engine/supermatter)
+"bhM" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 8
},
-/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bhN" = (
/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aFl" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
- },
-/obj/effect/decal/warning_stripes/east,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aFo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aFp" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aFq" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/engine/mechanic_workshop)
+"bhP" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aFr" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 4;
- location = "Clown"
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/plasticflaps{
- opacity = 1
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/requests_console{
+ department = "Mechanic";
+ departmentType = 2;
+ name = "Mechanic's Workshop Requests Console";
+ pixel_y = -32
},
+/obj/structure/closet/toolcloset,
/turf/simulated/floor/plasteel{
- icon_state = "bar"
+ dir = 10;
+ icon_state = "yellow"
},
-/area/clownoffice)
-"aFs" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/window/eastright{
- dir = 2;
- name = "Clown Delivery";
- req_access_txt = "46"
+/area/engine/mechanic_workshop)
+"bhS" = (
+/obj/structure/chair/office/light{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "bar"
- },
-/area/clownoffice)
-"aFt" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/alarm{
- pixel_y = 25
- },
-/obj/machinery/camera{
- c_tag = "Clown Office"
+ icon_state = "grimy"
},
-/obj/structure/window/reinforced{
- dir = 8
+/area/security/vacantoffice)
+"bhW" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "bar"
+ icon_state = "grimy"
},
-/area/clownoffice)
-"aFu" = (
-/obj/machinery/status_display{
- pixel_y = 32
+/area/security/vacantoffice)
+"bhY" = (
+/obj/structure/table/reinforced,
+/obj/item/restraints/legcuffs/beartrap,
+/obj/item/restraints/legcuffs/beartrap,
+/obj/item/restraints/legcuffs/beartrap,
+/obj/item/storage/box/mousetraps,
+/obj/item/storage/box/mousetraps,
+/obj/item/radio/intercom{
+ pixel_y = -28
},
-/obj/structure/closet/secure_closet/clown,
-/obj/item/clothing/under/soldieruniform,
-/obj/item/clothing/suit/soldiercoat,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/lights/mixed{
+ pixel_x = 4;
+ pixel_y = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "bar"
+ icon_state = "purple"
},
-/area/clownoffice)
-"aFv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/janitor)
+"bhZ" = (
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "s_docking_airlock";
+ req_access_txt = "48"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor,
+/area/shuttle/mining)
+"bia" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/machinery/camera{
+ c_tag = "Mining Port";
+ dir = 1
},
-/area/crew_quarters/cabin1)
-"aFw" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = -31
},
-/area/crew_quarters/cabin1)
-"aFx" = (
-/turf/simulated/wall,
-/area/crew_quarters/sleep)
-"aFy" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small{
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bib" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
dir = 1
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/light,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bic" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 3
},
/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"aFz" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10
+/area/quartermaster/miningdock)
+"bid" = (
+/obj/machinery/computer/security/mining,
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_y = -27
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"aFA" = (
-/turf/simulated/wall,
-/area/crew_quarters/bar)
-"aFB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bie" = (
+/obj/machinery/computer/shuttle/mining,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bif" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/fore)
-"aFC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25
+ dir = 10;
+ icon_state = "yellow"
},
+/area/maintenance/electrical)
+"big" = (
+/obj/structure/closet/l3closet/janitor,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 6;
+ icon_state = "purple"
},
-/area/hallway/primary/fore)
-"aFD" = (
-/obj/structure/closet/firecloset,
+/area/janitor)
+"bii" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/quartermaster/sorting)
-"aFE" = (
-/obj/structure/disposalpipe/segment,
+/area/quartermaster/miningdock)
+"bin" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "brown"
+ icon_state = "grimy"
},
-/area/quartermaster/sorting)
-"aFF" = (
+/area/security/vacantoffice)
+"bix" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"biJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "brown"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/quartermaster/sorting)
-"aFG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"biL" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба содержит газ для обработки и после возвращает его обратно в трубу смешивания";
+ dir = 9;
+ name = "Труба обработки"
},
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"biO" = (
+/obj/structure/chair/office/light,
/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/area/quartermaster/sorting)
-"aFH" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/area/crew_quarters/hor)
+"biQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"biS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ on = 1
+ },
+/turf/simulated/floor/engine,
+/area/engine/supermatter)
+"biU" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/folder/yellow,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ icon_state = "grimy"
},
-/area/quartermaster/sorting)
-"aFI" = (
-/obj/machinery/light/small,
+/area/security/vacantoffice)
+"biW" = (
+/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/quartermaster/sorting)
-"aFJ" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/effect/spawner/lootdrop/maintenance,
+/area/toxins/mixing)
+"biX" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/insulated,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/toxins/mixing)
+"biZ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high/plus,
+/obj/item/stock_parts/cell/high/plus{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/stock_parts/cell/high/plus{
+ pixel_x = 5;
+ pixel_y = 6
},
-/area/quartermaster/storage)
-"aFK" = (
/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ icon_state = "white"
},
-/area/quartermaster/sorting)
-"aFL" = (
-/obj/structure/extinguisher_cabinet{
+/area/assembly/robotics)
+"bjc" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/item/radio/intercom{
pixel_x = 28
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "brown"
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"bjg" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f5";
+ tag = "icon-swall_f5"
},
-/area/quartermaster/sorting)
-"aFM" = (
-/obj/effect/decal/cleanable/dirt,
+/area/shuttle/trade/sol)
+"bjh" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall13"
+ },
+/area/shuttle/trade/sol)
+"bjl" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f9"
+ },
+/area/shuttle/trade/sol)
+"bjn" = (
+/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_x = -32;
+ pixel_y = 0
+ },
/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aFN" = (
-/obj/machinery/door/airlock/external{
- id_tag = "supply_home";
- name = "Cargo Docking Hatch";
- req_access_txt = "31"
+/area/hallway/secondary/entry/commercial)
+"bjr" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28;
+ pixel_y = 32
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aFO" = (
-/obj/effect/decal/warning_stripes/north,
+/area/hallway/secondary/entry/commercial)
+"bjs" = (
+/obj/structure/chair,
/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aFP" = (
+/area/hallway/secondary/entry/commercial)
+"bjt" = (
+/obj/structure/sign/directions/engineering{
+ dir = 8;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/science{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/sign/directions/evac{
+ pixel_y = -8
+ },
+/turf/simulated/wall,
+/area/crew_quarters/kitchen)
+"bju" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/door/airlock/external{
- id_tag = "supply_home";
- name = "Cargo Docking Hatch";
- req_access_txt = "31"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aFQ" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/item/crowbar,
-/obj/machinery/light,
-/obj/item/stack/sheet/glass{
- amount = 20
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/computer/guestpass{
- pixel_y = -32
+/area/quartermaster/office)
+"bjx" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall/r_wall,
+/area/engine/supermatter)
+"bjy" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Cargo Disposals Control";
+ dir = 1
},
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/photocopier,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/delivery)
+"bjz" = (
/turf/simulated/floor/plasteel{
- icon_state = "purple"
+ dir = 4;
+ icon_state = "brown"
+ },
+/area/quartermaster/office)
+"bjA" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced,
+/obj/structure/window/plasmareinforced{
+ dir = 4
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
-/area/janitor)
-"aFR" = (
-/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aFS" = (
-/obj/machinery/status_display/supply_display,
-/turf/simulated/wall,
-/area/quartermaster/storage)
-"aFT" = (
-/obj/machinery/light/spot{
+/area/engine/supermatter)
+"bjB" = (
+/obj/structure/chair,
+/obj/machinery/camera{
+ c_tag = "Arrivals Waiting Zone"
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/commercial)
+"bjC" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/floor/plasteel{
dir = 8;
- tag = "icon-tube1 (WEST)"
+ icon_state = "neutralfull"
},
-/obj/machinery/door_control{
- id = "QMLoaddoor";
- layer = 3;
- name = "Loading Doors";
- pixel_x = -24;
- pixel_y = -8
+/area/engine/controlroom)
+"bjD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door_control{
- id = "QMLoaddoor2";
- layer = 3;
- name = "Loading Doors";
- pixel_x = -24;
- pixel_y = 8
+/obj/structure/chair{
+ dir = 1
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"aFU" = (
-/obj/machinery/light/spot{
- dir = 4;
- tag = "icon-tube1 (EAST)"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"aFV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"bjE" = (
+/obj/machinery/mineral/ore_redemption,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bjF" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/commercial)
+"bjH" = (
+/obj/item/radio/intercom,
+/turf/simulated/wall,
+/area/hallway/secondary/entry/commercial)
+"bjI" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aFW" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/meter,
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/area/hallway/secondary/entry)
+"bjK" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry)
+"bjL" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/space,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry)
+"bjM" = (
+/obj/structure/chair/office/light{
+ dir = 8
},
-/area/engine/controlroom)
-"aFX" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8;
- name = "Gas to Filter";
- on = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "carpet"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aFY" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/camera{
- c_tag = "Supermatter South";
- network = list("SS13","Engineering")
+/area/security/vacantoffice)
+"bjN" = (
+/obj/machinery/status_display{
+ pixel_x = 32
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/structure/computerframe,
+/turf/simulated/floor/plasteel{
+ icon_state = "carpet"
},
-/obj/effect/decal/warning_stripes/north,
+/area/security/vacantoffice)
+"bjO" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
-/area/engine/supermatter)
-"aFZ" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
+/area/hallway/secondary/entry)
+"bjS" = (
+/obj/structure/table,
+/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/alarm{
- pixel_y = 23
- },
-/obj/effect/decal/warning_stripes/north,
+/turf/simulated/shuttle/floor,
+/area/shuttle/mining)
+"bjT" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel,
-/area/engine/supermatter)
-"aGa" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/meter,
-/obj/effect/decal/warning_stripes/north,
+/area/hallway/secondary/entry/commercial)
+"bjU" = (
+/obj/machinery/power/rad_collector,
+/obj/machinery/camera{
+ c_tag = "Supermatter Engine West";
+ network = list("SS13","Engineering")
+ },
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 8;
+ icon_state = "0-8"
},
+/turf/simulated/floor/greengrid,
+/area/engine/supermatter)
+"bjW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aGb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible{
+/area/maintenance/engrooms)
+"bkf" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -30
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
+"bko" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/northwestcorner,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aGc" = (
-/obj/structure/cable,
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"bkw" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Distribution Loop";
+ req_one_access_txt = "24"
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aGd" = (
+/area/atmos)
+"bkz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ dir = 4
},
-/obj/structure/table/reinforced,
-/obj/machinery/light/small,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/tank/plasma,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aGf" = (
-/obj/machinery/door/poddoor{
- id_tag = "QMLoaddoor2";
- name = "supply dock loading door"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "bluecorner"
},
-/obj/machinery/conveyor/west{
- id = "QMLoad2"
+/area/hallway/secondary/entry/louge)
+"bkJ" = (
+/turf/simulated/wall,
+/area/hallway/primary/port/west)
+"bkK" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/machinery/camera{
+ c_tag = "Arrivals Lobby"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aGg" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry/louge)
+"bkM" = (
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry/commercial)
+"bkQ" = (
+/obj/machinery/mecha_part_fabricator/spacepod,
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
+ icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ dir = 1;
+ icon_state = "yellow"
},
-/area/engine/controlroom)
-"aGh" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/area/engine/mechanic_workshop)
+"bkS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aGi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/controlroom)
-"aGj" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aGk" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
+/area/quartermaster/storage)
+"bkU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "neutral"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/maintenance/engrooms)
-"aGl" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/area/quartermaster/storage)
+"bkV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- on = 1
+ initialize_directions = 11
},
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aGm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "neutral"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/maintenance/engrooms)
-"aGn" = (
-/obj/structure/rack,
+/area/quartermaster/storage)
+"bkX" = (
+/obj/structure/chair/comfy/brown,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry/louge)
+"bkY" = (
+/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 3;
name = "3maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aGo" = (
-/obj/machinery/newscaster{
- pixel_x = -32
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bla" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A10";
+ location = "A9"
},
-/obj/structure/bed,
-/obj/item/bedsheet/clown,
/turf/simulated/floor/plasteel{
- icon_state = "bar"
+ dir = 1;
+ icon_state = "arrival"
},
-/area/clownoffice)
-"aGp" = (
-/obj/effect/landmark/start{
- name = "Clown"
+/area/hallway/secondary/entry/commercial)
+"blb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "bar"
+ dir = 1;
+ icon_state = "arrival"
},
-/area/clownoffice)
-"aGq" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
+/area/hallway/secondary/entry/commercial)
+"blc" = (
+/obj/machinery/light{
+ dir = 1;
on = 1
},
-/obj/structure/chair/office/dark,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
/turf/simulated/floor/plasteel{
- icon_state = "bar"
+ dir = 1;
+ icon_state = "arrival"
},
-/area/clownoffice)
-"aGr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hallway/secondary/entry/commercial)
+"blf" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/effect/landmark/start{
- name = "Clown"
+/obj/machinery/gibber,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 30
},
-/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/kitchen)
+"blk" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- icon_state = "bar"
+ dir = 1;
+ icon_state = "arrival"
},
-/area/clownoffice)
-"aGs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hallway/secondary/entry/commercial)
+"bll" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door/airlock/bananium{
- name = "Clown's Office";
- req_access_txt = "46"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/hallway/primary/central/north)
+"blq" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken";
+ tag = "icon-wood-broken"
+ },
+/area/maintenance/abandonedbar)
+"blt" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
},
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "bar"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/clownoffice)
-"aGt" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/quartermaster/office)
+"blv" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "arrival"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/hallway/secondary/entry/commercial)
+"blw" = (
/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A15";
- location = "A14"
+ codes_txt = "patrol;next_patrol=A9";
+ location = "A8"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "arrival"
},
-/area/crew_quarters/serviceyard)
-"aGu" = (
+/area/hallway/secondary/entry)
+"blx" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry)
+"blB" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/delivery)
+"blE" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/turf/simulated/floor/plasteel{
+ icon_state = "brown"
},
-/obj/item/radio/intercom{
- dir = 0;
- pixel_x = 29
+/area/quartermaster/miningdock)
+"blH" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/crew_quarters/serviceyard)
-"aGv" = (
-/obj/structure/table/wood,
+/area/library)
+"blJ" = (
+/obj/machinery/light,
/obj/item/radio/intercom{
- pixel_y = 28
+ dir = 1;
+ pixel_y = -25
},
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26;
- pixel_y = 28
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/closet/secure_closet/miner,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"blK" = (
+/obj/item/radio/intercom{
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 1;
+ icon_state = "arrival"
},
-/area/crew_quarters/bar)
-"aGw" = (
+/area/hallway/secondary/entry)
+"blL" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
pixel_y = 24
},
-/obj/machinery/light/small{
- dir = 1
+/obj/machinery/camera{
+ c_tag = "Arrivals Hall Center"
},
-/obj/structure/closet/secure_closet/bar,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 1;
+ icon_state = "arrival"
},
-/area/crew_quarters/bar)
-"aGx" = (
+/area/hallway/secondary/entry)
+"blM" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
- },
-/obj/structure/sink/kitchen{
- pixel_y = 28
- },
-/obj/machinery/camera{
- c_tag = "Bar Backroom"
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "grimy"
},
-/area/crew_quarters/bar)
-"aGy" = (
-/obj/machinery/light/small{
+/area/security/detectives_office)
+"blN" = (
+/obj/structure/chair/comfy/shuttle{
dir = 1
},
-/obj/machinery/status_display{
- pixel_y = 32
+/turf/simulated/shuttle/floor,
+/area/shuttle/mining)
+"blO" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"blQ" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
-/obj/structure/closet/secure_closet/bar,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"blR" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"blZ" = (
+/obj/machinery/vending/security,
+/obj/effect/decal/warning_stripes/red/hollow,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 1
},
-/area/crew_quarters/bar)
-"aGz" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
+/area/security/permabrig)
+"bmd" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = 26
+/obj/machinery/camera{
+ c_tag = "Brig Reception";
+ dir = 8;
+ network = list("SS13","Security")
},
-/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 6;
+ icon_state = "red"
},
-/area/crew_quarters/bar)
-"aGA" = (
-/obj/structure/table/wood,
-/obj/structure/sign/barsign{
- pixel_y = 32
+/area/security/reception)
+"bme" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/chem_dispenser/soda,
-/obj/structure/closet/walllocker/emerglocker/north{
- pixel_x = -32;
- pixel_y = 0
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A6";
+ location = "A5"
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/bar)
-"aGB" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/beer,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/bar)
-"aGC" = (
-/obj/machinery/vending/boozeomat,
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/bar)
-"aGD" = (
-/obj/machinery/light{
- dir = 1
+ dir = 1;
+ icon_state = "arrival"
},
-/obj/structure/table/wood,
-/obj/machinery/requests_console{
- department = "Bar";
- departmentType = 2;
- name = "Bar Requests Console";
- pixel_y = 30
+/area/hallway/secondary/entry)
+"bmo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/book/manual/barman_recipes,
-/obj/item/reagent_containers/food/drinks/shaker,
-/obj/item/reagent_containers/glass/rag,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/crew_quarters/bar)
-"aGE" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/toy/figure/bartender,
-/obj/machinery/status_display{
- pixel_y = 32
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/bar)
-"aGF" = (
-/obj/structure/table/wood,
-/obj/item/radio/intercom{
- pixel_y = 28
- },
-/obj/item/storage/fancy/cigarettes/cigpack_random{
- pixel_x = 5;
- pixel_y = 5
+ icon_state = "white"
},
-/obj/item/storage/fancy/cigarettes/cigpack_random,
-/obj/item/storage/box/matches,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/area/medical/medbay)
+"bmp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/flasher{
+ id = null;
+ pixel_y = 24
},
-/area/crew_quarters/bar)
-"aGG" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
-/obj/structure/sign/poster/official/high_class_martini{
- pixel_y = 32
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/bar)
-"aGH" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/fore)
-"aGI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "darkblue"
},
+/area/turret_protected/aisat_interior)
+"bmq" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/fore)
-"aGJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/disposalpipe/sortjunction{
dir = 4;
- icon_state = "neutralcorner"
+ tag = "icon-pipe-j1s (EAST)"
},
-/area/hallway/primary/fore)
-"aGK" = (
-/turf/simulated/wall,
-/area/quartermaster/office)
-"aGL" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/wall,
-/area/quartermaster/delivery)
-"aGM" = (
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"bmr" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"aGN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/quartermaster/delivery)
-"aGO" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/window/reinforced{
- dir = 4
+/area/turret_protected/ai)
+"bms" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A4";
+ location = "A3"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "brown"
- },
-/area/quartermaster/storage)
-"aGP" = (
-/obj/structure/plasticflaps/mining,
-/obj/machinery/conveyor/west{
- id = "QMLoad2"
+ icon_state = "arrival"
},
+/area/hallway/secondary/entry)
+"bmw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/barricade/wooden,
/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aGQ" = (
-/obj/machinery/conveyor/east{
- id = "QMLoad"
+/area/maintenance/abandonedbar)
+"bmG" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A11";
+ location = "A10"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "arrival"
},
-/area/quartermaster/storage)
-"aGR" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/conveyor/east{
- id = "QMLoad"
+/area/hallway/secondary/entry)
+"bmJ" = (
+/obj/effect/decal/cleanable/blood/xeno,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"bmN" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/suit_storage_unit/atmos,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aGS" = (
-/obj/docking_port/mobile/supply,
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 5;
- height = 7;
- id = "supply_home";
- name = "supply bay";
- width = 12
+/area/atmos)
+"bmV" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6;
+ level = 1
},
-/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- tag = "icon-swall3"
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 4
},
-/area/shuttle/supply)
-"aGV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/structure/window/plasmareinforced{
+ dir = 1
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
+/turf/simulated/floor/plating,
+/area/engine/supermatter)
+"bmX" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"bmZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/security/prisonershuttle)
+"bnc" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkred"
+ icon_state = "browncorner"
},
-/area/security/podbay)
-"aGW" = (
-/obj/machinery/door/airlock/public/glass{
- id_tag = "Perma12"
+/area/hallway/primary/central/north)
+"bnf" = (
+/obj/structure/closet/wardrobe/grey,
+/obj/machinery/ai_status_display{
+ pixel_x = 32
},
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/crew_quarters/locker)
+"bni" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A40";
+ location = "A39"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "arrival"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+/area/hallway/secondary/entry)
+"bnj" = (
+/obj/machinery/light{
+ dir = 1
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaCellsLockdown";
- name = "Perma Cells Lockdown"
+/obj/item/radio/intercom{
+ pixel_y = 26
},
/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry)
+"bnk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/hydroponics/soil,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/seeds/sunflower,
+/obj/machinery/light/small{
dir = 1
},
-/area/security/permabrig)
-"aGX" = (
-/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/maintenance/auxsolarport)
-"aGY" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/auxsolarport)
-"aGZ" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/turbine)
-"aHa" = (
+/area/hydroponics/abandoned_garden)
+"bnm" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A1";
+ location = "A40"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry)
+"bnn" = (
/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/turbine)
-"aHb" = (
-/obj/machinery/light/small{
- dir = 4
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/turf/simulated/floor/plating,
+/area/bridge/checkpoint/north)
+"bnE" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aHc" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/structure/cable/yellow{
+/area/engine/hardsuitstorage)
+"bnL" = (
+/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aHe" = (
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ tag = "icon-pipe-j1 (EAST)"
},
-/area/engine/controlroom)
-"aHf" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/controlroom)
-"aHg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ icon_state = "neutralcorner"
},
-/obj/structure/cable/yellow{
+/area/hallway/primary/starboard/east)
+"bnM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
- },
-/area/engine/controlroom)
-"aHh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 1;
+ icon_state = "arrival"
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/hallway/secondary/entry)
+"bnO" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A3";
+ location = "A2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/controlroom)
-"aHi" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11
+ icon_state = "arrival"
},
-/obj/structure/cable/yellow{
+/area/hallway/secondary/entry)
+"boc" = (
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
- },
-/area/engine/controlroom)
-"aHj" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aHk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"bog" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/structure/cable/yellow{
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/north)
+"boi" = (
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A14";
+ location = "A13"
},
-/area/engine/controlroom)
-"aHl" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/controlroom)
-"aHm" = (
+/area/hallway/primary/central/north)
+"bol" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/controlroom)
-"aHn" = (
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"bon" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/structure/closet/crate,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"bop" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
},
-/area/engine/controlroom)
-"aHo" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8;
- name = "Gas to Cooling Loop"
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "brown"
},
+/area/quartermaster/sorting)
+"bot" = (
/obj/effect/decal/warning_stripes/west,
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aHp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/quartermaster/storage)
+"boz" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
},
-/obj/effect/decal/warning_stripes/east,
+/area/hallway/secondary/entry/louge)
+"boD" = (
+/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aHq" = (
+/area/quartermaster/miningdock)
+"boF" = (
/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/remains/human,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
+/obj/machinery/slot_machine,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"boG" = (
+/obj/machinery/light/small{
+ dir = 4
},
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aHs" = (
-/obj/structure/sign/poster/official/random{
- pixel_y = -32
+/area/hallway/secondary/entry)
+"boH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aHt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/random_spawners/blood_maybe,
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aHu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aHv" = (
-/obj/structure/girder,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"boJ" = (
+/obj/item/wrench,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aHw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/area/engine/controlroom)
+"boK" = (
+/obj/machinery/power/solar{
+ name = "Aft Starboard Solar Panel"
},
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aHx" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/maintenance/engrooms)
-"aHy" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/wall/rust,
-/area/maintenance/engrooms)
-"aHz" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 8
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
},
-/obj/structure/window/plasmareinforced{
+/area/solar/auxport)
+"boL" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4
},
-/obj/structure/window/plasmareinforced,
-/turf/simulated/floor/plating,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"aHA" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/cabin1)
-"aHB" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/obj/item/reagent_containers/food/snacks/grown/banana{
- pixel_x = -6;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/snacks/grown/banana{
- pixel_x = 7;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/snacks/pie{
- pixel_y = 7
- },
+"boP" = (
+/obj/structure/sign/fire,
+/turf/simulated/wall/r_wall,
+/area/engine/supermatter)
+"boU" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "bar"
+ dir = 8;
+ icon_state = "yellow"
},
-/area/clownoffice)
-"aHC" = (
-/obj/machinery/light,
-/obj/structure/table/reinforced,
-/obj/structure/mirror{
- pixel_y = -32
+/area/maintenance/engrooms)
+"boW" = (
+/mob/living/simple_animal/mouse/brown{
+ desc = "Главный помощник архитектора станции.";
+ real_name = "Инспектор Мышь"
},
-/obj/item/stamp/clown,
-/turf/simulated/floor/plasteel{
- icon_state = "bar"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/clownoffice)
-"aHD" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/toy/figure/clown{
- pixel_x = 5;
- pixel_y = 1
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"bpa" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced,
+/obj/structure/window/plasmareinforced{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "bar"
+/obj/structure/window/plasmareinforced{
+ dir = 1
},
-/area/clownoffice)
-"aHE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"bpe" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"bpf" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/alarm{
+ pixel_y = 25
},
-/obj/structure/statue/bananium/clown{
- name = "Статуя Великого Кекеги"
+/obj/machinery/camera{
+ c_tag = "Clown Office"
},
-/obj/item/radio/intercom{
- pixel_y = -35
+/obj/structure/window/reinforced{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/clownoffice)
-"aHF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Clown";
- name = "Clown Privacy Shutters"
+"bpg" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/clownoffice)
-"aHG" = (
-/obj/structure/disposalpipe/segment{
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bph" = (
+/obj/structure/closet/cardboard,
+/obj/machinery/power/apc{
dir = 1;
- icon_state = "pipe-c"
+ name = "north bump";
+ pixel_y = 26
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bpm" = (
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/crew_quarters/serviceyard)
-"aHH" = (
+/area/turret_protected/ai)
+"bpn" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bpo" = (
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"bpq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1
- },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/area/crew_quarters/serviceyard)
-"aHI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/medbay2)
+"bpv" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/atmos)
+"bpy" = (
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ dir = 6;
+ name = "Труба на фильтрацию"
},
-/turf/simulated/wall,
-/area/crew_quarters/bar)
-"aHJ" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "garbage"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/south,
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"aHK" = (
+/area/atmos)
+"bpI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bpK" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"bpQ" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bpR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/door/airlock/maintenance{
+ name = "Break Room Maintenance";
+ req_access_txt = "47"
},
-/area/crew_quarters/bar)
-"aHL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "white"
},
-/area/crew_quarters/bar)
-"aHM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/maintenance/asmaint2)
+"bpU" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/hydroponics/abandoned_garden)
+"bpZ" = (
+/obj/structure/table,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/reagent_containers/glass/bottle/nutrient/rh{
+ pixel_x = 7;
+ pixel_y = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/reagent_containers/spray/pestspray,
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_x = 5;
+ pixel_y = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"bqc" = (
+/obj/structure/grille,
+/turf/space,
+/area/space/nearstation)
+"bqd" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/commercial)
+"bqe" = (
+/obj/machinery/light{
+ dir = 8
},
+/obj/machinery/hydroponics/constructable,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/bar)
-"aHN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hydroponics)
+"bqf" = (
+/obj/machinery/firealarm{
+ pixel_x = -28;
+ pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 10;
+ icon_state = "arrival"
},
-/area/crew_quarters/bar)
-"aHO" = (
-/obj/structure/disposalpipe/segment{
+/area/hallway/secondary/entry/commercial)
+"bqk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Bar Office";
- req_access_txt = "25"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/radio/intercom{
+ pixel_y = -30
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "arrival"
},
-/area/crew_quarters/bar)
-"aHP" = (
-/obj/structure/disposalpipe/segment{
+/area/hallway/secondary/entry/commercial)
+"bql" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -15292,617 +15344,860 @@
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/bar)
-"aHQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "arrival"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/area/hallway/secondary/entry/commercial)
+"bqn" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/table/reinforced,
+/obj/item/stack/packageWrap,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/destTagger,
+/obj/machinery/light_switch{
+ pixel_x = -22
},
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"bqr" = (
+/turf/simulated/wall,
+/area/hallway/primary/central/nw)
+"bqt" = (
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/bar)
-"aHR" = (
-/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "neutralfull"
},
-/obj/machinery/newscaster{
- pixel_x = 32
+/area/quartermaster/storage)
+"bqB" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/bar)
-"aHS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/quartermaster/storage)
+"bqE" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"bqF" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"bqG" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"bqH" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/door_control{
+ id = "engsm";
+ name = "Supermatter Blast Doors";
+ pixel_y = 25;
+ req_access_txt = "10"
},
-/area/crew_quarters/serviceyard)
-"aHT" = (
-/obj/structure/plasticflaps{
- opacity = 1
+/obj/machinery/door_control{
+ id = "smbolts";
+ name = "Supermatter Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_y = 36;
+ req_access_txt = "56";
+ specialfunctions = 4
},
-/obj/machinery/conveyor{
- dir = 4;
- id = "cargodelivery"
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"bqK" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/machinery/camera{
+ c_tag = "Supermatter South";
+ network = list("SS13","Engineering")
},
-/turf/simulated/floor/plating,
-/area/quartermaster/delivery)
-"aHU" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "cargodelivery"
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
+/turf/simulated/floor/plasteel,
+/area/engine/supermatter)
+"bqN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/quartermaster/delivery)
-"aHV" = (
-/obj/structure/plasticflaps/mining,
-/obj/machinery/conveyor/west{
- id = "QMLoad2"
+/area/maintenance/fpmaint2)
+"bqO" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"bri" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/supply)
-"aHX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry/commercial)
+"brj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -28
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry/commercial)
+"brk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aHY" = (
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"brl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/table/reinforced,
+/obj/item/folder/blue,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "blue"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Bar Office Maintenance";
- req_access_txt = "25"
+/area/bridge/checkpoint/north)
+"brn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/brigdoor/southright{
+ dir = 8;
+ name = "Customs Desk";
+ req_access_txt = "19"
},
/turf/simulated/floor/plasteel,
-/area/crew_quarters/bar)
-"aHZ" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/area/bridge/checkpoint/north)
+"bro" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken";
+ tag = "icon-wood-broken"
},
-/obj/structure/disposaloutlet,
+/area/maintenance/abandonedbar)
+"bru" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
/turf/simulated/floor/plating,
-/area/quartermaster/delivery)
-"aIa" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/vending/wallmed{
- pixel_x = -30
- },
+/area/maintenance/abandonedbar)
+"brv" = (
+/obj/structure/table,
+/obj/item/clipboard,
+/obj/item/toy/figure/cargotech,
/turf/simulated/floor/plasteel{
- dir = 9;
icon_state = "brown"
},
-/area/quartermaster/storage)
-"aIb" = (
-/obj/structure/chair/comfy/brown{
+/area/quartermaster/office)
+"brB" = (
+/obj/machinery/light/small,
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"brG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/area/quartermaster/storage)
-"aIc" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/item/paper/deltainfo,
/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry/commercial)
+"brI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/window{
+ base_state = "right";
dir = 1;
- icon_state = "brown"
+ icon_state = "right";
+ name = "Atmospherics Deliveries";
+ req_access_txt = "24"
},
-/area/quartermaster/storage)
-"aId" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/filingcabinet/filingcabinet,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aIe" = (
-/obj/effect/landmark/start{
- name = "Cargo Technician"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/window/reinforced,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"brN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/quartermaster/storage)
-"aIf" = (
-/obj/machinery/door_control{
- id = "QMLoaddoor2";
- layer = 4;
- name = "Loading Doors";
- pixel_x = 24;
- pixel_y = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door_control{
- id = "QMLoaddoor";
- layer = 4;
- name = "Loading Doors";
- pixel_x = 24;
- pixel_y = -8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/camera{
- c_tag = "Cargo Shuttle Airlock";
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/light{
+/area/hallway/secondary/entry/commercial)
+"brO" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/wood,
+/area/maintenance/abandonedbar)
+"brR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aIg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/plasticflaps/mining,
-/obj/machinery/conveyor/west{
- id = "QMLoad2"
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aIh" = (
-/obj/machinery/conveyor/southeast{
- id = "cargodelivery"
+/area/hallway/secondary/entry/commercial)
+"brW" = (
+/turf/simulated/wall,
+/area/storage/tech)
+"brY" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastleft{
+ dir = 8;
+ name = "Hydroponics Desk";
+ req_access_txt = "35"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/delivery)
-"aIi" = (
-/obj/machinery/conveyor/northeast{
- id = "QMLoad"
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/clipboard,
+/obj/item/toy/figure/botanist,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aIj" = (
-/obj/machinery/door/poddoor{
- id_tag = "QMLoaddoor";
- name = "supply dock loading door"
+/area/hydroponics)
+"bsb" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/machinery/conveyor/east{
- id = "QMLoad"
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aIk" = (
-/obj/structure/plasticflaps/mining,
-/obj/machinery/conveyor/east{
- id = "QMLoad"
+/area/maintenance/fpmaint2)
+"bsd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aIl" = (
-/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Watchroom";
- name = "Watch Room Privacy Shutters"
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaCellsLockdown";
- name = "Perma Cells Lockdown"
+/area/hallway/secondary/entry/commercial)
+"bsi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"aIq" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/canister/air{
- filled = 0.05
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarport)
-"aIr" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/power/smes,
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarport)
-"aIs" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/area/hallway/secondary/entry)
+"bsq" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/security/vacantoffice)
+"bst" = (
/obj/machinery/camera{
- c_tag = "Port Fore Solars";
- network = list("SS13","Engineering")
+ c_tag = "Supermatter West";
+ dir = 4;
+ network = list("Engineering","SS13");
+ pixel_y = -22
},
-/obj/item/radio/intercom{
- pixel_y = 28
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarport)
-"aIt" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/cold_sink/freezer{
dir = 4
},
-/obj/structure/sign/deathsposal{
- pixel_y = 32
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"bsu" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/engine/controlroom)
+"bsw" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
+ },
+/area/engine/controlroom)
+"bsx" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/engine/controlroom)
+"bsy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
+/area/engine/controlroom)
+"bsA" = (
/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random_spawners/blood_maybe,
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"bsB" = (
+/obj/item/crowbar/red{
+ desc = "...";
+ force = 20;
+ name = "Легендарная монтировка"
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 6;
+ icon_state = "neutral"
},
-/area/maintenance/turbine)
-"aIu" = (
+/area/maintenance/engrooms)
+"bsC" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/bridge/checkpoint/north)
+"bsD" = (
+/obj/machinery/light,
+/obj/structure/table/reinforced,
+/obj/structure/mirror{
+ pixel_y = -32
+ },
+/obj/item/stamp/clown,
+/turf/simulated/floor/plasteel{
+ icon_state = "bar"
+ },
+/area/clownoffice)
+"bsE" = (
/obj/structure/disposalpipe/segment{
- dir = 2;
+ dir = 1;
icon_state = "pipe-c"
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/maintenance/turbine)
-"aIv" = (
-/obj/machinery/atmospherics/unary/tank/toxins,
-/obj/structure/sign/nosmoking_2{
- pixel_y = 32
+/area/crew_quarters/serviceyard)
+"bsF" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "cargodelivery"
},
-/turf/simulated/floor/plasteel{
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"bsG" = (
+/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- icon_state = "dark"
+ external_pressure_bound = 100;
+ on = 1
},
-/area/maintenance/turbine)
-"aIw" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/louge)
+"bsJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "E.V.A.";
+ req_one_access_txt = "18"
+ },
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"bsW" = (
/obj/machinery/light{
dir = 1;
- in_use = 1
+ on = 1
},
-/obj/machinery/alarm{
- pixel_y = 23
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/delivery)
+"bsX" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ location = "QM #3"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "dark"
+ icon_state = "brown"
},
-/area/maintenance/turbine)
-"aIx" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/canister,
-/obj/machinery/camera{
- c_tag = "Turbine";
- network = list("SS13","Engineering")
+/area/quartermaster/storage)
+"bsY" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -6;
- pixel_y = 32
+/area/quartermaster/storage)
+"bta" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"btb" = (
+/obj/structure/plasticflaps/mining,
+/obj/machinery/conveyor/east{
+ id = "QMLoad"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/turf/simulated/shuttle/plating,
+/area/shuttle/supply)
+"btd" = (
+/turf/simulated/wall/r_wall,
+/area/turret_protected/ai)
+"btg" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/atmos)
+"bth" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = -32
},
-/area/maintenance/turbine)
-"aIy" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6
+/obj/machinery/light/small{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"bti" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering";
+ req_access_txt = "32"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"btk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- icon_state = "dark"
+ initialize_directions = 11
},
-/area/maintenance/turbine)
-"aIz" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry)
+"btm" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 10
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/maintenance/turbine)
-"aIA" = (
+/area/atmos)
+"btn" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "1-8"
},
-/obj/machinery/power/smes{
- charge = 1e+006
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/sign/electricshock{
- pixel_y = 32
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"bto" = (
+/obj/structure/chair/stool/bar,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"btq" = (
+/obj/item/radio/intercom{
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "dark"
},
-/area/maintenance/turbine)
-"aIB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/atmos)
+"btt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry)
+"btv" = (
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aIC" = (
+/area/hydroponics/abandoned_garden)
+"btw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/obj/structure/cable{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aID" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry)
+"bty" = (
+/turf/simulated/wall,
+/area/medical/genetics)
+"btz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aIE" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitecorner"
+ },
+/area/hallway/secondary/entry)
+"btA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"btC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/light,
/obj/machinery/status_display{
pixel_y = -32
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"aIF" = (
+"btD" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"btE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aIG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"aIH" = (
+"btF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"aII" = (
+"btG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/obj/effect/decal/warning_stripes/southeastcorner,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"aIJ" = (
+"btH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/light,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aIK" = (
+/obj/effect/decal/warning_stripes/southeastcorner,
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aIL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"aIN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aIO" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/obj/item/radio/intercom{
- pixel_x = 28;
- pixel_y = 24
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+"btK" = (
+/obj/structure/table/wood,
+/obj/item/camera,
+/obj/machinery/light/small,
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = -30
},
-/area/security/permabrig)
-"aIP" = (
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"btL" = (
+/turf/simulated/wall/r_wall,
+/area/security/nuke_storage)
+"btN" = (
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/wall/rust,
/area/maintenance/engrooms)
-"aIR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/camera{
- c_tag = "Service Hall North";
- dir = 4;
- pixel_y = -22
+"btO" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/newscaster{
- pixel_x = -32
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"btP" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom{
+ dir = 0;
+ pixel_x = 29
},
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 4;
icon_state = "neutralcorner"
},
/area/crew_quarters/serviceyard)
-"aIS" = (
+"btQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -15910,3112 +16205,2606 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "dark";
tag = "icon-vault (NORTHEAST)"
},
/area/crew_quarters/bar)
-"aIT" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 6
+"btR" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -30
},
-/turf/space,
-/area/space/nearstation)
-"aIU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/closet/wardrobe/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/security/checkpoint2)
+"btT" = (
+/obj/machinery/door/airlock/medical/glass{
+ name = "Patients Room"
+ },
+/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/light/small{
- dir = 4
+/area/medical/ward)
+"btU" = (
+/obj/machinery/conveyor/east{
+ id = "QMLoad"
},
-/obj/effect/decal/warning_stripes/arrow,
-/obj/effect/decal/warning_stripes/yellow/partial,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "brown"
+ },
+/area/quartermaster/storage)
+"btV" = (
+/obj/structure/sign/electricshock{
+ pixel_y = -32
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ icon_state = "door_closed";
+ name = "Fore Port Solar Access";
+ req_access_txt = "32"
},
-/area/crew_quarters/serviceyard)
-"aIV" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/bar)
-"aIW" = (
-/obj/effect/landmark/start{
- name = "Bartender"
- },
+/turf/simulated/floor/plasteel,
+/area/maintenance/auxsolarport)
+"btW" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/auxsolarport)
+"btX" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/engine/controlroom)
+"btY" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/crew_quarters/bar)
-"aIX" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/area/crew_quarters/bar)
-"aIY" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/bar)
-"aIZ" = (
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/bar)
-"aJa" = (
-/obj/effect/landmark/start{
- name = "Bartender"
+/area/hallway/secondary/entry)
+"btZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/bar)
-"aJb" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/bar)
-"aJc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/area/hallway/secondary/entry)
+"buf" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/hallway/primary/fore)
-"aJd" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/quartermaster/office)
-"aJe" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"buk" = (
+/obj/structure/sign/biohazard,
+/turf/simulated/wall/r_wall,
+/area/engine/controlroom)
+"bul" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining/glass{
- name = "Delivery Office";
- req_access_txt = "50"
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering";
+ req_access_txt = "32"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/quartermaster/delivery)
-"aJf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/engine/controlroom)
+"bum" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
+/turf/simulated/wall/r_wall,
+/area/engine/controlroom)
+"buq" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/conveyor_switch/oneway{
dir = 8;
- icon_state = "neutralfull"
+ id = "garbage"
},
-/area/quartermaster/delivery)
-"aJg" = (
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"but" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
+ },
+/area/atmos)
+"buu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/delivery)
-"aJh" = (
-/obj/machinery/conveyor{
- id = "cargodisposals"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/delivery)
-"aJi" = (
-/obj/machinery/light/small{
- dir = 8
- },
+/area/atmos)
+"bux" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
+ dir = 4;
+ icon_state = "caution"
},
-/area/quartermaster/sorting)
-"aJj" = (
-/obj/structure/chair/comfy/brown,
+/area/atmos)
+"buA" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/wrench,
+/obj/item/clothing/mask/gas,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
+ dir = 4;
+ icon_state = "caution"
},
-/area/quartermaster/storage)
-"aJk" = (
+/area/hallway/primary/port/west)
+"buC" = (
/obj/machinery/light/small{
- dir = 4
+ dir = 4;
+ pixel_y = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "brown"
+ icon_state = "red"
},
-/area/quartermaster/sorting)
-"aJl" = (
+/area/security/range)
+"buH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/light,
-/obj/effect/decal/warning_stripes/south,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/storage)
-"aJm" = (
-/obj/effect/decal/warning_stripes/west,
+/area/hallway/secondary/entry)
+"buJ" = (
/obj/structure/table/reinforced,
-/obj/item/hand_labeler,
-/obj/item/stamp/granted{
- pixel_x = 3;
- pixel_y = -4
- },
-/obj/item/stamp/denied{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/radio/intercom{
- dir = 0;
- pixel_x = -28
+/obj/item/mmi,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = 32
},
-/obj/machinery/light{
- dir = 8
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aJn" = (
+/area/storage/tech)
+"buK" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aJo" = (
-/obj/effect/landmark/start{
- name = "Bartender"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/area/crew_quarters/bar)
-"aJp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/storage)
-"aJq" = (
+/area/hallway/secondary/entry)
+"buO" = (
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "bluecorner"
},
-/area/quartermaster/storage)
-"aJr" = (
-/obj/structure/plasticflaps/mining,
-/obj/machinery/conveyor/east{
- id = "QMLoad"
+/area/hallway/secondary/entry)
+"buP" = (
+/obj/machinery/camera{
+ c_tag = "Arrivals Hall Starboard";
+ dir = 1
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/supply)
-"aJs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/plasticflaps/mining,
-/obj/machinery/conveyor/east{
- id = "QMLoad"
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = -30
},
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aJt" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aJu" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
+/area/hallway/secondary/entry)
+"buR" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aJv" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry)
+"buS" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Kitchen Windows";
+ name = "Kitchen Privacy Shutters"
},
/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aJy" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"aJz" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"aJC" = (
+/area/crew_quarters/kitchen)
+"buU" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/power/treadmill{
- dir = 4
+/obj/machinery/power/smes,
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"bva" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f5"
},
-/area/security/permabrig)
-"aJD" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aJE" = (
+/area/shuttle/siberia)
+"bvd" = (
/obj/machinery/conveyor/north{
id = "QMLoad"
},
/turf/simulated/floor/plating,
/area/quartermaster/storage)
-"aJF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/item/twohanded/required/kirbyplants,
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = -25
- },
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aJG" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/multitool,
-/obj/item/multitool{
- pixel_x = 4;
- pixel_y = -4
- },
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aJH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/controlroom)
-"aJI" = (
+"bve" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarport)
-"aJK" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "solar_tool_outer";
- locked = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "32"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel,
-/area/maintenance/auxsolarport)
-"aJL" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 4;
- frequency = 1379;
- id_tag = "solar_tool_pump"
- },
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "solar_tool_airlock";
- pixel_y = 25;
- req_access_txt = "32";
- tag_airpump = "solar_tool_pump";
- tag_chamber_sensor = "solar_tool_sensor";
- tag_exterior_door = "solar_tool_outer";
- tag_interior_door = "solar_tool_inner"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/airlock_sensor{
- id_tag = "solar_tool_sensor";
- pixel_y = 32
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"bvf" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall7";
+ tag = "icon-swall7"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/shuttle/supply)
+"bvg" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc1"
},
-/obj/machinery/light/small,
-/turf/simulated/floor/plasteel,
-/area/maintenance/auxsolarport)
-"aJM" = (
+/area/shuttle/supply)
+"bvh" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/space,
+/area/space/nearstation)
+"bvj" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/emergency,
+/obj/item/wrench,
+/obj/item/tank/emergency_oxygen/engi,
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "caution"
},
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarport)
-"aJN" = (
+/area/maintenance/turbine)
+"bvk" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/maintenance/turbine)
-"aJO" = (
+/obj/effect/decal/warning_stripes/west,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/binary/pump{
- name = "Gas to Turbine"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
/area/maintenance/turbine)
-"aJP" = (
+"bvl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/maintenance/turbine)
-"aJQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
/area/maintenance/turbine)
-"aJR" = (
+"bvn" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/machinery/power/terminal{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
/area/maintenance/turbine)
-"aJS" = (
+"bvo" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/light{
- dir = 1;
- in_use = 1
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
/area/maintenance/turbine)
-"aJT" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA"
- },
-/turf/simulated/wall/r_wall,
-/area/engine/controlroom)
-"aJU" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/structure/sign/nosmoking_2{
- pixel_y = 32
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+"bvp" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/camera{
+ c_tag = "Supermatter Entrance";
+ network = list("SS13","Engineering")
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/maintenance/turbine)
-"aJV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/biohazard,
-/turf/simulated/wall/r_wall,
/area/engine/controlroom)
-"aJW" = (
+"bvv" = (
+/obj/machinery/camera{
+ c_tag = "Fore Starboard Solars";
+ network = list("SS13","Engineering")
+ },
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"bvA" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/atmos/glass{
- name = "Atmospherics Access";
- req_one_access_txt = "24"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aJX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/turf/simulated/wall/r_wall,
-/area/engine/controlroom)
-"aJY" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/engine/controlroom)
-"aJZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering";
- req_access_txt = "32"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/quartermaster/office)
+"bvC" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/radiation,
+/obj/item/clothing/glasses/meson,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"aKb" = (
-/obj/machinery/conveyor/north{
- id = "QMLoad"
- },
-/obj/machinery/conveyor/northeast/ccw{
- id = "QMLoad"
+"bvD" = (
+/obj/machinery/vending/cola,
+/obj/machinery/newscaster{
+ pixel_x = 32
},
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aKc" = (
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "redyellowfull"
},
-/area/janitor)
-"aKd" = (
-/obj/machinery/door/poddoor/shutters{
- id_tag = "janitorshutters";
- name = "Janitor Shutters"
+/area/engine/break_room)
+"bvF" = (
+/obj/machinery/camera{
+ c_tag = "Medbay South East Hallway";
+ dir = 8;
+ network = list("SS13","Medical")
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "purple"
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
},
-/area/janitor)
-"aKe" = (
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
},
+/area/medical/medbay3)
+"bvG" = (
+/obj/structure/girder,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
-"aKf" = (
-/obj/machinery/light/small{
+"bvK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/chair/office/dark{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"aKg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "caution"
+ },
+/area/atmos)
+"bvL" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry)
+"bvM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 6;
+ initialize_directions = 6
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/port/west)
+"bvN" = (
+/obj/structure/disposalpipe/junction,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/poster/official/random{
- pixel_x = -32;
- pixel_y = 32
- },
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aKh" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin2)
-"aKi" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/snacks/baguette,
-/obj/item/lipstick/random{
- pixel_x = -3;
- pixel_y = -3
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/item/lipstick/random{
- pixel_x = -1;
- pixel_y = 1
+/area/hallway/secondary/entry)
+"bvO" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxport)
+"bvQ" = (
+/obj/machinery/power/solar{
+ name = "Aft Starboard Solar Panel"
},
-/obj/item/lipstick/random{
- pixel_x = 3;
- pixel_y = 3
+/obj/structure/cable,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
},
+/area/solar/auxport)
+"bvR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bvS" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
+ icon_state = "arrival"
},
-/area/mimeoffice)
-"aKj" = (
-/obj/structure/table/reinforced,
-/obj/structure/mirror{
- pixel_y = 32
+/area/hallway/secondary/entry)
+"bvT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/item/reagent_containers/spray/waterflower,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bvU" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
+ icon_state = "escape"
},
-/area/mimeoffice)
-"aKk" = (
-/obj/structure/dresser,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
+/area/atmos)
+"bvV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/tranquillite{
+ name = "Mime's Office";
+ req_access_txt = "46"
+ },
+/obj/machinery/door/firedoor,
+/obj/item/grown/bananapeel{
+ layer = 1.9
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin2)
-"aKl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/statue/tranquillite/mime,
/turf/simulated/floor/plasteel{
dir = 4;
icon_regular_floor = "yellowsiding";
icon_state = "tranquillite"
},
/area/mimeoffice)
-"aKm" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall14"
+"bvX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/shuttle/trade/sol)
-"aKn" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"bwc" = (
+/obj/structure/chair/office/dark{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/crew_quarters/bar)
-"aKo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/area/bridge)
+"bwd" = (
+/obj/structure/table/reinforced,
+/obj/item/assembly/timer,
+/obj/item/assembly/signaler,
+/obj/item/wrench,
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "solar_tool_inner";
- locked = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "32"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkyellowcorners"
},
+/area/bridge)
+"bwe" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
+ },
+/turf/simulated/floor/plating,
+/area/bridge)
+"bwf" = (
+/turf/simulated/wall/r_wall,
+/area/bridge)
+"bwg" = (
+/obj/structure/chair/office/dark{
+ dir = 8
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/auxsolarport)
-"aKp" = (
-/obj/structure/table/wood,
-/obj/item/ammo_box/shotgun/beanbag,
-/obj/item/gun/projectile/revolver/doublebarrel,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/crew_quarters/bar)
-"aKq" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/crew_quarters/bar)
-"aKr" = (
-/obj/machinery/smartfridge/drinks,
-/obj/machinery/door/window/eastleft{
- dir = 1;
- name = "Kitchen Desk";
- req_access_txt = "28"
+/area/bridge)
+"bwh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/window/reinforced{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
},
+/area/engine/controlroom)
+"bwi" = (
+/obj/structure/table/wood,
+/obj/machinery/bottler,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "dark";
tag = "icon-vault (NORTHEAST)"
},
/area/crew_quarters/bar)
-"aKs" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "Bar";
- name = "Bar Privacy Shutters"
- },
+"bwj" = (
+/obj/structure/table/wood,
+/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "dark";
tag = "icon-vault (NORTHEAST)"
},
/area/crew_quarters/bar)
-"aKt" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+"bwk" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
},
/obj/machinery/camera{
- c_tag = "Fore Hallway North 1";
- dir = 4
+ c_tag = "Bar counter";
+ dir = 4;
+ pixel_y = -22
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"bwl" = (
+/obj/machinery/light/small{
+ dir = 1
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/fore)
-"aKu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/engine/controlroom)
+"bwp" = (
+/obj/machinery/conveyor{
+ id = "cargodisposals"
},
-/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"bws" = (
+/obj/structure/chair/stool,
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
- },
-/obj/effect/landmark{
- name = "lightsout"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/fore)
-"aKv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/area/crew_quarters/locker)
+"bwt" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/conveyor/west{
+ id = "QMLoad2"
},
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
-/area/quartermaster/delivery)
-"aKw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/quartermaster/storage)
+"bwv" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "dark"
},
-/area/hallway/primary/fore)
-"aKx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/delivery)
-"aKy" = (
+/area/engine/controlroom)
+"bwx" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/shuttle/engine/heater,
+/turf/simulated/shuttle/plating,
+/area/shuttle/supply)
+"bwy" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"bwC" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/power/smes,
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarport)
+"bwF" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/quartermaster/delivery)
-"aKz" = (
-/obj/machinery/conveyor{
- id = "cargodisposals"
+/obj/machinery/power/terminal{
+ dir = 1
},
-/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/quartermaster/delivery)
-"aKA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/maintenance/auxsolarstarboard)
+"bwI" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/portable_atmospherics/canister,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aKB" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/britcup,
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
+ icon_state = "dark"
},
-/area/quartermaster/storage)
-"aKC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/turret_protected/ai)
+"bwN" = (
+/turf/simulated/wall/r_wall,
+/area/engine/gravitygenerator)
+"bwO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/quartermaster/storage)
-"aKD" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/quartermaster/storage)
-"aKE" = (
-/turf/simulated/floor/plasteel{
- icon_state = "browncorner"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/quartermaster/storage)
-"aKF" = (
-/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/security/glass{
+ name = "Prisoner Processing";
+ req_access_txt = "1"
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1
},
-/area/quartermaster/storage)
-"aKG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/area/security/prisonershuttle)
+"bwP" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "solar_chapel_outer";
+ locked = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/quartermaster/storage)
-"aKH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"bwQ" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "solar_chapel_airlock";
+ name = "exterior access button";
+ pixel_x = -25;
+ pixel_y = -25;
+ req_access_txt = "10;13"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/quartermaster/storage)
-"aKI" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aKJ" = (
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aKK" = (
+/turf/space,
+/area/solar/auxstarboard)
+"bwS" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aKL" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/engine/break_room)
+"bwT" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/space,
+/area/solar/auxstarboard)
+"bwV" = (
+/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/storage)
-"aKM" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall7";
- tag = "icon-swall7"
+/area/atmos)
+"bwW" = (
+/obj/machinery/light{
+ dir = 8
},
-/area/shuttle/supply)
-"aKN" = (
-/turf/simulated/shuttle/floor,
-/turf/simulated/shuttle/wall/interior{
- icon_state = "swall_f10";
- tag = "icon-swall_f10"
+/obj/item/radio/intercom{
+ pixel_x = -28
},
-/area/shuttle/supply)
-"aKO" = (
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"aKP" = (
-/turf/simulated/shuttle/floor,
-/turf/simulated/shuttle/wall/interior{
- icon_state = "swall_f6";
- tag = "icon-swall_f6"
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/portable_atmospherics/canister,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "caution"
},
-/area/shuttle/supply)
-"aKQ" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall11";
- tag = "icon-swall11"
+/area/maintenance/turbine)
+"bwX" = (
+/obj/structure/table/reinforced,
+/obj/item/tank/emergency_oxygen,
+/obj/item/tank/emergency_oxygen,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "caution"
},
-/area/shuttle/supply)
-"aKR" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/atmos)
+"bwY" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaCellsLockdown";
- name = "Perma Cells Lockdown"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellowcorner"
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"aKS" = (
+/area/hallway/primary/port/west)
+"bwZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/door/airlock/security/glass{
- id_tag = "Perma1";
- name = "Permabrig Access";
- req_access_txt = "2"
- },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/permabrig)
-"aKT" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/hallway/primary/port/west)
+"bxc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/tower,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"bxd" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 22
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/radiation,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"bxe" = (
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 2;
+ height = 18;
+ id = "skipjack_ne";
+ name = "northeast of SS13";
+ width = 19
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/security/glass{
- id_tag = "Perma21";
- name = "Prison 2";
- req_access_txt = "2";
- security_level = 1
+/turf/space,
+/area/space)
+"bxf" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaCellsLockdown";
- name = "Perma Cells Lockdown"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bxh" = (
+/turf/simulated/wall/r_wall,
+/area/storage/tech)
+"bxi" = (
+/obj/structure/table,
+/obj/random/toolbox,
+/obj/item/wrench,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bxj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
+/obj/structure/chair/office/dark{
dir = 1
},
-/area/security/permabrig)
-"aKU" = (
-/obj/structure/table/wood,
-/obj/item/storage/secure/safe{
- pixel_x = 32
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
-/obj/item/flashlight/lamp,
-/obj/structure/sign/poster/secret/yug0{
- pixel_y = 32
+/area/mimeoffice)
+"bxk" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
-"aKV" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/security/vacantoffice)
+"bxn" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the RD's goons from the safety of his office.";
+ name = "Research Monitor";
+ network = list("Research","Research Outpost","RD");
+ pixel_y = 2
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/security/prisonlockers)
-"aKW" = (
-/obj/effect/spawner/window/reinforced,
+/area/bridge)
+"bxo" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/obj/machinery/computer/robotics,
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "hosp";
- name = "HoS Privacy Shutters"
- },
-/turf/simulated/floor/plating,
-/area/security/hos)
-"aKX" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aKY" = (
-/obj/structure/cable,
-/obj/machinery/power/solar_control{
- id = "portsolar";
- name = "Aft Port Solar Control"
- },
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarport)
-"aKZ" = (
-/obj/machinery/alarm{
+/turf/simulated/floor/plasteel{
dir = 1;
- pixel_y = -25
+ icon_state = "darkpurple"
},
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/bridge)
+"bxp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarport)
-"aLa" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"aLb" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/emergency,
-/obj/item/wrench,
-/obj/item/tank/emergency_oxygen/engi,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/maintenance/fpmaint2)
+"bxq" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/pen,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/vacantoffice)
+"bxr" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/newscaster{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "caution"
+ icon_state = "grimy"
},
-/area/maintenance/turbine)
-"aLc" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/area/security/vacantoffice)
+"bxs" = (
+/obj/machinery/light,
+/obj/structure/closet/secure_closet/mime,
+/obj/machinery/status_display{
+ pixel_y = -32
},
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarport)
-"aLd" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
+/area/mimeoffice)
+"bxt" = (
+/obj/machinery/suit_storage_unit/mime,
+/obj/machinery/door_control{
+ id = "Mime";
+ name = "Mimes Privacy Shutters Control";
+ pixel_y = -27
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 25;
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
+/area/mimeoffice)
+"bxv" = (
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/turbine)
-"aLe" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/meter,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/quartermaster/delivery)
+"bxx" = (
+/obj/machinery/photocopier,
+/obj/machinery/light/small{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/maintenance/turbine)
-"aLf" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/vacantoffice)
+"bxy" = (
+/obj/structure/table/wood,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/machinery/newscaster{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/maintenance/turbine)
-"aLg" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
+/area/security/vacantoffice)
+"bxz" = (
+/obj/structure/table/wood,
+/obj/item/storage/briefcase{
+ pixel_x = 4;
+ pixel_y = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/hologram/holopad,
+/area/security/vacantoffice)
+"bxA" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/firealarm{
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"bxB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"bxD" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/turbine)
-"aLh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/quartermaster/storage)
+"bxE" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/atmospherics/binary/pump{
- name = "Mix to Turbine"
+/area/security/vacantoffice)
+"bxI" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/vacantoffice)
+"bxM" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "caution"
},
/area/maintenance/turbine)
-"aLi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+"bxX" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/firealarm{
+ pixel_y = 32
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "blue"
},
+/area/bridge/checkpoint/north)
+"byh" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "bluecorner"
},
-/area/maintenance/turbine)
-"aLj" = (
+/area/hallway/secondary/entry/louge)
+"byl" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "caution"
+ },
+/area/engine/break_room)
+"byn" = (
+/obj/machinery/iv_drip,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"byo" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "caution"
},
+/area/engine/break_room)
+"byp" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering";
+ req_access_txt = "32"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"bys" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "caution"
+ },
+/area/engine/break_room)
+"byt" = (
+/obj/machinery/light,
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/obj/machinery/computer/atmos_alert,
+/turf/simulated/floor/plasteel{
+ icon_state = "caution"
},
+/area/atmos)
+"byu" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/turbine)
-"aLk" = (
+/area/hallway/secondary/entry/louge)
+"byv" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/requests_console{
+ department = "Atmospherics";
+ departmentType = 3;
+ name = "Atmospherics Requests Console";
+ pixel_x = 30
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "caution"
+ },
+/area/atmos)
+"byx" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/turbine)
-"aLl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hallway/primary/port/west)
+"byy" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellowcorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
+/area/hallway/primary/port/west)
+"byE" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall,
+/area/hallway/secondary/entry/louge)
+"byF" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "solar_tool_airlock";
- name = "interior access button";
- pixel_x = -25;
- pixel_y = 25;
- req_access_txt = "32"
+/area/hallway/secondary/entry/louge)
+"byG" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/security_space_law,
+/obj/item/radio,
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ name = "Security Requests Console";
+ pixel_x = 32
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarport)
-"aLm" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/security/checkpoint2)
+"byL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/atmos/glass{
- name = "Turbine Generator Access";
- req_access_txt = "24"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/bridge)
+"byM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/maintenance/turbine)
-"aLn" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"byN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aLo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 1
+ },
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aLp" = (
-/turf/simulated/wall/r_wall/rust,
-/area/engine/controlroom)
-"aLr" = (
-/obj/structure/sign/electricshock{
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- icon_state = "door_closed";
- name = "Fore Port Solar Access";
- req_access_txt = "32"
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"byO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/auxsolarport)
-"aLs" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aLt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"byP" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"byR" = (
+/obj/machinery/atm{
+ pixel_y = 32
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aLu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/camera{
- c_tag = "Supermatter Entrance";
- network = list("SS13","Engineering")
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aLv" = (
+/area/crew_quarters/locker)
+"byS" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aLw" = (
-/obj/machinery/power/terminal,
-/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aLx" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/fore{
name = "Hangar Maintenance"
})
-"aLy" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+"byU" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aLz" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/electrical,
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = -32
+/area/bridge)
+"byV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aLC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/random_spawners/grille_maybe,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aLD" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light/small{
- dir = 4
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aLE" = (
-/obj/machinery/newscaster{
- pixel_x = -32
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/structure/bed,
-/obj/item/bedsheet/mime,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
},
-/area/mimeoffice)
-"aLF" = (
-/obj/effect/landmark/start{
- name = "Mime"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
- },
-/area/mimeoffice)
-"aLG" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+ icon_state = "dark"
},
-/obj/structure/chair/office/dark{
+/area/bridge)
+"byW" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/mimeoffice)
-"aLH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Mime"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/hologram/holopad,
+/area/bridge)
+"byX" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/britcup,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
+ dir = 8;
+ icon_state = "brown"
},
-/area/mimeoffice)
-"aLI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/quartermaster/storage)
+"bza" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"bzc" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/door/airlock/tranquillite{
- name = "Mime's Office";
- req_access_txt = "46"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/door/firedoor,
-/obj/item/grown/bananapeel{
- layer = 1.9
+/area/quartermaster/storage)
+"bzg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/mimeoffice)
-"aLJ" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall12"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/shuttle/trade/sol)
-"aLK" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/serviceyard)
-"aLL" = (
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_y = -27
+ icon_state = "grimy"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/window/southleft{
- dir = 1;
- name = "Bar Delivery";
- req_access_txt = "25";
- tag = "icon-left (WEST)"
+/area/security/hos)
+"bzh" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 2
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/obj/machinery/disposal/deliveryChute{
+ dir = 4
},
-/area/crew_quarters/bar)
-"aLM" = (
-/obj/machinery/chem_master/condimaster,
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/window/reinforced{
dir = 8
},
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bzi" = (
+/obj/structure/dispenser,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 1;
+ icon_state = "dark"
},
-/area/crew_quarters/bar)
-"aLN" = (
-/obj/machinery/light,
-/obj/structure/closet/gmcloset,
+/area/atmos)
+"bzl" = (
+/obj/structure/table/reinforced,
/obj/item/wrench,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/cable_coil/random{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/stack/cable_coil/random,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/bar)
-"aLO" = (
-/obj/structure/table/wood,
-/obj/machinery/reagentgrinder,
+/obj/item/crowbar/red,
+/obj/item/stack/sheet/mineral/plasma,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 1;
+ icon_state = "dark"
},
-/area/crew_quarters/bar)
-"aLP" = (
-/obj/structure/table/wood,
-/obj/machinery/bottler,
+/area/atmos)
+"bzm" = (
+/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "yellowcorner"
},
-/area/crew_quarters/bar)
-"aLQ" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "solar_tool_airlock";
- name = "exterior access button";
- pixel_x = 25;
- pixel_y = -25;
- req_access_txt = "32"
+/area/hallway/primary/port/west)
+"bzr" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ icon_state = "4-8"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/auxport)
-"aLS" = (
-/obj/machinery/vending/hydronutrients,
+/turf/simulated/floor/engine,
+/area/security/execution)
+"bzu" = (
+/obj/structure/table/wood,
+/obj/item/trash/plate,
/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"aLT" = (
-/obj/item/wrench,
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"aLU" = (
-/turf/simulated/wall,
-/area/crew_quarters/bar/atrium)
-"aLV" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/table/reinforced,
-/obj/item/stack/packageWrap,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/item/destTagger,
-/obj/machinery/light_switch{
- pixel_x = -22
+/area/maintenance/abandonedbar)
+"bzy" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aLW" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/obj/machinery/power/emitter,
+/turf/simulated/floor/greengrid,
+/area/engine/controlroom)
+"bzz" = (
+/obj/structure/sign/electricshock,
+/turf/simulated/wall/r_wall,
+/area/engine/controlroom)
+"bzA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/greengrid,
+/area/engine/controlroom)
+"bzB" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/landmark/start{
- name = "Cargo Technician"
+/turf/simulated/floor/plating,
+/area/engine/controlroom)
+"bzC" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "High Sec Zone";
+ req_access_txt = "63"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "brown"
+ dir = 0;
+ icon_state = "red"
},
-/area/quartermaster/delivery)
-"aLX" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/area/security/permahallway)
+"bzE" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- icon_state = "brown"
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"bzG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_one_access_txt = "12;47"
},
-/area/quartermaster/delivery)
-"aLY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"bzI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/quartermaster/delivery)
-"aLZ" = (
+/obj/effect/decal/warning_stripes/northwestsouth,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"bzL" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "brown"
- },
-/area/quartermaster/delivery)
-"aMa" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"bzP" = (
/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/delivery)
-"aMb" = (
-/obj/structure/window/reinforced{
- dir = 4
+/obj/item/storage/box/donkpockets{
+ pixel_x = 4;
+ pixel_y = 4
},
-/obj/machinery/recharge_station,
+/obj/item/storage/box/donkpockets,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aMc" = (
-/obj/structure/chair/comfy/brown{
- dir = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "brown"
},
/area/quartermaster/storage)
-"aMd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "blue"
+"bzS" = (
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"bzT" = (
+/obj/machinery/light/small{
+ dir = 4
},
-/area/hydroponics)
-"aMe" = (
-/obj/item/radio/intercom{
- pixel_y = -30
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/obj/structure/window/reinforced{
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bzV" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/engine/controlroom)
+"bzW" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/disposal,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "brown"
- },
-/area/quartermaster/storage)
-"aMf" = (
-/obj/structure/closet/crate/internals,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aMg" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
- on = 1
+ icon_state = "yellowcorner"
+ },
+/area/hallway/primary/port/west)
+"bzX" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/status_display{
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "dark";
tag = "icon-vault (NORTHEAST)"
},
-/area/crew_quarters/bar)
-"aMh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/junction,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/storage/tech)
+"bzY" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/hallway/secondary/entry)
-"aMi" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/solar/auxport)
+"bzZ" = (
+/obj/structure/rack,
+/obj/item/circuitboard/scan_consolenew{
+ pixel_x = -3;
+ pixel_y = 3
},
-/area/quartermaster/storage)
-"aMj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/circuitboard/med_data,
+/obj/item/circuitboard/pandemic{
+ pixel_x = 3;
+ pixel_y = -3
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/storage)
-"aMk" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/warning_stripes/yellow,
+/area/storage/tech)
+"bAa" = (
+/obj/structure/sign/botany,
+/turf/simulated/wall,
+/area/hydroponics/abandoned_garden)
+"bAe" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/quartermaster/storage)
-"aMl" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/chapel/main)
+"bAh" = (
+/turf/simulated/wall/rust,
+/area/hydroponics/abandoned_garden)
+"bAi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
dir = 8;
- external_pressure_bound = 100;
- on = 1
+ icon_state = "whitegreencorner"
},
+/area/medical/virology/lab)
+"bAk" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/storage)
-"aMm" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f5";
- tag = "icon-swall_f5"
- },
-/area/shuttle/supply)
-"aMn" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall15";
- tag = "icon-swall15"
+"bAl" = (
+/turf/simulated/wall,
+/area/hallway/secondary/entry/louge)
+"bAn" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "construction access"
},
-/area/shuttle/supply)
-"aMo" = (
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/shuttle/engine/heater,
-/turf/simulated/shuttle/plating,
-/area/shuttle/supply)
-"aMp" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f9";
- tag = "icon-swall_f9"
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"bAo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bAr" = (
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ frequency = 1449;
+ id_tag = "turbine_control";
+ name = "Turbine Access Console";
+ pixel_x = 8;
+ pixel_y = -26;
+ req_access_txt = "12";
+ tag_exterior_door = "gas_turbine_exterior";
+ tag_interior_door = "gas_turbine_interior"
},
-/area/shuttle/supply)
-"aMq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/ignition_switch{
+ id = "Incinerator";
+ pixel_x = 8;
+ pixel_y = -36
},
-/obj/structure/chair/office/dark{
- dir = 4
+/obj/machinery/door_control{
+ id = "turbinevent";
+ name = "Turbine Vent Control";
+ pixel_x = -8;
+ pixel_y = -36;
+ req_access_txt = "12"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/door_control{
+ id = "auxincineratorvent";
+ name = "Auxiliary Vent Control";
+ pixel_x = -8;
+ pixel_y = -24
},
-/area/security/hos)
-"aMr" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/computer/turbine_computer{
+ id = "incineratorturbine"
},
-/area/security/hos)
-"aMs" = (
-/obj/machinery/computer/prisoner,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 10;
+ icon_state = "caution"
},
-/area/security/hos)
-"aMt" = (
-/turf/simulated/wall/r_wall,
-/area/security/permabrig)
-"aMu" = (
+/area/maintenance/turbine)
+"bAt" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Head of Security"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/hos)
-"aMv" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/hos)
-"aMw" = (
-/obj/structure/window/reinforced{
- dir = 4
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aMx" = (
-/obj/machinery/power/terminal,
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/bridge/checkpoint/north)
+"bAu" = (
+/obj/machinery/newscaster{
+ pixel_y = -32
},
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aMy" = (
-/turf/simulated/wall/r_wall/coated,
-/area/maintenance/turbine)
-"aMz" = (
/obj/structure/table/reinforced,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/item/clothing/glasses/welding,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aMA" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/canister,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/radio/intercom{
- pixel_x = -28
- },
+/obj/item/folder,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 8;
+ dir = 6;
icon_state = "caution"
},
/area/maintenance/turbine)
-"aMB" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6
+"bAv" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/turbine)
-"aMC" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/area/atmos)
+"bAw" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/turbine)
-"aMD" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/area/security/permahallway)
+"bAy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/turbine)
-"aME" = (
/obj/structure/cable{
d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
-/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/controlroom)
-"aMF" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/meter,
-/turf/simulated/floor/plasteel,
-/area/maintenance/turbine)
-"aMG" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8;
- name = "Port to Turbine"
- },
-/turf/simulated/floor/plasteel,
-/area/maintenance/turbine)
-"aMH" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 10
+/area/hallway/secondary/entry/louge)
+"bAz" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/maintenance/turbine)
-"aMI" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/area/hallway/secondary/entry/louge)
+"bAC" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "caution"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/maintenance/turbine)
-"aMJ" = (
-/obj/structure/sign/vacuum,
-/turf/simulated/wall/r_wall,
-/area/maintenance/turbine)
-"aMK" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/maintenance/turbine)
-"aML" = (
-/obj/machinery/light/small{
- dir = 8
+/area/atmos)
+"bAE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aMM" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"bAF" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aMN" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 22
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/radiation,
-/obj/item/clothing/glasses/meson,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aMO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "neutralfull"
},
-/area/maintenance/turbine)
-"aMP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aMQ" = (
+/area/hallway/secondary/entry/louge)
+"bAI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aMR" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ icon_state = "1-2"
},
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aMS" = (
-/obj/structure/cable,
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/computer/monitor{
- name = "Engineering Power Monitoring Console"
+ icon_state = "2-4"
},
-/obj/machinery/status_display{
- pixel_y = -32
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/controlroom)
-"aMT" = (
+/area/security/checkpoint2)
+"bAM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/cigbutt/roach,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bAN" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/machinery/light/small,
-/obj/machinery/power/smes,
-/turf/simulated/floor/greengrid,
-/area/engine/controlroom)
-"aMU" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A25";
+ location = "A24"
},
-/obj/machinery/power/smes,
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = -25
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/greengrid,
-/area/engine/controlroom)
-"aMV" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/maintenance/gambling_den)
-"aMW" = (
-/turf/simulated/wall,
-/area/maintenance/gambling_den)
-"aMX" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/south)
+"bAP" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"bAQ" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба служит для подачу горючей смеси в турбину для её работы";
+ dir = 5;
+ name = "Труба турбины"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aMY" = (
-/turf/simulated/wall/rust,
-/area/maintenance/gambling_den)
-"aNa" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/window/eastright{
- dir = 1;
- name = "Mime Delivery";
- req_access_txt = "46"
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
- },
-/area/mimeoffice)
-"aNb" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ icon_state = "caution"
},
-/obj/machinery/camera{
- c_tag = "Mime Office";
+/area/atmos)
+"bAT" = (
+/obj/structure/table/wood,
+/obj/machinery/light{
dir = 1
},
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
- },
-/area/mimeoffice)
-"aNc" = (
-/obj/machinery/light,
-/obj/structure/closet/secure_closet/mime,
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
- },
-/area/mimeoffice)
-"aNd" = (
-/obj/item/flag/mime,
-/obj/machinery/power/apc{
- pixel_y = -26
- },
+/obj/item/clipboard,
+/obj/item/toy/figure/hop,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"bAV" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
- },
-/area/mimeoffice)
-"aNe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/suit_storage_unit/mime,
-/obj/machinery/door_control{
- id = "Mime";
- name = "Mimes Privacy Shutters Control";
- pixel_y = -27
+ icon_state = "brown"
},
+/area/quartermaster/delivery)
+"bBf" = (
+/obj/structure/sign/botany,
+/turf/simulated/wall/rust,
+/area/hydroponics/abandoned_garden)
+"bBg" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/mimeoffice)
-"aNf" = (
-/obj/structure/window/full/shuttle,
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "open";
- id_tag = "trader_privacy";
- name = "Privacy Shutters";
- opacity = 0
+ id_tag = "ai2";
+ name = "Turret Shutters"
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/trade/sol)
-"aNg" = (
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"bBi" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/alarm{
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"bBj" = (
+/obj/effect/decal/warning_stripes/southeastcorner,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"bBl" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/firealarm{
dir = 8;
- pixel_x = 24
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ pixel_x = -24
},
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 10;
+ icon_state = "caution"
},
-/area/crew_quarters/serviceyard)
-"aNh" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
- },
-/obj/machinery/computer/arcade,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"aNj" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"aNk" = (
-/obj/machinery/conveyor/east{
- id = "QMLoad"
+/area/engine/break_room)
+"bBn" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "caution"
},
+/area/engine/break_room)
+"bBo" = (
+/turf/simulated/wall,
+/area/hydroponics/abandoned_garden)
+"bBp" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 6;
icon_state = "brown"
},
/area/quartermaster/storage)
-"aNl" = (
+"bBr" = (
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
-/area/quartermaster/delivery)
-"aNm" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
-/area/quartermaster/office)
-"aNn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/office)
-"aNo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ dir = 6;
+ icon_state = "caution"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/engine/break_room)
+"bBt" = (
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/range)
+"bBA" = (
+/obj/machinery/firealarm{
dir = 4;
- icon_state = "brown"
+ pixel_x = 28
},
-/area/quartermaster/delivery)
-"aNp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/computer/guestpass{
+ pixel_y = 32
},
-/obj/effect/decal/warning_stripes/arrow,
-/obj/effect/decal/warning_stripes/yellow/partial,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/delivery)
-"aNq" = (
-/obj/machinery/light{
- dir = 8
+ dir = 5;
+ icon_state = "yellow"
},
+/area/engine/break_room)
+"bBB" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plasteel,
+/area/maintenance/fpmaint2)
+"bBC" = (
/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/camera{
- c_tag = "Cargo Personal Corner";
- dir = 4;
- pixel_y = -27
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
- },
-/area/quartermaster/storage)
-"aNr" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
-"aNs" = (
-/obj/machinery/firealarm{
- pixel_y = 24
+"bBD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "solar_xeno_outer";
+ locked = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
},
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
+"bBF" = (
+/obj/item/trash/chips,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"bBG" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "dark"
- },
-/area/hydroponics)
-"aNt" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aNu" = (
-/obj/effect/decal/warning_stripes/arrow{
- dir = 1
- },
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1
+ icon_state = "neutral"
},
-/obj/machinery/conveyor/northeast/ccw{
- id = "QMLoad"
+/area/hallway/secondary/entry/louge)
+"bBH" = (
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bBK" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken7";
+ tag = "icon-wood-broken7"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aNv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/maintenance/abandonedbar)
+"bBL" = (
+/obj/structure/rack,
+/obj/item/circuitboard/cloning{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining/glass{
- name = "Cargo Club";
- req_access_txt = "31"
+/obj/item/circuitboard/clonescanner,
+/obj/item/circuitboard/clonepod{
+ pixel_x = 3;
+ pixel_y = -3
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aNw" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
+/area/storage/tech)
+"bBM" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
/area/quartermaster/storage)
-"aNx" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "cargodelivery";
- name = "deliver conveyor";
- pixel_x = -10
+"bBN" = (
+/obj/structure/rack,
+/obj/item/circuitboard/destructive_analyzer{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/effect/decal/warning_stripes/arrow,
-/obj/effect/decal/warning_stripes/yellow/partial,
+/obj/item/circuitboard/protolathe,
+/obj/item/circuitboard/circuit_imprinter{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/delivery)
-"aNy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/conveyor_switch/oneway{
- id = "cargodisposals";
- name = "Trash Filter Switch"
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/delivery)
-"aNz" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_l";
- tag = "icon-burst_l"
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/supply)
-"aNA" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/simulated/shuttle/plating,
-/area/shuttle/supply)
-"aNB" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_r";
- tag = "icon-burst_r"
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/supply)
-"aNC" = (
+/area/storage/tech)
+"bBQ" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/security/hos)
-"aND" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/door/airlock/command{
- name = "Head of Security";
- req_access_txt = "58"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/hos)
-"aNE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/hos)
-"aNF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/computer/crew,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "2-4"
},
-/area/security/hos)
-"aNG" = (
+/turf/simulated/floor/plating,
+/area/quartermaster/qm)
+"bBS" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "hosp";
- name = "HoS Privacy Shutters"
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bBV" = (
+/obj/structure/closet/radiation,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellow"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/area/maintenance/engrooms)
+"bCc" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
},
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/security/hos)
-"aNH" = (
-/obj/effect/spawner/window/reinforced,
+/area/maintenance/disposal)
+"bCd" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "1-2"
},
-/obj/machinery/door/poddoor/shutters/preopen{
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxport)
+"bCf" = (
+/obj/machinery/conveyor{
dir = 8;
- id_tag = "hosp";
- name = "HoS Privacy Shutters"
+ id = "garbage"
},
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/warning_stripes/south,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
-/area/security/hos)
-"aNI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
-/obj/structure/table/wood,
-/obj/item/clothing/mask/cigarette/cigar,
-/obj/item/folder/red,
-/obj/item/stamp/hos,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/hos)
-"aNJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/maintenance/disposal)
+"bCh" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bCj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/computer/security{
- network = list("SS13","Mining Outpost")
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/light/small{
+ dir = 1
},
-/area/security/hos)
-"aNK" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"bCk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/area/security/hos)
-"aNL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"bCl" = (
+/obj/machinery/camera{
+ c_tag = "Bridge Port";
+ dir = 1
},
-/obj/machinery/computer/prisoner,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
- },
-/area/security/hos)
-"aNM" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "darkblue"
},
-/turf/simulated/floor/plating,
-/area/security/hos)
-"aNN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/bridge)
+"bCm" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/snacks/grown/corn,
+/obj/item/reagent_containers/food/snacks/grown/garlic,
+/obj/item/reagent_containers/food/snacks/grown/citrus/orange,
+/obj/item/reagent_containers/food/snacks/grown/cannabis{
+ pixel_y = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 9;
+ icon_state = "green"
},
-/area/security/hos)
-"aNO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/area/hydroponics/abandoned_garden)
+"bCn" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/turf/simulated/floor/carpet,
+/area/bridge)
+"bCo" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/security/hos)
-"aNP" = (
-/obj/machinery/computer/secure_data,
+/obj/item/folder/blue,
+/obj/item/pen,
+/obj/item/paper_bin,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
-"aNQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
+/area/bridge)
+"bCp" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/emergency,
+/obj/item/wrench,
+/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "vault";
+ tag = "icon-vault (WEST)"
},
-/area/security/hos)
-"aNR" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/area/bridge)
+"bCr" = (
+/obj/machinery/firealarm{
dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ pixel_y = -24
},
-/area/security/hos)
-"aNS" = (
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/hos)
-"aNT" = (
-/obj/structure/sign/fire,
-/turf/simulated/wall/r_wall/coated,
-/area/maintenance/turbine)
-"aNU" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+ icon_state = "darkblue"
},
-/turf/simulated/floor/engine,
-/area/maintenance/turbine)
-"aNV" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
+/area/bridge)
+"bCs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/wall/r_wall/coated,
-/area/maintenance/turbine)
-"aNW" = (
-/obj/machinery/atmospherics/binary/pump{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/engine,
-/area/maintenance/turbine)
-"aNX" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aNY" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "caution"
- },
-/area/maintenance/turbine)
-"aNZ" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bCv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/radiation,
-/obj/item/clothing/glasses/meson,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aOa" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "caution"
+ dir = 1;
+ icon_state = "greencorner"
},
-/area/maintenance/turbine)
-"aOb" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/atmos)
-"aOc" = (
+/area/hydroponics/abandoned_garden)
+"bCy" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/atmos)
-"aOd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 10
- },
/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/maintenance/turbine)
-"aOe" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/atmos)
-"aOf" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
- },
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
- },
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aOg" = (
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"aOh" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Turbine Generator Access";
- req_access_txt = "32"
- },
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"aOi" = (
+/area/maintenance/turbine)
+"bCB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA"
- },
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"aOj" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/atmos/glass{
- name = "Atmospherics Access";
- req_one_access_txt = "24"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"aOk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/fire,
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"aOl" = (
-/obj/structure/sign/electricshock,
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"aOm" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering";
- req_access_txt = "32"
+/obj/machinery/door/airlock/security/glass{
+ name = "Prisoner Processing";
+ req_access_txt = "63"
},
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"aOn" = (
-/obj/structure/chair/wood{
+/turf/simulated/floor/plasteel{
dir = 1
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aOo" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+/area/security/processing)
+"bCC" = (
+/obj/item/mounted/frame/apc_frame,
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/space,
-/area/space/nearstation)
-"aOp" = (
-/obj/structure/table/wood,
-/obj/item/clothing/glasses/sunglasses,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aOq" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aOr" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aOs" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aOt" = (
+/area/hydroponics/abandoned_garden)
+"bCG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/item/mounted/frame/apc_frame,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aOu" = (
-/obj/structure/table/wood,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
-"aOw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/girder,
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "yellow"
- },
-/area/maintenance/engrooms)
-"aOx" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
+"bCI" = (
+/obj/structure/grille,
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"bCJ" = (
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry/eastarrival)
-"aOy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -25
- },
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "green"
},
-/area/crew_quarters/serviceyard)
-"aOz" = (
+/area/hydroponics/abandoned_garden)
+"bCK" = (
+/turf/simulated/wall/rust,
+/area/maintenance/gambling_den)
+"bCL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/serviceyard)
-"aOA" = (
-/obj/structure/table/wood,
-/obj/item/camera_film,
-/obj/item/camera_film,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/bar/atrium)
-"aOB" = (
-/obj/structure/table/wood,
-/obj/item/soap/nanotrasen,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "1-2"
},
-/area/crew_quarters/bar/atrium)
-"aOC" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j2"
},
-/obj/machinery/light{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bCN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/camera{
- c_tag = "Theatre"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Service Hall"
},
-/area/crew_quarters/bar/atrium)
-"aOD" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/wood,
/area/crew_quarters/bar/atrium)
-"aOE" = (
-/obj/structure/window/reinforced{
+"bCO" = (
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/status_display{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/machinery/vending/artvend,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/area/crew_quarters/bar/atrium)
-"aOF" = (
-/obj/machinery/vending/cigarette,
/turf/simulated/floor/wood,
/area/crew_quarters/bar/atrium)
-"aOG" = (
-/obj/machinery/vending/hydroseeds,
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
-"aOH" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/crew_quarters/bar/atrium)
-"aOI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/radio/intercom{
+"bCP" = (
+/obj/machinery/firealarm{
dir = 4;
pixel_x = 28
},
@@ -19024,3994 +18813,4358 @@
icon_state = "neutralcorner"
},
/area/hallway/primary/fore)
-"aOJ" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/filingcabinet/filingcabinet,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
- },
-/area/quartermaster/delivery)
-"aOK" = (
+"bDb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/seed_extractor,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/miner,
-/obj/machinery/camera{
- c_tag = "Mining Port";
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"bDd" = (
+/obj/machinery/hydroponics/soil,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/seeds/tea,
+/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- pixel_y = -31
- },
/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"aOL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/hydroponics/abandoned_garden)
+"bDe" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/delivery)
-"aOM" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/quartermaster/delivery)
-"aON" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- id = "cargodisposals"
+ icon_state = "yellow"
},
+/area/engine/break_room)
+"bDf" = (
+/obj/machinery/vending/hydroseeds,
/turf/simulated/floor/plating,
-/area/quartermaster/delivery)
-"aOO" = (
-/obj/structure/table/reinforced,
-/obj/machinery/kitchen_machine/microwave,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
+/area/hydroponics/abandoned_garden)
+"bDg" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
},
-/area/quartermaster/storage)
-"aOP" = (
-/obj/structure/table,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/reagentgrinder{
- pixel_x = -1;
- pixel_y = 9
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel,
+/area/hydroponics/abandoned_garden)
+"bDh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 8
},
-/obj/machinery/vending/wallmed{
- pixel_y = 30
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bDi" = (
+/obj/structure/chair/office/light{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/carpet,
+/area/security/vacantoffice)
+"bDj" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/hydroponics)
-"aOQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark/start{
- name = "Cargo Technician"
+/turf/simulated/floor/plating,
+/area/engine/break_room)
+"bDk" = (
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"bDm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/structure/table/reinforced,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/storage)
-"aOR" = (
-/obj/machinery/flasher{
- desc = "A wall-mounted punk-sorting device. Its bulb seems to have extra power running through it.";
- id = "permaflash";
- name = "Mounted Prison flash";
- range = 3
+/area/engine/break_room)
+"bDn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/wall/r_wall,
-/area/security/permabrig)
-"aOS" = (
+/obj/structure/table/reinforced,
+/obj/item/pen,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/crate/internals,
+/obj/item/paper_bin,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/storage)
-"aOT" = (
-/obj/structure/table/wood,
-/obj/machinery/newscaster{
- pixel_x = 32
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = -30
- },
-/obj/machinery/status_display{
- pixel_y = -32
+/area/engine/break_room)
+"bDt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/computer/med_data/laptop,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/security/hos)
-"aOU" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 5
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"aOV" = (
-/obj/structure/closet/secure_closet/hos,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/item/megaphone,
-/obj/item/toy/russian_revolver{
- icon_state = "mateba"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/hos)
-"aOW" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+/area/engine/break_room)
+"bDv" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"aOX" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/status_display{
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/light,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/security/hos)
-"aOY" = (
-/obj/machinery/suit_storage_unit/security,
-/obj/item/radio/intercom{
- pixel_x = -6;
- pixel_y = -28
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"bDw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/hos)
-"aOZ" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/security/permabrig)
-"aPa" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
- },
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/firealarm{
+/area/maintenance/fpmaint2)
+"bDB" = (
+/obj/structure/table/reinforced,
+/obj/machinery/alarm{
dir = 8;
- pixel_x = -24
+ pixel_x = 24
},
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/item/stock_parts/scanning_module,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/capacitor,
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 8;
icon_state = "vault"
},
-/area/security/hos)
-"aPb" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/toy/figure/hos,
-/obj/item/radio/intercom{
- pixel_y = -28
+/area/storage/tech)
+"bDG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
- },
-/area/security/hos)
-"aPc" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/donut_box,
-/obj/machinery/door_control{
- id = "hosp";
- name = "HoS Privacy Shutters Control";
- pixel_x = 8;
- pixel_y = -24;
- req_access_txt = "58"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/door_control{
- id = "briglock";
- name = "Brig Lockdown";
- pixel_x = -7;
- pixel_y = -24;
- req_access_txt = "58"
+/area/quartermaster/storage)
+"bDI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+ dir = 4;
+ icon_state = "yellowcorner"
},
-/area/security/hos)
-"aPd" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+/area/storage/primary)
+"bDR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/hos)
-"aPe" = (
-/obj/structure/disposalpipe/trunk{
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Conference Room";
+ req_access = null;
+ req_access_txt = "19"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"bDS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/obj/machinery/disposal,
-/obj/machinery/light,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/security/hos)
-"aPf" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/camera{
- c_tag = "Arrivals Shuttle South West";
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bDT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"bDV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"aPg" = (
-/obj/structure/table/reinforced,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/radio/intercom{
- pixel_x = -28
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/clipboard,
-/obj/item/toy/figure/warden,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bDW" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
+/obj/machinery/computer/communications,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkred"
- },
-/area/security/warden)
-"aPh" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 15
- },
-/obj/item/stack/sheet/glass{
- amount = 10
+ icon_state = "grimy"
},
-/obj/item/screwdriver,
-/obj/item/wirecutters,
-/obj/machinery/door/window/brigdoor{
- req_access_txt = "3"
+/area/bridge)
+"bDY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/bridge)
+"bEa" = (
+/obj/machinery/vending/suitdispenser,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkred"
+ icon_state = "dark"
},
-/area/security/securearmoury)
-"aPi" = (
-/obj/structure/closet/l3closet/security,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
+/area/crew_quarters/locker)
+"bEc" = (
+/obj/machinery/ai_status_display{
+ pixel_x = -32
},
-/area/security/securearmoury)
-"aPj" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+/obj/machinery/computer/crew,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "blue"
},
-/obj/structure/window/reinforced,
-/obj/machinery/door/window{
+/area/bridge/checkpoint/north)
+"bEd" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/machinery/alarm{
dir = 8;
- name = "Secure Armory";
- req_access_txt = "1"
+ pixel_x = 25
},
-/obj/item/clothing/suit/armor/laserproof,
-/obj/item/gun/energy/ionrifle,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkred"
- },
-/area/security/securearmoury)
-"aPk" = (
-/obj/machinery/door/poddoor{
- id_tag = "turbinevent";
- name = "Turbine Vent"
+ icon_state = "grimy"
},
-/turf/simulated/floor/engine,
-/area/maintenance/turbine)
-"aPl" = (
+/area/crew_quarters/cabin1)
+"bEe" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/power/turbine{
- dir = 8;
- luminosity = 2
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/sign/vacuum{
- pixel_y = -32
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/engine,
-/area/maintenance/turbine)
-"aPm" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/bridge/checkpoint/north)
+"bEf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/power/compressor{
- comp_id = "incineratorturbine";
- dir = 4;
- luminosity = 2
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/engine,
-/area/maintenance/turbine)
-"aPn" = (
-/obj/machinery/igniter{
- id = "Incinerator";
- luminosity = 2
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ name = "Custodial Junction";
+ sortType = 22
},
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bEg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/engine,
-/area/maintenance/turbine)
-"aPo" = (
-/obj/machinery/door/airlock/glass{
- autoclose = 0;
- frequency = 1449;
- heat_proof = 1;
- icon_state = "door_locked";
- id_tag = "gas_turbine_exterior";
- locked = 1;
- name = "Turbine Exterior Airlock";
- req_access_txt = "12"
- },
-/obj/machinery/access_button{
- command = "cycle_exterior";
- master_tag = "turbine_control";
- name = "Gas Turbine Access Button";
- pixel_x = -2;
- pixel_y = 22
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bEh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/engine,
-/area/maintenance/turbine)
-"aPp" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/engine,
-/area/maintenance/turbine)
-"aPq" = (
-/obj/machinery/door/airlock/glass{
- autoclose = 0;
- frequency = 1449;
- heat_proof = 1;
- icon_state = "door_locked";
- id_tag = "gas_turbine_interior";
- locked = 1;
- name = "Turbine Interior Airlock";
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/access_button{
- command = "cycle_interior";
- master_tag = "turbine_control";
- name = "Gas Turbine Access Button";
- pixel_x = -1;
- pixel_y = 22
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bEi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/engine,
-/area/maintenance/turbine)
-"aPr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "1-8"
},
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bEk" = (
+/obj/machinery/slot_machine,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"bEl" = (
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/storage)
+"bEm" = (
+/obj/machinery/gameboard,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway)
+"bEn" = (
+/obj/structure/table/reinforced,
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 32
+ },
+/obj/item/reagent_containers/food/drinks/bottle/patron,
+/obj/item/storage/fancy/cigarettes/cigpack_shadyjims,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"bEo" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "vault"
},
-/area/maintenance/turbine)
-"aPs" = (
+/area/security/nuke_storage)
+"bEr" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"bEs" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/maintenance/turbine)
-"aPt" = (
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"bEt" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/binary/valve,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/barricade/wooden,
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/maintenance/turbine)
-"aPu" = (
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"bEv" = (
/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"bEw" = (
+/obj/structure/statue/chickenstatue,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"bEx" = (
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 2;
+ height = 18;
+ id = "skipjack_se";
+ name = "southeast of SS13";
+ width = 19
+ },
+/turf/space,
+/area/space)
+"bEG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plating,
-/area/atmos)
-"aPv" = (
+/area/maintenance/fpmaint2)
+"bEI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/atmos)
-"aPw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/atmos)
-"aPx" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/hallway/secondary/entry/louge)
+"bEJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/atmos)
-"aPy" = (
-/obj/machinery/light{
- dir = 1;
- in_use = 1
+/area/engine/break_room)
+"bEK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "privateroom"
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -6;
- pixel_y = 32
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "privateroom"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/obj/structure/window/reinforced/polarized{
+ id = "privateroom"
},
-/area/atmos)
-"aPz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "privateroom"
},
-/obj/item/radio/intercom{
- pixel_y = 22
+/turf/simulated/floor/plating,
+/area/crew_quarters/bar/atrium)
+"bEN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/atmos)
-"aPA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/atmos)
-"aPB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/hallway/secondary/entry/louge)
+"bEO" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "caution"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/maintenance/turbine)
-"aPC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/status_display{
- pixel_y = 32
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
+/area/hallway/secondary/entry/louge)
+"bER" = (
+/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/atmos)
-"aPD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/area/engine/break_room)
+"bES" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/atmos)
-"aPE" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/radiation,
-/obj/item/clothing/glasses/meson,
+/area/engine/break_room)
+"bEV" = (
+/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aPF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/area/engine/break_room)
+"bEX" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"bFb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/area/atmos)
-"aPG" = (
-/obj/machinery/light{
- dir = 1;
- in_use = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/atmos)
-"aPH" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/atmos)
-"aPI" = (
-/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bFc" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken5";
+ tag = "icon-wood-broken5"
+ },
+/area/maintenance/abandonedbar)
+"bFf" = (
+/obj/structure/rack,
+/obj/item/circuitboard/atmos_alert{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/circuitboard/powermonitor,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/atmos)
-"aPJ" = (
-/obj/structure/closet/toolcloset,
-/obj/item/clothing/glasses/welding,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aPK" = (
-/obj/structure/chair/office/dark{
- dir = 4
+/area/storage/tech)
+"bFi" = (
+/obj/structure/closet/secure_closet,
+/obj/item/storage/secure/briefcase,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aPL" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/folder/red,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aPM" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "blue"
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aPN" = (
+/area/bridge/checkpoint/north)
+"bFk" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/storage/box/lights/mixed,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"bFq" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aPO" = (
-/obj/machinery/light/small{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/slot_machine,
/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aPP" = (
-/obj/machinery/newscaster{
- pixel_y = 32
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bFr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/status_display{
- pixel_x = -32
+/obj/structure/chair/comfy/brown{
+ dir = 4
},
-/obj/machinery/vending/coffee,
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aPQ" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/condiment/peppermill{
- pixel_x = 2;
- pixel_y = 6
+/turf/simulated/floor/carpet,
+/area/bridge/meeting_room)
+"bFu" = (
+/turf/simulated/wall,
+/area/maintenance/apmaint)
+"bFv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -2;
- pixel_y = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aPR" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
- },
-/obj/structure/table/wood,
-/obj/item/kitchen/utensil/fork,
-/obj/machinery/camera{
- c_tag = "Mr. Chang's"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aPT" = (
-/obj/item/radio/intercom{
- pixel_y = 28
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bFw" = (
+/obj/machinery/hydroponics/soil,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"bFx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
},
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bFy" = (
/obj/structure/table/wood,
/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aPU" = (
-/obj/structure/table/wood,
-/obj/item/instrument/guitar,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/area/bridge/meeting_room)
+"bFz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/crew_quarters/bar/atrium)
-"aPV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/door/airlock/highsecurity{
+ name = "AI Upload";
+ req_access_txt = "30"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/crew_quarters/bar/atrium)
-"aPW" = (
+/area/turret_protected/ai_upload)
+"bFA" = (
/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aPX" = (
+/area/security/vacantoffice)
+"bFB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aPY" = (
-/mob/living/simple_animal/mouse/brown{
- desc = "Главный помощник архитектора станции.";
- real_name = "Инспектор Мышь"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aPZ" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"aQa" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "engsm";
- name = "Supermatter Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/airlock/highsecurity{
- heat_proof = 1;
- name = "Supermatter Chamber";
- req_one_access_txt = "24; 10"
+ icon_state = "1-2"
},
-/turf/simulated/floor/engine,
-/area/engine/supermatter)
-"aQb" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/structure/chair/office/dark{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/central/nw)
-"aQe" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/table,
-/obj/machinery/power/apc{
+/area/bridge/checkpoint/north)
+"bFC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- name = "west bump";
- pixel_x = -24
+ initialize_directions = 11
},
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- icon_state = "brown"
+ initialize_directions = 11
},
-/area/quartermaster/delivery)
-"aQf" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Cargo Technician"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/delivery)
-"aQg" = (
+/area/hallway/secondary/entry/louge)
+"bFD" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/structure/chair/office/dark{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/delivery)
-"aQh" = (
+/area/security/checkpoint2)
+"bFE" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bFG" = (
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"bFH" = (
+/obj/structure/chair/stool/bar,
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
+/area/maintenance/abandonedbar)
+"bFI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/quartermaster/delivery)
-"aQi" = (
-/obj/structure/plasticflaps,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/delivery)
-"aQj" = (
-/obj/structure/table,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = -5;
- pixel_y = 6
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 5;
- pixel_y = 6
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/obj/item/reagent_containers/spray/plantbgone{
- pixel_y = 3
+/area/hallway/primary/fore)
+"bFJ" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
},
-/obj/machinery/computer/guestpass{
- pixel_y = 32
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bFK" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"bFQ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/light_switch{
+ pixel_x = -22
},
-/area/hydroponics)
-"aQk" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/donkpockets{
- pixel_x = 4;
- pixel_y = 4
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"bFR" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 25
},
-/obj/item/storage/box/donkpockets,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
+ dir = 5;
icon_state = "brown"
},
-/area/quartermaster/storage)
-"aQl" = (
-/obj/structure/window/reinforced{
- dir = 1
+/area/quartermaster/office)
+"bFS" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/closet/crate/hydroponics/prespawned,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hydroponics)
-"aQm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "green"
+/obj/structure/chair/comfy/brown{
+ dir = 8
},
-/area/hydroponics)
-"aQn" = (
-/obj/structure/closet/crate,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"bFU" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = 28
},
-/area/quartermaster/storage)
-"aQo" = (
+/turf/simulated/floor/wood,
+/area/maintenance/abandonedbar)
+"bFV" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "blue"
+ icon_state = "dark"
+ },
+/area/bridge)
+"bGh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hydroponics)
-"aQp" = (
/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/westleft{
- dir = 4;
- name = "Cargo Desk";
- req_access_txt = "50"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/folder/yellow,
-/obj/item/pen,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/delivery)
-"aQq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aQr" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"aQs" = (
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/conveyor/north{
- id = "QMLoad"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aQt" = (
-/obj/machinery/newscaster{
- pixel_x = -32
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/camera{
- c_tag = "Bar counter";
+/turf/simulated/floor/plasteel{
dir = 4;
- pixel_y = -22
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"aQu" = (
+/area/bridge/vip)
+"bGm" = (
/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes/southwestcorner,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aQv" = (
-/obj/effect/decal/warning_stripes/arrow{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1
+/area/quartermaster/qm)
+"bGq" = (
+/obj/structure/table/reinforced,
+/obj/item/wrench,
+/obj/item/crowbar,
+/obj/item/mmi,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/conveyor/east{
- id = "QMLoad"
+/area/turret_protected/ai)
+"bGs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aQw" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"bGt" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aQx" = (
-/obj/effect/decal/warning_stripes/northeastcorner,
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "vault"
- },
-/area/security/securearmoury)
-"aQy" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/northwestcorner,
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "vault"
- },
-/area/security/securearmoury)
-"aQz" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/window/reinforced,
-/obj/item/gun/energy/laser{
- pixel_x = -2;
- pixel_y = 3
- },
-/obj/item/gun/energy/laser,
-/obj/item/gun/energy/laser{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/decal/warning_stripes/northwest,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkred"
- },
-/area/security/securearmoury)
-"aQA" = (
-/obj/structure/rack{
+/obj/structure/disposalpipe/segment{
dir = 8;
- layer = 2.9
+ icon_state = "pipe-c"
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/item/clothing/suit/armor/bulletproof,
-/obj/item/clothing/head/helmet/alt,
-/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/port/west)
+"bGv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/securearmoury)
-"aQB" = (
-/obj/machinery/suit_storage_unit/security,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/area/quartermaster/qm)
+"bGw" = (
+/obj/machinery/biogenerator,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/light/small{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
+/turf/simulated/floor/plasteel,
+/area/hydroponics/abandoned_garden)
+"bGy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/security/securearmoury)
-"aQC" = (
-/obj/structure/chair{
+/turf/simulated/floor/plasteel,
+/area/hydroponics/abandoned_garden)
+"bGz" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/chief)
+"bGB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/warning_stripes/northwest,
+/obj/structure/rack,
+/obj/item/weldingtool,
+/obj/item/assembly/voice,
+/obj/item/clothing/head/welding,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bGC" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkred"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/processing)
-"aQD" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"bGD" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/engine/engineering/monitor)
+"bGE" = (
+/obj/structure/sign/electricshock,
+/turf/simulated/wall/r_wall,
+/area/engine/engineering/monitor)
+"bGJ" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/effect/landmark/start{
- name = "Security Officer"
+/obj/effect/decal/warning_stripes/southwest,
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbage"
},
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bGK" = (
+/obj/structure/rack,
+/obj/item/circuitboard/teleporter_hub{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/circuitboard/teleporter_station,
+/obj/item/circuitboard/teleporter{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "neutralfull"
},
-/area/security/brig)
-"aQE" = (
-/obj/structure/chair/office/dark,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/storage/tech)
+"bGL" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/rack,
+/obj/item/circuitboard/autolathe{
+ pixel_x = 3;
+ pixel_y = -3
},
+/obj/item/circuitboard/mechfab,
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/brig)
-"aQF" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/storage/tech)
+"bGM" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 4;
+ name = "Труба фильтрации"
},
+/obj/machinery/meter,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "vault"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/securearmoury)
-"aQG" = (
-/obj/effect/decal/warning_stripes/southeast,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/atmos)
+"bGO" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/status_display{
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault"
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/security/securearmoury)
-"aQH" = (
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/storage/tech)
+"bGY" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/storage/primary)
+"bHd" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/carpet,
+/area/bridge/meeting_room)
+"bHe" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 4;
+ name = "Труба фильтрации"
},
-/obj/item/book/manual/security_space_law{
- pixel_x = -3;
- pixel_y = 5
+/turf/simulated/floor/plasteel{
+ icon_state = "caution"
},
-/obj/item/megaphone,
+/area/atmos)
+"bHf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/remains/human,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
+ dir = 4;
+ icon_state = "greencorner"
},
-/area/security/brig)
-"aQI" = (
-/obj/structure/closet/secure_closet/security,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/hydroponics/abandoned_garden)
+"bHj" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/meeting_room)
+"bHl" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbage"
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bHo" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/engine/controlroom)
+"bHp" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
+/area/engine/controlroom)
+"bHq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/brig)
-"aQJ" = (
-/obj/structure/rack{
dir = 8;
- layer = 2.9
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/window{
- dir = 1;
- name = "Secure Armory";
- req_access_txt = "1"
+ icon_state = "neutralfull"
},
-/obj/item/storage/lockbox/mindshield,
-/obj/item/storage/box/trackimp,
-/obj/item/storage/box/chemimp{
- pixel_x = 4;
- pixel_y = 3
+/area/engine/controlroom)
+"bHr" = (
+/obj/structure/table/wood,
+/obj/machinery/light/small,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"bHs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/lock_buster,
-/turf/simulated/floor/plasteel{
- icon_state = "darkred"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/area/security/securearmoury)
-"aQK" = (
-/obj/machinery/vending/security,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+ icon_state = "grimy"
},
-/area/security/customs)
-"aQL" = (
-/obj/structure/table/reinforced,
-/obj/structure/table/reinforced,
-/obj/item/folder/red{
- pixel_y = 3
+/area/crew_quarters/captain)
+"bHu" = (
+/obj/machinery/hydroponics/soil,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/light/small{
+ dir = 4
},
-/obj/item/book/manual/sop_security,
-/obj/item/stack/tape_roll,
+/obj/item/seeds/wheat,
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"bHv" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+ icon_state = "grimy"
},
-/area/security/customs)
-"aQM" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
- dir = 4;
- frequency = 1441;
- id = "mix_in"
+/area/crew_quarters/captain)
+"bHw" = (
+/obj/machinery/light,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
-/turf/simulated/floor/engine,
-/area/maintenance/turbine)
-"aQN" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/condiment/peppermill{
+ pixel_x = 2;
+ pixel_y = 6
},
-/obj/structure/sign/fire,
-/turf/simulated/wall/r_wall/coated,
-/area/maintenance/turbine)
-"aQO" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8
+/obj/item/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -2;
+ pixel_y = 4
},
-/obj/machinery/light/small,
-/turf/simulated/floor/engine,
-/area/maintenance/turbine)
-"aQP" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"bHx" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/captain)
+"bHz" = (
+/obj/structure/chair/wood{
+ dir = 8
},
-/obj/machinery/embedded_controller/radio/airlock/access_controller{
- frequency = 1449;
- id_tag = "turbine_control";
- name = "Turbine Access Console";
- pixel_x = 8;
- pixel_y = -26;
- req_access_txt = "12";
- tag_exterior_door = "gas_turbine_exterior";
- tag_interior_door = "gas_turbine_interior"
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = -25
},
-/obj/machinery/ignition_switch{
- id = "Incinerator";
- pixel_x = 8;
- pixel_y = -36
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"bHH" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/door_control{
- id = "turbinevent";
- name = "Turbine Vent Control";
- pixel_x = -8;
- pixel_y = -36;
- req_access_txt = "12"
+/area/security/processing)
+"bHI" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/door_control{
- id = "auxincineratorvent";
- name = "Auxiliary Vent Control";
- pixel_x = -8;
- pixel_y = -24
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Briefing";
+ name = "Briefing Room Shutters"
},
-/obj/machinery/computer/turbine_computer{
- id = "incineratorturbine"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "caution"
+/turf/simulated/floor/plating,
+/area/security/main)
+"bHN" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/maintenance/turbine)
-"aQQ" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/structure/table/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/item/clipboard,
-/obj/item/folder/yellow,
-/obj/item/reagent_containers/food/pill/patch/silver_sulf,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"bHO" = (
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "caution"
+ dir = 1;
+ icon_state = "darkred"
},
-/area/maintenance/turbine)
-"aQR" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
+/area/security/evidence)
+"bHQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/newscaster{
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "caution"
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/area/maintenance/turbine)
-"aQS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 0;
+ icon_state = "red"
},
-/area/atmos)
-"aQT" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/area/security/processing)
+"bHS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/paper_bin,
-/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "caution"
- },
-/area/atmos)
-"aQU" = (
-/obj/structure/window/reinforced{
- dir = 1
+ dir = 4;
+ icon_state = "brown"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/quartermaster/office)
+"bHW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/dispenser,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ name = "Cargo Bay";
+ req_access_txt = "31"
},
-/area/atmos)
-"aQV" = (
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/computer/atmoscontrol,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"bHX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/atmos)
-"aQW" = (
-/obj/structure/window/reinforced{
- dir = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/computer/atmos_alert,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
- },
-/area/atmos)
-"aQX" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/wrench,
-/obj/item/crowbar,
-/obj/item/clothing/mask/gas,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+ dir = 8;
+ icon_state = "brown"
},
-/area/atmos)
-"aQY" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
+/area/quartermaster/storage)
+"bHY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/tank/emergency_oxygen,
-/obj/item/tank/emergency_oxygen,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "caution"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/atmos)
-"aQZ" = (
-/obj/item/twohanded/required/kirbyplants,
+/area/quartermaster/storage)
+"bId" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table/reinforced,
+/obj/item/folder/yellow,
+/obj/item/stamp/qm,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "neutralfull"
},
-/area/atmos)
-"aRa" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -22
+/area/quartermaster/qm)
+"bIn" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/maintcentral)
+"bIp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/radiation,
-/obj/item/clothing/glasses/meson,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"aRb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
+/obj/structure/chair/office/dark{
dir = 8
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/effect/landmark/start{
+ name = "Quartermaster"
},
-/obj/item/airalarm_electronics,
-/obj/item/airalarm_electronics,
-/obj/item/firealarm_electronics,
-/obj/item/firealarm_electronics,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "caution"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/atmos)
-"aRc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/quartermaster/qm)
+"bIq" = (
+/obj/machinery/computer/drone_control,
+/turf/simulated/floor/plasteel{
+ dir = 7;
+ icon_state = "yellow"
},
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
+/area/engine/break_room)
+"bIr" = (
+/obj/machinery/autolathe,
+/turf/simulated/floor/plasteel{
+ dir = 7;
+ icon_state = "yellow"
},
-/obj/structure/window/reinforced{
- dir = 1
+/area/engine/break_room)
+"bIz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/tape_roll,
+/obj/machinery/computer/security/engineering,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "caution"
+ dir = 1;
+ icon_state = "yellow"
},
-/area/atmos)
-"aRd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/area/engine/engineering/monitor)
+"bIA" = (
+/obj/machinery/light{
+ dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/item/radio/intercom{
+ pixel_x = 28
},
-/area/atmos)
-"aRe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 4;
+ icon_state = "yellow"
},
-/area/atmos)
-"aRf" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
+/area/engine/break_room)
+"bIE" = (
+/obj/machinery/status_display{
+ pixel_x = 32
},
-/obj/structure/window/reinforced{
+/obj/machinery/pdapainter,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"bIG" = (
+/obj/machinery/computer/secure_data,
+/obj/machinery/light{
dir = 8
},
-/obj/item/stack/rods{
- amount = 8
- },
-/obj/item/storage/box/lights/mixed,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "caution"
- },
-/area/atmos)
-"aRg" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
- },
-/area/atmos)
-"aRh" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/structure/window/reinforced{
- dir = 1
+/area/crew_quarters/heads/hop)
+"bIH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/stack/sheet/plasteel{
- amount = 5
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/item/stack/sheet/rglass{
- amount = 50
+/turf/simulated/floor/greengrid,
+/area/engine/controlroom)
+"bIK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "caution"
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"bIP" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба содержит газ для обработки и после возвращает его обратно в трубу смешивания";
+ dir = 10;
+ name = "Труба обработки"
},
-/area/atmos)
-"aRi" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "neutralfull"
},
/area/atmos)
-"aRj" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+"bIT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/maintenance/gambling_den)
-"aRk" = (
-/obj/structure/table/wood,
-/obj/item/storage/briefcase,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aRl" = (
/obj/structure/table/wood,
-/obj/item/toy/cards/deck/syndicate,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aRm" = (
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"aRn" = (
+/obj/item/folder/red,
+/obj/item/lighter/zippo,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair/stool,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aRo" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/maintenance/engrooms)
-"aRp" = (
-/obj/structure/statue/chickenstatue,
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aRq" = (
/turf/simulated/floor/carpet,
-/area/crew_quarters/mrchangs)
-"aRr" = (
+/area/bridge/meeting_room)
+"bIV" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/chair/wood{
- dir = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/wood,
+/obj/item/folder/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/carpet,
-/area/crew_quarters/mrchangs)
-"aRs" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/crew_quarters/mrchangs)
-"aRt" = (
+/area/bridge/meeting_room)
+"bIW" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/atmos)
+"bIX" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 100;
+ on = 1
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"bJa" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
+ },
+/area/engine/controlroom)
+"bJf" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bJh" = (
+/turf/simulated/wall/r_wall,
+/area/turret_protected/ai_upload)
+"bJi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"aRu" = (
+/area/engine/controlroom)
+"bJk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"bJn" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aRv" = (
+/area/security/customs)
+"bJp" = (
+/obj/machinery/atmospherics/binary/valve,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"bJs" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light/small{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/bridge/checkpoint/north)
+"bJy" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
+ },
+/area/crew_quarters/fitness)
+"bJA" = (
+/obj/structure/sink{
dir = 4;
- icon_state = "neutralcorner"
+ pixel_x = 11
},
-/area/crew_quarters/serviceyard)
-"aRw" = (
-/obj/structure/table/wood,
-/obj/item/camera,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 30
},
+/turf/space,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "whitered"
+ },
+/area/security/medbay)
+"bJF" = (
+/obj/machinery/light/small,
+/obj/machinery/camera{
+ c_tag = "Xeno Containment 2";
+ dir = 1;
+ network = list("Research","SS13")
},
-/area/crew_quarters/bar/atrium)
-"aRx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/crew_quarters/bar/atrium)
-"aRy" = (
-/obj/structure/chair/wood,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aRz" = (
-/obj/structure/window/reinforced{
- dir = 4
+/area/toxins/xenobiology)
+"bJW" = (
+/turf/simulated/wall/r_wall,
+/area/turret_protected/aisat)
+"bJZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutral"
},
-/area/crew_quarters/bar/atrium)
-"aRA" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
+/area/crew_quarters/chief)
+"bKc" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
},
-/obj/effect/landmark/start{
- name = "Civilian"
+/area/hallway/secondary/entry/louge)
+"bKd" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 25
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aRB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken6";
+ tag = "icon-wood-broken6"
},
-/obj/structure/chair/wood/wings{
+/area/maintenance/abandonedbar)
+"bKe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bKf" = (
+/obj/machinery/conveyor{
dir = 4;
- tag = "icon-wooden_chair_wings (EAST)"
+ id = "garbage"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aRC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/sign/vacuum{
+ pixel_y = 32
},
-/obj/structure/table/wood,
-/obj/item/ashtray/bronze{
- pixel_x = -1;
- pixel_y = 1
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bKi" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aRD" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -2;
- pixel_y = 4
+/area/engine/break_room)
+"bKl" = (
+/obj/machinery/camera{
+ c_tag = "Engineering Monitoring";
+ dir = 4;
+ network = list("Engineering","SS13");
+ pixel_y = -22
},
-/obj/item/reagent_containers/food/condiment/peppermill{
- pixel_x = 2;
- pixel_y = 6
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "yellow"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/engine/engineering/monitor)
+"bKr" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/clothing/accessory/stethoscope,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"bKs" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "bluecorner"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aRE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hydroponics)
+"bKy" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/structure/chair/wood/wings{
+/obj/machinery/power/apc{
dir = 8;
- tag = "icon-wooden_chair_wings (WEST)"
- },
-/obj/effect/landmark/start{
- name = "Civilian"
+ name = "west bump";
+ pixel_x = -24
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aRG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/crate/engineering{
+ desc = "В ящике хранится оборудование и ресурсы для осуществления ремонта станции гражданским персоналом в случае нужды или безработицы";
+ name = "Ящик оборудования для ремонта"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"aRH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/arrow,
-/obj/effect/decal/warning_stripes/yellow/partial,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/lights/mixed,
+/obj/item/clothing/head/welding,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/airlock_painter,
+/obj/item/floor_painter,
+/obj/item/floor_painter,
+/obj/item/airlock_painter,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"bKB" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/fore)
-"aRI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "yellowcorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/storage/primary)
+"bKE" = (
+/obj/machinery/computer/account_database,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/fore)
-"aRJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/bridge/meeting_room)
+"bKF" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbage"
},
-/obj/structure/disposalpipe/segment,
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 32
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bKH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
+"bKK" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/area/hallway/primary/fore)
-"aRK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/effect/decal/warning_stripes/southeast,
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/mass_driver{
dir = 4;
- initialize_directions = 11
+ id_tag = "trash"
},
-/obj/machinery/light{
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bKN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
+"bKP" = (
+/obj/structure/bed/dogbed{
+ name = "fox box"
+ },
+/mob/living/simple_animal/pet/dog/fox/Renault,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/fore)
-"aRL" = (
-/obj/structure/table,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/area/crew_quarters/captain)
+"bKU" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/obj/machinery/light_switch{
- pixel_x = -22;
- pixel_y = -22
+/area/crew_quarters/kitchen)
+"bKV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bLb" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"bLc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/machinery/recharger{
- pixel_y = 3
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "brown"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/quartermaster/delivery)
-"aRM" = (
-/obj/structure/table,
-/obj/item/folder/yellow,
-/obj/item/destTagger,
-/obj/item/rcs,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"bLl" = (
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/quartermaster/delivery)
-"aRN" = (
+/area/crew_quarters/kitchen)
+"bLm" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"bLo" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "construction access"
+ },
+/obj/structure/barricade/wooden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"bLq" = (
+/obj/structure/fans/tiny,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/poddoor{
+ id_tag = "trash";
+ name = "disposals blast door";
+ protected = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bLu" = (
+/turf/space,
/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/processing)
+"bLv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/quartermaster/delivery)
-"aRO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
+ dir = 1;
+ pixel_y = -24
},
-/obj/machinery/telepad_cargo,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "brown"
+ icon_state = "darkred"
},
-/area/quartermaster/delivery)
-"aRP" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 1
+/area/security/interrogation)
+"bLA" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/plating,
-/area/quartermaster/delivery)
-"aRQ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxport)
+"bLH" = (
/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/reagent_containers/food/drinks/bottle/vodka{
- desc = "For the Cargonia!";
- name = "Molotov cocktail"
+/obj/item/cartridge/quartermaster{
+ pixel_x = -3
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "brown"
+/obj/item/cartridge/quartermaster{
+ pixel_x = 5;
+ pixel_y = 3
},
-/area/quartermaster/storage)
-"aRS" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "brown"
+/obj/item/cartridge/quartermaster{
+ pixel_x = -1;
+ pixel_y = 7
},
-/area/quartermaster/storage)
-"aRT" = (
-/obj/machinery/light/small{
- dir = 8
+/obj/item/gps/mining,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/disposalpipe/segment,
+/area/quartermaster/qm)
+"bLL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aRU" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "brown"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/quartermaster/storage)
-"aRV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/item/flag/sec,
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"aRW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/heads/hop)
+"bLO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/turretid/stun{
+ control_area = "\improper AI Satellite Antechamber";
+ name = "AI Antechamber Turret Control";
+ pixel_y = 28;
+ req_access_txt = "75"
+ },
+/obj/machinery/light{
dir = 1;
- icon_state = "brown"
+ on = 1
},
-/area/quartermaster/storage)
-"aRX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "brown"
+ icon_state = "darkblue"
},
-/area/quartermaster/storage)
-"aRY" = (
+/area/turret_protected/aisat)
+"bLT" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "brown"
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/quartermaster/storage)
-"aRZ" = (
-/obj/machinery/status_display/supply_display,
-/turf/simulated/wall,
-/area/quartermaster/qm)
-"aSa" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/quartermaster/qm)
-"aSb" = (
-/turf/simulated/wall,
-/area/quartermaster/qm)
-"aSc" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxport)
+"bMd" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "ceprivacy";
+ name = "CE Privacy Shutters";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/quartermaster/qm)
-"aSd" = (
-/obj/effect/spawner/window/reinforced,
+/area/crew_quarters/chief)
+"bMe" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/chief)
+"bMg" = (
+/obj/structure/cable,
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxport)
+"bMi" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/qm)
-"aSe" = (
-/obj/effect/spawner/window/reinforced,
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxport)
+"bMk" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "1-8"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/qm)
-"aSf" = (
-/obj/machinery/shower{
- pixel_y = 22
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/curtain/open/shower,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxport)
+"bMl" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/area/security/permabrig)
-"aSg" = (
-/obj/structure/sink/kitchen{
- pixel_y = 28
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"bMn" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 1
},
-/obj/item/bikehorn/rubberducky,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
-/area/security/permabrig)
-"aSh" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- name = "standard air scrubber";
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+/obj/structure/window/plasmareinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/turf/simulated/floor/plating,
+/area/engine/controlroom)
+"bMo" = (
+/obj/machinery/light_switch{
+ pixel_x = -26
},
-/area/security/permabrig)
-"aSi" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitered"
+ icon_state = "yellow"
},
-/area/security/medbay)
-"aSj" = (
-/obj/structure/sink{
- pixel_y = 32
+/area/engine/engineering/monitor)
+"bMq" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 28
},
+/obj/structure/closet/firecloset,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 8;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitered"
+ dir = 4;
+ icon_state = "yellow"
},
-/area/security/medbay)
-"aSk" = (
-/obj/machinery/sleeper{
- dir = 4
+/area/engine/engineering/monitor)
+"bMz" = (
+/obj/machinery/computer/security/mining,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitered"
+ dir = 4;
+ icon_state = "brown"
},
-/area/security/medbay)
-"aSl" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = -32
+/area/quartermaster/qm)
+"bMA" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 1
},
-/obj/machinery/light,
-/obj/effect/landmark/start{
- name = "Brig Physician"
+/obj/structure/window/plasmareinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "whitered"
+/turf/simulated/floor/plating,
+/area/engine/controlroom)
+"bMB" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "Perma1";
+ name = "Permabrig Access";
+ req_access_txt = "2"
},
-/area/security/medbay)
-"aSm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"aSn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"aSq" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aSx" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/unary/outlet_injector/on,
-/turf/simulated/floor/plating,
-/area/space)
-"aSy" = (
-/obj/machinery/door/poddoor{
- id_tag = "auxincineratorvent";
- name = "Incineration Chamber Vent"
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/turf/simulated/floor/engine,
-/area/maintenance/turbine)
-"aSz" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/turbine)
-"aSA" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 6;
- initialize_directions = 6
+/obj/structure/cable{
+ icon_state = "2-8"
},
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "dark"
},
-/area/atmos)
-"aSB" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/area/security/permabrig)
+"bMC" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/obj/item/clothing/gloves/color/black,
-/obj/item/clothing/suit/storage/hazardvest,
-/obj/item/clothing/mask/gas,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "caution"
+ icon_state = "blue"
},
-/area/atmos)
-"aSC" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+/area/bridge/checkpoint/north)
+"bMD" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"aSD" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+/obj/structure/window/plasmareinforced{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"aSE" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+/obj/structure/window/plasmareinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"aSF" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+/turf/simulated/floor/plating,
+/area/engine/controlroom)
+"bMG" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
-/obj/machinery/atmospherics/pipe/simple/visible/universal,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"aSG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"bMH" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/nw)
+"bMJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/hydroponics/soil,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/seeds/harebell,
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"bMM" = (
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/security/main)
+"bMN" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/porta_turret{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"aSH" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/ai_upload)
+"bMP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/hydroponics/abandoned_garden)
+"bMQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+/obj/machinery/ai_slipper,
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
+"bMS" = (
+/obj/machinery/atmospherics/trinary/tvalve/digital/flipped/bypass{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/atmos)
-"aSI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+"bMU" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/obj/effect/decal/warning_stripes/north,
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/item/extinguisher/mini,
/turf/simulated/floor/plasteel,
/area/atmos)
-"aSJ" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+"bMV" = (
+/obj/machinery/porta_turret{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"aSK" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/ai_upload)
+"bMW" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 1;
+ name = "Труба дыхательной смеси"
},
+/obj/machinery/meter,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "neutralfull"
},
/area/atmos)
-"aSL" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 10;
- initialize_directions = 10
- },
+"bMY" = (
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "dark"
},
-/area/atmos)
-"aSM" = (
-/obj/structure/chair,
-/obj/machinery/camera{
- c_tag = "Arrivals Waiting Zone"
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"aSN" = (
-/obj/structure/grille,
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"aSO" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aSP" = (
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+/area/turret_protected/ai_upload)
+"bNc" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/maintenance/gambling_den)
-"aSQ" = (
-/obj/machinery/atmospherics/unary/vent_pump,
+/area/hallway/primary/central/ne)
+"bNd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aSR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aSS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
+/area/maintenance/fpmaint2)
+"bNk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/mrchangs)
-"aST" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/brig)
-"aSU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"bNl" = (
+/obj/structure/table,
+/obj/item/folder,
+/obj/item/pen,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aSV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/locker)
+"bNo" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ id = "Cell 5";
+ name = "Cell 5";
+ req_access_txt = "2"
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/turf/space,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aSW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/prison/cell_block/A)
+"bNz" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
+/area/hallway/secondary/entry/louge)
+"bNA" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/mrchangs)
-"aSX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bNC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/mrchangs)
-"aSY" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bNE" = (
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/sleeper)
+"bNF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Mr. Chang's"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aSZ" = (
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bNH" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bNJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"aTa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bNK" = (
+/obj/structure/table/wood,
+/obj/item/phone,
+/obj/machinery/newscaster{
+ pixel_y = -32
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/security/vacantoffice)
+"bNL" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"aTc" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Warden";
+ name = "Warden Privacy Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"bNR" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway)
+"bNS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Service Hall"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/bar/atrium)
-"aTd" = (
+/obj/item/radio/intercom{
+ pixel_y = -28
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bNX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/crew_quarters/bar/atrium)
-"aTe" = (
+/area/crew_quarters/chief)
+"bNY" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "ceprivacy";
+ name = "CE Privacy Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/chief)
+"bOb" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/newscaster{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/crew_quarters/bar/atrium)
-"aTf" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aTg" = (
+/area/security/vacantoffice)
+"bOf" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/obj/structure/chair/wood{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/landmark/start{
- name = "Civilian"
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"bOh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aTh" = (
-/obj/structure/table/wood,
-/obj/item/dice/d20,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aTi" = (
-/obj/structure/window/reinforced{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
+/area/crew_quarters/sleep)
+"bOj" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
/obj/machinery/camera{
- c_tag = "Cargo Disposals Control";
+ c_tag = "Journalist Office";
dir = 1
},
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/photocopier,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/delivery)
-"aTj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/item/radio/intercom{
+ pixel_y = -28
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding.";
- dir = 4;
- icon_state = "plaque";
- name = "Comemmorative Plaque"
+ icon_state = "grimy"
},
-/area/hallway/primary/fore)
-"aTk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/security/vacantoffice)
+"bOk" = (
+/obj/structure/rack,
+/obj/item/circuitboard/camera{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/circuitboard/prisoner,
+/obj/item/circuitboard/secure_data{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/primary/fore)
-"aTl" = (
-/obj/effect/spawner/window/reinforced,
+/area/storage/tech)
+"bOl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
/area/quartermaster/office)
-"aTm" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+"bOm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/wall,
-/area/quartermaster/delivery)
-"aTn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/wall,
-/area/quartermaster/storage)
-"aTp" = (
-/obj/structure/chair/stool/bar,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"aTq" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aTr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/maintenance/disposal)
+"bOn" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"bOo" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"bOq" = (
+/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "dark"
+ icon_state = "neutralcorner"
},
-/area/atmos)
-"aTs" = (
+/area/hallway/primary/port/east)
+"bOr" = (
/obj/structure/table/reinforced,
-/obj/item/stamp/granted{
- pixel_x = 3;
- pixel_y = -4
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/item/stamp/denied{
- pixel_x = -4;
- pixel_y = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/bridge/checkpoint/north)
+"bOs" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"bOt" = (
+/obj/item/flag/nt,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/simulated/floor/wood,
+/area/ntrep)
+"bOu" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/quartermaster/storage)
-"aTt" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/item/destTagger,
-/obj/item/destTagger,
-/obj/item/destTagger,
+/area/hallway/primary/central/west)
+"bOv" = (
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/louge)
+"bOw" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/quartermaster/storage)
-"aTu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/hallway/primary/central/west)
+"bOz" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/secure_closet/cargotech,
+/obj/item/stamp/granted,
+/obj/item/stamp/denied,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "purple"
},
/area/quartermaster/storage)
-"aTv" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/mechanical,
+"bOA" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central/nw)
+"bOD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 0;
+ icon_state = "blue"
},
-/area/quartermaster/storage)
-"aTw" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
+/area/bridge/checkpoint/north)
+"bOE" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"bOG" = (
+/obj/item/aiModule/reset,
+/obj/structure/table/glass,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/ai_upload)
+"bOI" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/closet/crate,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/storage)
-"aTx" = (
+"bOL" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/power/apc{
dir = 4;
- icon_state = "brown"
+ name = "east bump";
+ pixel_x = 24
},
-/area/quartermaster/storage)
-"aTy" = (
-/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "brown"
+ icon_state = "dark"
},
-/area/quartermaster/qm)
-"aTz" = (
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/toy/figure/qm,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+/area/security/nuke_storage)
+"bON" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 1
},
-/area/quartermaster/qm)
-"aTA" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
+/obj/machinery/meter,
/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
+ },
+/area/engine/controlroom)
+"bOO" = (
+/obj/machinery/alarm{
dir = 1;
- icon_state = "brown"
+ pixel_y = -22
},
-/area/quartermaster/qm)
-"aTB" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/structure/chair/comfy/brown{
+ dir = 1
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/effect/landmark/start{
+ name = "Civilian"
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry/louge)
+"bOP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/clothing/gloves/color/yellow,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "yellow"
+ },
+/area/maintenance/engrooms)
+"bOQ" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/wooden_tv,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/captain)
+"bOR" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/newscaster{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ icon_state = "grimy"
},
-/area/quartermaster/qm)
-"aTC" = (
+/area/hallway/secondary/entry/louge)
+"bOS" = (
+/obj/structure/table/wood,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ icon_state = "grimy"
},
-/area/quartermaster/qm)
-"aTD" = (
+/area/hallway/secondary/entry/louge)
+"bOT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "brown"
},
/area/quartermaster/qm)
-"aTE" = (
+"bOU" = (
/obj/machinery/light{
dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28
- },
+/obj/structure/bed/dogbed,
/turf/simulated/floor/plasteel{
- dir = 5;
+ dir = 6;
icon_state = "brown"
},
/area/quartermaster/qm)
-"aTS" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
+"bOX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/space,
-/area/space/nearstation)
-"aTT" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/atmos)
-"aTU" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible{
+/area/hallway/primary/central/ne)
+"bOZ" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/space,
-/area/space/nearstation)
-"aTV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aTW" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "dark"
},
-/area/atmos)
-"aTX" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "caution"
+/area/crew_quarters/fitness)
+"bPj" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_containers/iv_bag/blood/AMinus,
+/obj/item/reagent_containers/iv_bag/blood/APlus,
+/obj/item/reagent_containers/iv_bag/blood/BMinus,
+/obj/item/reagent_containers/iv_bag/blood/BPlus,
+/obj/item/reagent_containers/iv_bag/blood/OPlus,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/salglu,
+/obj/item/reagent_containers/iv_bag/salglu,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
},
-/area/atmos)
-"aTY" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"aTZ" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+/obj/machinery/door_control{
+ id = "First Surgery Window";
+ name = "Surgery Window Shutters Control";
+ pixel_y = -26
},
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"aUa" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Port to Turbine"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"aUb" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/obj/machinery/atmospherics/binary/pump{
- dir = 1;
- name = "Port to Filter"
+/area/medical/surgery1)
+"bPr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bPt" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/window/westleft{
+ dir = 2;
+ name = "Janitoral Delivery";
+ req_access_txt = "26"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 9;
+ icon_state = "purple"
},
-/area/atmos)
-"aUc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+/area/janitor)
+"bPv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/atmos)
-"aUd" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+/obj/structure/cable{
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "redcorner"
},
-/area/atmos)
-"aUe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/security/armoury)
+"bPw" = (
+/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"aUf" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 1
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 1;
+ name = "Труба смешивания"
},
/obj/machinery/meter,
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/atmos)
-"aUg" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
+"bPy" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 1;
+ name = "Труба фильтрации"
},
/obj/machinery/atmospherics/binary/pump{
+ desc = "Подаёт кислород в смеситель для создания дыхательной смеси, которая потом распространяется по станции";
dir = 8;
- name = "Air to Pure";
+ name = "Кислород (O2) в дыхательную смесь";
+ on = 1;
target_pressure = 101
},
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "arrival"
+ icon_state = "blue"
},
/area/atmos)
-"aUh" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
-/turf/simulated/floor/plasteel{
+"bPA" = (
+/obj/machinery/conveyor{
dir = 1;
- icon_state = "dark"
- },
-/area/atmos)
-"aUi" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/atmos)
-"aUj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+ id = "garbage"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aUk" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/meter,
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"aUl" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 8;
- external_pressure_bound = 0;
- external_pressure_bound_default = 0;
- frequency = 1441;
- id_tag = "air_out";
- internal_pressure_bound = 2000;
- internal_pressure_bound_default = 2000;
- on = 1;
- pressure_checks = 2;
- pressure_checks_default = 2;
- pump_direction = 0
- },
-/turf/simulated/floor/engine/air,
-/area/atmos)
-"aUm" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics Air Tank";
- network = list("SS13","Engineering")
- },
-/turf/simulated/floor/engine/air,
-/area/atmos)
-"aUn" = (
-/turf/simulated/floor/engine/air,
-/area/atmos)
-"aUo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aUp" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aUq" = (
-/obj/structure/chair/stool,
+/area/maintenance/disposal)
+"bPB" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aUr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/maintenance/disposal)
+"bPD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Cargo Bay Maintenance";
+ req_access_txt = "31"
},
-/obj/structure/chair/stool,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aUs" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aUt" = (
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bPH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"bPK" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aUu" = (
+/area/engine/break_room)
+"bPM" = (
+/obj/machinery/hologram/holopad,
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/barricade/wooden,
-/obj/machinery/door/airlock/maintenance,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "2-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aUv" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aUw" = (
-/obj/structure/bed,
-/obj/item/bedsheet/orange,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"aUx" = (
-/obj/structure/statue/chickenstatue,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/turret_protected/aisat)
+"bPR" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/extinguisher_cabinet{
pixel_x = -28
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aUy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/mrchangs)
-"aUz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
},
-/obj/structure/chair/wood,
-/obj/effect/landmark/start{
- name = "Civilian"
+/area/engine/controlroom)
+"bPT" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/mrchangs)
-"aUA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/window/reinforced,
+/obj/machinery/light{
+ dir = 1;
+ pixel_y = -7
},
-/obj/structure/disposalpipe/segment{
- name = "Sorting Office"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aUB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/construction/hallway)
+"bPU" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 4
},
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/crew_quarters/mrchangs)
-"aUC" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/arrow,
-/obj/effect/decal/warning_stripes/yellow/partial,
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"bPV" = (
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"aUD" = (
+/area/engine/controlroom)
+"bPW" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1;
+ name = "Gas to Loop"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/engine/controlroom)
+"bPY" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/bridge/meeting_room)
+"bPZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "dark"
},
-/area/crew_quarters/serviceyard)
-"aUE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/engine/controlroom)
+"bQa" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"bQc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/wall,
-/area/crew_quarters/bar/atrium)
-"aUF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/table/wood,
-/obj/item/lipstick/random,
-/obj/item/lipstick/random,
-/obj/item/lipstick/random,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/crew_quarters/bar/atrium)
-"aUG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/area/medical/ward)
+"bQd" = (
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"bQe" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/crew_quarters/bar/atrium)
-"aUH" = (
-/obj/structure/chair/wood{
- dir = 1
+/area/crew_quarters/chief)
+"bQf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aUI" = (
-/obj/structure/table/wood,
-/obj/item/deck/cards,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aUJ" = (
-/obj/structure/table/wood,
-/obj/item/dice,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aUK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"aUL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/crew_quarters/captain)
+"bQh" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/camera{
+ c_tag = "Engineering Access";
+ dir = 4;
+ network = list("Engineering","SS13");
+ pixel_y = -1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aUM" = (
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"bQk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/atmos)
-"aUN" = (
-/obj/machinery/light{
- dir = 8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "brown"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/quartermaster/office)
-"aUO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/area/engine/engineering/monitor)
+"bQl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/table/reinforced,
-/obj/item/folder/yellow,
-/obj/item/multitool,
-/obj/item/pen/red,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/quartermaster/office)
-"aUP" = (
+/area/engine/engineering/monitor)
+"bQm" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/engine/engineering/monitor)
+"bQp" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+/turf/simulated/floor/plating,
+/area/engine/engineering/monitor)
+"bQq" = (
+/obj/machinery/light{
+ dir = 8
},
-/area/quartermaster/office)
-"aUQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A20";
+ location = "A19"
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ dir = 8;
+ icon_state = "cautioncorner"
},
-/area/quartermaster/office)
-"aUR" = (
-/obj/machinery/ai_status_display{
- pixel_y = 32
+/area/hallway/primary/port/west)
+"bQr" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/lights/mixed{
+ pixel_x = 4;
+ pixel_y = 4
},
-/obj/machinery/photocopier,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+/obj/item/lightreplacer{
+ pixel_y = 5
},
-/area/quartermaster/office)
-"aUS" = (
-/obj/structure/table,
-/obj/machinery/camera{
- c_tag = "Medbay Lobby East"
+/obj/item/lightreplacer{
+ pixel_y = 5
},
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- name = "Cargo Requests Console";
- pixel_y = 30
+/obj/effect/decal/cleanable/cobweb{
+ layer = 4
},
-/obj/item/storage/firstaid/regular,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ icon_state = "yellowfull"
},
-/area/quartermaster/office)
-"aUT" = (
+/area/engine/hardsuitstorage)
+"bQu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/table,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+ icon_state = "1-2"
},
-/obj/item/paper_bin,
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "brown"
},
/area/quartermaster/office)
-"aUU" = (
+"bQv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "brown"
+ icon_state = "dark"
},
-/area/quartermaster/office)
-"aUV" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/obj/item/clothing/glasses/hud/hydroponic,
-/obj/item/clothing/glasses/hud/hydroponic,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/radio/intercom{
- pixel_x = -30;
- pixel_y = -4
+/area/engine/controlroom)
+"bQw" = (
+/obj/machinery/camera{
+ c_tag = "Supermatter North";
+ network = list("SS13","Engineering")
},
+/obj/structure/closet/walllocker/emerglocker/north,
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "dark"
},
-/area/hydroponics)
-"aUW" = (
-/obj/machinery/light{
- dir = 4
+/area/engine/controlroom)
+"bQx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"bQB" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "brown"
+ dir = 1;
+ icon_state = "dark"
},
-/area/quartermaster/office)
-"aUX" = (
+/area/engine/controlroom)
+"bQD" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/light{
- dir = 8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -25
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "brown"
+ icon_state = "vault"
},
-/area/quartermaster/storage)
-"aUY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"bQE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aUZ" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Cargo Technician"
+/obj/machinery/door/airlock/maintenance{
+ name = "construction access"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"bQF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/quartermaster/storage)
-"aVa" = (
-/obj/machinery/computer/supplycomp,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "dark"
},
-/area/quartermaster/storage)
-"aVb" = (
+/area/engine/controlroom)
+"bQH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
+ dir = 1;
+ icon_state = "dark"
},
-/area/quartermaster/storage)
-"aVc" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/engine/controlroom)
+"bQL" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/suit_storage_unit/atmos,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"bQN" = (
+/obj/machinery/light{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/quartermaster/qm)
-"aVd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/toilet{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
+/obj/effect/landmark/start{
+ name = "Captain"
},
-/area/quartermaster/qm)
-"aVe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/qm)
-"aVf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "white"
},
-/obj/structure/disposalpipe/segment,
+/area/crew_quarters/captain/bedroom)
+"bQO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/safe/floor,
+/obj/item/pneumatic_cannon/ghetto,
+/obj/item/tank/oxygen,
+/obj/item/clothing/gloves/color/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 5;
+ icon_state = "neutral"
},
-/area/quartermaster/qm)
-"aVg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/maintenance/engrooms)
+"bQP" = (
+/obj/structure/table,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/reagentgrinder{
+ pixel_x = -1;
+ pixel_y = 9
},
-/obj/structure/chair/office/dark{
- dir = 4
+/obj/machinery/vending/wallmed{
+ pixel_y = 30
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/hydroponics)
+"bQS" = (
+/obj/structure/sign/electricshock,
+/turf/simulated/wall/r_wall,
+/area/security/nuke_storage)
+"bQT" = (
+/obj/machinery/floodlight,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/quartermaster/qm)
-"aVh" = (
-/obj/structure/table/reinforced,
-/obj/item/flashlight/lamp,
+/area/hydroponics)
+"bQU" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"bQV" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/security_space_law,
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"bQW" = (
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding4"
+ },
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding8"
+ },
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "asteroid";
+ tag = "icon-asteroid (NORTH)"
},
-/area/quartermaster/qm)
-"aVi" = (
+/area/hydroponics)
+"bRe" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain/bedroom)
+"bRk" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "cmo"
+ },
+/area/medical/cmo)
+"bRo" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/glasses/science,
+/obj/machinery/light{
+ dir = 4
},
-/area/quartermaster/qm)
-"aVj" = (
-/obj/machinery/computer/supplycomp,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "brown"
- },
-/area/quartermaster/qm)
-"aVk" = (
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 18";
- dir = 1;
- network = list("SS13","MiniSat")
+ icon_state = "whitepurplecorner"
},
+/area/medical/research{
+ name = "Research Division"
+ })
+"bRp" = (
+/obj/structure/lattice/catwalk,
/turf/space,
-/area/space/nearstation)
-"aVC" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
-/obj/machinery/light/small{
- dir = 8
+/area/solar/starboard)
+"bRr" = (
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Chamber Hallway";
+ req_access_txt = "75"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "dark"
},
-/area/atmos)
-"aVD" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 6
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"bRt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 1;
+ icon_state = "dark"
},
-/area/atmos)
-"aVE" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4
+/area/engine/controlroom)
+"bRv" = (
+/obj/structure/table/reinforced,
+/obj/item/paper/deltainfo,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "brown"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"aVF" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
+/area/quartermaster/miningdock)
+"bRx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkblue"
},
-/area/atmos)
-"aVG" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"bRy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/mob/living/simple_animal/bot/secbot/pingsky,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkbluefull"
},
-/area/atmos)
-"aVH" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
+/area/turret_protected/aisat)
+"bRA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkbluecorners"
},
-/area/atmos)
-"aVI" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
+/area/turret_protected/aisat)
+"bRC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "caution"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/atmos)
-"aVJ" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
+/turf/simulated/wall/r_wall,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"bRD" = (
+/obj/structure/showcase{
+ density = 0;
+ dir = 4;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = -9;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -24
+/obj/machinery/turretid/stun{
+ control_area = "\improper AI Satellite";
+ name = "AI Antechamber Turret Control";
+ pixel_x = -32;
+ req_access_txt = "75"
},
-/obj/machinery/camera{
- c_tag = "Atmospherics North";
- dir = 1;
- network = list("SS13","Engineering")
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "caution"
+ dir = 10;
+ icon_state = "darkblue"
},
-/area/atmos)
-"aVK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"bRE" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/construction/hallway)
+"bRF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plasteel{
- icon_state = "caution"
+ dir = 8;
+ icon_state = "vault"
},
-/area/atmos)
-"aVL" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
+/area/engine/controlroom)
+"bRK" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/structure/sign/nosmoking_2{
- pixel_y = -32
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bRO" = (
+/obj/structure/transit_tube{
+ icon_state = "N-SE";
+ tag = "icon-N-SE"
},
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "caution"
+ dir = 6;
+ icon_state = "darkblue"
},
-/area/atmos)
-"aVM" = (
+/area/construction/hallway)
+"bRT" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "caution"
+ icon_state = "dark"
},
-/area/atmos)
-"aVN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/chief)
+"bRW" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"bRX" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/light/small,
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"bRY" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/firealarm{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"aVO" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4
+ pixel_x = -26
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "purple"
},
-/area/atmos)
-"aVP" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4
+/area/janitor)
+"bRZ" = (
+/obj/machinery/light/small,
+/obj/structure/closet/radiation,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28;
+ pixel_y = -28
},
-/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"aVQ" = (
-/obj/effect/landmark/start{
- name = "Civilian"
- },
-/obj/structure/chair/stool/bar,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"aVR" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced,
-/obj/structure/window/plasmareinforced{
- dir = 4
+/area/engine/engineering)
+"bSc" = (
+/obj/machinery/ai_status_display{
+ pixel_y = -32
},
-/obj/structure/window/plasmareinforced{
- dir = 1
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/recharge_station,
+/turf/simulated/floor/plasteel{
+ dir = 7;
+ icon_state = "yellow"
},
-/obj/structure/window/plasmareinforced{
- dir = 8
+/area/engine/engineering/monitor)
+"bSf" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "ceprivacy";
+ name = "CE Privacy Shutters";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/atmos)
-"aVS" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "air_sensor"
+/area/crew_quarters/chief)
+"bSg" = (
+/obj/effect/landmark/start{
+ name = "Janitor"
},
-/turf/simulated/floor/engine/air,
-/area/atmos)
-"aVT" = (
-/obj/machinery/portable_atmospherics/canister/air{
- anchored = 1
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "purplecorner"
},
-/turf/simulated/floor/engine/air,
-/area/atmos)
-"aVU" = (
-/obj/machinery/light/small{
- dir = 4
+/area/janitor)
+"bSo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/engine/air,
-/area/atmos)
-"aVV" = (
-/obj/structure/table/wood,
-/obj/machinery/light/small,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aVW" = (
-/obj/machinery/slot_machine,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aVX" = (
-/obj/structure/table/wood,
-/obj/machinery/light/small,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"aVY" = (
-/obj/structure/sign/nosmoking_2{
- pixel_y = -32
+/area/turret_protected/aisat)
+"bSr" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/vending/chinese,
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aVZ" = (
-/obj/structure/chair/wood{
+/obj/machinery/turretid/stun{
+ control_area = "\improper AI Satellite";
+ name = "AI Antechamber Turret Control";
+ pixel_x = 32;
+ req_access_txt = "75"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aWa" = (
-/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"bSt" = (
/obj/machinery/alarm{
dir = 1;
pixel_y = -22
},
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/condiment/peppermill{
- pixel_x = 2;
- pixel_y = 6
- },
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -2;
- pixel_y = 4
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aWb" = (
-/obj/structure/chair/wood{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = -25
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aWc" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/public/glass,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
+/area/hallway/primary/port/east)
+"bSu" = (
+/obj/structure/sink{
dir = 1
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
-"aWd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 0;
+ icon_state = "green"
},
-/area/crew_quarters/serviceyard)
-"aWe" = (
-/obj/structure/table/wood,
-/obj/item/instrument/violin,
+/area/hydroponics/abandoned_garden)
+"bSw" = (
+/obj/structure/table,
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"bSy" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/clown,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "bar"
},
-/area/crew_quarters/bar/atrium)
-"aWf" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/clownoffice)
+"bSz" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/alarm{
+ pixel_y = 22
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1;
+ icon_state = "purple"
},
-/area/crew_quarters/bar/atrium)
-"aWj" = (
+/area/janitor)
+"bSA" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"bSE" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/hop)
+"bSH" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bSI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"aWk" = (
+/turf/simulated/floor/plasteel,
+/area/hydroponics/abandoned_garden)
+"bSJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- name = "Quartermaster Junction";
- sortType = 3
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "brown"
},
-/area/hallway/primary/fore)
-"aWl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/quartermaster/qm)
+"bSK" = (
+/obj/machinery/camera{
+ c_tag = "Cargo Backroom"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/fore)
-"aWm" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1;
+ icon_state = "brown"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/office)
-"aWn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/quartermaster/sorting)
+"bSM" = (
+/obj/structure/table,
+/obj/item/wrench,
+/obj/item/crowbar,
+/obj/item/reagent_containers/glass/bucket,
+/obj/machinery/light/small,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "green"
},
-/obj/structure/filingcabinet/chestdrawer,
+/area/hydroponics/abandoned_garden)
+"bSN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
+ icon_state = "white"
},
-/area/quartermaster/office)
-"aWo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/crew_quarters/captain/bedroom)
+"bST" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/captain/bedroom)
+"bTa" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/northeast,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair/office/dark{
- dir = 1
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/item/extinguisher/mini,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"bTo" = (
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding1"
},
-/obj/effect/landmark/start{
- name = "Cargo Technician"
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/quartermaster/office)
-"aWp" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "asteroid";
+ tag = "icon-asteroid (NORTH)"
+ },
+/area/hydroponics)
+"bTs" = (
+/obj/machinery/computer/monitor,
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Minisat Maintenance Room";
+ dir = 1;
+ network = list("Minisat","SS13")
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plating,
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"bTt" = (
+/obj/machinery/cryopod/robot,
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/computer/cryopod/robot{
+ pixel_y = -30
+ },
+/turf/simulated/floor/plating,
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"bTv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sink{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "green"
+ },
+/area/hydroponics/abandoned_garden)
+"bTx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/wall/r_wall,
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"bTy" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkblue"
},
-/area/quartermaster/office)
-"aWq" = (
+/area/turret_protected/aisat)
+"bTA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/turret_protected/aisat)
+"bTB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/quartermaster/office)
-"aWr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/turret_protected/aisat)
+"bTD" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/office)
-"aWs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ dir = 6;
+ icon_state = "darkblue"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/turret_protected/aisat)
+"bTE" = (
+/obj/structure/table,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/item/storage/bag/plants/portaseeder,
+/turf/simulated/floor/plating,
+/area/hydroponics/abandoned_garden)
+"bTG" = (
+/obj/machinery/newscaster{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/quartermaster/office)
-"aWt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"bTI" = (
+/obj/machinery/light,
+/obj/machinery/status_display{
+ pixel_y = -32
},
-/obj/structure/disposalpipe/segment{
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
dir = 4
},
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/showcase{
+ layer = 5
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
+ icon_state = "dark"
},
-/area/quartermaster/office)
-"aWv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"bTK" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"bTM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bTQ" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/crayons,
+/turf/simulated/floor/wood,
+/area/library/abandoned)
+"bTR" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door/airlock/maintenance{
+ name = "Checkpoint Maintenance";
+ req_access_txt = "19"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/bridge/checkpoint/north)
+"bTV" = (
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28;
+ pixel_y = -32
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/table/reinforced,
+/obj/item/folder/yellow,
+/obj/item/folder/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "yellow"
+ },
+/area/engine/engineering/monitor)
+"bTY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "brown"
+ icon_state = "neutralcorner"
},
-/area/quartermaster/storage)
-"aWw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hallway/primary/central/west)
+"bTZ" = (
+/obj/machinery/flasher{
+ id = "hopflash";
+ pixel_y = 58
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/west)
+"bUa" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/blue,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Access Desk";
+ req_access_txt = "57"
+ },
+/obj/machinery/door/window/westright{
+ name = "Access Queue"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "hopprivacy";
+ name = "Head of Personal Privacy Shutters"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/crew_quarters/heads/hop)
+"bUc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/storage)
-"aWx" = (
+/area/hallway/secondary/entry/louge)
+"bUd" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance";
+ req_access_txt = "63"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/security/checkpoint2)
+"bUe" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"bUf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "brown"
},
/area/quartermaster/storage)
-"aWy" = (
+"bUg" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"bUh" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"bUk" = (
+/obj/item/trash/pistachios,
+/turf/simulated/floor/carpet,
+/area/maintenance/abandonedbar)
+"bUl" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA"
+ },
+/turf/simulated/wall,
+/area/engine/engineering)
+"bUm" = (
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding2"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "asteroid";
+ tag = "icon-asteroid (NORTH)"
+ },
+/area/hydroponics)
+"bUn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering";
+ req_access_txt = "10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering/monitor)
+"bUo" = (
+/obj/structure/table/wood,
+/obj/item/clothing/head/ushanka,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "red"
},
-/area/quartermaster/storage)
-"aWA" = (
+/area/maintenance/fsmaint)
+"bUq" = (
+/obj/machinery/light/small{
+ dir = 4;
+ tag = "icon-bulb1 (EAST)"
+ },
+/obj/structure/table/wood,
+/turf/simulated/floor/wood,
+/area/maintenance/abandonedbar)
+"bUt" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -23019,1740 +23172,1602 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkblue"
+ },
+/area/bridge)
+"bUv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bUw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/area/quartermaster/storage)
-"aWB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"bUC" = (
+/obj/machinery/light/small{
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"bUD" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
+ dir = 10;
+ icon_state = "darkblue"
},
-/area/quartermaster/storage)
-"aWC" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/turret_protected/aisat)
+"bUG" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "2"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aWD" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"bUH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/quartermaster/qm)
-"aWE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutral"
},
-/area/quartermaster/qm)
-"aWF" = (
+/area/crew_quarters/locker)
+"bUI" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ icon_state = "4-8"
},
+/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/qm)
-"aWG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/machinery/light,
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/camera{
- c_tag = "Cargo Supply South";
- dir = 1
+/area/crew_quarters/heads/hop)
+"bUN" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "garbage"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aWH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bUO" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/folder/yellow,
-/obj/item/stamp/qm,
+/obj/machinery/meter,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "yellowfull"
},
-/area/quartermaster/qm)
-"aWI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/engine/controlroom)
+"bUR" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 1;
+ icon_state = "left";
+ name = "Danger: Conveyor Access";
+ req_access_txt = "12"
},
-/obj/structure/chair/office/dark{
- dir = 8
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bUT" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/effect/landmark/start{
- name = "Quartermaster"
+/turf/space,
+/area/space/nearstation)
+"bVd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/qm)
-"aWJ" = (
-/obj/structure/closet/secure_closet/quartermaster,
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
+/area/quartermaster/office)
+"bVj" = (
+/obj/machinery/ai_slipper,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/stamp/denied,
-/obj/item/stamp/denied,
-/obj/item/stamp/granted,
-/obj/item/stamp/granted,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
- },
-/area/quartermaster/qm)
-"aWR" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
+ icon_state = "darkblue"
},
-/obj/structure/disposaloutlet{
- dir = 8
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"bVk" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/lattice/catwalk,
+/obj/machinery/power/emitter,
/turf/space,
-/area/space)
-"aXa" = (
-/turf/simulated/floor/engine/co2,
-/area/atmos)
-"aXb" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics CO2 Tank";
- network = list("SS13","Engineering")
- },
-/turf/simulated/floor/engine/co2,
-/area/atmos)
-"aXc" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 0;
- external_pressure_bound_default = 0;
- frequency = 1441;
- id_tag = "co2_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- layer = 2.4;
- name = "co2 vent";
- on = 1;
- pressure_checks = 2;
- pressure_checks_default = 2;
- pump_direction = 0
- },
-/turf/simulated/floor/engine/co2,
-/area/atmos)
-"aXd" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+/turf/simulated/floor/greengrid,
+/area/engine/controlroom)
+"bVn" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
},
-/obj/machinery/meter,
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"aXe" = (
+/obj/machinery/light/small,
/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aXg" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
+/obj/item/storage/belt/champion,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "dark"
+ icon_state = "vault"
},
-/area/atmos)
-"aXh" = (
-/obj/structure/window/reinforced{
- dir = 8
+/area/security/nuke_storage)
+"bVo" = (
+/obj/machinery/ai_status_display{
+ pixel_y = -32
},
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/visible/green,
-/obj/machinery/atmospherics/binary/pump{
- dir = 4;
- name = "CO2 to Pure"
- },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "dark"
- },
-/area/atmos)
-"aXi" = (
-/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"aXj" = (
-/obj/machinery/atmospherics/unary/heat_reservoir/heater{
- dir = 8
+ icon_state = "vault"
},
+/area/security/nuke_storage)
+"bVq" = (
+/obj/structure/closet/secure_closet/miner,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"aXk" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 8
+ dir = 5;
+ icon_state = "brown"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/quartermaster/miningdock)
+"bVr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/atmos)
-"aXl" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/recharger{
+ pixel_y = 3
},
-/obj/machinery/meter,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "yellow"
},
-/area/atmos)
-"aXm" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 4
+/area/engine/engineering/monitor)
+"bVt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/machinery/light{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutral"
},
-/area/atmos)
-"aXn" = (
-/obj/machinery/ai_status_display,
-/turf/simulated/wall,
-/area/atmos)
-"aXo" = (
-/turf/simulated/wall,
-/area/atmos)
-"aXp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/atmos/glass{
- name = "Atmospherics Storage";
- req_one_access_txt = "24"
+/area/crew_quarters/chief)
+"bVz" = (
+/obj/structure/table,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bVC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (WEST)"
},
-/area/atmos)
-"aXq" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/atmos)
-"aXr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
- dir = 8
+/area/medical/virology/lab)
+"bVH" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/power/emitter,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/atmos)
-"aXs" = (
+/turf/simulated/floor/greengrid,
+/area/engine/controlroom)
+"bVJ" = (
+/obj/machinery/monkey_recycler,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"bVL" = (
+/obj/structure/chair/stool,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bVN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bVO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkbluefull"
},
-/area/atmos)
-"aXt" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 6;
- initialize_directions = 6
+/area/turret_protected/aisat)
+"bVP" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
+/obj/item/flag/nt,
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkblue"
},
-/area/atmos)
-"aXu" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+/area/turret_protected/aisat)
+"bVS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"aXv" = (
-/obj/structure/window/reinforced{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bVU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bVZ" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/effect/decal/warning_stripes/red/hollow,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "arrival"
+ icon_state = "dark"
+ },
+/area/security/securearmoury)
+"bWa" = (
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bWb" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/obj/machinery/light/small{
+ dir = 1
},
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bWd" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/window/reinforced,
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/item/extinguisher/mini,
+/turf/simulated/floor/plasteel,
/area/atmos)
-"aXw" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+"bWf" = (
+/obj/structure/disposalpipe/segment,
+/obj/vehicle/janicart{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/obj/machinery/newscaster{
+ pixel_x = -30
},
-/area/atmos)
-"aXx" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
+/turf/simulated/floor/plasteel{
dir = 8;
- frequency = 1441;
- id = "air_in"
+ icon_state = "purple"
},
-/turf/simulated/floor/engine/air,
-/area/atmos)
-"aXz" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/janitor)
+"bWg" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
},
+/area/janitor)
+"bWl" = (
/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
+ dir = 1;
+ external_pressure_bound = 100;
on = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
-/area/crew_quarters/serviceyard)
-"aXA" = (
+/area/crew_quarters/chief)
+"bWm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"bWn" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/engine/engineering/monitor)
+"bWp" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
- d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/power/smes{
+ charge = 2e+006
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/turf/simulated/floor/greengrid,
+/area/engine/engineering)
+"bWs" = (
+/obj/machinery/atmospherics/trinary/filter{
+ desc = "Отфильтровывает кислород из трубы и отправляет его в камеру хранения";
+ dir = 1;
+ filter_type = 1;
+ name = "Фильтр Кислорода (O2)";
+ on = 1
},
-/area/crew_quarters/serviceyard)
-"aXB" = (
-/obj/structure/table/wood,
-/obj/machinery/newscaster{
- pixel_x = -32
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/item/twohanded/staff/broom,
-/obj/item/clothing/head/witchwig,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 6;
+ icon_state = "blue"
},
-/area/crew_quarters/bar/atrium)
-"aXC" = (
-/obj/structure/table/wood,
-/obj/item/clothing/mask/fakemoustache,
-/obj/item/cane,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/bar/atrium)
-"aXD" = (
-/obj/structure/piano,
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/bar/atrium)
-"aXE" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/bar/atrium)
-"aXF" = (
-/obj/machinery/door/window/eastright{
- name = "Theater Stage"
- },
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_y = -27
+/area/atmos)
+"bWv" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/area/crew_quarters/bar/atrium)
-"aXG" = (
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"aXH" = (
-/obj/item/radio/intercom{
- dir = 0;
- pixel_x = -28;
- pixel_y = -28
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"aXI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/structure/table/wood,
-/obj/structure/disposalpipe/segment,
-/obj/item/paper/deltainfo,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"aXJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- name = "Cargo Junction";
- sortType = 2
+ icon_state = "1-2"
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
-"aXK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/office)
-"aXL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"bWw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- icon_state = "brown"
- },
-/area/quartermaster/office)
-"aXM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ initialize_directions = 11
},
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/office)
-"aXN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/office)
-"aXO" = (
-/obj/structure/disposalpipe/segment{
+/area/quartermaster/sorting)
+"bWx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bWz" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/firelock_electronics,
+/obj/item/firelock_electronics,
+/obj/item/firealarm_electronics,
+/obj/item/firealarm_electronics,
+/obj/item/circuitboard/sleeper,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/quartermaster/office)
-"aXP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/storage/tech)
+"bWB" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 1;
- on = 1
+ id_tag = "Virology";
+ name = "Virology Shutters"
},
-/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/medical/virology)
+"bWK" = (
+/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "cautioncorner"
},
-/area/quartermaster/office)
-"aXQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/hallway/primary/port/west)
+"bWL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bWO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 1;
+ name = "Труба фильтрации"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "vault"
},
-/area/quartermaster/office)
-"aXR" = (
+/area/atmos)
+"bWP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"aXS" = (
-/obj/structure/disposalpipe/segment{
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
- },
-/turf/simulated/floor/plasteel{
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"bWQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- icon_state = "neutralfull"
+ initialize_directions = 11
},
-/area/quartermaster/office)
-"aXT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
+/turf/simulated/floor/plasteel,
+/area/maintenance/fpmaint2)
+"bWR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bWS" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
- },
-/area/quartermaster/office)
-"aXU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ dir = 6;
+ icon_state = "green"
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aXV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/hydroponics)
+"bWW" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
- },
-/area/quartermaster/storage)
-"aXW" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+ icon_state = "neutralcorner"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/hallway/primary/central/east)
+"bWZ" = (
+/obj/structure/sink{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/quartermaster/storage)
-"aXX" = (
+/turf/simulated/floor/plasteel,
+/area/hydroponics)
+"bXb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/door/airlock/freezer{
+ req_access_txt = "28"
},
-/area/quartermaster/storage)
-"aXY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/kitchen)
+"bXf" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/area/quartermaster/storage)
-"aXZ" = (
-/obj/structure/disposalpipe/segment{
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bXh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aYa" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"bXi" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/coffee,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"bXk" = (
+/obj/effect/landmark{
+ name = "blobstart"
},
-/area/quartermaster/storage)
-"aYb" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"bXu" = (
+/obj/structure/table/wood,
+/obj/machinery/fishtank/bowl{
+ pixel_y = 5
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/quartermaster/storage)
-"aYc" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/carpet,
+/area/civilian/pet_store)
+"bXy" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
},
-/area/quartermaster/storage)
-"aYd" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/quartermaster/storage)
-"aYe" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/area/crew_quarters/kitchen)
+"bXA" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitegreencorner"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/qm)
-"aYf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/virology)
+"bXB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
- },
-/area/quartermaster/qm)
-"aYg" = (
+/obj/structure/closet/cardboard,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/qm)
-"aYh" = (
-/obj/structure/chair/office/dark{
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"bXD" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+/obj/machinery/camera{
+ c_tag = "Primary Security Hallway East";
+ dir = 1
},
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
},
-/area/quartermaster/qm)
-"aYi" = (
-/obj/structure/table/reinforced,
-/obj/item/cartridge/quartermaster{
- pixel_x = -3
+/area/security/lobby)
+"bXG" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/turret_protected/ai)
+"bXH" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall13"
},
-/obj/item/cartridge/quartermaster{
- pixel_x = 5;
- pixel_y = 3
+/area/shuttle/administration)
+"bXJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/cartridge/quartermaster{
- pixel_x = -1;
- pixel_y = 7
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bXL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/official/obey{
+ pixel_y = 32
},
-/obj/item/gps/mining,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bXM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/quartermaster/qm)
-"aYj" = (
-/obj/machinery/computer/security/mining,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "brown"
},
-/area/quartermaster/qm)
-"aYt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/quartermaster/sorting)
+"bXN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aYu" = (
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ name = "Cargo Bay";
+ req_access_txt = "31"
},
-/turf/simulated/floor/engine/co2,
-/area/atmos)
-"aYv" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide{
- anchored = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/engine/co2,
-/area/atmos)
-"aYw" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "co2_sensor"
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"bXO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/engine/co2,
-/area/atmos)
-"aYx" = (
-/obj/structure/window/reinforced{
- dir = 8
+/obj/effect/decal/warning_stripes/northwest,
+/obj/effect/decal/warning_stripes/yellow/partial,
+/obj/effect/decal/warning_stripes/arrow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible/green,
-/obj/machinery/computer/general_air_control/large_tank_control{
- frequency = 1441;
- input_tag = "co2_in";
- name = "Carbon Dioxide Supply Control";
- output_tag = "co2_out";
- sensors = list("co2_sensor" = "Tank")
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"bXP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/warning_stripes/yellow/partial,
+/obj/effect/decal/warning_stripes/arrow,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/atmos)
-"aYy" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"aYz" = (
-/obj/machinery/atmospherics/unary/heat_reservoir/heater{
- dir = 4;
- on = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/quartermaster/storage)
+"bXR" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/atmos)
-"aYA" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"bXS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"aYB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/warning_stripes/yellow/partial,
+/obj/effect/decal/warning_stripes/arrow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"bXU" = (
+/turf/simulated/wall/r_wall,
+/area/engine/engineering)
+"bXY" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "yellowfull"
},
-/area/atmos)
-"aYC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/engine/engineering)
+"bYa" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/item/taperecorder,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/atmos)
-"aYD" = (
+/area/turret_protected/ai)
+"bYc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/east,
/obj/effect/decal/warning_stripes/west,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering Storage";
+ req_access_txt = "32"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/closet/secure_closet/atmos_personal,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"aYE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/engine/engineering)
+"bYd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"bYf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j2 (EAST)"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/wall,
-/area/atmos)
-"aYF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -22
- },
-/obj/structure/closet/wardrobe/atmospherics_yellow,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "caution"
- },
-/area/atmos)
-"aYG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/fore)
+"bYg" = (
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/atmos)
-"aYH" = (
-/obj/structure/table/reinforced,
-/obj/item/wrench,
-/obj/machinery/newscaster{
- pixel_x = 32
+/area/quartermaster/office)
+"bYj" = (
+/turf/simulated/wall,
+/area/library)
+"bYl" = (
+/obj/structure/transit_tube{
+ icon_state = "E-SW-NW";
+ tag = "icon-E-SW-NW"
},
-/obj/item/tank/emergency_oxygen/engi,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/multitool,
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/space,
+/area/space/nearstation)
+"bYn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "caution"
+ icon_state = "grimy"
},
-/area/atmos)
-"aYI" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/east,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/area/crew_quarters/heads/hop)
+"bYp" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/paper/ntrep,
+/obj/item/flashlight/lamp/green{
+ pixel_x = -5;
+ pixel_y = 12
},
-/obj/structure/closet/secure_closet/atmos_personal,
+/turf/simulated/floor/carpet,
+/area/ntrep)
+"bYq" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/yellow,
+/obj/item/pen,
+/obj/machinery/door/window/westleft{
+ dir = 4;
+ name = "Mining Desk";
+ req_access_txt = "48"
+ },
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"aYJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/quartermaster/miningdock)
+"bYx" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain/bedroom)
+"bYz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "brown"
+ },
+/area/quartermaster/miningdock)
+"bYA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/atmos)
-"aYK" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "purple"
},
-/area/atmos)
-"aYL" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8
+/area/quartermaster/miningdock)
+"bYB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"aYM" = (
-/obj/machinery/atmospherics/binary/pump{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- name = "O2 to Pure";
- target_pressure = 101
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/visible/green,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"bYJ" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"bYM" = (
+/turf/simulated/wall,
+/area/magistrateoffice)
+"bYW" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
},
-/area/atmos)
-"aYN" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10
+/obj/effect/landmark/start{
+ name = "Captain"
},
-/obj/machinery/light/small{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/camera{
- c_tag = "Atmospherics East";
- dir = 8;
- network = list("Engineering","SS13")
+/area/crew_quarters/captain/bedroom)
+"bYY" = (
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"bZf" = (
+/obj/machinery/photocopier,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Engineer's Desk";
+ departmentType = 7;
+ name = "Chief Engineer Requests Console";
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "dark"
},
-/area/atmos)
-"aYO" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"aYP" = (
-/obj/machinery/space_heater,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aYQ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/crew_quarters/chief)
+"bZh" = (
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/obj/effect/decal/warning_stripes/yellow/partial{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "brown"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/area/quartermaster/storage)
+"bZl" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"bZm" = (
+/obj/machinery/space_heater,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
-"aYS" = (
-/obj/structure/cable{
+"bZn" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"bZs" = (
+/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"bZt" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aYT" = (
-/obj/structure/cable{
+/area/engine/engineering)
+"bZv" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 100;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/effect/decal/warning_stripes/southwest,
+/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"aYU" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet{
- icon_closed = "cabinet_closed";
- icon_opened = "cabinet_open";
- icon_state = "cabinet_closed"
+ icon_state = "2-8"
},
-/obj/item/clothing/gloves/color/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"aYV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/area/engine/engineering)
+"bZz" = (
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/janitor)
-"aYW" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 1
- },
-/obj/structure/window/plasmareinforced{
- dir = 8
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/structure/window/plasmareinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/hallway/secondary/entry/louge)
+"bZE" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/window/westright{
+ dir = 4;
+ name = "Library Delivery";
+ req_access_txt = "37"
},
-/turf/simulated/floor/plating,
-/area/engine/controlroom)
-"aYX" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 1
+/turf/simulated/floor/wood,
+/area/library)
+"bZH" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
-/obj/structure/window/plasmareinforced,
+/area/hallway/secondary/entry/louge)
+"bZI" = (
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"bZJ" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
/turf/simulated/floor/plating,
-/area/engine/controlroom)
-"aYY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark{
- name = "lightsout"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
+/area/quartermaster/storage)
+"bZL" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 1;
icon_state = "neutralcorner"
},
-/area/crew_quarters/serviceyard)
-"aYZ" = (
-/turf/simulated/wall,
-/area/crew_quarters/kitchen)
-"aZa" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/crew_quarters/kitchen)
-"aZb" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Atrium";
- dir = 4
- },
-/obj/machinery/slot_machine,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"aZc" = (
+/area/hallway/secondary/entry/louge)
+"bZN" = (
/obj/machinery/light{
dir = 4
},
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/obj/structure/chair/wood/wings{
- dir = 1;
- tag = "icon-wooden_chair_wings (NORTH)"
- },
-/obj/effect/landmark/start{
- name = "Civilian"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"aZd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera{
- c_tag = "Fore Hallway South 2";
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "neutralcorner"
},
-/area/hallway/primary/fore)
-"aZe" = (
+/area/hallway/secondary/entry/louge)
+"bZO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bZP" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/light/small{
+ dir = 1
},
-/area/hallway/primary/fore)
-"aZf" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atm{
- pixel_x = -32
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"bZV" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/wood,
+/area/maintenance/abandonedbar)
+"bZX" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood,
+/area/maintenance/abandonedbar)
+"bZY" = (
+/obj/effect/landmark/start{
+ name = "Barber"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"aZg" = (
-/obj/structure/chair/office/dark,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
+/obj/machinery/light/small{
+ dir = 8
},
-/area/quartermaster/office)
-"aZh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "barber"
},
-/area/quartermaster/office)
-"aZi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/civilian/barber)
+"bZZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"cac" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/area/quartermaster/office)
-"aZj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/showcase,
+/obj/machinery/light{
+ dir = 4
},
-/area/quartermaster/office)
-"aZk" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "vault"
},
-/area/quartermaster/office)
-"aZl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/security/warden)
+"cae" = (
+/obj/item/trash/popcorn,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"caf" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/folder,
-/obj/item/stack/tape_roll,
-/obj/machinery/light_switch{
- pixel_x = 24
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cag" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
-/obj/item/rcs,
-/turf/simulated/floor/plasteel{
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain/bedroom)
+"cah" = (
+/obj/structure/chair/wood/wings{
dir = 4;
- icon_state = "brown"
- },
-/area/quartermaster/office)
-"aZm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ tag = "icon-wooden_chair_wings (EAST)"
},
-/turf/simulated/wall,
-/area/quartermaster/storage)
-"aZn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = -32
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = -24;
+/obj/machinery/light/small,
+/turf/simulated/floor/carpet,
+/area/maintenance/abandonedbar)
+"cai" = (
+/obj/structure/table/wood,
+/obj/machinery/power/apc{
+ name = "south bump";
pixel_y = -24
},
-/obj/machinery/light_switch{
- pixel_x = -24
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/recharger,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/cargotech,
-/obj/item/stamp/granted,
-/obj/item/stamp/denied,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "brown"
+ icon_state = "grimy"
},
-/area/quartermaster/storage)
-"aZo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/area/crew_quarters/captain/bedroom)
+"caj" = (
+/obj/structure/filingcabinet,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/captain/bedroom)
+"cak" = (
+/obj/structure/dresser,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/captain/bedroom)
+"cal" = (
+/obj/structure/table/wood,
+/obj/item/storage/pill_bottle/random_drug_bottle,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"cam" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/cargotech,
-/obj/item/stamp/granted,
-/obj/item/stamp/denied,
-/turf/simulated/floor/plasteel{
- icon_state = "brown"
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/quartermaster/storage)
-"aZp" = (
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"car" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "purple"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/area/quartermaster/storage)
-"aZq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- icon_state = "brown"
- },
-/area/quartermaster/storage)
-"aZs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining/glass{
- name = "Cargo Bay";
- req_access_txt = "31"
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/office)
-"aZt" = (
+/area/crew_quarters/courtroom)
+"cas" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/camera{
- c_tag = "Cargo Office SouthWest";
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics";
+ req_one_access_txt = "28;35"
},
-/area/quartermaster/storage)
-"aZu" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "brown"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/quartermaster/storage)
-"aZv" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/hydroponics)
+"cau" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "purple"
- },
-/area/quartermaster/storage)
-"aZw" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/qm)
-"aZx" = (
-/obj/machinery/photocopier,
-/obj/machinery/firealarm{
dir = 1;
- pixel_x = -24;
- pixel_y = -24
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "brown"
+ icon_state = "redcorner"
},
-/area/quartermaster/qm)
-"aZy" = (
-/obj/item/paper_bin,
-/obj/structure/table,
+/area/crew_quarters/courtroom)
+"cav" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue,
/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "brown"
- },
-/area/quartermaster/qm)
-"aZz" = (
-/obj/machinery/light,
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_y = -27
+ dir = 8;
+ icon_state = "red"
},
+/area/crew_quarters/courtroom)
+"caw" = (
/turf/simulated/floor/plasteel{
- icon_state = "brown"
- },
-/area/quartermaster/qm)
-"aZA" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
- },
-/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ icon_state = "blue"
},
-/obj/machinery/camera{
- c_tag = "Quartermaster's Office";
- dir = 1
+/area/crew_quarters/courtroom)
+"cay" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/quartermaster/qm)
-"aZB" = (
-/turf/simulated/floor/plasteel{
- icon_state = "brown"
+/area/magistrateoffice)
+"caA" = (
+/obj/machinery/power/rad_collector,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/quartermaster/qm)
-"aZC" = (
+/turf/simulated/floor/greengrid,
+/area/engine/supermatter)
+"caB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ icon_state = "1-2"
},
-/area/quartermaster/qm)
-"aZD" = (
-/obj/machinery/light{
- dir = 4
+/obj/machinery/newscaster{
+ pixel_x = 32
},
-/obj/structure/bed/dogbed,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "brown"
- },
-/area/quartermaster/qm)
-"aZY" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"aZZ" = (
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"baa" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"bag" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
- dir = 4;
- frequency = 1441;
- id = "co2_in"
- },
-/turf/simulated/floor/engine/co2,
-/area/atmos)
-"bah" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/machinery/meter,
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"bai" = (
+/area/magistrateoffice)
+"caD" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"caE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining/glass{
- name = "Cargo Bay";
- req_access_txt = "31"
- },
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"baj" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/visible/green{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plating,
-/area/atmos)
-"bak" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
- },
-/area/atmos)
-"bal" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/trinary/filter{
- filter_type = 3;
- name = "Gas filter (CO2 tank)";
- on = 1
+/area/maintenance/maintcentral)
+"caF" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"caI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/atmos)
-"bam" = (
-/obj/machinery/atmospherics/unary/portables_connector{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Sorting Office";
+ sortType = 2
},
-/area/atmos)
-"ban" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "brown"
},
-/area/atmos)
-"bao" = (
-/obj/machinery/meter,
-/obj/item/wrench,
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/floor/plasteel{
+/area/quartermaster/sorting)
+"caK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/wood/wings{
dir = 8;
- icon_state = "neutralfull"
+ tag = "icon-wooden_chair_wings (WEST)"
},
-/area/atmos)
-"bap" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/southwest,
-/obj/structure/window/reinforced,
-/obj/structure/closet/secure_closet/atmos_personal,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"baq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/turf/simulated/floor/carpet,
+/area/maintenance/abandonedbar)
+"caL" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/suit_storage_unit/atmos,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"bar" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"bas" = (
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/suit_storage_unit/atmos,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
+/area/engine/controlroom)
+"caN" = (
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"bau" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/engine/controlroom)
+"caQ" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/area/atmos)
-"bav" = (
-/obj/structure/cable{
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cbb" = (
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"cbc" = (
+/obj/effect/decal/warning_stripes/southwestcorner,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"cbj" = (
+/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+ icon_state = "1-2"
},
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"cbk" = (
+/obj/machinery/vending/engivend,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"baw" = (
-/obj/machinery/atmospherics/trinary/mixer{
dir = 1;
- name = "air mixer";
- node1_concentration = 0.8;
- node2_concentration = 0.2;
- on = 1;
- target_pressure = 4500
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "yellow"
},
-/area/atmos)
-"bax" = (
-/obj/structure/window/reinforced{
- dir = 4
+/area/engine/engineering)
+"cbl" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable/yellow,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"cbm" = (
+/obj/machinery/status_display{
+ pixel_y = -32
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/camera{
+ c_tag = "Engine SMES";
+ dir = 1;
+ network = list("Engineering","SS13")
},
-/obj/machinery/atmospherics/binary/pump{
+/obj/machinery/firealarm{
dir = 8;
- name = "O2 to Airmix";
- on = 1;
- target_pressure = 101
+ pixel_x = -26;
+ pixel_y = -28
},
-/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/computer/monitor,
+/obj/structure/cable/yellow,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "blue"
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/atmos)
-"bay" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
-/turf/simulated/floor/plasteel{
+/area/engine/engineering)
+"cbn" = (
+/obj/machinery/shieldgen,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cbp" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cbs" = (
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cbt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/wood/wings{
dir = 1;
- icon_state = "dark"
+ tag = "icon-wooden_chair_wings (NORTH)"
},
-/area/atmos)
-"baz" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- external_pressure_bound_default = 0;
- frequency = 1441;
- id_tag = "o2_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- name = "oxygen vent";
- on = 1;
- pressure_checks = 2;
- pressure_checks_default = 2;
- pump_direction = 0
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
-/turf/simulated/floor/engine/o2,
-/area/atmos)
-"baA" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics Oxygen Tank";
- network = list("SS13","Engineering")
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"cbu" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/maintenance/disposal)
+"cbx" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"cbz" = (
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave,
+/obj/machinery/newscaster{
+ pixel_x = -32
},
-/turf/simulated/floor/engine/o2,
-/area/atmos)
-"baB" = (
-/turf/simulated/floor/engine/o2,
-/area/atmos)
-"baC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"cbA" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/wood,
+/area/library)
+"cbB" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 8;
+ icon_state = "purple"
},
/area/janitor)
-"baD" = (
-/obj/effect/spawner/random_spawners/grille_maybe,
+"cbC" = (
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"baE" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 1
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cbD" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/warning_stripes/northeastcorner,
+/obj/machinery/conveyor{
+ dir = 9;
+ id = "garbage"
},
-/obj/structure/window/plasmareinforced{
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"cbE" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/window/plasmareinforced,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"cbF" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plating,
-/area/engine/controlroom)
-"baF" = (
-/turf/simulated/wall,
-/area/hydroponics)
-"baG" = (
/obj/structure/grille,
/obj/structure/window/plasmareinforced{
dir = 1
@@ -24765,1231 +24780,1232 @@
},
/turf/simulated/floor/plating,
/area/engine/controlroom)
-"baH" = (
+"cbH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"cbI" = (
+/obj/effect/decal/warning_stripes/northeastcorner,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/maintenance{
- name = "Hydroponics Maintenance";
- req_access_txt = "35"
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"baI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/assembly/robotics)
+"cbJ" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/glasses/meson,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cbN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/janitor)
-"baJ" = (
-/obj/effect/landmark/start{
- name = "Janitor"
+/area/crew_quarters/heads/hop)
+"cbT" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"cbU" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/area/janitor)
-"baK" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"baL" = (
+/area/engine/controlroom)
+"cbY" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 100;
+ on = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bcarpet05"
+ },
+/area/blueshield)
+"cbZ" = (
+/obj/effect/decal/warning_stripes/northwest,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"baM" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/window/southleft{
- dir = 4;
- name = "Kitchen Delivery";
- req_access_txt = "28"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"baN" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+/area/engine/mechanic_workshop/hangar)
+"cca" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"baQ" = (
-/obj/structure/sink/kitchen{
- pixel_y = 30
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"baR" = (
-/obj/machinery/newscaster{
- pixel_x = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/machinery/slot_machine,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"baT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"ccb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/sign/poster/random{
- pixel_x = -32
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/bar)
-"baU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"ccc" = (
/obj/machinery/light{
dir = 8
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -25
+/obj/machinery/light_switch{
+ pixel_x = -22
},
+/obj/structure/closet/wardrobe/atmospherics_yellow,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ dir = 9;
+ icon_state = "caution"
},
-/area/hallway/primary/fore)
-"baV" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
+/area/atmos)
+"cce" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"ccf" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = -24;
- pixel_y = -24
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/stamp/denied{
- pixel_x = -4;
- pixel_y = 4
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"ccg" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/item/stamp/granted{
- pixel_x = 3;
- pixel_y = -4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/obj/machinery/computer/guestpass{
- pixel_x = -28
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cch" = (
+/obj/structure/table/reinforced,
+/obj/item/tank/emergency_oxygen/engi,
+/obj/item/tank/emergency_oxygen/engi,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "brown"
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"ccj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 1;
+ name = "Труба фильтрации"
},
-/area/quartermaster/office)
-"baW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/mechanical,
-/turf/simulated/floor/plasteel{
- icon_state = "brown"
+/obj/machinery/computer/general_air_control/large_tank_control{
+ frequency = 1441;
+ input_tag = "co2_in";
+ name = "Carbon Dioxide Supply Control";
+ output_tag = "co2_out";
+ sensors = list("co2_sensor" = "Tank")
+ },
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/quartermaster/office)
-"baX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ dir = 1;
+ icon_state = "dark"
},
-/area/quartermaster/office)
-"baY" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
+/area/atmos)
+"ccl" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
},
-/obj/item/stack/sheet/glass/fifty,
/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ dir = 5;
+ icon_state = "darkblue"
},
-/area/quartermaster/office)
-"baZ" = (
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/toy/figure/cargotech,
-/turf/simulated/floor/plasteel{
- icon_state = "brown"
- },
-/area/quartermaster/office)
-"bba" = (
-/turf/simulated/floor/plasteel{
- icon_state = "brown"
+/area/medical/morgue)
+"ccn" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/area/quartermaster/office)
-"bbb" = (
-/obj/machinery/computer/supplycomp,
+/turf/simulated/floor/plasteel,
+/area/hydroponics)
+"ccp" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ dir = 1;
+ icon_state = "blue"
},
-/area/quartermaster/office)
-"bbc" = (
-/obj/structure/chair/office/dark,
-/obj/effect/landmark/start{
- name = "Cargo Technician"
+/area/crew_quarters/courtroom)
+"ccq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "brown"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/quartermaster/office)
-"bbd" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 4
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/item/stamp/granted{
+/obj/item/camera{
pixel_x = 3;
pixel_y = -4
},
-/obj/item/stamp/denied{
+/obj/item/taperecorder{
pixel_x = -4;
- pixel_y = 4
+ pixel_y = 2
},
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_y = -27
+/obj/item/camera_film,
+/obj/item/camera_film,
+/obj/item/camera_film,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28
+/area/magistrateoffice)
+"ccs" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "brown"
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/magistrateoffice)
+"ccu" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 1
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 8
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 4
},
-/area/quartermaster/office)
-"bbe" = (
-/turf/simulated/wall,
-/area/quartermaster/miningdock)
-"bbf" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/quartermaster/miningdock)
-"bbg" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"bbh" = (
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/hologram/holopad,
-/obj/effect/landmark/start{
- name = "Quartermaster"
+/turf/simulated/floor/plating,
+/area/engine/controlroom)
+"ccv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 32
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"ccx" = (
+/obj/structure/lattice,
+/obj/machinery/light/small,
+/turf/space,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"ccC" = (
+/obj/machinery/status_display{
+ pixel_y = 32
},
+/obj/machinery/hydroponics/constructable,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/hydroponics)
+"ccI" = (
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway Center 1";
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
+ },
+/area/bridge/vip)
+"ccJ" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/quartermaster/storage)
-"bbi" = (
-/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"bbj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/maintenance/fpmaint2)
+"ccK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining/glass{
- name = "Quartermaster";
- req_access_txt = "41"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"ccO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/qm)
-"bbk" = (
+/area/maintenance/fpmaint2)
+"ccW" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cdb" = (
/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cdd" = (
+/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 100;
+ on = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"cdf" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/quartermaster/qm)
-"bbl" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/quartermaster/qm)
-"bbm" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel,
+/area/maintenance/fpmaint2)
+"cdh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
-/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/quartermaster/qm)
-"bbn" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/area/maintenance/fpmaint2)
+"cdj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/maintenance{
+ name = "construction access"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/barricade/wooden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/engine/mechanic_workshop/hanger)
-"bbw" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cdk" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/prisonlockers)
-"bbC" = (
-/obj/effect/decal/warning_stripes/arrow{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow/partial{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atm{
- pixel_y = 32
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cdl" = (
+/obj/effect/spawner/random_spawners/oil_maybe,
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cdm" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cdp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/quartermaster/office)
-"bbM" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/camera{
- c_tag = "Atmospherics West";
- dir = 4;
- network = list("Engineering","SS13");
- pixel_y = -22
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cds" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/area/atmos)
-"bbN" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "bar"
},
-/area/atmos)
-"bbO" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
+/area/clownoffice)
+"cdt" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/meter,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/atmos)
-"bbP" = (
-/obj/effect/landmark/start{
- name = "Life Support Specialist"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cdw" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/area/atmos)
-"bbQ" = (
-/obj/machinery/atmospherics/trinary/filter{
- dir = 1;
- filter_type = ""
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = -30
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 10;
+ icon_state = "purple"
},
-/area/atmos)
-"bbR" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/suit_storage_unit/atmos,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bbS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start{
- name = "Life Support Specialist"
+/area/janitor)
+"cdx" = (
+/obj/machinery/smartfridge,
+/obj/machinery/door/window/eastleft{
+ name = "Kitchen Desk";
+ req_access_txt = "28"
},
+/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/atmos)
-"bbT" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/suit_storage_unit/atmos,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bbV" = (
+/area/crew_quarters/kitchen)
+"cdy" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/landmark/start{
- name = "Life Support Specialist"
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/atmos)
-"bbW" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bbX" = (
-/obj/structure/window/reinforced{
- dir = 4
+/area/crew_quarters/kitchen)
+"cdD" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet,
+/area/ntrep)
+"cdF" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/toy/figure/janitor,
+/obj/machinery/requests_console{
+ department = "Janitorial";
+ departmentType = 1;
+ name = "Janitor Requests Console";
+ pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/visible/green,
-/obj/machinery/computer/general_air_control/large_tank_control{
- frequency = 1441;
- input_tag = "o2_in";
- name = "Oxygen Supply Control";
- output_tag = "o2_out";
- sensors = list("o2_sensor" = "Tank")
+/obj/machinery/camera{
+ c_tag = "Custodial Closet";
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "blue"
- },
-/area/atmos)
-"bbY" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "o2_sensor"
- },
-/turf/simulated/floor/engine/o2,
-/area/atmos)
-"bbZ" = (
-/obj/machinery/portable_atmospherics/canister/oxygen{
- anchored = 1
+ icon_state = "purple"
},
-/turf/simulated/floor/engine/o2,
-/area/atmos)
-"bca" = (
-/obj/machinery/light/small{
- dir = 4
+/area/janitor)
+"cdK" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "bcarpet05"
},
-/turf/simulated/floor/engine/o2,
-/area/atmos)
-"bcb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/blueshield)
+"cdN" = (
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"bcc" = (
-/obj/machinery/floodlight,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hydroponics)
-"bcd" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/hydroponics)
-"bce" = (
+/area/quartermaster/sorting)
+"cdO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"bcf" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/item/radio/intercom{
- pixel_y = 24
- },
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"bcg" = (
-/mob/living/simple_animal/chicken{
- name = "Commander Clucky"
- },
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"bch" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"bci" = (
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding4"
- },
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "asteroid";
- tag = "icon-asteroid (NORTH)"
+ icon_state = "1-2"
},
-/area/hydroponics)
-"bck" = (
-/obj/machinery/hydroponics/soil,
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"bcl" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
initialize_directions = 11
},
-/obj/machinery/camera{
- c_tag = "Service Hall South";
- dir = 4;
- pixel_y = -22
- },
-/obj/effect/decal/warning_stripes/arrow{
- dir = 1
- },
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"bcm" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1
+/area/hallway/primary/fore)
+"cdP" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"bcn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
-/turf/simulated/wall,
-/area/crew_quarters/kitchen)
-"bco" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"cdQ" = (
+/obj/machinery/conveyor/west{
+ id = "QMLoad2"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "brown"
},
-/obj/structure/window/reinforced{
- dir = 1
+/area/quartermaster/storage)
+"cdR" = (
+/obj/machinery/conveyor/northwest/ccw{
+ id = "QMLoad2"
},
-/obj/machinery/chem_master/condimaster,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"bcp" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/area/quartermaster/storage)
+"cdS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/kitchen)
-"bcq" = (
-/mob/living/simple_animal/hostile/retaliate/goat{
- name = "Pete";
- real_name = "Pete"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/crew_quarters/kitchen)
-"bcr" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cdT" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/kitchen)
-"bcs" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/gibber,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"bct" = (
-/obj/machinery/camera{
- c_tag = "Kitchen Backroom"
+/area/engine/controlroom)
+"cdV" = (
+/obj/structure/plasticflaps{
+ opacity = 1
},
-/obj/structure/sink/kitchen{
- pixel_y = 30
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"bcu" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/kitchenspike,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"bcv" = (
-/obj/structure/closet/secure_closet/freezer/meat,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25
+/area/quartermaster/office)
+"cdZ" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "engsm";
+ name = "Supermatter Blast Doors";
+ opacity = 0
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"bcw" = (
+/obj/machinery/door/airlock/highsecurity{
+ heat_proof = 1;
+ id_tag = "smbolts";
+ locked = 1;
+ name = "Supermatter Chamber";
+ req_one_access_txt = "24; 10"
+ },
+/turf/simulated/floor/engine,
+/area/engine/supermatter)
+"ced" = (
+/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"bcx" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/condiment/saltshaker,
-/obj/item/reagent_containers/food/drinks/britcup,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window{
- dir = 2;
- name = "Kitchen";
- req_access_txt = "28"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Kitchen Dinner Windows";
- name = "Kitchen Shutters"
+/area/medical/research{
+ name = "Research Division"
+ })
+"cee" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"bcy" = (
-/obj/structure/window/reinforced{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 10
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/machinery/computer/general_air_control/large_tank_control{
- frequency = 1441;
- input_tag = "air_in";
- name = "Mixed Air Supply Control";
- output_tag = "air_out";
- pressure_setting = 2000;
- sensors = list("air_sensor" = "Tank")
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "arrival"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/atmos)
-"bcz" = (
-/obj/structure/closet/chefcloset,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/mop,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"bcA" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 4;
- location = "Bar"
+/area/hallway/primary/starboard/east)
+"cei" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/plasticflaps{
- opacity = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A12";
+ location = "A11"
},
-/area/crew_quarters/bar)
-"bcB" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/area/quartermaster/office)
-"bcC" = (
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/office)
-"bcD" = (
-/obj/machinery/light{
- dir = 8
+/area/hallway/secondary/entry/louge)
+"cem" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/structure/filingcabinet/chestdrawer,
-/obj/item/radio/intercom{
- dir = 0;
- pixel_x = -28
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck Door"
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "brown"
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"ceo" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/quartermaster/miningdock)
-"bcF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/quartermaster/miningdock)
-"bcG" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/belt/utility,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "purple"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "Virology";
+ name = "Virology Shutters"
},
-/area/quartermaster/miningdock)
-"bcH" = (
-/obj/structure/table/reinforced,
-/obj/item/paper/deltainfo,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "brown"
+/turf/simulated/floor/plating,
+/area/medical/virology/lab)
+"cet" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Подаёт азот из атмосферки в систему охлаждения реактора, таким образом запитывая её хладагентом";
+ dir = 10;
+ name = "Труба подачи азота в реактор"
},
-/area/quartermaster/miningdock)
-"bcI" = (
+/turf/space,
+/area/space/nearstation)
+"cew" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining/glass{
- name = "Cargo Bay";
- req_access_txt = "31"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"bcJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/cargotech,
-/obj/item/stamp/granted,
-/obj/item/stamp/denied,
-/turf/simulated/floor/plasteel{
- icon_state = "purple"
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"cex" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/quartermaster/storage)
-"bcK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/ai_status_display{
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/cargotech,
-/obj/item/stamp/granted,
-/obj/item/stamp/denied,
/turf/simulated/floor/plasteel{
+ dir = 4;
icon_state = "brown"
},
-/area/quartermaster/storage)
-"bcL" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/area/quartermaster/miningdock)
+"ceA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/disposal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/light,
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_y = -27
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- icon_state = "purple"
- },
-/area/quartermaster/storage)
-"bcM" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/computer/supplycomp/public,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "brown"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/quartermaster/office)
-"bcN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/office)
-"bcO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining{
- name = "Mining Dock";
- req_access_txt = "48"
+ icon_state = "purple"
},
-/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
-"bcP" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable,
+"ceI" = (
+/obj/structure/closet/emcloset,
/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"bcQ" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f6"
- },
-/area/shuttle/mining)
-"bcR" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall12"
- },
-/area/shuttle/mining)
-"bcS" = (
-/obj/structure/window/full/shuttle,
-/obj/structure/grille,
-/turf/simulated/shuttle/plating,
-/area/shuttle/mining)
-"bcT" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f10";
- tag = "icon-swall_f10"
- },
-/area/shuttle/mining)
-"bdd" = (
-/obj/machinery/door/airlock/public/glass{
- id_tag = "Perma22"
+/area/maintenance/engrooms)
+"ceL" = (
+/obj/machinery/ai_slipper,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaCellsLockdown";
- name = "Perma Cells Lockdown"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 4;
+ icon_state = "darkbluefull"
},
-/area/security/permabrig)
-"bdh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/tcommsat/chamber)
+"ceN" = (
+/obj/item/radio/intercom{
+ pixel_x = 30
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "green"
- },
-/area/hydroponics)
-"bdi" = (
-/obj/structure/chair/office/dark{
- dir = 4
+ dir = 5;
+ icon_state = "darkblue"
},
+/area/tcommsat/chamber)
+"ceP" = (
+/turf/simulated/wall/rust,
+/area/maintenance/engrooms)
+"ceT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
+ icon_state = "freezerfloor"
},
-/area/turret_protected/ai)
-"bdk" = (
-/turf/simulated/floor/engine/plasma,
-/area/atmos)
-"bdl" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics Toxins Tank";
- network = list("SS13","Engineering")
+/area/security/permabrig)
+"ceY" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"ceZ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/engine/plasma,
-/area/atmos)
-"bdm" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/structure/disposalpipe/segment{
dir = 4;
- external_pressure_bound = 0;
- external_pressure_bound_default = 0;
- frequency = 1441;
- id_tag = "tox_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- layer = 2.4;
- name = "plasma vent";
- on = 1;
- pressure_checks = 2;
- pressure_checks_default = 2;
- pump_direction = 0
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/engine/plasma,
-/area/atmos)
-"bdn" = (
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/visible/green,
-/obj/machinery/atmospherics/binary/pump{
- dir = 4;
- name = "Plasma to Pure"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cfb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "purple"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/atmos)
-"bdo" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"cfd" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"bdp" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"bdq" = (
-/obj/machinery/atmospherics/unary/vent_pump,
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/suit_storage_unit/atmos,
-/obj/structure/window/reinforced,
+/area/quartermaster/sorting)
+"cfe" = (
+/obj/structure/plasticflaps,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"bdr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/quartermaster/sorting)
+"cff" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/atmos)
-"bds" = (
-/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/suit_storage_unit/atmos,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bdt" = (
-/obj/structure/window/reinforced{
- dir = 4
+/obj/structure/plasticflaps/mining,
+/obj/machinery/conveyor/west{
+ id = "QMLoad2"
},
-/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"cfg" = (
/obj/machinery/atmospherics/trinary/filter{
dir = 1;
- filter_type = 1;
- name = "Gas filter (O2 tank)";
+ filter_type = "n2";
+ name = "nitrogen filter";
on = 1
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "blue"
- },
-/area/atmos)
-"bdu" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ icon_state = "yellowfull"
},
-/area/atmos)
-"bdv" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
- dir = 8;
- frequency = 1441;
- id = "o2_in"
+/area/engine/controlroom)
+"cfi" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
},
-/turf/simulated/floor/engine/o2,
-/area/atmos)
-"bdx" = (
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics";
- req_access_txt = "35"
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cfj" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/flag/nt,
+/turf/simulated/floor/wood,
+/area/blueshield)
+"cfm" = (
+/obj/machinery/atmospherics/trinary/filter/flipped{
+ dir = 1;
+ filter_type = -1;
+ on = 1
},
/turf/simulated/floor/plasteel,
-/area/hydroponics)
-"bdy" = (
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding1"
+/area/atmos)
+"cfo" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding2"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"cfr" = (
+/turf/simulated/floor/engine,
+/area/engine/supermatter)
+"cfs" = (
+/obj/item/wirecutters,
+/turf/simulated/floor/plating,
+/area/maintenance/storage{
+ name = "Perma Maintenance"
+ })
+"cft" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1;
+ name = "Gas to Chamber"
+ },
+/obj/machinery/camera{
+ c_tag = "Supermatter Pump Airlock";
+ network = list("SS13","Engineering")
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/engine,
+/area/engine/supermatter)
+"cfu" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/firealarm{
+ pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "asteroid";
- tag = "icon-asteroid (NORTH)"
+ icon_state = "dark"
},
-/area/hydroponics)
-"bdz" = (
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding1"
+/area/library)
+"cfy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/wall,
+/area/maintenance/abandonedbar)
+"cfz" = (
+/obj/machinery/newscaster{
+ pixel_x = -28
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/computer/arcade,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkred"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/security/permabrig)
+"cfA" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/chair/office/dark{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/heads/hop)
+"cfB" = (
+/obj/machinery/light/small{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "asteroid";
- tag = "icon-asteroid (NORTH)"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/hydroponics)
-"bdA" = (
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding1"
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"cfC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/atmos)
+"cfD" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "representative";
+ name = "Privacy Shutters";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating,
+/area/ntrep)
+"cfH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "asteroid";
- tag = "icon-asteroid (NORTH)"
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/command{
+ id_tag = "blueshieldofficedoor";
+ name = "Blueshield's Office";
+ req_access_txt = "67"
},
-/area/hydroponics)
-"bdB" = (
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding1"
+/turf/simulated/floor/wood,
+/area/blueshield)
+"cfL" = (
+/obj/structure/lattice,
+/obj/machinery/camera/emp_proof{
+ c_tag = "Singularity SouthWest";
+ dir = 4;
+ network = list("SS13","Singularity","Engineering")
},
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding2"
+/turf/space,
+/area/engine/engineering)
+"cfM" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 4;
+ name = "Труба фильтрации"
},
+/turf/simulated/floor/plating,
+/area/atmos)
+"cfO" = (
+/obj/machinery/teleport/hub,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"cfR" = (
+/obj/effect/decal/warning_stripes/north,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "asteroid";
- tag = "icon-asteroid (NORTH)"
+/obj/machinery/atm{
+ pixel_y = 32
},
-/area/hydroponics)
-"bdC" = (
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding2"
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"cfZ" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = 32
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cga" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cge" = (
+/turf/simulated/floor/engine/n2,
+/area/atmos)
+"cgg" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"cgk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -25998,24 +26014,23 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "asteroid";
- tag = "icon-asteroid (NORTH)"
+ icon_state = "dark"
},
/area/hydroponics)
-"bdE" = (
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding1"
- },
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding2"
+"cgm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/southeastcorner,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"cgr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -26024,2329 +26039,2183 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "asteroid";
- tag = "icon-asteroid (NORTH)"
+ dir = 1;
+ icon_state = "green"
},
/area/hydroponics)
-"bdF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+"cgx" = (
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = "MedbayFoyerPort";
+ name = "Medbay Entrance";
+ req_access_txt = "5"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/unres{
dir = 4
},
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics";
- req_one_access_txt = "28;35"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
-/turf/simulated/floor/plasteel,
-/area/hydroponics)
-"bdG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/medical/sleeper)
+"cgz" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/sop_service,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/crew_quarters/kitchen)
+"cgA" = (
+/obj/structure/window/reinforced,
+/turf/space,
+/area/space/nearstation)
+"cgD" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"bdH" = (
+/area/engine/controlroom)
+"cgE" = (
+/obj/structure/closet/secure_closet/ntrep,
+/turf/simulated/floor/wood,
+/area/ntrep)
+"cgI" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 8
},
+/obj/machinery/portable_atmospherics/scrubber,
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"bdI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/engine/controlroom)
+"cgK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/freezer{
- req_access_txt = "28"
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"bdJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
-"bdK" = (
+"cgN" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
+/obj/structure/window/plasmareinforced{
+ dir = 4
+ },
+/obj/structure/window/plasmareinforced,
+/turf/simulated/floor/plating,
+/area/engine/controlroom)
+"cgP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"bdL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
-"bdM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
+"cgQ" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"bdN" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/table,
-/obj/machinery/reagentgrinder{
- pixel_x = -1;
- pixel_y = 9
- },
-/obj/machinery/light{
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
dir = 8
},
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/structure/window/plasmareinforced{
+ dir = 4
},
-/area/crew_quarters/kitchen)
-"bdO" = (
-/obj/machinery/light{
+/turf/simulated/floor/plating,
+/area/engine/controlroom)
+"cgR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/crew_quarters/kitchen)
-"bdP" = (
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "freezerfloor"
},
/area/crew_quarters/kitchen)
-"bdQ" = (
+"cgS" = (
+/obj/machinery/cooker/deepfryer,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/crew_quarters/kitchen)
-"bdR" = (
-/obj/machinery/door_control{
- id = "Kitchen Dinner Windows";
- name = "Kitchen Dinner Shutters Control";
- pixel_y = 26;
- req_access_txt = "28"
+"cgT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/camera{
- c_tag = "Kitchen North"
+/obj/machinery/door/airlock/maintenance{
+ name = "Library Maintenance";
+ req_access_txt = "12"
},
-/obj/effect/landmark/start{
- name = "Chef"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cgU" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/crew_quarters/kitchen)
-"bdS" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+/area/hallway/primary/central/west)
+"cgV" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Подаёт азот из атмосферки в систему охлаждения реактора, таким образом запитывая её хладагентом";
+ dir = 1;
+ name = "Труба подачи азота в реактор"
},
-/area/crew_quarters/kitchen)
-"bdT" = (
+/turf/space,
+/area/space/nearstation)
+"cgX" = (
/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/condiment/peppermill,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window{
- dir = 2;
- name = "Kitchen";
- req_access_txt = "28"
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/analyzer,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Kitchen Dinner Windows";
- name = "Kitchen Shutters"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"bdU" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+/area/engine/controlroom)
+"chd" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "construction access"
},
+/obj/structure/barricade/wooden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"bdV" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/radio/intercom{
- dir = 0;
- pixel_x = -28
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "brown"
+/area/maintenance/fpmaint2)
+"che" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/quartermaster/office)
-"bdW" = (
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"chf" = (
+/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 10;
icon_state = "brown"
},
-/area/quartermaster/office)
-"bdX" = (
+/area/quartermaster/miningdock)
+"chg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"chh" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
},
-/area/quartermaster/office)
-"bdY" = (
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "brown"
+ icon_state = "neutralcorner"
},
-/area/quartermaster/office)
-"bdZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/bridge/vip)
+"chi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/hologram/holopad,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=V2";
+ location = "V1"
},
-/area/quartermaster/office)
-"bea" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/office)
-"beb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/bridge/vip)
+"chy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/arrow{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1
+/area/security/permabrig)
+"chA" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"chC" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/camera{
+ c_tag = "Arrivals South End";
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
+ icon_state = "neutralcorner"
},
-/area/quartermaster/office)
-"bec" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/area/hallway/secondary/entry/louge)
+"chD" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/office)
-"bed" = (
-/obj/machinery/photocopier,
+/area/crew_quarters/courtroom)
+"chE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "purple"
+ icon_state = "white"
},
-/area/quartermaster/miningdock)
-"bee" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/medical/virology)
+"chH" = (
+/obj/structure/closet/secure_closet/magistrate,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bef" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/area/magistrateoffice)
+"chI" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin/nanotrasen,
+/obj/item/pen/multi/gold,
+/obj/item/stamp/magistrate,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"beg" = (
-/obj/structure/chair/office/dark{
- dir = 1
+/area/magistrateoffice)
+"chJ" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 3
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"beh" = (
-/obj/structure/filingcabinet/filingcabinet,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "purple"
+/area/maintenance/engrooms)
+"chL" = (
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 3;
+ height = 5;
+ id = "mining";
+ name = "mining shuttle";
+ rebuildable = 1;
+ width = 7
},
-/area/quartermaster/miningdock)
-"bei" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "brown"
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 3;
+ height = 5;
+ id = "mining_home";
+ name = "mining shuttle bay";
+ width = 7
},
-/area/quartermaster/miningdock)
-"bej" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "purple"
+/obj/structure/fans/tiny,
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "s_docking_airlock";
+ req_access_txt = "48"
},
-/area/quartermaster/miningdock)
-"bek" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/shuttle/floor,
+/area/shuttle/mining)
+"chN" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
+/obj/machinery/alarm{
dir = 1;
- icon_state = "brown"
- },
-/area/quartermaster/miningdock)
-"bel" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bem" = (
-/obj/effect/landmark/start{
- name = "Shaft Miner"
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ dir = 6;
+ icon_state = "whitered"
},
-/area/quartermaster/miningdock)
-"ben" = (
-/obj/effect/decal/warning_stripes/arrow{
+/area/security/medbay)
+"chO" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/hallway/secondary/exit)
+"chP" = (
+/obj/machinery/atmospherics/unary/portables_connector{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/partial{
+/obj/machinery/portable_atmospherics/canister,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"chW" = (
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 2";
+ dir = 1;
+ network = list("SS13","MiniSat")
+ },
+/turf/space,
+/area/space/nearstation)
+"chX" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "purple"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/area/quartermaster/miningdock)
-"beo" = (
-/obj/structure/closet/secure_closet/miner,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "brown"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/quartermaster/miningdock)
-"bep" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"beq" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"ber" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"bes" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"cie" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/stool,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "neutral"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/maintenance/engrooms)
+"cij" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"bet" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall3"
- },
-/area/shuttle/mining)
-"beu" = (
-/obj/structure/table,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/mining)
-"bev" = (
-/obj/machinery/computer/shuttle/mining,
-/turf/simulated/shuttle/floor,
-/area/shuttle/mining)
-"bew" = (
-/obj/structure/table,
-/obj/machinery/light/small{
- dir = 4
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cik" = (
+/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ dir = 4;
+ name = "Труба на фильтрацию"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/mining)
-"bey" = (
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"cir" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/hallway/primary/central/west)
+"cit" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining{
- name = "Mining Dock";
- req_access_txt = "48"
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ dir = 4;
+ name = "Труба на фильтрацию"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"beC" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/permabrig)
-"beE" = (
-/obj/machinery/light/small{
- dir = 8
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/engine/plasma,
/area/atmos)
-"beF" = (
-/obj/machinery/portable_atmospherics/canister/toxins{
- anchored = 1
+"ciu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/engine/plasma,
-/area/atmos)
-"beG" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "tox_sensor"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/engine/plasma,
-/area/atmos)
-"beH" = (
-/obj/structure/window/reinforced{
- dir = 8
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible/green,
-/obj/machinery/computer/general_air_control/large_tank_control{
- frequency = 1441;
- input_tag = "tox_in";
- name = "Toxin Supply Control";
- output_tag = "tox_out";
- sensors = list("tox_sensor" = "Tank")
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"ciy" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/smartfridge,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "purple"
+ icon_state = "dark"
},
-/area/atmos)
-"beI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/area/hydroponics)
+"ciC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/atmos)
-"beJ" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"ciD" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/vip)
+"ciE" = (
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway Center 3"
},
-/area/atmos)
-"beK" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/window/reinforced,
-/obj/structure/closet/secure_closet/atmos_personal,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"beL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+ pixel_y = 24
},
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "caution"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/atmos)
-"beM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/bridge/vip)
+"ciJ" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/wood,
+/area/blueshield)
+"ciL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/atmos)
-"beN" = (
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/closet/wardrobe/atmospherics_yellow,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/fireaxecabinet{
- pixel_x = 30
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "caution"
- },
-/area/atmos)
-"beO" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/east,
-/obj/structure/window/reinforced,
-/obj/structure/closet/secure_closet/atmos_personal,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"beP" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 5
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"beQ" = (
-/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "N2 to Pure";
- target_pressure = 101
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/visible/green,
+/area/teleporter)
+"ciM" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
- },
-/area/atmos)
-"beR" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10
+ icon_state = "blue"
},
-/obj/machinery/light/small{
- dir = 4
+/area/hydroponics)
+"ciR" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"ciS" = (
+/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "dark"
},
-/area/atmos)
-"beS" = (
-/obj/structure/sign/poster/official/random{
- pixel_x = -32
- },
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"beU" = (
+/area/crew_quarters/courtroom)
+"ciT" = (
/obj/structure/window/reinforced{
dir = 8
},
-/obj/structure/beebox/unwrenched,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/simulated/floor/plasteel,
-/area/hydroponics)
-"beV" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"beW" = (
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding4"
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Magazines for SMG";
+ req_access_txt = "3"
},
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding8"
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = -4;
+ pixel_y = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/ammo_box/magazine/wt550m9,
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = 6;
+ pixel_y = -6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "asteroid";
- tag = "icon-asteroid (NORTH)"
+ icon_state = "dark"
},
-/area/hydroponics)
-"beX" = (
-/obj/structure/sink{
- dir = 1
+/area/security/securearmoury)
+"ciZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/structure/window/reinforced{
- dir = 8
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel,
-/area/hydroponics)
-"beY" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/reagent_containers/glass/bucket,
-/obj/structure/window/reinforced{
- dir = 4
+/area/crew_quarters/courtroom)
+"cjf" = (
+/obj/machinery/computer/prisoner{
+ req_access = null;
+ req_access_txt = "2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/turf/simulated/floor/plasteel,
-/area/hydroponics)
-"beZ" = (
-/obj/machinery/light,
-/obj/structure/reagent_dispensers/watertank/high,
-/turf/simulated/floor/plasteel,
-/area/hydroponics)
-"bfa" = (
-/obj/structure/window/reinforced{
+/area/magistrateoffice)
+"cjg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/closet/crate/freezer,
-/turf/simulated/floor/plasteel,
-/area/hydroponics)
-"bfb" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 8
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/obj/structure/window/plasmareinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/window/plasmareinforced,
/turf/simulated/floor/plating,
-/area/engine/controlroom)
-"bfc" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 8
+/area/maintenance/disposal)
+"cjh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/structure/window/plasmareinforced{
+/obj/structure/rack{
+ dir = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"cji" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/window/plasmareinforced,
/turf/simulated/floor/plating,
-/area/engine/controlroom)
-"bfd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/twohanded/required/kirbyplants,
-/obj/item/radio/intercom{
- pixel_x = 28
+/area/maintenance/disposal)
+"cjk" = (
+/obj/machinery/computer/brigcells,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkred"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"bfe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/crew_quarters/kitchen)
-"bff" = (
-/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/sst,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/security/warden)
+"cjl" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube{
+ icon_state = "W-NE";
+ tag = "icon-W-NE"
},
-/area/shuttle/syndicate_elite)
-"bfg" = (
+/turf/space,
+/area/space/nearstation)
+"cjn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random_spawners/blood_maybe,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/freezer{
- req_access_txt = "28"
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"cjp" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light/small,
+/obj/effect/decal/warning_stripes/southeast,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"bfh" = (
+/area/atmos)
+"cjs" = (
+/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
+ dir = 1;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
scrub_Toxins = 1
},
-/turf/simulated/floor/carpet,
-/area/lawoffice)
-"bfi" = (
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
-"bfj" = (
-/obj/machinery/newscaster{
- pixel_x = -32
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/processor,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ icon_state = "dark"
},
-/area/crew_quarters/kitchen)
-"bfk" = (
-/obj/item/book/manual/sop_service,
-/obj/structure/table,
+/area/chapel/main)
+"cjv" = (
+/obj/structure/girder,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/crew_quarters/kitchen)
-"bfl" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window{
- dir = 2;
- name = "Kitchen";
- req_access_txt = "28"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Kitchen Dinner Windows";
- name = "Kitchen Shutters"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"bfm" = (
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3
+/area/maintenance/engrooms)
+"cjD" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/obj/item/reagent_containers/food/condiment/peppermill{
- pixel_x = 3
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 4;
+ icon_state = "green"
},
-/area/crew_quarters/kitchen)
-"bfn" = (
-/obj/structure/disposalpipe/segment,
+/area/hallway/secondary/exit)
+"cjF" = (
+/obj/structure/table/reinforced,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/micro_laser,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 6;
+ icon_state = "darkblue"
},
-/area/crew_quarters/kitchen)
-"bfo" = (
-/obj/structure/disposalpipe/segment,
+/area/turret_protected/aisat)
+"cjH" = (
/obj/structure/table/reinforced,
-/obj/item/storage/fancy/donut_box,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window{
- dir = 2;
- name = "Kitchen";
- req_access_txt = "28"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Kitchen Dinner Windows";
- name = "Kitchen Shutters"
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/kitchen/knife,
+/obj/item/kitchen/rollingpin,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
},
-/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
-"bfp" = (
-/obj/structure/sign/pods{
- pixel_x = -32
+"cjJ" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
},
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -28;
- pixel_y = 28
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"cjL" = (
+/obj/structure/bed,
+/obj/structure/curtain/black,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"bfq" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"bfr" = (
-/obj/structure/chair{
+/area/security/execution)
+"cjM" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Civilian"
+/turf/simulated/wall,
+/area/security/processing)
+"cjO" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/condiment/enzyme{
+ pixel_y = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
+ icon_state = "white"
},
-/area/quartermaster/office)
-"bfs" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = 32
+/area/crew_quarters/kitchen)
+"cjQ" = (
+/obj/structure/chair/sofa/right{
+ dir = 8
},
-/obj/machinery/computer/sm_monitor,
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "dark"
},
-/area/engine/controlroom)
-"bft" = (
-/obj/machinery/light{
- dir = 1
+/area/crew_quarters/bar/atrium)
+"cjY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/alarm{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- pixel_x = -23
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"bfu" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"cjZ" = (
+/obj/machinery/alarm{
dir = 8;
- icon_state = "neutralfull"
+ pixel_x = 25
},
-/area/hallway/secondary/entry/additional)
-"bfv" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/fore)
+"ckd" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/quartermaster/office)
-"bfw" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+/area/crew_quarters/kitchen)
+"cke" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/condiment/peppermill{
+ pixel_x = 3;
+ pixel_y = 11
},
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/toy/figure/miner,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
+/obj/item/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -3;
+ pixel_y = 11
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bfx" = (
-/obj/structure/chair/office/dark{
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
+ },
+/area/crew_quarters/kitchen)
+"ckh" = (
+/turf/simulated/wall,
+/area/clownoffice)
+"cki" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
+/turf/simulated/wall/r_wall,
+/area/engine/controlroom)
+"ckj" = (
+/turf/simulated/floor/wood,
+/area/library)
+"ckk" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/plasticflaps{
+ opacity = 1
},
-/area/quartermaster/miningdock)
-"bfy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bfz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bfA" = (
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bfC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bfD" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "purple"
+/turf/simulated/floor/plating,
+/area/crew_quarters/serviceyard)
+"ckm" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
},
-/area/quartermaster/miningdock)
-"bfF" = (
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ icon_state = "1-2"
},
+/obj/structure/dispenser,
/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bfG" = (
+/area/engine/controlroom)
+"cko" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/wall,
+/area/crew_quarters/serviceyard)
+"ckp" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
+ },
+/area/medical/reception)
+"ckq" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Shaft Miner"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bfH" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/obj/structure/window/reinforced,
+/obj/item/flag{
+ layer = 4
},
-/obj/effect/landmark/start{
- name = "Shaft Miner"
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"cks" = (
+/turf/simulated/wall/r_wall,
+/area/ntrep)
+"cku" = (
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"ckw" = (
+/obj/machinery/light,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bfI" = (
-/obj/effect/landmark/start{
- name = "Shaft Miner"
+/area/teleporter)
+"ckx" = (
+/obj/machinery/computer/teleporter,
+/obj/machinery/vending/wallmed{
+ pixel_x = 26
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bfL" = (
+/area/teleporter)
+"ckz" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
+ icon_state = "grimy"
+ },
+/area/crew_quarters/bar/atrium)
+"ckB" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/camera{
+ c_tag = "Courtroom West";
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"ckE" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/belt/utility,
+/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "purple"
},
/area/quartermaster/miningdock)
-"bfM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+"ckK" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
},
+/obj/effect/decal/warning_stripes/southwestcorner,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bfN" = (
-/obj/structure/closet/secure_closet/miner,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bfO" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
+/area/engine/controlroom)
+"ckN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"bfP" = (
-/turf/simulated/shuttle/floor,
-/area/shuttle/mining)
-"bfQ" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/mining)
-"bfT" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/maintenance/fpmaint2)
+"ckQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"ckR" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaCellsLockdown";
- name = "Perma Cells Lockdown"
+/area/shuttle/mining)
+"ckS" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/door/airlock/security/glass{
- id_tag = "Perma2";
- name = "Permabrig Access";
- req_access_txt = "2"
+/obj/machinery/light_switch{
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 1
},
-/area/security/permabrig)
-"bfU" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/area/security/customs)
+"ckW" = (
+/obj/structure/closet/toolcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"clb" = (
+/obj/structure/table/reinforced,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_x = -28
},
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/item/stock_parts/scanning_module,
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/manipulator,
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"clk" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 4;
+ name = "Труба фильтрации"
+ },
+/turf/space,
+/area/space/nearstation)
+"clp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/engineering,
+/obj/item/multitool,
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"clq" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
+/obj/structure/table/wood,
+/obj/item/paper_bin,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+ icon_state = "whitepurplecorner"
},
-/area/security/permabrig)
-"bfY" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/crew_quarters/hor)
+"clr" = (
+/obj/machinery/power/apc{
+ cell_type = 25000;
dir = 4;
- on = 1
+ name = "east bump";
+ pixel_x = 24;
+ shock_proof = 1
},
-/obj/structure/cable{
- d1 = 4;
+/obj/structure/cable/yellow{
d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "red"
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"clv" = (
+/obj/machinery/shieldgen,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/storage/secure)
+"clz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/area/security/prisonlockers)
-"bfZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+ icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"clA" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/obj/structure/window/reinforced{
dir = 1
},
-/area/security/permabrig)
-"bga" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
- dir = 4;
- frequency = 1441;
- id = "tox_in"
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/turf/simulated/floor/engine/plasma,
+/area/library)
+"clB" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
/area/atmos)
-"bgb" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+"clD" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Blueshield";
+ departmentType = 5;
+ name = "Blueshield Requests Console";
+ pixel_x = 32
+ },
+/turf/simulated/floor/wood,
+/area/blueshield)
+"clF" = (
+/obj/machinery/light/small{
dir = 8
},
-/obj/machinery/atmospherics/trinary/filter{
- name = "Gas filter (Toxins tank)";
- on = 1
+/obj/structure/rack,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"clH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "purple"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/atmos)
-"bgc" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1;
- name = "Port Mix to Port Ports"
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/atmos)
-"bgd" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1;
- name = "Port Mix to Starboard Ports"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"clI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/atmos)
-"bge" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/atmos)
-"bgf" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/southeast,
-/obj/structure/window/reinforced,
-/obj/structure/closet/secure_closet/atmos_personal,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bgg" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 5
+/area/maintenance/fpmaint2)
+"clJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"clP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/chair/comfy/brown,
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"clQ" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "supply_home";
+ name = "Cargo Docking Hatch";
+ req_access_txt = "31"
},
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"clT" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "vault"
},
/area/atmos)
-"bgh" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+"clU" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "teleportershutter";
+ name = "Teleporter Shutters"
},
-/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"bgi" = (
-/obj/structure/window/reinforced{
+/area/teleporter)
+"clX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/binary/pump{
+/turf/simulated/floor/plasteel{
dir = 8;
- name = "N2 to Airmix";
- on = 1;
- target_pressure = 101
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/visible/green,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+/area/hallway/primary/central/east)
+"clY" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
},
-/area/atmos)
-"bgj" = (
-/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,
-/turf/simulated/floor/plasteel{
+/turf/space,
+/area/space/nearstation)
+"cmc" = (
+/obj/machinery/atmospherics/binary/pump{
dir = 1;
- icon_state = "dark"
+ name = "Gas to Thermo"
},
-/area/atmos)
-"bgk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/turf/simulated/floor/plasteel{
dir = 8;
- external_pressure_bound = 0;
- external_pressure_bound_default = 0;
- frequency = 1441;
- id_tag = "n2_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- name = "n2 vent";
- on = 1;
- pressure_checks = 2;
- pressure_checks_default = 2;
- pump_direction = 0
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/engine/n2,
-/area/atmos)
-"bgl" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics Nitrogen Tank";
- network = list("SS13","Engineering")
+/area/engine/controlroom)
+"cmd" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/light{
+ dir = 4
},
-/turf/simulated/floor/engine/n2,
-/area/atmos)
-"bgm" = (
-/turf/simulated/floor/engine/n2,
-/area/atmos)
-"bgn" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/maintenance/engrooms)
-"bgo" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/obj/item/clothing/glasses/hud/hydroponic,
-/obj/item/clothing/glasses/hud/hydroponic,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/camera{
- c_tag = "Hydroponics Storage";
- dir = 5
+/area/crew_quarters/courtroom)
+"cmf" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/hydroponics)
-"bgp" = (
-/obj/structure/sign/botany,
-/turf/simulated/wall,
-/area/hydroponics)
-"bgq" = (
+/area/crew_quarters/courtroom)
+"cmh" = (
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics";
- req_access_txt = "35"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/hydroponics)
-"bgr" = (
+/area/maintenance/engrooms)
+"cmi" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/wall/r_wall,
+/area/engine/supermatter)
+"cmj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Service Hall"
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/pump,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"bgs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall,
-/area/crew_quarters/serviceyard)
-"bgt" = (
-/obj/machinery/alarm{
- pixel_y = 24
+/area/engine/controlroom)
+"cmk" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/closet/secure_closet/freezer/kitchen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/reagent_containers/food/condiment/flour,
-/obj/item/reagent_containers/food/condiment/flour,
-/obj/item/reagent_containers/food/condiment/flour,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/kitchen)
-"bgu" = (
-/obj/structure/window/reinforced,
-/turf/space,
-/area/space/nearstation)
-"bgv" = (
-/obj/item/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cml" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = 3;
- pixel_y = 3
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"cmm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/structure/table,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/area/crew_quarters/kitchen)
-"bgw" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"cmn" = (
+/obj/machinery/light{
+ dir = 8
},
-/area/hallway/secondary/entry/eastarrival)
-"bgx" = (
+/obj/machinery/seed_extractor,
/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"bgy" = (
-/obj/machinery/vending/dinnerware,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/crew_quarters/kitchen)
-"bgz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "dark"
},
-/obj/structure/disposalpipe/junction{
- dir = 1
+/area/hydroponics)
+"cmo" = (
+/obj/machinery/light/small{
+ dir = 4
},
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cmq" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1
},
-/area/hallway/primary/fore)
-"bgA" = (
-/obj/item/kitchen/knife,
-/obj/structure/table,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/area/security/main)
+"cmr" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/area/crew_quarters/kitchen)
-"bgB" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/crew_quarters/kitchen)
-"bgC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plasteel{
+/area/crew_quarters/fitness)
+"cms" = (
+/obj/structure/rack{
dir = 8;
- icon_state = "brown"
- },
-/area/quartermaster/office)
-"bgD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/item/storage/firstaid/fire{
+ pixel_x = 4;
+ pixel_y = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/item/storage/firstaid/fire{
+ pixel_x = 2;
+ pixel_y = 2
},
-/area/quartermaster/office)
-"bgE" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/item/storage/firstaid/fire,
+/obj/machinery/camera{
+ c_tag = "Medbay Storage";
dir = 1;
- initialize_directions = 11
+ network = list("SS13","Medical")
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/area/quartermaster/office)
-"bgF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/biostorage)
+"cmx" = (
+/obj/machinery/power/terminal{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/blue/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/quartermaster/office)
-"bgG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/turret_protected/ai)
+"cmA" = (
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/quartermaster/office)
-"bgH" = (
+/area/chapel/office)
+"cmL" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "bluecorner"
+ },
+/area/hydroponics)
+"cmO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/office)
-"bgI" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window{
- dir = 8;
- name = "Kitchen";
- req_access_txt = "28"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Kitchen Hall Windows";
- name = "Kitchen Shutters"
- },
-/obj/item/reagent_containers/food/condiment/saltshaker,
+/area/storage/secure)
+"cmP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 0;
+ icon_state = "green"
},
-/area/crew_quarters/kitchen)
-"bgJ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hydroponics)
+"cmR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"bgK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "purple"
- },
-/area/quartermaster/miningdock)
-"bgL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bgM" = (
+/area/engine/engineering)
+"cmV" = (
/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/obj/machinery/mineral/equipment_vendor,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bgN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bgO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "purple"
- },
-/area/quartermaster/miningdock)
-"bgP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/sign/fire{
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "brown"
+ icon_state = "neutralfull"
},
-/area/quartermaster/miningdock)
-"bgR" = (
+/area/storage/secure)
+"cmX" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bgU" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/quartermaster/miningdock)
-"bgV" = (
-/obj/structure/table,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/storage/toolbox/mechanical,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bgW" = (
-/obj/structure/table,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/folder/yellow,
-/obj/item/storage/belt/utility,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bgX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/item/radio/intercom{
- pixel_y = 24
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
- },
-/area/hallway/primary/central/north)
-"bgY" = (
-/obj/machinery/door/airlock/shuttle{
- id_tag = "s_docking_airlock";
- req_access_txt = "48"
- },
-/obj/structure/fans/tiny,
-/turf/simulated/shuttle/floor,
-/area/shuttle/mining)
-"bgZ" = (
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 3;
- height = 5;
- id = "mining";
- name = "mining shuttle";
- rebuildable = 1;
- width = 7
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cmZ" = (
+/obj/structure/bed,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cna" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"cnb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
},
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 3;
- height = 5;
- id = "mining_home";
- name = "mining shuttle bay";
- width = 7
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/fans/tiny,
-/obj/machinery/door/airlock/shuttle{
- id_tag = "s_docking_airlock";
- req_access_txt = "48"
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cnf" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/mining)
-"bhi" = (
-/obj/machinery/door/airlock/security/glass{
- id_tag = "Perma11";
- name = "Prison 1";
- req_access_txt = "2";
- security_level = 1
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
},
-/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"cng" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/dresser,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cnj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"cnm" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaCellsLockdown";
- name = "Perma Cells Lockdown"
- },
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/permabrig)
-"bhj" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 1
- },
-/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/atmos)
-"bhk" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+/area/hallway/primary/fore)
+"cnn" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 25
},
-/area/atmos)
-"bhl" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/area/hallway/primary/fore)
+"cno" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/bed,
+/obj/item/bedsheet/green,
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"cnp" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+ dir = 10;
+ icon_state = "brown"
},
-/area/atmos)
-"bhm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
+/area/quartermaster/sorting)
+"cnq" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cnx" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/window/westleft{
dir = 1;
- icon_state = "caution"
+ name = "Cargo Bay Desk";
+ req_access_txt = "31"
},
-/area/atmos)
-"bhn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/paper/deltainfo,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
- },
-/area/atmos)
-"bho" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -6;
- pixel_y = 32
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/camera{
- c_tag = "Atmospherics South";
- network = list("SS13","Engineering")
+/area/quartermaster/office)
+"cny" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/atmos)
-"bhp" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bhq" = (
-/obj/structure/window/reinforced{
+/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible/green,
-/obj/machinery/computer/general_air_control/large_tank_control{
- frequency = 1441;
- input_tag = "n2_in";
- name = "Nitrogen Supply Control";
- output_tag = "n2_out";
- sensors = list("n2_sensor" = "Tank")
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "red"
- },
-/area/atmos)
-"bhr" = (
-/obj/machinery/atmospherics/binary/valve/open{
- name = "SM Coolant loop"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
- },
-/area/atmos)
-"bhs" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "n2_sensor"
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/engine/n2,
-/area/atmos)
-"bht" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen{
- anchored = 1
+/area/bridge/vip)
+"cnA" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
},
-/turf/simulated/floor/engine/n2,
-/area/atmos)
-"bhu" = (
-/obj/machinery/light/small{
+/area/shuttle/mining)
+"cnB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/engine/n2,
-/area/atmos)
-"bhv" = (
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/obj/structure/table,
-/obj/machinery/smartfridge/disks,
-/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hydroponics)
-"bhw" = (
-/obj/machinery/plantgenes,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"cnD" = (
+/obj/structure/chair{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hydroponics)
-"bhx" = (
-/obj/machinery/seed_extractor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/hydroponics)
-"bhy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/crew_quarters/courtroom)
+"cnE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cnG" = (
+/obj/structure/chair{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hydroponics)
-"bhz" = (
-/obj/structure/sink{
- level = 3;
- pixel_y = 30
+/obj/machinery/light{
+ dir = 4
},
-/obj/item/reagent_containers/glass/bucket,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/hydroponics)
-"bhB" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/crew_quarters/courtroom)
+"cnH" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/reagent_dispensers/spacecleanertank{
+ pixel_y = 30
},
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/reagent_containers/spray/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/structure/window/reinforced{
dir = 8
},
-/obj/structure/window/plasmareinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/engine/controlroom)
-"bhC" = (
-/obj/machinery/firealarm{
- pixel_y = 24
- },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "purple"
},
-/area/hydroponics)
-"bhD" = (
-/obj/machinery/smartfridge,
-/obj/machinery/door/window/eastleft{
- dir = 8;
- name = "Hydroponics Desk";
- req_access_txt = "35"
+/area/janitor)
+"cnI" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
-/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/hydroponics)
-"bhE" = (
-/obj/machinery/light/small{
- dir = 1
+/area/crew_quarters/locker)
+"cnL" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/reagent_dispensers/spacecleanertank{
+ pixel_y = 30
},
+/obj/structure/table/reinforced,
+/obj/item/key/janitor,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "greenblue"
+ dir = 5;
+ icon_state = "purple"
},
-/area/crew_quarters/serviceyard)
-"bhF" = (
+/area/janitor)
+"cnM" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "green"
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/quartermaster/miningdock)
+"cnN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/crew_quarters/serviceyard)
-"bhG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/crew_quarters/serviceyard)
-"bhH" = (
-/obj/machinery/smartfridge,
-/obj/machinery/door/window/eastleft{
- name = "Kitchen Desk";
- req_access_txt = "28"
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"bhI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/area/crew_quarters/kitchen)
-"bhJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "brown"
},
-/area/crew_quarters/kitchen)
-"bhK" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
+/area/quartermaster/sorting)
+"cnP" = (
+/turf/simulated/wall,
+/area/crew_quarters/locker)
+"cnS" = (
+/obj/machinery/door/airlock{
+ name = "Custodial Closet";
+ req_access_txt = "26"
},
-/area/turret_protected/ai)
-"bhL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/janitor)
+"cnY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"bhM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/hallway/primary/fore)
-"bhN" = (
-/obj/item/kitchen/rollingpin,
-/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "darkblue"
},
-/area/crew_quarters/kitchen)
-"bhO" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/turret_protected/ai)
+"cnZ" = (
+/obj/structure/sign/directions/evac{
+ pixel_y = -8
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/structure/sign/directions/medical,
+/obj/structure/sign/directions/security{
+ pixel_y = 8
},
-/area/hallway/primary/fore)
-"bhP" = (
+/turf/simulated/wall,
+/area/maintenance/apmaint)
+"cod" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"cof" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"coh" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/plating,
+/area/storage/secure)
+"coi" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance{
+ name = "Cargo Bay Maintenance";
+ req_access_txt = "31"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"cop" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cor" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/wall,
+/area/quartermaster/storage)
+"cot" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics West";
+ dir = 4;
+ network = list("Engineering","SS13");
+ pixel_y = -22
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 1;
+ name = "Труба дыхательной смеси"
},
-/area/hallway/primary/fore)
-"bhQ" = (
-/obj/item/reagent_containers/food/snacks/mint,
-/obj/structure/table,
-/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+/obj/machinery/light{
+ dir = 8
},
-/area/crew_quarters/kitchen)
-"bhR" = (
-/obj/item/reagent_containers/food/drinks/bottle/cream,
-/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "dark"
},
-/area/crew_quarters/kitchen)
-"bhS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/atmos)
+"cov" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "caution"
},
+/area/atmos)
+"cow" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/flashlight,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "brown"
+ icon_state = "neutralfull"
},
-/area/quartermaster/office)
-"bhT" = (
-/obj/structure/closet/firecloset,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/alarm{
+/area/atmos)
+"coz" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
dir = 4;
- pixel_x = -23
+ name = "Труба дыхательной смеси"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"bhU" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/office)
-"bhV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/office)
-"bhW" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -28
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба служит для подачу горючей смеси в турбину для её работы";
+ name = "Труба турбины"
},
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"bhX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/office)
-"bhY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
+/area/atmos)
+"coA" = (
+/obj/structure/delta_statue/sw,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
+ dir = 10;
+ icon_state = "vault"
},
-/area/hallway/primary/fore)
-"bhZ" = (
-/obj/effect/decal/warning_stripes/arrow{
- dir = 1
+/area/bridge/vip)
+"coB" = (
+/obj/structure/transit_tube{
+ icon_state = "E-NW";
+ tag = "icon-E-NW"
},
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "purple"
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"coE" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"coH" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/quartermaster/miningdock)
-"bia" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"coL" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "construction access"
},
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"coP" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
icon_state = "brown"
},
-/area/quartermaster/miningdock)
-"bib" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bic" = (
+/area/quartermaster/sorting)
+"coQ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bid" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bie" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"coR" = (
+/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 4;
icon_state = "brown"
},
-/area/quartermaster/miningdock)
-"bif" = (
-/obj/effect/decal/warning_stripes/arrow{
- dir = 1
- },
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1
- },
+/area/quartermaster/sorting)
+"coS" = (
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "brown"
},
-/area/quartermaster/miningdock)
-"big" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/quartermaster/sorting)
+"coT" = (
+/mob/living/simple_animal/hostile/killertomato{
+ desc = "Не подпускать к Сане";
+ faction = list("plants","neutral","hostile");
+ name = "Витамин"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "purple"
+ dir = 4;
+ icon_state = "green"
},
-/area/quartermaster/miningdock)
-"bih" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hydroponics)
+"cpb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/window/southright{
+ dir = 4;
+ name = "AI Core Door";
+ req_access = null;
+ req_access_txt = "16"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bii" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bij" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/turret_protected/ai)
+"cpd" = (
+/obj/effect/landmark/start{
+ name = "AI"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bik" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -28
},
-/obj/effect/landmark/start{
- name = "Shaft Miner"
+/obj/item/radio/intercom/private{
+ pixel_x = 28;
+ pixel_y = -10
+ },
+/obj/item/radio/intercom/custom{
+ pixel_x = -28;
+ pixel_y = -10
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bim" = (
-/obj/structure/table/reinforced,
-/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "purple"
+ icon_state = "dark"
},
-/area/quartermaster/miningdock)
-"bin" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/yellow,
-/obj/item/pen,
-/obj/machinery/door/window/westleft{
- dir = 4;
- name = "Mining Desk";
- req_access_txt = "48"
+/area/turret_protected/ai)
+"cpg" = (
+/obj/structure/particle_accelerator/power_box{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"cpi" = (
+/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bio" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining{
- name = "Mining Dock";
- req_access_txt = "48"
- },
+/area/engine/engineering)
+"cpk" = (
+/obj/machinery/power/tesla_coil,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bip" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/storage/secure)
+"cpl" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door_control{
+ id = "engstorage";
+ name = "Engineering Secure Storage Control";
+ pixel_x = 23;
+ pixel_y = 8;
+ req_access_txt = "11"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"bix" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/camera{
+ c_tag = "Engineering Central Hall";
+ dir = 1;
+ network = list("Engineering","SS13");
+ pixel_y = -1
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"cpm" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/storage/secure)
+"cpn" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"cpo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
- },
-/area/security/warden)
-"biJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/chair/office/dark{
- dir = 4
+ icon_state = "neutralfull"
},
+/area/storage/secure)
+"cpr" = (
+/obj/machinery/power/emitter,
+/turf/simulated/floor/plating,
+/area/storage/secure)
+"cpy" = (
+/obj/machinery/vending/hydroseeds,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/security/hos)
-"biK" = (
-/turf/simulated/floor/engine/n20,
-/area/atmos)
-"biL" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics N2O Tank";
- network = list("SS13","Engineering")
+/area/hydroponics)
+"cpA" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/engine/n20,
-/area/atmos)
-"biM" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 0;
- external_pressure_bound_default = 0;
- frequency = 1441;
- id_tag = "n2o_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- layer = 2.4;
- name = "n2o vent";
- on = 1;
- pressure_checks = 2;
- pressure_checks_default = 2;
- pump_direction = 0
+/area/hallway/primary/central/north)
+"cpC" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/turf/simulated/floor/engine/n20,
-/area/atmos)
-"biN" = (
-/obj/structure/window/reinforced{
- dir = 8
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "brown"
},
-/obj/structure/window/reinforced{
- dir = 1
+/area/quartermaster/sorting)
+"cpD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/visible/green,
-/obj/machinery/atmospherics/binary/pump{
- dir = 4;
- name = "n2o to Pure"
+/mob/living/simple_animal/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cpJ" = (
+/turf/simulated/floor/carpet,
+/area/library)
+"cpK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "escape"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/atmos)
-"biO" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1;
- name = "Pure to Ports"
+/area/bridge/vip)
+"cpO" = (
+/obj/structure/table,
+/obj/item/camera,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cpP" = (
+/obj/machinery/light{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken5";
+ tag = "icon-wood-broken5"
},
-/area/atmos)
-"biP" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1;
- name = "Mix to Ports"
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"cpQ" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cpW" = (
+/obj/machinery/light{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
+/obj/structure/chair/comfy/brown{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"biQ" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1;
- name = "Air to Ports"
+ layer = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
},
-/area/atmos)
-"biR" = (
+/area/bridge/vip)
+"cqb" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -28354,1596 +28223,1628 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"biS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ icon_state = "red"
},
+/area/security/range)
+"cqd" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/bridge/vip)
+"cqe" = (
+/obj/machinery/vending/coffee,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/bridge/vip)
+"cqf" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkredcorners"
},
-/area/atmos)
-"biT" = (
+/area/security/permabrig)
+"cqg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/atmos)
-"biU" = (
+/area/security/prisonershuttle)
+"cqj" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/locker)
+"cqt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/atmos)
-"biV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/medbay)
+"cqw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cqB" = (
+/turf/simulated/wall,
+/area/quartermaster/miningdock)
+"cqC" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
},
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"cqJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/area/atmos)
-"biW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cqK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small{
+ dir = 4
},
-/area/atmos)
-"biX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/structure/table,
+/obj/item/storage/briefcase{
+ pixel_x = 4;
+ pixel_y = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cqM" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/atmos)
-"biY" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "ai2";
+ name = "Turret Shutters"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"biZ" = (
-/obj/structure/window/reinforced{
- dir = 4
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"cqQ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/trinary/filter{
+/obj/machinery/camera{
+ c_tag = "Particle Accellerator";
dir = 1;
- filter_type = 2;
- name = "Gas filter (N2 tank)";
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+ network = list("Engineering","SS13")
},
-/area/atmos)
-"bja" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"cqT" = (
+/obj/effect/landmark/start{
+ name = "Janitor"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
- },
-/area/atmos)
-"bjb" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
- dir = 8;
- frequency = 1441;
- id = "n2_in"
+ icon_state = "purplefull"
},
-/turf/simulated/floor/engine/n2,
-/area/atmos)
-"bjc" = (
+/area/janitor)
+"cqU" = (
+/obj/machinery/pipedispenser/disposal,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"cqW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "green"
+ dir = 5;
+ icon_state = "purple"
},
-/area/hydroponics)
-"bjf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/janitor)
+"cqX" = (
+/obj/structure/closet/crate{
+ name = "solar pack crate"
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"cqY" = (
+/obj/machinery/door_control{
+ id = "janitorshutters";
+ name = "Janitor Shutters Control";
+ pixel_y = -7;
+ req_access_txt = "26"
},
+/turf/simulated/wall,
+/area/janitor)
+"cqZ" = (
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "green"
+ icon_state = "brown"
},
-/area/hydroponics)
-"bjg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/quartermaster/sorting)
+"cra" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"crg" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
},
+/area/quartermaster/sorting)
+"crh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
+ },
+/area/quartermaster/sorting)
+"cri" = (
+/turf/simulated/wall/r_wall,
+/area/security/medbay)
+"crj" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/machinery/meter,
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
+ },
+/area/engine/controlroom)
+"crk" = (
+/obj/machinery/atmospherics/trinary/filter{
+ dir = 8;
+ filter_type = "n2"
+ },
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"crn" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "blue"
+ icon_state = "grimy"
},
-/area/hydroponics)
-"bjh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/library)
+"cro" = (
+/obj/structure/cable,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "blue"
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
},
-/area/hydroponics)
-"bji" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"crp" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба содержит газ для обработки и после возвращает его обратно в трубу смешивания";
+ name = "Труба обработки"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "green"
+ icon_state = "caution"
},
-/area/hydroponics)
-"bjj" = (
+/area/atmos)
+"crr" = (
+/obj/structure/table/reinforced,
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "green"
+ icon_state = "dark"
},
-/area/hydroponics)
-"bjl" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics";
- req_access_txt = "35"
+/area/ai_monitored/storage/eva)
+"crv" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/toy/figure/atmos,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/atmos)
+"crA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/stool,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"crE" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 0;
+ icon_state = "neutral"
},
-/area/hydroponics)
-"bjn" = (
+/area/maintenance/engrooms)
+"crF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/stool,
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"crG" = (
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"crI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"bjo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/small{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"crJ" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/window/eastright{
+ name = "Hydroponics Delivery";
+ req_access_txt = "35";
+ tag = "icon-right"
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitehall"
+ icon_state = "dark"
},
-/area/crew_quarters/serviceyard)
-"bjp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/hydroponics)
+"crL" = (
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ name = "Труба на фильтрацию"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Kitchen";
- req_access_txt = "28"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "caution"
},
+/area/atmos)
+"crN" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/item/reagent_containers/glass/bucket,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "dark"
},
-/area/crew_quarters/kitchen)
-"bjq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/hydroponics)
+"crW" = (
+/obj/effect/landmark/start{
+ name = "Clown"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "bar"
},
-/area/crew_quarters/kitchen)
-"bjr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/clownoffice)
+"crX" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"csa" = (
+/obj/structure/chair/office/dark{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+/obj/effect/landmark/start{
+ name = "Botanist"
},
-/area/crew_quarters/kitchen)
-"bjs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/landmark/start{
+ name = "Botanist"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/crew_quarters/kitchen)
-"bjt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/area/hydroponics)
+"csj" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/fitness)
+"csm" = (
+/obj/machinery/power/tesla_coil,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"csn" = (
+/obj/machinery/light/small{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 1;
+ icon_state = "brown"
},
-/area/crew_quarters/kitchen)
-"bju" = (
-/obj/structure/disposalpipe/segment{
+/area/quartermaster/sorting)
+"cso" = (
+/obj/machinery/power/emitter,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"csr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/crew_quarters/kitchen)
-"bjv" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "bar"
},
-/area/crew_quarters/kitchen)
-"bjw" = (
-/obj/structure/disposalpipe/segment{
+/area/clownoffice)
+"css" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/door/airlock/bananium{
+ name = "Clown's Office";
+ req_access_txt = "46"
},
-/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/kitchen)
-"bjx" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/crew_quarters/kitchen)
-"bjy" = (
-/obj/machinery/door/airlock/public{
- name = "Bar";
- req_access_txt = "25"
+ icon_state = "bar"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/area/clownoffice)
+"cst" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A15";
+ location = "A14"
},
-/area/crew_quarters/bar)
-"bjz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/office)
-"bjA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/unary/cold_sink/freezer{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"bjB" = (
-/obj/structure/chair/wood/wings,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"bjC" = (
-/obj/structure/chair{
- dir = 4
+/area/crew_quarters/serviceyard)
+"csv" = (
+/obj/item/radio/intercom{
+ pixel_y = 26
},
/turf/simulated/floor/plasteel{
- dir = 8;
+ dir = 1;
icon_state = "brown"
},
-/area/quartermaster/office)
-"bjD" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/quartermaster/sorting)
+"csz" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom{
+ pixel_y = 28
},
-/turf/simulated/floor/plasteel{
+/obj/structure/reagent_dispensers/beerkeg,
+/obj/machinery/firealarm{
dir = 8;
- icon_state = "neutralfull"
+ pixel_x = -26;
+ pixel_y = 28
},
-/area/quartermaster/office)
-"bjE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/quartermaster/office)
-"bjF" = (
+/area/crew_quarters/bar)
+"csC" = (
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 1;
icon_state = "brown"
},
-/area/quartermaster/office)
-"bjG" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/mechanical,
-/obj/machinery/camera{
- c_tag = "Cargo Ore Storage";
- dir = 5
+/area/quartermaster/sorting)
+"csF" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall,
+/area/quartermaster/delivery)
+"csG" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 4;
+ name = "Труба дыхательной смеси"
+ },
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
},
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"csH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "purple"
+ icon_state = "neutralfull"
},
-/area/quartermaster/miningdock)
-"bjH" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/area/quartermaster/storage)
+"csJ" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 4;
+ name = "Труба дыхательной смеси"
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bjI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/atmos)
+"csK" = (
+/turf/simulated/wall/r_wall,
+/area/ai_monitored/storage/eva)
+"csO" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/maintenance/gambling_den)
+"csS" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/rods{
+ amount = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
},
+/obj/item/storage/toolbox/emergency,
+/obj/item/flashlight,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bjK" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "brown"
+/area/gateway)
+"csU" = (
+/obj/machinery/gateway{
+ dir = 9
},
-/area/quartermaster/miningdock)
-"bjL" = (
/turf/simulated/floor/plasteel{
- icon_state = "purple"
- },
-/area/quartermaster/miningdock)
-"bjM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "dark"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/gateway)
+"csV" = (
+/turf/simulated/wall/r_wall,
+/area/gateway)
+"cth" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/chapel/office)
+"cti" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/emergency,
/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/quartermaster/miningdock)
-"bjN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/locker)
+"ctj" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/crew_quarters/locker)
+"ctn" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"cto" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
},
/turf/simulated/floor/plasteel{
- icon_state = "purple"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/area/quartermaster/miningdock)
-"bjO" = (
+/area/toxins/explab)
+"ctp" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow/partial,
-/obj/effect/decal/warning_stripes/arrow,
-/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/quartermaster/miningdock)
-"bjP" = (
+/turf/simulated/floor/plating,
+/area/security/brigstaff)
+"ctt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/structure/rack{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "purple"
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/area/quartermaster/miningdock)
-"bjQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"ctv" = (
+/obj/effect/decal/warning_stripes/northwestcorner,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/quartermaster/storage)
+"ctC" = (
/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "brown"
},
-/area/quartermaster/miningdock)
-"bjR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/quartermaster/sorting)
+"ctF" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ location = "QM #1"
},
-/obj/structure/chair/office/dark{
- dir = 4
+/mob/living/simple_animal/bot/mulebot{
+ home_destination = "QM #1";
+ suffix = "#1"
},
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"ctG" = (
+/obj/machinery/vending/hydronutrients,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "purple"
+ icon_state = "dark"
},
-/area/quartermaster/miningdock)
-"bjS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hydroponics)
+"ctH" = (
+/obj/structure/table/wood,
+/obj/machinery/light,
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -28
},
-/obj/structure/table/reinforced,
-/obj/item/folder/yellow,
-/obj/item/gps/mining,
-/obj/item/gps/mining,
-/obj/item/gps/mining,
-/obj/item/gps/mining,
+/obj/item/folder,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "brown"
- },
-/area/quartermaster/miningdock)
-"bjT" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"bjU" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/library)
+"ctI" = (
+/obj/machinery/alarm{
+ pixel_y = 22
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ location = "QM #2"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"bjV" = (
-/obj/structure/closet/crate,
-/obj/machinery/light/small{
- dir = 8
+/mob/living/simple_animal/bot/mulebot{
+ home_destination = "QM #2";
+ suffix = "#2"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/mining)
-"bjW" = (
-/obj/structure/window/reinforced{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
},
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 8
+/area/quartermaster/storage)
+"ctJ" = (
+/obj/effect/decal/warning_stripes/southwestcorner,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/window/reinforced{
- dir = 4
+/area/engine/controlroom)
+"ctK" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/mining)
-"bjX" = (
-/obj/structure/ore_box,
-/obj/machinery/light/small{
- dir = 4
+/area/engine/controlroom)
+"ctL" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/mining)
-"bkv" = (
-/obj/machinery/light/small{
- dir = 8
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/engine/n20,
-/area/atmos)
-"bkw" = (
-/obj/machinery/portable_atmospherics/canister/sleeping_agent{
- anchored = 1
+/area/hallway/primary/central/sw)
+"ctN" = (
+/obj/item/radio/intercom{
+ pixel_x = -28
},
-/turf/simulated/floor/engine/n20,
-/area/atmos)
-"bkx" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "n2o_sensor"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/engine/n20,
-/area/atmos)
-"bky" = (
-/obj/structure/window/reinforced{
- dir = 8
+/area/hallway/primary/central/sw)
+"ctP" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/visible/green,
-/obj/machinery/computer/general_air_control/large_tank_control{
- frequency = 1441;
- input_tag = "n2o_in";
- name = "Nitrous Oxide Supply Control";
- output_tag = "n2o_out";
- sensors = list("n2o_sensor" = "Tank")
+/area/ai_monitored/storage/eva)
+"ctQ" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/vending/wallmed{
+ pixel_x = 26
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "escape"
+ icon_state = "dark"
},
-/area/atmos)
-"bkz" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bkA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/ai_monitored/storage/eva)
+"ctS" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bkB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/machinery/meter,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bkC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ location = "QM #4"
},
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
-/obj/machinery/meter,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bkD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/mob/living/simple_animal/bot/mulebot{
+ home_destination = "QM #4";
+ suffix = "#4"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bkE" = (
-/obj/structure/cable{
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
+ },
+/area/quartermaster/storage)
+"ctT" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/hydroponics)
+"ctV" = (
+/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bkF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bkH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/engine/controlroom)
+"cua" = (
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/quartermaster/storage)
+"cue" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/lights/mixed,
+/obj/item/radio/intercom{
+ pixel_y = 26
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bkI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/quartermaster/storage)
+"cuf" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bkJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/crew_quarters/locker)
+"cug" = (
+/obj/machinery/gateway{
+ dir = 8
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/atmos)
-"bkK" = (
+/area/gateway)
+"cui" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/crew_quarters/courtroom)
+"cul" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bkL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
+ },
+/area/engine/controlroom)
+"cum" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bkM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bkN" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bkO" = (
-/obj/machinery/atmospherics/pipe/simple/visible/purple,
+/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
- },
-/area/atmos)
-"bkP" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/machinery/light/small{
- dir = 4
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/area/engine/controlroom)
+"cuo" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 4;
+ name = "Труба смешивания"
},
+/turf/space,
+/area/space/nearstation)
+"cuq" = (
+/turf/simulated/floor/engine/air,
/area/atmos)
-"bkQ" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/camera{
- c_tag = "Arrivals Shuttle South East";
- dir = 8
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"bkR" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"bkS" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/smartfridge,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hydroponics)
-"bkU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "green"
- },
-/area/hydroponics)
-"bkV" = (
-/obj/machinery/hydroponics/constructable,
+"cur" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/item/multitool,
+/obj/item/multitool{
+ pixel_x = 4;
+ pixel_y = -4
},
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cus" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/hydroponics)
-"bkW" = (
-/obj/machinery/power/rad_collector,
+/area/bridge/meeting_room)
+"cuv" = (
+/obj/structure/closet/wardrobe/green,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/locker)
+"cuw" = (
+/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/camera{
- c_tag = "Supermatter Engine West";
- network = list("SS13","Engineering")
+ c_tag = "Cargo Supply North"
},
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
},
-/turf/simulated/floor/greengrid,
-/area/engine/supermatter)
-"bkX" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/quartermaster/storage)
+"cux" = (
+/obj/machinery/light{
dir = 1;
on = 1
},
+/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "green"
- },
-/area/hydroponics)
-"bkY" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "blue"
+ dir = 1;
+ icon_state = "brown"
},
-/area/hydroponics)
-"bla" = (
+/area/quartermaster/storage)
+"cuz" = (
/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastleft{
- dir = 8;
- name = "Hydroponics Desk";
- req_access_txt = "35"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/clipboard,
-/obj/item/toy/figure/botanist,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hydroponics)
-"blb" = (
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "greenblue"
+ dir = 1;
+ icon_state = "brown"
},
-/area/crew_quarters/serviceyard)
-"blc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/quartermaster/storage)
+"cuB" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"cuC" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"bld" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/crew_quarters/serviceyard)
-"blf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 1
},
-/obj/machinery/firealarm{
+/area/security/customs)
+"cuM" = (
+/obj/structure/window/reinforced{
dir = 1;
- pixel_y = -24
- },
-/obj/structure/chair/office/light{
- dir = 8
+ layer = 2.9
},
+/obj/machinery/door/window,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/crew_quarters/kitchen)
-"blg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/area/crew_quarters/fitness)
+"cuN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Teleport Access";
+ req_access_txt = "17"
},
-/area/crew_quarters/kitchen)
-"blh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/status_display{
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"cuO" = (
+/obj/structure/closet/crate,
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/kitchen_machine/candy_maker,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/kitchen)
-"bli" = (
-/obj/item/stack/packageWrap,
-/obj/item/reagent_containers/food/condiment/enzyme{
- layer = 5
- },
-/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 5;
+ icon_state = "brown"
},
-/area/crew_quarters/kitchen)
-"blj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/quartermaster/storage)
+"cuQ" = (
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Kitchen South";
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/trunk{
dir = 1
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/icemachine,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ icon_state = "dark"
},
-/area/crew_quarters/kitchen)
-"blk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/hydroponics)
+"cuS" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/recharge_station,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"cuV" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/light{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/kitchen_machine/grill,
-/obj/machinery/vending/wallmed{
- pixel_y = -30
+/obj/item/radio/intercom{
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/kitchen)
-"bll" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
+ dir = 1
},
-/obj/machinery/disposal,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/security/main)
+"cva" = (
+/obj/structure/table/wood,
+/obj/item/taperecorder,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ icon_state = "grimy"
},
-/area/crew_quarters/kitchen)
-"blm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/library)
+"cvc" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 4
},
+/turf/space,
+/area/space/nearstation)
+"cvf" = (
+/turf/simulated/wall/r_wall,
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"cvg" = (
+/turf/simulated/wall/r_wall,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"cvh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/kitchen_machine/oven,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/kitchen)
-"bln" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 6
},
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/kitchen_machine/oven,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/kitchen)
-"blo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "grimy"
},
-/obj/structure/disposalpipe/segment{
+/area/crew_quarters/bar)
+"cvj" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 8
+ },
+/obj/structure/window/plasmareinforced{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/cooker/deepfryer,
+/turf/simulated/floor/plating,
+/area/engine/controlroom)
+"cvk" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cvo" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/closet/crate/rcd,
+/obj/machinery/door/window/southright{
+ dir = 4;
+ name = "EVA Equipment"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ai_monitored/storage/eva)
+"cvq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cvt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
},
+/obj/structure/window/reinforced,
+/obj/structure/showcase,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ icon_state = "grimy"
},
-/area/crew_quarters/kitchen)
-"blq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/assembly/showroom)
+"cvu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Jury court";
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"cvv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/hallway/primary/fore)
-"blr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/office)
-"bls" = (
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "brown"
+/obj/machinery/door/airlock{
+ name = "Bar Office";
+ req_access_txt = "25"
},
-/area/quartermaster/office)
-"blt" = (
-/obj/structure/chair{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/quartermaster/office)
-"blu" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
+/area/crew_quarters/bar)
+"cvA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"blv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "brown"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/quartermaster/office)
-"blw" = (
-/obj/machinery/light,
-/obj/machinery/vending/artvend,
/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/quartermaster/office)
-"blx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/crew_quarters/bar)
+"cvE" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"cvF" = (
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"bly" = (
-/obj/structure/chair{
- dir = 1
+/area/gateway)
+"cvG" = (
+/obj/machinery/light{
+ dir = 8
},
-/obj/effect/landmark/start{
- name = "Civilian"
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/quartermaster/office)
-"blz" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 3
+/area/hallway/primary/central/se)
+"cvH" = (
+/obj/machinery/gateway{
+ dir = 10
},
-/turf/simulated/floor/plasteel{
- icon_state = "brown"
+/obj/machinery/light{
+ dir = 8
},
-/area/quartermaster/office)
-"blA" = (
-/obj/machinery/computer/merch,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+/obj/effect/landmark{
+ name = "JoinLateGateway"
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "brown"
- },
-/area/quartermaster/office)
-"blB" = (
-/obj/structure/table/reinforced,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+ icon_state = "dark"
},
-/obj/item/paper/deltainfo,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "brown"
+/area/gateway)
+"cvI" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/quartermaster/miningdock)
-"blC" = (
-/obj/structure/ore_box,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"blD" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"blE" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"blF" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/engine/controlroom)
+"cvK" = (
+/obj/item/radio/intercom{
+ dir = 0;
+ pixel_x = -28
},
-/obj/structure/table,
-/obj/item/storage/firstaid/regular,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/se)
+"cvM" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
},
-/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "brown"
+ icon_state = "neutralcorner"
},
-/area/quartermaster/miningdock)
-"blG" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external{
- id_tag = "mining_home";
- name = "Mining Dock Airlock";
- req_access_txt = "48"
+/area/hallway/primary/central/se)
+"cvO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/fans/tiny,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"blH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"blI" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"blJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining{
- name = "Mining Dock";
- req_access_txt = "48"
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"blK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/bar)
+"cvP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining{
- name = "Mining Dock";
- req_access_txt = "48"
- },
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"blL" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"blM" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"blN" = (
-/obj/effect/decal/warning_stripes/arrow{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/effect/decal/warning_stripes/yellow/partial{
+/area/crew_quarters/bar)
+"cvQ" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"blO" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"blP" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f5"
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/shuttle/mining)
-"blQ" = (
-/obj/structure/shuttle/engine/propulsion/burst,
-/turf/simulated/shuttle/plating,
-/area/shuttle/mining)
-"blR" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f9"
+/area/crew_quarters/bar)
+"cvT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/area/shuttle/mining)
-"bmp" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/flasher{
- id = null;
- pixel_y = -24
+/obj/machinery/newscaster{
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
- },
-/area/turret_protected/ai)
-"bmq" = (
-/obj/effect/landmark/start{
- name = "AI"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = -28
+/area/crew_quarters/bar)
+"cvU" = (
+/obj/machinery/power/rad_collector,
+/obj/machinery/camera{
+ c_tag = "Supermatter Engine East";
+ network = list("SS13","Engineering")
},
-/obj/item/radio/intercom/private{
- pixel_x = 28;
- pixel_y = -10
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/item/radio/intercom/custom{
- pixel_x = -28;
- pixel_y = -10
+/turf/simulated/floor/greengrid,
+/area/engine/supermatter)
+"cvX" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cvZ" = (
+/obj/structure/dresser,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/area/turret_protected/ai)
-"bmr" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "ai2";
- name = "Turret Shutters"
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"bms" = (
-/turf/simulated/wall,
-/area/security/podbay)
-"bmt" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
+/area/crew_quarters/cabin1)
+"cwa" = (
+/obj/structure/bed,
+/obj/machinery/firealarm{
dir = 4;
- frequency = 1441;
- id = "n2o_in"
- },
-/turf/simulated/floor/engine/n20,
-/area/atmos)
-"bmu" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/trinary/filter{
- filter_type = 4;
- name = "Gas filter (N2O tank)";
- on = 1
+ pixel_x = 28
},
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cwd" = (
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "escape"
- },
-/area/atmos)
-"bmv" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 5
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bmw" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 1
+/area/hallway/primary/fore)
+"cwe" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 1;
+ name = "Труба дыхательной смеси"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bmx" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
/area/atmos)
-"bmy" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/effect/decal/warning_stripes/yellow,
+"cwf" = (
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/atmos)
-"bmz" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- dir = 8;
- initialize_directions = 11
+"cwk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/atmos)
-"bmA" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+"cwl" = (
+/obj/machinery/light{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/atmos)
-"bmB" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
- },
+"cwn" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lantern,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "caution"
+ icon_state = "grimy"
},
-/area/atmos)
-"bmC" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- dir = 1
+/area/chapel/main)
+"cwr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"cwt" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/atmos)
-"bmD" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cwu" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"cwv" = (
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"cwy" = (
+/obj/machinery/vending/tool,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+ icon_state = "dark"
},
-/area/atmos)
-"bmE" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 10;
- initialize_directions = 10
+/area/engine/hardsuitstorage)
+"cwz" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/rack,
+/obj/item/floor_painter{
+ pixel_x = -6;
+ pixel_y = 6
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "caution"
+/obj/item/floor_painter{
+ pixel_x = -3;
+ pixel_y = 3
},
-/area/atmos)
-"bmF" = (
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 6
+/obj/item/floor_painter,
+/obj/item/floor_painter{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/floor_painter{
+ pixel_x = 6;
+ pixel_y = -6
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bmG" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"bmH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bmI" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/rods{
- amount = 8
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 4
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bmJ" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/metal{
- amount = 10
+/area/engine/hardsuitstorage)
+"cwA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/item/stack/sheet/metal{
- amount = 10
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cwC" = (
+/obj/structure/plasticflaps{
+ opacity = 1
},
-/obj/item/grenade/chem_grenade/metalfoam,
-/obj/item/grenade/chem_grenade/metalfoam,
-/obj/machinery/newscaster{
- pixel_y = -32
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "cargodelivery"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 4
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"cwE" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bmK" = (
-/obj/structure/table/reinforced,
+/obj/structure/disposaloutlet,
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"cwF" = (
/obj/structure/window/reinforced{
- dir = 4
+ dir = 8
},
-/obj/item/paper_bin,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 4
+/obj/structure/window/reinforced,
+/obj/structure/showcase,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/sign/poster/official/do_not_question{
- pixel_y = -32
+/area/turret_protected/ai)
+"cwH" = (
+/obj/machinery/door/poddoor{
+ id_tag = "QMLoaddoor";
+ name = "supply dock loading door"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bmL" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 9
+/obj/machinery/conveyor/east{
+ id = "QMLoad"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"cwI" = (
+/obj/structure/table,
+/obj/item/wrench,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cwK" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/atmos)
-"bmM" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 5
+/obj/machinery/light{
+ on = 1;
+ pixel_y = 7
},
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "dark"
},
-/area/atmos)
-"bmN" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+/area/construction/hallway)
+"cwL" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/atmos)
-"bmR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "bluecorner"
+ icon_state = "neutralcorner"
},
-/area/hydroponics)
-"bmS" = (
+/area/hallway/primary/central/sw)
+"cwP" = (
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "green"
},
/area/hydroponics)
-"bmT" = (
+"cxb" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"cxd" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 4;
+ name = "Труба смешивания"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "bluecorner"
+ icon_state = "neutralfull"
},
-/area/hydroponics)
-"bmU" = (
-/turf/simulated/floor/plasteel{
+/area/atmos)
+"cxe" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- icon_state = "green"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/hydroponics)
-"bmV" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/se)
+"cxf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/se)
+"cxh" = (
/obj/machinery/light{
dir = 4
},
@@ -29957,1677 +29858,1773 @@
icon_state = "dark"
},
/area/hydroponics)
-"bmW" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep)
-"bmX" = (
+"cxn" = (
+/turf/simulated/wall,
+/area/crew_quarters/locker/locker_toilet)
+"cxp" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "wall3"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"cxr" = (
+/obj/structure/table,
+/obj/item/storage/fancy/rollingpapers,
+/obj/item/seeds/tobacco,
+/obj/item/seeds/tobacco,
+/obj/item/seeds/tobacco,
+/obj/item/storage/box/matches,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Service Foyer"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"bmY" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/crew_quarters/serviceyard)
-"bmZ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "Kitchen Windows";
- name = "Kitchen Privacy Shutters"
+/area/security/permabrig)
+"cxz" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
+/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plating,
-/area/crew_quarters/kitchen)
-"bna" = (
-/obj/structure/sign/directions/engineering{
- dir = 8;
- pixel_y = 8
+/area/maintenance/auxsolarstarboard)
+"cxA" = (
+/obj/structure/table,
+/obj/item/hand_labeler,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cxC" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/structure/sign/directions/science{
+/obj/structure/disposalpipe/segment{
dir = 8;
- pixel_y = 1
- },
-/obj/structure/sign/directions/evac{
- pixel_y = -8
+ icon_state = "pipe-c"
},
-/turf/simulated/wall,
-/area/crew_quarters/kitchen)
-"bnb" = (
-/obj/structure/table/wood,
-/obj/item/kitchen/utensil/spoon,
-/obj/item/kitchen/utensil/fork,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"bnc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/disposalpipe/segment{
+/area/quartermaster/office)
+"cxE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/crew_quarters/kitchen)
-"bnd" = (
-/obj/structure/sign/directions/evac{
- pixel_y = -8
+/obj/machinery/power/terminal{
+ dir = 1
},
-/obj/structure/sign/directions/medical{
- dir = 4
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/structure/sign/directions/security{
- dir = 4;
- pixel_y = 8
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"cxF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/turf/simulated/wall,
-/area/quartermaster/office)
-"bne" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/kitchen_machine/microwave{
- pixel_x = -1;
- pixel_y = 7
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/table,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/machinery/power/terminal{
+ dir = 1
},
-/area/crew_quarters/kitchen)
-"bnf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bng" = (
-/turf/simulated/wall,
-/area/maintenance/apmaint)
-"bnh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/engine/engineering)
+"cxK" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
},
-/obj/effect/decal/warning_stripes/arrow{
- dir = 8
+/area/engine/hardsuitstorage)
+"cxM" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
},
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8
+/obj/machinery/alarm{
+ pixel_y = 23
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bni" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -25
+/obj/machinery/atmospherics/unary/portables_connector,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
},
-/obj/structure/rack,
-/obj/item/storage/toolbox/emergency{
- pixel_x = 3;
- pixel_y = -4
+/area/maintenance/turbine)
+"cxN" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "MiniSat Maintenance";
+ req_access_txt = "75"
},
-/obj/item/storage/toolbox/emergency,
-/obj/item/shovel,
-/obj/item/shovel,
-/obj/item/pickaxe,
-/obj/item/pickaxe,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bnj" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"bnk" = (
-/obj/effect/spawner/window/reinforced,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"cxP" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"bnl" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
-"bnm" = (
-/obj/effect/spawner/window/reinforced,
+/area/hallway/primary/central/ne)
+"cxQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/door/airlock/vault{
+ icon_state = "door_locked";
+ locked = 1;
+ req_access_txt = "53"
},
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
-"bnn" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/security/nuke_storage)
+"cxS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
-"bnM" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
+/area/maintenance/fpmaint2)
+"cxU" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cxV" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/item/flag/nt{
- pixel_y = -6
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cxW" = (
+/obj/effect/landmark{
+ name = "blobstart"
},
-/area/construction/hallway)
-"bnO" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/mug/serv,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"bnP" = (
-/obj/structure/window/reinforced{
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cxY" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cxZ" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/trinary/mixer{
dir = 1
},
-/obj/item/flag/nt{
- pixel_y = -6
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
- },
-/area/construction/hallway)
-"bnQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai)
-"bnS" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plating,
+/turf/simulated/floor/plasteel,
/area/atmos)
-"bnT" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+"cya" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/binary/volume_pump{
+ desc = "Отправляет неотфильтрованные газы в отходы на повторную фильтрацию";
+ dir = 4;
+ name = "Остатки газа в отходы"
},
-/obj/machinery/atmospherics/pipe/simple/visible/green,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/plasteel,
/area/atmos)
-"bnU" = (
+"cyc" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Mime";
+ name = "Mime Privacy Shutters"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Clown";
+ name = "Clown Privacy Shutters"
},
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/turf/simulated/floor/plating,
-/area/atmos)
-"bnV" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+/area/mimeoffice)
+"cye" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/atmos/glass{
- name = "Distribution Loop";
- req_one_access_txt = "24"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bnW" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
-/turf/simulated/floor/plating,
-/area/atmos)
-"bnX" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/flashlight,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "caution"
- },
-/area/atmos)
-"bnY" = (
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 6
+ icon_state = "grimy"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/crew_quarters/bar)
+"cyf" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/atmos)
-"bnZ" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/toy/figure/atmos,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- icon_state = "caution"
+ initialize_directions = 11
},
-/area/atmos)
-"boa" = (
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 9
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bob" = (
+/turf/simulated/floor/wood,
+/area/assembly/showroom)
+"cyg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/turf/simulated/floor/wood,
+/area/assembly/showroom)
+"cyh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/table/wood,
+/obj/item/storage/secure/briefcase,
/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/assembly/showroom)
+"cyj" = (
+/obj/machinery/firealarm{
dir = 8;
- icon_state = "neutralfull"
+ pixel_x = -24
},
-/area/atmos)
-"boc" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/rack,
+/obj/item/gps{
+ pixel_x = -6;
+ pixel_y = 4
},
-/obj/machinery/light{
- dir = 4
+/obj/item/gps{
+ pixel_x = -6;
+ pixel_y = 4
},
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28
+/obj/item/gps{
+ pixel_x = -6;
+ pixel_y = 4
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bod" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/item/gps{
+ pixel_x = -6;
+ pixel_y = 4
},
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"boe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/item/kitchen/knife/combat/survival{
+ pixel_x = 6;
+ pixel_y = 4
},
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"bof" = (
-/obj/structure/sign/botany{
- pixel_x = -32
+/obj/item/kitchen/knife/combat/survival{
+ pixel_x = 6;
+ pixel_y = 4
},
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/item/kitchen/knife/combat/survival{
+ pixel_x = 6;
+ pixel_y = 4
},
-/area/hydroponics)
-"bog" = (
-/obj/machinery/vending/hydronutrients,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/item/kitchen/knife/combat/survival{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"cyk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hydroponics)
-"boh" = (
-/obj/machinery/vending/hydroseeds,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hydroponics)
-"boi" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "green"
+ icon_state = "1-2"
},
-/area/hydroponics)
-"bok" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/hydroponics)
-"bol" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/structure/table/wood,
+/obj/item/clothing/mask/cigarette/cigar/havana{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/item/clothing/mask/cigarette/cigar/cohiba{
+ pixel_x = 3;
+ pixel_y = -3
},
-/area/hallway/primary/central/north)
-"bom" = (
+/turf/simulated/floor/carpet,
+/area/assembly/showroom)
+"cyl" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/area/hallway/primary/central/north)
-"bon" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/hallway/primary/central/north)
-"bop" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"cym" = (
+/obj/structure/sign/fire,
+/turf/simulated/wall/r_wall,
+/area/atmos)
+"cyn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway North 3"
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"cyp" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"cyt" = (
+/mob/living/carbon/human/monkey/punpun,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/north)
-"boq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/area/crew_quarters/bar)
+"cyu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/hallway/primary/central/north)
-"bor" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/port/west)
+"cyw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "freezerfloor"
},
-/area/hallway/primary/central/north)
-"bos" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/crew_quarters/locker/locker_toilet)
+"cyx" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/requests_console{
+ department = "Hydroponics";
+ departmentType = 2;
+ name = "Hydroponics Requests Console";
+ pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "dark"
+ },
+/area/hydroponics)
+"cyz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/crew_quarters/serviceyard)
-"bot" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/hallway/primary/central/north)
-"bou" = (
+/obj/machinery/light,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
- },
-/area/hallway/primary/central/north)
-"bov" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"cyD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
+ dir = 1
},
-/area/hallway/primary/central/north)
-"bow" = (
+/area/security/securehallway)
+"cyG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/hallway/primary/central/north)
-"box" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/crew_quarters/locker)
+"cyH" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/crate,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"cyK" = (
+/obj/effect/landmark{
+ name = "lightsout"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
- },
-/area/hallway/primary/central/north)
-"boy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/crew_quarters/locker)
+"cyM" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
-/area/hallway/primary/central/north)
-"boz" = (
+/area/crew_quarters/cabin1)
+"cyN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway North 1"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/north)
-"boA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/warning_stripes/yellow/partial,
+/obj/effect/decal/warning_stripes/arrow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/north)
-"boB" = (
+/area/quartermaster/storage)
+"cyO" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin2)
+"cyP" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/area/quartermaster/delivery)
+"cyS" = (
+/obj/machinery/cryopod/right,
+/obj/machinery/newscaster{
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "freezerfloor"
},
-/area/hallway/primary/central/north)
-"boC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/sleep)
+"cza" = (
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/crew_quarters/fitness)
+"czb" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f6";
+ tag = "icon-swall_f6"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/shuttle/supply)
+"cze" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12";
+ tag = "icon-swall12"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/area/shuttle/supply)
+"czi" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f10";
+ tag = "icon-swall_f10"
},
-/area/hallway/primary/central/north)
-"boD" = (
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"boE" = (
+/area/shuttle/supply)
+"czk" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/secure_closet/engineering_electrical,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/engine/hardsuitstorage)
+"czo" = (
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/maintenance/apmaint)
-"boF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/quartermaster/delivery)
+"czp" = (
+/obj/machinery/conveyor{
+ id = "cargodisposals"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"boG" = (
/turf/simulated/floor/plating,
-/area/maintenance/apmaint)
-"boH" = (
+/area/quartermaster/delivery)
+"czv" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/maintenance/apmaint)
-"boI" = (
-/obj/effect/decal/cleanable/cobweb2,
-/obj/structure/closet/crate,
-/obj/item/clothing/mask/breath/vox,
-/obj/item/tank/nitrogen,
-/turf/simulated/floor/plating,
-/area/maintenance/apmaint)
-"boJ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/area/maintenance/fpmaint2)
+"czw" = (
+/obj/machinery/field/generator{
+ anchored = 1;
+ state = 2
},
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
-"boK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"czx" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkredcorners"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/permabrig)
+"czy" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/electrical,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"czz" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall,
+/area/atmos)
+"czB" = (
+/obj/structure/table/wood,
+/obj/item/storage/bag/books,
+/obj/item/taperecorder,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/door/airlock/maintenance{
- name = "Mining Maintenance";
- req_access_txt = "48"
+/area/library)
+"czD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"czE" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/binary/volume_pump{
+ desc = "Позволяет опустошить трубу дыхательной смеси, отправив её в отходы на повторную фильтрацию";
+ dir = 4;
+ name = "Дыхательную смесь в отходы"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/apmaint)
-"boL" = (
+/area/atmos)
+"czG" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"czK" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/assembly/showroom)
+"czL" = (
/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/obj/machinery/recharger,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"czM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/girder,
+/obj/machinery/light/small,
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"czN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/girder,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "yellow"
},
-/obj/item/pen,
+/area/maintenance/engrooms)
+"czO" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
- },
-/area/security/prisonershuttle)
-"boN" = (
-/obj/structure/grille{
- layer = 1
- },
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"czP" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
/obj/machinery/door/poddoor{
- id_tag = "exspace";
- name = "Execution Blast Door"
+ density = 0;
+ icon_state = "open";
+ id_tag = "Exp_lockdown";
+ name = "Expedition Lockdown";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/security/execution)
-"boO" = (
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/obj/machinery/power/apc{
+/area/gateway)
+"czQ" = (
+/obj/machinery/recharge_station,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"czR" = (
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"czS" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
- name = "north bump";
- pixel_y = 24
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"czU" = (
+/obj/machinery/light,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkred"
+ icon_state = "neutral"
},
-/area/security/prisonershuttle)
-"boP" = (
-/obj/structure/table,
-/obj/item/book/manual/security_space_law,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = 32
+/area/crew_quarters/locker)
+"czV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkred"
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/security/prisonershuttle)
-"boT" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red{
- pixel_y = 3
+/obj/machinery/gateway{
+ density = 0
},
-/obj/item/book/manual/sop_security,
-/obj/machinery/alarm{
- pixel_y = 22
+/obj/effect/landmark{
+ name = "JoinLateGateway"
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/main)
-"boU" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red{
- pixel_y = 3
+/area/gateway)
+"czW" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/obj/item/book/manual/security_space_law,
/obj/structure/cable{
- d1 = 1;
d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/light{
- dir = 1;
- on = 1
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "red"
+ icon_state = "neutralcorner"
},
-/area/security/main)
-"boW" = (
-/obj/machinery/computer/prisoner{
- req_access = null;
- req_access_txt = "2"
+/area/hallway/primary/central/se)
+"czX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction,
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkred"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/prisonershuttle)
-"bpe" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
+/area/hallway/primary/port/west)
+"cAa" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/obj/machinery/camera{
- c_tag = "Head of Security's Office";
- network = list("SS13","Security")
+/obj/structure/disposaloutlet,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"cAb" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/meter,
+/turf/simulated/wall/r_wall,
+/area/atmos)
+"cAf" = (
+/obj/structure/closet/toolcloset,
+/obj/item/clothing/glasses/welding,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cAg" = (
+/obj/machinery/vending/hatdispenser,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+ icon_state = "dark"
},
-/area/security/hos)
-"bpf" = (
-/obj/structure/table/wood,
-/obj/machinery/photocopier/faxmachine/longrange{
- department = "Head of Security's Office"
+/area/crew_quarters/locker)
+"cAh" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+ dir = 4;
+ icon_state = "yellow"
},
-/area/security/hos)
-"bpg" = (
-/obj/structure/table/wood,
-/obj/item/taperecorder,
-/obj/item/flashlight/seclite,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+/area/maintenance/engrooms)
+"cAj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/area/security/hos)
-"bph" = (
-/obj/structure/table/wood,
-/obj/item/storage/secure/briefcase,
-/obj/item/book/manual/security_space_law,
-/obj/item/paper/monitorkey,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/area/security/hos)
-"bpi" = (
-/obj/machinery/photocopier,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Head of Security's Desk";
- departmentType = 5;
- name = "Head of Security Requests Console";
- pixel_y = 30
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/junction,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/locker)
+"cAk" = (
+/obj/structure/table,
+/obj/item/deck/cards,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/hos)
-"bpm" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"bpn" = (
-/obj/structure/chair/wood/wings{
- dir = 1;
- tag = "icon-wooden_chair_wings (NORTH)"
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/crew_quarters/locker)
+"cAq" = (
+/obj/machinery/bookbinder,
/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"bpo" = (
-/obj/structure/girder,
+/area/library)
+"cAr" = (
+/turf/simulated/wall/rust,
+/area/maintenance/asmaint2)
+"cAt" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "construction access"
+ },
+/obj/structure/barricade/wooden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"bpq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/maintenance/engrooms)
+"cAv" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/light{
- dir = 1;
- on = 1
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"cAw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/machinery/ai_status_display{
- pixel_y = 32
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"cAy" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"cAz" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cAA" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/mob/living/simple_animal/bot/secbot/pingsky{
- desc = "Worse than nothing";
- name = "AI Defender"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
- },
-/area/turret_protected/ai)
-"bpt" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"bpv" = (
-/turf/simulated/floor/engine/insulated/vacuum,
-/area/atmos)
-"bpw" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics Gas Mix Tank";
- network = list("SS13","Engineering")
- },
-/turf/simulated/floor/engine/insulated/vacuum,
-/area/atmos)
-"bpx" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
- dir = 4;
- frequency = 1441;
- id = "mix_in"
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/engine/insulated/vacuum,
-/area/atmos)
-"bpy" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"cAB" = (
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "green"
- },
-/area/atmos)
-"bpz" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green,
-/obj/machinery/atmospherics/binary/pump{
- dir = 8;
- name = "Unfiltered & Air to Mix";
- on = 1
+ icon_state = "yellowcorner"
},
+/area/hallway/primary/port/west)
+"cAD" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+ icon_state = "dark"
},
-/area/atmos)
-"bpA" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 10
+/area/engine/hardsuitstorage)
+"cAK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet{
+ icon_closed = "cabinet_closed";
+ icon_opened = "cabinet_open";
+ icon_state = "cabinet_closed"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+/obj/item/clothing/gloves/color/yellow,
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"cAM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/atmos)
-"bpB" = (
-/obj/machinery/atmospherics/binary/pump{
- name = "Pure to Mix"
+/obj/structure/chair/office/dark{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/atmos)
-"bpC" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+ icon_state = "grimy"
},
-/area/atmos)
-"bpD" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9;
- tag = "icon-intact-y (NORTHWEST)"
+/area/library)
+"cAP" = (
+/obj/machinery/status_display{
+ pixel_y = -32
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+/obj/machinery/light,
+/obj/structure/dresser,
+/obj/machinery/camera{
+ c_tag = "Library Backroom";
+ dir = 1
},
-/area/atmos)
-"bpE" = (
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 6
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
- },
-/area/atmos)
-"bpF" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 4
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/atmos)
-"bpG" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/black,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
+/area/library)
+"cAQ" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "caution"
+ icon_state = "neutralfull"
},
-/area/atmos)
-"bpH" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
+/area/quartermaster/storage)
+"cAR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/atmos)
-"bpI" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/purple{
+/area/library)
+"cAT" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Life Support Specialist"
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cAU" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cAV" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/atmos)
-"bpJ" = (
-/obj/structure/table/reinforced,
-/obj/item/weldingtool,
-/obj/item/clothing/head/welding,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 5
+/area/crew_quarters/fitness)
+"cBe" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/assembly/showroom)
+"cBg" = (
+/obj/machinery/conveyor/east{
+ id = "QMLoad"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "caution"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/atmos)
-"bpK" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+/area/quartermaster/storage)
+"cBj" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/obj/item/pen,
+/turf/simulated/floor/carpet,
+/area/assembly/showroom)
+"cBk" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bpL" = (
+/turf/simulated/floor/carpet,
+/area/assembly/showroom)
+"cBn" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/binary/pump{
- dir = 4;
- name = "Air to External Air Ports";
- on = 1;
- target_pressure = 101
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/alarm{
dir = 8;
- icon_state = "neutralfull"
+ pixel_x = 24
},
-/area/atmos)
-"bpM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/universal{
- dir = 4
+/turf/simulated/floor/wood,
+/area/assembly/showroom)
+"cBo" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet,
+/obj/item/lipstick/jade,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cBq" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/sign/poster/official/work_for_a_future{
- pixel_x = 32
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bpN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK"
},
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"cBr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Gateway Access";
+ req_access_txt = "62"
+ },
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"bpO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/space_heater,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"bpP" = (
+/area/gateway)
+"cBt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 6
},
-/obj/machinery/portable_atmospherics/canister/sleeping_agent,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bpQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/machinery/light{
- dir = 1;
- in_use = 1
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bpR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
},
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bpS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/janitor)
+"cBu" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
},
-/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"bpT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"bpU" = (
-/obj/item/twohanded/required/kirbyplants,
+/area/gateway)
+"cBw" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/port/west)
-"bpV" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+ icon_state = "neutralcorner"
},
-/obj/machinery/light/small{
- dir = 1
+/area/hallway/primary/central/se)
+"cBA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- icon_state = "yellow"
+ initialize_directions = 11
},
-/area/hallway/primary/port/west)
-"bpW" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ icon_state = "2-4"
},
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellowcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/primary/port/west)
-"bpX" = (
+/area/hallway/primary/central/south)
+"cBD" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "1-8"
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"bpY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "purple"
+/area/quartermaster/storage)
+"cBE" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/range)
+"cBH" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
-/area/janitor)
-"bpZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/mirror{
+ pixel_x = -26
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"cBI" = (
+/obj/structure/toilet{
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"bqa" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/toy/figure/janitor,
-/obj/machinery/requests_console{
- department = "Janitorial";
- departmentType = 1;
- name = "Janitor Requests Console";
- pixel_y = -32
+/obj/machinery/light/small,
+/obj/effect/landmark/start{
+ name = "Civilian"
},
-/obj/machinery/camera{
- c_tag = "Custodial Closet";
- dir = 1
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "toilet1";
+ name = "Toilet Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_y = -25;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"cBJ" = (
+/obj/machinery/door/poddoor/shutters{
+ id_tag = "janitorshutters";
+ name = "Janitor Shutters"
},
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
icon_state = "purple"
},
/area/janitor)
-"bqb" = (
-/obj/structure/table/reinforced,
-/obj/item/restraints/legcuffs/beartrap,
-/obj/item/restraints/legcuffs/beartrap,
-/obj/item/restraints/legcuffs/beartrap,
-/obj/item/storage/box/mousetraps,
-/obj/item/storage/box/mousetraps,
-/obj/item/radio/intercom{
- pixel_y = -28
+"cBK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkbluefull"
},
+/area/turret_protected/ai)
+"cBM" = (
/obj/item/storage/box/lights/mixed,
-/obj/item/storage/box/lights/mixed{
- pixel_x = 4;
- pixel_y = 4
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "purple"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/janitor)
-"bqc" = (
+/area/quartermaster/sorting)
+"cBP" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/closet/crate/internals,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/storage)
+"cBQ" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"cBY" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxport)
+"cCa" = (
+/obj/item/radio/beacon,
+/obj/machinery/camera{
+ armor = list("melee" = 50, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 100, "bio" = 0, "rad" = 0, "fire" = 90, "acid" = 50);
+ c_tag = "Research Toxins Test Chamber East";
+ dir = 4;
+ network = list("Toxins","Research","SS13")
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel/airless/indestructible,
+/area/toxins/test_area)
+"cCb" = (
+/obj/structure/table/reinforced,
+/obj/item/paper/holodeck,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"cCc" = (
+/obj/machinery/atmospherics/unary/heat_reservoir/heater{
+ dir = 1;
+ on = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"bqd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "caution"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/atmos)
+"cCd" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/southwest,
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/color/black,
+/obj/item/radio,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/engine/hardsuitstorage)
+"cCg" = (
+/obj/machinery/atmospherics/unary/cold_sink/freezer{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/landmark{
- name = "blobstart"
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"bqe" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"bqf" = (
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cCh" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance{
+ name = "Engineering Maintenance";
+ req_access_txt = "10";
+ req_one_access_txt = null
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cCi" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/binary/pump/on{
+ desc = "Отправляет дыхательную смесь из трубы распространяться по станции через вентиляции";
+ name = "Дыхательную смесь на станцию";
+ target_pressure = 303.325
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "caution"
+ },
+/area/atmos)
+"cCk" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced,
+/obj/structure/window/plasmareinforced{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"bqg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
+/turf/simulated/floor/plating,
+/area/engine/supermatter)
+"cCl" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/camera{
+ c_tag = "Supermatter East";
+ dir = 8;
+ network = list("Engineering","SS13")
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"bqh" = (
-/obj/machinery/newscaster{
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cCn" = (
+/obj/structure/sign/poster/official/random{
pixel_x = -32
},
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/maintenance/fpmaint2)
+"cCp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "yellowfull"
},
-/area/hydroponics)
-"bqi" = (
-/obj/machinery/biogenerator,
-/obj/effect/decal/warning_stripes/yellow,
+/area/engine/engineering)
+"cCt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cCw" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "whitepurple"
},
-/area/hydroponics)
-"bqj" = (
-/obj/structure/reagent_dispensers/watertank/high,
-/obj/item/reagent_containers/glass/bucket,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/toxins/xenobiology)
+"cCz" = (
+/obj/structure/table/reinforced,
+/obj/item/extinguisher/mini{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/extinguisher/mini,
+/obj/item/extinguisher/mini{
+ pixel_x = -3;
+ pixel_y = 3
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "caution"
},
-/area/hydroponics)
-"bqk" = (
-/obj/structure/chair/office/dark{
- dir = 4
+/area/atmos)
+"cCA" = (
+/obj/machinery/pipedispenser,
+/turf/simulated/floor/plasteel{
+ icon_state = "caution"
},
-/obj/effect/landmark/start{
- name = "Botanist"
+/area/atmos)
+"cCC" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
+/area/maintenance/engrooms)
+"cCD" = (
+/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/hydroponics)
-"bql" = (
-/obj/structure/table/reinforced,
-/obj/item/folder,
-/obj/item/pen,
-/obj/item/reagent_containers/food/snacks/grown/apple,
-/obj/machinery/door/window/eastleft{
- dir = 8;
- name = "Hydroponics Desk";
- req_access_txt = "35"
+/area/construction/hallway)
+"cCF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarport)
+"cCG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/whiskey,
+/turf/simulated/floor/carpet,
+/area/assembly/showroom)
+"cCH" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/hydroponics)
-"bqm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/assembly/showroom)
+"cCK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
-/area/crew_quarters/serviceyard)
-"bqn" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
+/area/hallway/primary/central/south)
+"cCL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/obj/structure/showcase,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/assembly/showroom)
+"cCM" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/central/south)
+"cCN" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "vault"
},
-/area/hallway/primary/central/north)
-"bqo" = (
+/area/maintenance/turbine)
+"cCP" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A14";
- location = "A13"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "1-8"
},
-/area/hallway/primary/central/north)
-"bqq" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/structure/table/reinforced,
+/obj/item/folder/yellow,
+/obj/item/pen,
+/obj/machinery/door/window{
+ name = "Atmospherics Desk"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/door/window{
dir = 8;
- icon_state = "neutralfull"
+ name = "Atmospherics Desk";
+ req_access_txt = "24"
},
-/area/hallway/primary/central/north)
-"bqr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"cCQ" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/hallway/primary/central/north)
-"bqs" = (
+/area/hallway/primary/central/south)
+"cCS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/binary/pump{
+ name = "Gas to Turbine"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/maintenance/turbine)
+"cCT" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/south)
+"cCV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A13";
- location = "A12"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "purple"
},
-/area/hallway/primary/central/north)
-"bqt" = (
+/area/janitor)
+"cCW" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/effect/landmark{
- name = "lightsout"
+/turf/simulated/floor/plasteel,
+/area/maintenance/turbine)
+"cCX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/hallway/primary/central/north)
-"bqv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/central/north)
-"bqx" = (
+/area/hallway/primary/central/se)
+"cCZ" = (
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/maintenance/turbine)
+"cDb" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/light{
dir = 1;
- on = 1
+ in_use = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/area/hallway/primary/central/north)
-"bqy" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/maintenance/turbine)
+"cDe" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/vending/wallmed{
+ pixel_y = -32
},
-/area/hallway/primary/central/north)
-"bqz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cDg" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A37";
- location = "A36"
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/maintenance/turbine)
+"cDh" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cDi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
},
-/area/hallway/primary/central/north)
-"bqA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 1;
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/north)
-"bqB" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/maintenance/apmaint)
-"bqC" = (
-/turf/simulated/wall/rust,
-/area/maintenance/apmaint)
-"bqD" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f6"
- },
-/area/shuttle/siberia)
-"bqE" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "window4"
- },
-/turf/simulated/floor/plating,
-/area/shuttle/siberia)
-"bqF" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- dir = 10;
- icon_state = "9"
+/area/crew_quarters/sleep)
+"cDk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/shuttle/siberia)
-"bqG" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "window8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/shuttle/siberia)
-"bqH" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f10";
- tag = "icon-swall_f10"
+/area/maintenance/fpmaint2)
+"cDl" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellowcorner"
},
-/area/shuttle/siberia)
-"bqI" = (
-/obj/machinery/door_control{
- id = "Bar";
- name = "Bar Privacy Shutters Control";
- pixel_x = -25;
- req_access_txt = "28"
+/area/hallway/primary/port/west)
+"cDm" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -31635,1095 +31632,1259 @@
tag = "icon-vault (NORTHEAST)"
},
/area/crew_quarters/bar)
-"bqJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light/small{
- dir = 8
+"cDn" = (
+/obj/structure/chair/sofa/right{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"cDo" = (
+/turf/simulated/wall,
+/area/crew_quarters/cabin1)
+"cDp" = (
+/obj/machinery/camera{
+ c_tag = "Fore Hallway North 1";
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/fore)
+"cDs" = (
+/turf/simulated/wall,
+/area/space/nearstation)
+"cDt" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/sorting)
+"cDu" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
})
-"bqK" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/structure/cable{
- d1 = 2;
+"cDv" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"cDz" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/unary/outlet_injector/on,
-/turf/simulated/floor/engine,
-/area/security/execution)
-"bqL" = (
-/obj/machinery/computer/prisoner{
- req_access = null;
- req_access_txt = "2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkred"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/prisonershuttle)
-"bqM" = (
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- name = "Execution Gas System";
- req_access_txt = "1"
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cDC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/atmospherics/binary/pump{
+/turf/simulated/floor/plasteel{
dir = 8;
- name = "Justice gas pump"
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plating,
-/area/security/execution)
-"bqN" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Prison Wing";
- req_access_txt = "2";
- security_level = 1
+/area/quartermaster/sorting)
+"cDD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkbluefull"
},
-/obj/machinery/door/firedoor,
+/area/turret_protected/ai)
+"cDE" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
},
/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4"
+ icon_state = "0-4"
},
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"cDF" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkred"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/permabrig)
-"bqO" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/brig,
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "1-8"
},
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cDG" = (
+/obj/machinery/vending/tool,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"cDH" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/brig)
-"bqP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+/area/turret_protected/ai)
+"cDI" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
},
-/area/security/brig)
-"brf" = (
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cDK" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarport)
+"cDL" = (
+/obj/structure/cable,
+/obj/machinery/power/solar_control{
+ id = "portsolar";
+ name = "Aft Port Solar Control"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "hosp";
- name = "HoS Privacy Shutters"
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarport)
+"cDM" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plating,
-/area/security/hos)
-"bri" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/area/maintenance/auxsolarport)
+"cDN" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarport)
+"cDO" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
},
-/area/security/hos)
-"brk" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/light{
+ dir = 4
},
-/area/security/hos)
-"brl" = (
-/obj/structure/table/wood,
-/obj/machinery/status_display{
- pixel_y = 32
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/folder/red,
-/obj/machinery/keycard_auth{
- pixel_x = 26;
- pixel_y = 10
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cDR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/visible,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/hos)
-"brn" = (
-/obj/structure/dresser,
-/obj/machinery/newscaster{
- pixel_y = 32
+/area/maintenance/turbine)
+"cDU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/light_switch{
- pixel_x = -26
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cDV" = (
+/turf/simulated/wall/r_wall/rust,
+/area/engine/controlroom)
+"cDZ" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cEa" = (
+/obj/machinery/light{
+ dir = 4
},
-/area/security/hos)
-"bro" = (
-/obj/structure/bed,
-/obj/item/bedsheet/hos,
/obj/machinery/camera{
- c_tag = "Head of Security's Quarters";
- network = list("SS13","Security")
+ c_tag = "Central Ring Hallway West 1";
+ dir = 8
},
-/obj/machinery/status_display{
- pixel_y = 32
+/obj/item/radio/intercom{
+ pixel_x = 28
},
-/obj/effect/landmark/start{
- name = "Head of Security"
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/nw)
+"cEb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/security/hos)
-"brq" = (
-/obj/structure/window/reinforced{
- dir = 4
+/area/hallway/primary/central/south)
+"cEd" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/camera{
+ c_tag = "Showroom"
},
-/turf/space,
-/area/space/nearstation)
-"brs" = (
-/obj/machinery/porta_turret,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 6;
+ icon_state = "vault"
},
-/area/turret_protected/ai)
-"brt" = (
-/obj/structure/chair/wood/wings{
- dir = 4;
- tag = "icon-wooden_chair_wings (EAST)"
+/area/assembly/showroom)
+"cEe" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"bru" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/security/brig)
-"brv" = (
-/obj/structure/table/wood,
-/obj/item/kitchen/utensil/fork,
-/obj/item/kitchen/utensil/spoon,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"brw" = (
-/obj/structure/window/reinforced{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"brx" = (
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/turf/simulated/floor/engine/insulated/vacuum,
-/area/atmos)
-"bry" = (
-/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "mix_sensor"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/engine/insulated/vacuum,
-/area/atmos)
-"brA" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/green{
+/turf/simulated/floor/plasteel{
dir = 8;
- tag = "icon-manifold-g (NORTH)"
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"brB" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/green,
-/obj/machinery/meter,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"brC" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 9
+/area/hallway/primary/central/south)
+"cEh" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"brD" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cEi" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"brE" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 4;
- name = "Mix to Filter";
- on = 1
+/turf/simulated/wall/r_wall/coated,
+/area/engine/supermatter)
+"cEj" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cEk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"brF" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/purple{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"brG" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 6;
- initialize_directions = 6
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A26";
+ location = "A25"
},
-/obj/item/wrench,
-/obj/item/crowbar,
-/obj/item/clothing/mask/gas,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "caution"
- },
-/area/atmos)
-"brH" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- dir = 4;
- initialize_directions = 11
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/atmos)
-"brI" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/purple{
- dir = 8
+/area/hallway/primary/central/se)
+"cEn" = (
+/obj/structure/chair/office/dark{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/atmos)
-"brJ" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/belt/utility,
-/obj/item/t_scanner,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
+/area/bridge)
+"cEs" = (
+/obj/structure/table/wood,
+/obj/item/lighter/zippo,
+/turf/simulated/floor/carpet,
+/area/assembly/showroom)
+"cEv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "caution"
- },
-/area/atmos)
-"brK" = (
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"brL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "External Waste Ports to Filter";
- on = 1;
- target_pressure = 101
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"brM" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/atmos)
-"brN" = (
-/obj/machinery/space_heater,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"brO" = (
-/obj/machinery/portable_atmospherics/canister/sleeping_agent,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+/area/crew_quarters/fitness)
+"cEz" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"brP" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+/obj/machinery/meter,
+/turf/simulated/wall/r_wall/coated,
+/area/engine/supermatter)
+"cEA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/greengrid,
+/area/security/nuke_storage)
+"cED" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"brQ" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light/small{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"brR" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/structure/sign/nosmoking_2{
- pixel_x = 32
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cEE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"brS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"brT" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"cEF" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6;
+ level = 1
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/meter,
+/turf/simulated/wall/r_wall/coated,
+/area/engine/supermatter)
+"cEJ" = (
+/turf/simulated/wall,
+/area/mimeoffice)
+"cEN" = (
+/obj/machinery/power/apc{
dir = 1;
- icon_state = "yellowcorner"
+ name = "north bump";
+ pixel_y = 24
},
-/area/hallway/primary/port/west)
-"brU" = (
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "0-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/south)
+"cEQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A19";
- location = "A18"
+ codes_txt = "patrol;next_patrol=A23";
+ location = "A22"
},
-/mob/living/simple_animal/bot/secbot/beepsky{
- name = "Officer Beepsky 2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/port/west)
-"brV" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/area/hallway/primary/central/south)
+"cER" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "yellowcorner"
+ icon_state = "pipe-c"
},
-/area/hallway/primary/port/west)
-"brW" = (
-/turf/simulated/wall,
-/area/storage/tech)
-"brX" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"brY" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "green"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hydroponics)
-"brZ" = (
+/area/hallway/primary/central/south)
+"cES" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/port)
+"cET" = (
+/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"bsa" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/area/maintenance/asmaint)
+"cFb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ name = "Из скрабберов на фильтрацию"
},
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/wall,
+/area/atmos)
+"cFd" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "redyellowfull"
},
-/area/hydroponics)
-"bsb" = (
-/obj/machinery/power/rad_collector,
-/obj/machinery/camera{
- c_tag = "Supermatter Engine East";
- network = list("SS13","Engineering")
+/area/engine/break_room)
+"cFe" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/greengrid,
-/area/engine/supermatter)
-"bsd" = (
-/obj/structure/table/reinforced,
-/obj/item/seeds/lime,
-/obj/item/seeds/watermelon,
-/obj/item/seeds/grape,
-/obj/item/reagent_containers/food/snacks/grown/wheat,
-/obj/item/reagent_containers/food/snacks/grown/watermelon,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/obj/machinery/door/window/eastright{
- dir = 8;
- name = "Hydroponics Desk";
- req_access_txt = "35";
- tag = "icon-right"
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
+"cFh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/hydroponics)
-"bse" = (
+/area/crew_quarters/sleep)
+"cFi" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central/north)
-"bsf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/north)
-"bsg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/light,
+/area/crew_quarters/sleep)
+"cFj" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
+/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
+ dir = 8;
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/north)
-"bsh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/crew_quarters/sleep)
+"cFl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/north)
-"bsi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "neutral"
},
+/area/crew_quarters/sleep)
+"cFn" = (
/obj/machinery/light/small,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/structure/cable,
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/north)
-"bsj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_y = -32
+/area/crew_quarters/sleep)
+"cFs" = (
+/obj/machinery/camera{
+ c_tag = "Dorm Hallway Port";
+ dir = 1
},
/turf/simulated/floor/plasteel{
+ dir = 8;
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/north)
-"bsk" = (
-/obj/structure/disposalpipe/segment{
+/area/crew_quarters/sleep)
+"cFv" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/hallway/primary/central/north)
-"bsl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/landmark{
- name = "Observer-Start"
+ icon_state = "dark"
},
+/area/crew_quarters/fitness)
+"cFw" = (
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ icon_state = "neutralcorner"
},
-/area/hallway/primary/central/north)
-"bsm" = (
-/obj/structure/disposalpipe/segment{
+/area/crew_quarters/sleep)
+"cFy" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/hallway/primary/central/north)
-"bsn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 0;
+ icon_state = "green"
},
-/obj/machinery/light/small,
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway North 2";
- dir = 1
+/area/hallway/secondary/exit)
+"cFA" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
},
+/obj/structure/bed,
+/obj/item/bedsheet/mime,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 4;
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
-/area/hallway/primary/central/north)
-"bso" = (
-/obj/structure/disposalpipe/segment{
+/area/mimeoffice)
+"cFE" = (
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"cFG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/hallway/primary/central/north)
-"bsp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/area/mimeoffice)
+"cFH" = (
+/obj/machinery/computer/atmoscontrol,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "caution"
},
-/area/hallway/primary/central/north)
-"bsq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/atmos)
+"cFI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/light/small,
-/turf/simulated/floor/plasteel{
- dir = 8;
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/north)
-"bsr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/crew_quarters/serviceyard)
+"cFJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/firealarm{
+/turf/simulated/wall/r_wall/coated,
+/area/engine/supermatter)
+"cFK" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/bridge)
+"cFL" = (
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_y = -27
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/window/southleft{
dir = 1;
- pixel_y = -24
+ name = "Bar Delivery";
+ req_access_txt = "25";
+ tag = "icon-left (WEST)"
},
-/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/crew_quarters/bar)
+"cFO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/hallway/primary/central/north)
-"bss" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/hallway/primary/central/north)
-"bst" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/door/airlock{
+ name = "Bar Office";
+ req_access_txt = "25"
},
-/obj/structure/disposalpipe/junction{
- dir = 8
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/bar)
+"cFP" = (
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/westleft{
+ dir = 4;
+ name = "Cargo Desk";
+ req_access_txt = "50"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/item/folder/yellow,
+/obj/item/pen,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/delivery)
+"cFQ" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/snacks/baguette,
+/obj/item/lipstick/random{
+ pixel_x = -3;
+ pixel_y = -3
},
-/area/hallway/primary/central/north)
-"bsu" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/item/lipstick/random{
+ pixel_x = -1;
+ pixel_y = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/radio/intercom{
- pixel_x = 28
+/obj/item/lipstick/random{
+ pixel_x = 3;
+ pixel_y = 3
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/north)
-"bsv" = (
-/turf/simulated/wall,
-/area/hallway/primary/central/north)
-"bsw" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall3"
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
-/area/shuttle/siberia)
-"bsx" = (
-/obj/machinery/computer/shuttle/labor,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/mimeoffice)
+"cFU" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ location = "Mime"
},
-/area/shuttle/siberia)
-"bsy" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
+/obj/structure/plasticflaps{
+ opacity = 1
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
-/area/shuttle/siberia)
-"bsz" = (
-/obj/structure/table,
-/obj/item/folder/red,
-/obj/item/restraints/handcuffs,
+/area/mimeoffice)
+"cFW" = (
/obj/machinery/light{
- dir = 4
+ dir = 8
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/shuttle/siberia)
-"bsA" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cGa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
-"bsB" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
},
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
-"bsC" = (
-/obj/machinery/light,
-/obj/structure/closet/wardrobe/miner,
-/obj/item/radio/intercom{
+/area/toxins/mixing)
+"cGc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
dir = 1;
- pixel_y = -25
+ icon_state = "brown"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/quartermaster/delivery)
+"cGd" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "cargodisposals";
+ name = "Trash Filter Switch"
+ },
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bsD" = (
+/area/quartermaster/delivery)
+"cGe" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
+ },
+/obj/machinery/meter,
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/prison/cell_block/A)
-"bsE" = (
+/area/engine/controlroom)
+"cGf" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "neutralcorner"
},
-/area/security/brig)
-"bsF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/hallway/secondary/entry/louge)
+"cGj" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/crew_quarters/serviceyard)
+"cGk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/brig)
-"bsG" = (
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+/area/quartermaster/storage)
+"cGl" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 100;
+ on = 1
},
-/area/security/brig)
-"bsH" = (
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/brig)
-"bsW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/quartermaster/storage)
+"cGm" = (
+/obj/effect/landmark{
+ name = "Marauder Entry"
},
-/mob/living/simple_animal/hostile/retaliate/araneus,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
+ },
+/area/bridge)
+"cGo" = (
+/obj/machinery/vending/autodrobe,
+/obj/machinery/firealarm{
+ pixel_y = 32
+ },
+/obj/machinery/light_switch{
+ pixel_x = -22;
+ pixel_y = -8
},
-/area/security/hos)
-"bsX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
-/area/security/hos)
-"bsY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/mimeoffice)
+"cGp" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/bed/dogbed,
+/obj/structure/closet/crate/freezer,
+/turf/simulated/floor/plasteel,
+/area/hydroponics)
+"cGq" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "QMLoad"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_state = "brown"
},
-/area/security/hos)
-"bsZ" = (
-/obj/machinery/computer/shuttle/labor,
+/area/quartermaster/storage)
+"cGs" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8;
+ name = "Nitrogen to Loop"
+ },
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cGw" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall15";
+ tag = "icon-swall15"
+ },
+/area/shuttle/supply)
+"cGx" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- icon_state = "darkred"
+ initialize_directions = 11
},
-/area/security/prisonershuttle)
-"bta" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/computer/card/minor/hos,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/hos)
-"btb" = (
-/obj/effect/spawner/window/reinforced,
+/area/hallway/primary/central/ne)
+"cGB" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plating,
-/area/security/hos)
-"btd" = (
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai)
-"btf" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Подаёт азот из атмосферки в систему охлаждения реактора, таким образом запитывая её хладагентом";
dir = 4;
- external_pressure_bound = 0;
- external_pressure_bound_default = 0;
- frequency = 1441;
- id_tag = "mix_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- layer = 2.4;
- name = "mix vent";
- on = 1;
- pressure_checks = 2;
- pressure_checks_default = 2;
- pump_direction = 0
+ name = "Труба подачи азота в реактор"
},
-/turf/simulated/floor/engine/insulated/vacuum,
-/area/atmos)
-"btg" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cGE" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 1
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 8
+ },
+/obj/structure/window/plasmareinforced{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Подаёт азот из атмосферки в систему охлаждения реактора, таким образом запитывая её хладагентом";
+ dir = 4;
+ name = "Труба подачи азота в реактор"
+ },
+/turf/simulated/floor/plating,
+/area/engine/controlroom)
+"cGF" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cGK" = (
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "green"
+ dir = 5;
+ icon_state = "neutral"
},
-/area/atmos)
-"bth" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+/area/maintenance/engrooms)
+"cGL" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
-/obj/machinery/atmospherics/binary/pump{
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"cGM" = (
+/obj/machinery/door/airlock{
+ id_tag = "cabin3";
+ name = "Cabin"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin3)
+"cGN" = (
+/obj/effect/spawner/random_spawners/blood_maybe,
+/obj/machinery/light/small{
dir = 1
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bti" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cGP" = (
+/obj/machinery/door/airlock{
+ id_tag = "cabin4";
+ name = "Cabin"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cabin4)
+"cGT" = (
+/obj/machinery/light/small{
dir = 1
},
-/obj/effect/landmark/start{
- name = "Life Support Specialist"
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 22
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/closet/radiation,
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"cGW" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal{
+ amount = 10
},
-/area/atmos)
-"btj" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9
+/obj/item/stack/sheet/glass{
+ amount = 10
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "caution"
},
-/area/atmos)
-"btk" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/area/engine/break_room)
+"cGX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"cHb" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/atmos)
-"btl" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1;
- name = "Waste to Filter";
- on = 1
- },
-/obj/machinery/light{
+"cHc" = (
+/obj/structure/chair/sofa/right{
dir = 4
},
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"cHd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"cHe" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "caution"
+ dir = 8;
+ icon_state = "purplecorner"
},
-/area/atmos)
-"btm" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
-/obj/machinery/light{
+/area/maintenance/xenozoo)
+"cHh" = (
+/obj/machinery/camera{
+ c_tag = "Service Hall South";
dir = 8
},
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"cHm" = (
+/obj/structure/table/reinforced,
+/obj/machinery/newscaster{
+ pixel_y = 32
},
+/obj/item/storage/belt/utility,
+/obj/item/weldingtool,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"cHr" = (
+/obj/machinery/atmospherics/unary/cold_sink/freezer{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "caution"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/area/atmos)
-"btn" = (
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 10
+/area/medical/cryo)
+"cHt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/maintenance/fsmaint)
+"cHw" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/chair,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "caution"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/area/atmos)
-"bto" = (
-/obj/effect/decal/warning_stripes/west,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cHz" = (
+/obj/effect/decal/remains/human,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"btp" = (
+/area/maintenance/engrooms)
+"cHC" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ req_access_txt = "19"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "vault"
},
-/area/atmos)
-"btq" = (
+/area/bridge)
+"cHF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/door/window/brigdoor/southright,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"btr" = (
+/area/bridge)
+"cHH" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 1";
+ dir = 1;
+ network = list("SS13","MiniSat")
+ },
+/turf/space,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"cHJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/atmos/glass{
- name = "Atmospherics Desc";
- req_one_access_txt = "24; 10"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bts" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/bridge)
+"cHK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32731,15 +32892,35 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"btt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cHN" = (
+/obj/structure/chair/comfy/teal,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_x = 28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/reception)
+"cHP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32747,302 +32928,271 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/portable_atmospherics/canister/sleeping_agent,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"btu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cHT" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"btv" = (
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"btw" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"btx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/status_display,
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"bty" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/hallway/primary/port/west)
-"btz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cHU" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red{
+ pixel_y = 3
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/item/book/manual/security_space_law,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/port/west)
-"btA" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+ dir = 1
},
+/area/security/customs)
+"cIa" = (
+/turf/simulated/floor/plasteel,
+/area/maintenance/turbine)
+"cIb" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellowcorner"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/hallway/primary/port/west)
-"btC" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cIj" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 8
+ icon_state = "4-8"
},
-/obj/structure/window/plasmareinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/engine/controlroom)
-"btD" = (
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/disposal,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ name = "Bar Junction";
+ sortType = 19
},
-/area/hydroponics)
-"btE" = (
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cIq" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/hallway/primary/central/nw)
-"btF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"cIr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"cIt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"btG" = (
-/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"cIu" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/security/medbay)
-"btH" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/crew_quarters/serviceyard)
-"btK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
+/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j1 (WEST)"
},
-/area/hallway/primary/central/ne)
-"btL" = (
-/turf/simulated/wall/r_wall,
-/area/security/nuke_storage)
-"btM" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle,
/turf/simulated/floor/plating,
-/area/shuttle/siberia)
-"btN" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/siberia)
-"btO" = (
-/obj/machinery/flasher_button{
- id = "gulagshuttleflasher";
- name = "Flash Control";
- pixel_y = -26;
- req_access_txt = "1"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/maintenance/fpmaint2)
+"cIv" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/area/shuttle/siberia)
-"btP" = (
-/obj/machinery/mineral/labor_claim_console{
- pixel_x = 30;
- pixel_y = 30
+/area/library)
+"cIx" = (
+/obj/item/shard{
+ icon_state = "small"
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/item/shard{
+ icon_state = "medium";
+ pixel_x = -7;
+ pixel_y = -10
},
-/area/shuttle/siberia)
-"btQ" = (
-/obj/machinery/door/airlock/shuttle{
- id_tag = "s_docking_airlock";
- name = "Labor Shuttle Airlock";
- req_access_txt = "2"
+/obj/item/airlock_electronics,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/fans/tiny,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/maintenance/xenozoo)
+"cIz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/shuttle/siberia)
-"btR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Tech Storage";
+ req_access_txt = "23"
},
-/area/security/hos)
-"btS" = (
-/obj/machinery/door/airlock/external{
- id_tag = "laborcamp_home";
- name = "Labor Camp Airlock";
- req_access_txt = "2"
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/fans/tiny,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"cIA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/security/prisonershuttle)
-"btT" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/light{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/prisonershuttle)
-"btU" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "redcorner"
+ icon_state = "neutralfull"
},
-/area/security/brig)
-"btV" = (
-/obj/structure/disposalpipe/segment,
+/area/engine/break_room)
+"cIB" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "red"
+ icon_state = "caution"
},
-/area/security/brig)
-"btW" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+/area/engine/break_room)
+"cID" = (
+/obj/structure/table,
+/obj/item/reagent_containers/syringe/antiviral,
+/obj/item/reagent_containers/syringe/charcoal,
+/obj/item/reagent_containers/syringe/insulin,
+/obj/item/reagent_containers/glass/bottle/morphine,
+/obj/item/reagent_containers/glass/bottle/epinephrine,
+/obj/item/reagent_containers/syringe,
+/obj/item/stack/medical/bruise_pack/advanced{
+ pixel_x = 6;
+ pixel_y = 6
},
-/area/security/main)
-"btX" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/item/stack/medical/ointment/advanced{
+ pixel_x = 6;
+ pixel_y = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/item/reagent_containers/food/pill/patch/styptic{
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/food/pill/patch/styptic{
+ pixel_x = 2;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/food/pill/patch/silver_sulf{
+ pixel_x = -8;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/food/pill/patch/silver_sulf{
+ pixel_x = -8;
+ pixel_y = 8
+ },
+/obj/item/storage/pill_bottle/painkillers{
+ pixel_x = -6;
+ pixel_y = -3
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ pixel_x = -30
},
-/area/security/main)
-"btY" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHWEST)"
},
-/area/security/main)
-"btZ" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red{
- pixel_y = 3
+/area/medical/sleeper)
+"cIE" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/item/book/manual/sop_legal,
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33053,651 +33203,512 @@
d2 = 4;
icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/turf/simulated/floor/engine,
+/area/medical/chemistry)
+"cIG" = (
+/obj/machinery/light/small,
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/security/main)
-"buk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cII" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/atmos)
+"cIK" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
},
/obj/structure/cable{
- d1 = 1;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellowcorner"
+ },
+/area/hallway/primary/port/west)
+"cIM" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/toxins/xenobiology)
+"cIN" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/radiation,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cIO" = (
/obj/structure/cable{
- d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "0-8"
+ },
+/obj/machinery/power/smes,
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/greengrid,
+/area/engine/controlroom)
+"cIQ" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 32
},
+/obj/machinery/computer/sm_monitor,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
+ },
+/area/engine/controlroom)
+"cIR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/airlock/command{
- name = "Head of Security";
- req_access_txt = "58"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/hos)
-"bul" = (
+/obj/machinery/light/small,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cIU" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "bluecorner"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/hallway/primary/central/south)
+"cIV" = (
+/turf/simulated/wall/r_wall,
+/area/space/nearstation)
+"cIW" = (
+/obj/machinery/computer/secure_data,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/security/reception)
+"cIX" = (
+/obj/structure/table/reinforced,
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/item/gps,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"cJc" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Civilian"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/locker)
+"cJd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/security/hos)
-"bum" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cJf" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteyellow"
+ },
+/area/medical/chemistry)
+"cJj" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/hos)
-"bun" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "4-8"
},
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cJl" = (
/obj/structure/table/wood,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
+/obj/machinery/computer/security/wooden_tv,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
-"buo" = (
-/obj/machinery/light/small{
- dir = 8
+/area/bridge)
+"cJn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cJp" = (
+/obj/structure/disposalpipe/segment{
dir = 8;
- initialize_directions = 11
+ icon_state = "pipe-c"
},
-/obj/item/radio/intercom{
- pixel_x = -28
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "arrival"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/atmos)
-"bup" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- dir = 4;
- initialize_directions = 11
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"buq" = (
-/obj/machinery/atmospherics/binary/pump{
- name = "Mix to Distro"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cJq" = (
+/turf/simulated/wall/r_wall,
+/area/medical/biostorage)
+"cJr" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ req_access_txt = "19"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
},
-/area/atmos)
-"bur" = (
-/obj/machinery/atmospherics/unary/heat_reservoir/heater,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "vault"
},
-/area/atmos)
-"bus" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/unary/cold_sink/freezer{
- dir = 4
+/area/bridge)
+"cJu" = (
+/obj/effect/landmark{
+ name = "lightsout"
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/atmos)
-"but" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "caution"
- },
-/area/atmos)
-"buu" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1
+/area/hallway/secondary/exit)
+"cJv" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin/nanotrasen,
+/obj/item/pen,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/portable_atmospherics/pump,
-/obj/structure/sign/nosmoking_2{
- pixel_y = -32
+/obj/machinery/alarm{
+ pixel_y = 23
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
- },
-/area/atmos)
-"buv" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/pump,
-/obj/machinery/camera{
- c_tag = "Atmospherics Storage";
- dir = 1
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/machinery/newscaster{
- pixel_y = -32
+/area/lawoffice)
+"cJA" = (
+/obj/item/flag/mime,
+/obj/machinery/power/apc{
+ pixel_y = -26
},
+/obj/structure/cable,
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ dir = 4;
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
-/area/atmos)
-"buw" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1
+/area/mimeoffice)
+"cJG" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "26"
},
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/simulated/floor/plasteel{
- icon_state = "escape"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/atmos)
-"bux" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1
+/turf/simulated/floor/plating,
+/area/janitor)
+"cJH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/turf/simulated/floor/plasteel{
- icon_state = "escape"
- },
-/area/atmos)
-"buy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ icon_state = "dark"
},
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/southwest,
+/area/engine/gravitygenerator)
+"cJI" = (
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"buz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/south,
+/area/engine/gravitygenerator)
+"cJJ" = (
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"buA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/engine/gravitygenerator)
+"cJK" = (
+/obj/effect/decal/remains/xeno,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/southeast,
+/area/maintenance/xenozoo)
+"cJL" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"buB" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/area/engine/gravitygenerator)
+"cJM" = (
+/obj/item/stack/cable_coil,
/turf/simulated/floor/plating,
-/area/atmos)
-"buC" = (
+/area/maintenance/storage{
+ name = "Perma Maintenance"
+ })
+"cJN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"buD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"buE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"buF" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/wood,
+/area/library)
+"cJO" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"buG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/arrow{
- dir = 1
+/area/toxins/xenobiology)
+"cJT" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
},
+/area/medical/research/shallway)
+"cJY" = (
+/obj/machinery/light/small,
+/obj/structure/closet/radiation,
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"buH" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+/area/engine/gravitygenerator)
+"cKb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/atmos)
-"buI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/port/west)
-"buJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/junction,
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/port/west)
-"buK" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "escape"
- },
-/area/hallway/primary/port/west)
-"buL" = (
-/obj/structure/sign/electricshock,
-/turf/simulated/wall/r_wall,
-/area/storage/tech)
-"buM" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/quartermaster/delivery)
+"cKc" = (
+/obj/machinery/newscaster{
+ pixel_y = -32
},
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"buN" = (
-/obj/effect/spawner/window/reinforced,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/l3closet/scientist,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"cKd" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"buO" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"buP" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -11
- },
-/obj/item/radio/intercom{
- pixel_x = -30;
- pixel_y = -4
+ icon_state = "2-8"
},
-/obj/item/reagent_containers/glass/bucket,
-/obj/machinery/camera{
- c_tag = "Hydroponics South";
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hydroponics)
-"buQ" = (
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "green"
- },
-/area/hydroponics)
-"buR" = (
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "green"
- },
-/area/hydroponics)
-"buS" = (
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hydroponics)
-"buT" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/hydroponics)
-"buU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/medical/ward)
+"cKe" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "yellow"
},
-/area/crew_quarters/serviceyard)
-"buV" = (
+/area/engine/break_room)
+"cKh" = (
+/obj/machinery/vending/wallmed{
+ pixel_y = 30
+ },
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/wood,
+/area/library)
+"cKj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central/nw)
-"buW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/nw)
-"buX" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"buY" = (
-/obj/machinery/photocopier,
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "1-2"
},
-/area/lawoffice)
-"buZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 4;
+ icon_state = "brown"
},
-/area/hallway/primary/central/ne)
-"bva" = (
+/area/quartermaster/delivery)
+"cKk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/central/ne)
-"bvb" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
+/area/storage/primary)
+"cKq" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"cKr" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/medical/research/nhallway)
+"cKv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- icon_state = "neutralcorner"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/hallway/primary/central/ne)
-"bvc" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault"
+ icon_state = "neutralcorner"
},
-/area/security/nuke_storage)
-"bvd" = (
-/obj/machinery/light/small{
+/area/hallway/primary/central/nw)
+"cKC" = (
+/obj/structure/chair/comfy/red{
dir = 1
},
-/obj/structure/closet/crate,
-/obj/item/coin/silver,
-/obj/item/coin/silver,
-/obj/item/coin/silver,
-/obj/item/coin/silver,
-/obj/item/coin/silver,
-/obj/item/radio/intercom{
- pixel_y = 24
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
- },
-/area/security/nuke_storage)
-"bve" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/status_display{
- pixel_y = 32
+/obj/effect/landmark/start{
+ name = "Head of Security"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
- },
-/area/security/nuke_storage)
-"bvf" = (
-/obj/machinery/light/small{
dir = 1
},
-/obj/structure/closet/fireaxecabinet{
- pixel_y = 32
- },
-/obj/structure/table/reinforced,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+/area/security/main)
+"cKH" = (
+/obj/structure/chair/comfy/teal{
+ dir = 1
},
-/area/security/nuke_storage)
-"bvg" = (
-/obj/structure/closet/secure_closet/freezer/money,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
- },
-/area/security/nuke_storage)
-"bvh" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/space,
-/area/space/nearstation)
-"bvi" = (
-/obj/machinery/door/airlock/external{
- name = "Labor Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/simulated/shuttle/floor{
- icon = 'icons/turf/floors.dmi';
- icon_state = "dark"
- },
-/area/shuttle/siberia)
-"bvj" = (
-/turf/simulated/shuttle/wall,
-/area/shuttle/siberia)
-"bvk" = (
-/obj/machinery/mineral/stacking_machine/laborstacker{
- input_dir = 2;
- output_dir = 1
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
},
-/turf/simulated/shuttle/floor{
- icon = 'icons/turf/floors.dmi';
- icon_state = "dark"
+/area/medical/reception)
+"cKI" = (
+/obj/machinery/smartfridge/medbay,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
-/area/shuttle/siberia)
-"bvl" = (
-/obj/machinery/vending/coffee,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "Chemistry2";
+ name = "Chemistry Privacy Shutter"
},
-/obj/machinery/vending/wallmed{
- pixel_y = 30
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/machinery/door/window/eastright{
+ dir = 2;
+ name = "Chemistry Desk";
+ req_access_txt = "33"
},
-/area/security/main)
-"bvm" = (
-/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "white"
},
-/area/security/main)
-"bvn" = (
-/obj/structure/table/reinforced,
-/obj/item/taperecorder,
+/area/medical/chemistry)
+"cKM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/main)
-"bvo" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/donut_box,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "red"
- },
-/area/security/main)
-"bvp" = (
-/obj/structure/table/reinforced,
-/obj/item/ashtray/bronze{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/storage/fancy/cigarettes/cigpack_robust,
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
- },
-/area/security/main)
-"bvq" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "1"
+ icon_state = "whiteyellow"
},
-/obj/machinery/door/firedoor,
+/area/medical/chemistry)
+"cKP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -33707,539 +33718,472 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/chemistry)
+"cKQ" = (
+/turf/space,
/turf/simulated/floor/plasteel{
dir = 1
},
-/area/security/main)
-"bvv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/security/lobby)
+"cKR" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ dir = 4;
+ icon_state = "whiteyellow"
},
-/area/turret_protected/ai)
-"bvy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/medical/chemistry)
+"cKS" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/bridge)
+"cKT" = (
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = -26
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "darkblue"
},
-/area/security/hos)
-"bvA" = (
-/obj/structure/chair/wood/wings{
+/area/bridge)
+"cKU" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/crate/internals,
+/turf/simulated/floor/plasteel{
dir = 8;
- tag = "icon-wooden_chair_wings (WEST)"
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"bvC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"bvD" = (
-/obj/machinery/atmospherics/unary/heat_reservoir/heater{
- dir = 1;
- on = 1
+/area/quartermaster/storage)
+"cKV" = (
+/obj/structure/table,
+/obj/item/gun/syringe{
+ pixel_y = -2
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "arrival"
+/obj/item/gun/syringe{
+ pixel_y = 6
},
-/area/atmos)
-"bvE" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 5
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bvF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/binary/pump{
- dir = 4;
- name = "Air to Distro";
- on = 1;
- target_pressure = 101
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "caution"
+ icon_state = "white"
},
-/area/atmos)
-"bvG" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/camera{
- c_tag = "Atmospherics Distribution";
- dir = 1;
- network = list("SS13","Engineering")
- },
-/obj/machinery/atmospherics/pipe/manifold/visible,
+/area/medical/biostorage)
+"cKW" = (
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "caution"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/atmos)
-"bvH" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold4w/visible,
-/turf/simulated/floor/plasteel{
- icon_state = "caution"
+/area/quartermaster/storage)
+"cKX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/atmos)
-"bvI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/binary/pump{
- dir = 4;
- name = "Air to Waste";
- target_pressure = 101
- },
-/turf/simulated/floor/plasteel{
- icon_state = "caution"
- },
-/area/atmos)
-"bvJ" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "caution"
+ dir = 4;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/area/atmos)
-"bvK" = (
-/obj/machinery/status_display,
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"bvL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"bvM" = (
+/area/medical/biostorage)
+"cKY" = (
+/turf/simulated/wall,
+/area/medical/ward)
+"cKZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering";
- req_access_txt = "32"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"cLb" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/shuttle/plating,
+/area/shuttle/supply)
+"cLc" = (
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"bvN" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/area/quartermaster/sorting)
+"cLd" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "QMLoad2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "caution"
+ dir = 4;
+ icon_state = "brown"
},
-/area/atmos)
-"bvO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/quartermaster/storage)
+"cLe" = (
+/obj/machinery/computer/security/wooden_tv{
+ network = list("SS13","Research Outpost","Mining Outpost")
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"cLj" = (
+/obj/machinery/light_switch{
+ pixel_x = 24
},
-/area/atmos)
-"bvP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin3)
+"cLl" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/machinery/light_switch{
+ pixel_x = -24
},
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cabin4)
+"cLr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1
},
-/area/atmos)
-"bvQ" = (
+/area/security/brig)
+"cLs" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/space,
+/area/space)
+"cLx" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/atmos)
-"bvR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/engine/gravitygenerator)
+"cLz" = (
+/obj/machinery/smartfridge/secure/extract,
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
},
-/obj/machinery/door/window{
- base_state = "right";
- dir = 1;
- icon_state = "right";
- name = "Atmospherics Deliveries";
- req_access_txt = "24"
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"cLA" = (
+/obj/machinery/status_display{
+ pixel_y = -32
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/light,
+/obj/effect/decal/warning_stripes/southwest,
+/obj/structure/rack,
+/obj/item/crowbar,
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"cLC" = (
+/obj/machinery/newscaster{
+ pixel_y = -32
},
-/obj/structure/window/reinforced,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"bvS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/engine/gravitygenerator)
+"cLI" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/plasteel,
+/obj/item/wrench,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/light_switch{
+ pixel_y = -26
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"cLJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"bvT" = (
-/obj/structure/disposalpipe/segment{
+/area/engine/gravitygenerator)
+"cLL" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "sw_maint_outer";
+ locked = 1;
+ name = "West Maintenance External Access";
+ req_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"cLQ" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/port/west)
-"bvU" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
-/obj/machinery/computer/general_air_control/large_tank_control{
- frequency = 1441;
- input_tag = "mix_in";
- name = "Gas Mix Tank Control";
- output_tag = "mix_out";
- sensors = list("mix_sensor" = "Tank")
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"cLU" = (
+/obj/machinery/light{
+ dir = 4
},
+/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "green"
+ icon_state = "neutralfull"
},
/area/atmos)
-"bvV" = (
-/obj/structure/closet/firecloset,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/nw)
-"bvW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+"cLV" = (
+/obj/structure/table/reinforced,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/micro_laser,
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 28
},
-/obj/structure/rack,
-/obj/item/circuitboard/robotics{
- pixel_x = -3;
- pixel_y = 3
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
},
-/obj/item/circuitboard/mecha_control,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
/area/storage/tech)
-"bvX" = (
+"cLX" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/port)
+"cMa" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/hydroponics)
+"cMc" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"cMh" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/rack,
-/obj/item/circuitboard/communications{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/circuitboard/card,
-/obj/item/circuitboard/crew{
- pixel_x = 3;
- pixel_y = -3
+ icon_state = "1-8"
},
-/obj/effect/decal/warning_stripes/south,
+/obj/machinery/portable_atmospherics/canister,
/turf/simulated/floor/plasteel,
-/area/storage/tech)
-"bvY" = (
+/area/engine/controlroom)
+"cMi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/rack,
-/obj/item/circuitboard/aicore{
- pixel_x = -3;
- pixel_y = 3
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/circuitboard/aiupload,
-/obj/item/circuitboard/borgupload{
- pixel_x = 3;
- pixel_y = -3
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
/area/storage/tech)
-"bwb" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/floodlight,
+"cMj" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/area/hydroponics)
-"bwc" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/medical/research{
+ name = "Research Division"
+ })
+"cMk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+/area/storage/tech)
+"cMl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/bridge)
-"bwd" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"cMp" = (
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 5
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/structure/table,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteyellow"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+/area/medical/chemistry)
+"cMr" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/masks,
+/obj/item/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
},
-/turf/simulated/floor/plating,
-/area/bridge)
-"bwe" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
+ name = "Chemistry Cleaner"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteyellow"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+/area/medical/chemistry)
+"cMs" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/turf/simulated/floor/plating,
-/area/bridge)
-"bwf" = (
-/turf/simulated/wall/r_wall,
-/area/bridge)
-"bwg" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner (WEST)"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+/area/medical/biostorage)
+"cMt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/turf/simulated/floor/plating,
-/area/bridge)
-"bwh" = (
-/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/biostorage)
+"cMv" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "2-4"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/turf/simulated/floor/plating,
-/area/bridge)
-"bwi" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+/area/medical/biostorage)
+"cMw" = (
+/obj/structure/table,
+/obj/item/storage/box/bodybags{
+ pixel_x = 8
},
-/turf/simulated/floor/plating,
-/area/bridge)
-"bwj" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/item/storage/box/bodybags{
+ pixel_x = 8;
+ pixel_y = 4
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/item/storage/box/masks{
+ pixel_x = -6
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+/obj/item/storage/box/masks{
+ pixel_x = -6;
+ pixel_y = 4
},
-/turf/simulated/floor/plating,
-/area/bridge)
-"bwk" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/item/storage/box/patch_packs{
+ pixel_x = -7;
+ pixel_y = 8
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/bridge)
-"bwl" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/item/storage/box/patch_packs{
+ pixel_x = 8;
+ pixel_y = 8
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHEAST)"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+/area/medical/biostorage)
+"cMy" = (
+/obj/effect/landmark/start{
+ name = "Civilian"
},
-/turf/simulated/floor/plating,
-/area/bridge)
-"bwm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/ne)
-"bwn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "neutralfull"
},
+/area/storage/primary)
+"cMP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -34247,1499 +34191,1564 @@
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/central/ne)
-"bwo" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/hallway/primary/central/nw)
+"cMU" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
dir = 4
},
+/obj/machinery/keycard_auth,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/ne)
-"bwp" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/hallway/primary/central/ne)
-"bwq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "grimy"
},
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/security/nuke_storage)
-"bwr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/bridge)
+"cMY" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall,
+/area/bridge)
+"cNa" = (
+/obj/machinery/atmospherics/binary/pump{
+ name = "Gas to Filter"
},
-/obj/machinery/camera/motion{
- c_tag = "Vault";
- dir = 4
+/obj/machinery/light/small{
+ dir = 8
},
+/turf/simulated/floor/engine,
+/area/engine/supermatter)
+"cNb" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen/fancy,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/nuke_storage)
-"bws" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/greengrid,
-/area/security/nuke_storage)
-"bwt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/greengrid,
-/area/security/nuke_storage)
-"bwu" = (
-/turf/simulated/floor/greengrid,
-/area/security/nuke_storage)
-"bwv" = (
+/area/bridge)
+"cNe" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/nuke_storage)
-"bww" = (
-/turf/simulated/shuttle/floor,
-/area/shuttle/siberia)
-"bwx" = (
-/obj/machinery/mineral/labor_claim_console{
- machinedir = 1;
- pixel_x = 30
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/siberia)
-"bwy" = (
-/obj/effect/spawner/window/reinforced,
+/area/bridge)
+"cNg" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"bwz" = (
-/obj/structure/chair{
+/area/maintenance/engrooms)
+"cNh" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
+ },
+/area/engine/controlroom)
+"cNl" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/chair/office/light{
dir = 4;
- icon_state = "red"
+ pixel_y = 3
},
-/area/security/main)
-"bwC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"cNn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random_spawners/blood_maybe,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "neutral"
},
-/obj/structure/chair{
- dir = 4
+/area/maintenance/engrooms)
+"cNt" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cNw" = (
+/obj/structure/table,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cNA" = (
+/obj/structure/chair/office/dark,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"cNB" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/ne)
+"cNC" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "whitepurplecorner"
},
/area/medical/research{
name = "Research Division"
})
-"bwF" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"bwI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
+"cNI" = (
+/turf/simulated/wall,
+/area/medical/reception)
+"cNJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/turret_protected/ai)
-"bwK" = (
-/obj/structure/window/reinforced{
- dir = 8
+/area/quartermaster/office)
+"cNT" = (
+/obj/structure/sign/electricshock,
+/turf/simulated/wall/r_wall,
+/area/atmos)
+"cNV" = (
+/obj/machinery/atmospherics/unary/vent_pump,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cNW" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/structure/window/reinforced,
-/turf/space,
-/area/space/nearstation)
-"bwM" = (
-/obj/machinery/light/small{
- dir = 1
+/obj/item/storage/firstaid/brute{
+ pixel_x = 4;
+ pixel_y = 4
},
-/obj/machinery/camera{
- c_tag = "Arrivals Shuttle South"
+/obj/item/storage/firstaid/brute{
+ pixel_x = 2;
+ pixel_y = 2
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"bwN" = (
-/turf/simulated/wall/r_wall,
-/area/engine/gravitygenerator)
-"bwP" = (
-/turf/simulated/wall/r_wall,
-/area/engine/break_room)
-"bwQ" = (
-/obj/machinery/ai_status_display,
-/turf/simulated/wall/r_wall,
-/area/engine/break_room)
-"bwR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/engine/break_room)
-"bwS" = (
-/obj/machinery/status_display,
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/wall/r_wall,
-/area/engine/break_room)
-"bwT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/engine/break_room)
-"bwU" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/wall/r_wall,
-/area/engine/break_room)
-"bwV" = (
-/obj/structure/table/reinforced,
-/obj/machinery/kitchen_machine/microwave,
-/obj/structure/sign/poster/official/help_others{
- pixel_x = -32
+/obj/item/storage/firstaid/brute,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/area/engine/break_room)
-"bwW" = (
-/obj/machinery/light/small{
- dir = 1
+/area/medical/biostorage)
+"cNX" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+/obj/item/storage/firstaid/o2{
+ pixel_x = 4;
+ pixel_y = 4
},
-/area/engine/break_room)
-"bwX" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 22
+/obj/item/storage/firstaid/o2{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/firstaid/o2,
+/obj/machinery/light_switch{
+ pixel_y = -25
},
-/obj/item/reagent_containers/spray/cleaner/drone,
/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/area/engine/break_room)
-"bwY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small{
- dir = 8
+/area/medical/biostorage)
+"cNZ" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "vault"
},
-/obj/structure/closet/firecloset,
-/obj/machinery/firealarm{
- pixel_x = -32;
- pixel_y = 24
+/area/engine/gravitygenerator)
+"cOa" = (
+/obj/structure/bed,
+/obj/item/radio/intercom{
+ pixel_x = -32
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -22
+/obj/structure/curtain/open,
+/obj/item/bedsheet/medical{
+ level = 1.4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bwZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bxa" = (
+/area/medical/ward)
+"cOb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/camera{
- c_tag = "Atmos Hatch";
- dir = 8;
- network = list("Engineering","SS13");
- pixel_y = -22
- },
-/obj/machinery/recharge_station,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bxb" = (
-/obj/structure/table/reinforced,
-/obj/item/wrench,
-/obj/item/crowbar,
-/obj/item/analyzer,
-/obj/machinery/newscaster{
- pixel_x = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "bcarpet05"
},
-/obj/machinery/camera{
- c_tag = "Atmospherics Front Desk";
- dir = 4;
- network = list("SS13","Engineering")
+/area/medical/ward)
+"cOc" = (
+/obj/item/bedsheet/medical{
+ level = 1.4
},
+/obj/structure/bed,
+/obj/structure/curtain/open,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "caution"
+ dir = 6;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/atmos)
-"bxc" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
+/area/medical/ward)
+"cOd" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- icon_state = "caution"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/atmos)
-"bxd" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/structure/cable,
+/area/medical/ward)
+"cOe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/atmos)
-"bxe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/primary/port/west)
-"bxf" = (
+/area/quartermaster/delivery)
+"cOf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"cOh" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "browncorner"
},
-/area/hallway/primary/port/west)
-"bxg" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 4
+/area/quartermaster/storage)
+"cOj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random_spawners/blood_maybe,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cOl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/wrench,
-/obj/item/clothing/mask/gas,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "caution"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/hallway/primary/port/west)
-"bxh" = (
-/turf/simulated/wall/r_wall,
-/area/storage/tech)
-"bxi" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/ne)
-"bxj" = (
-/obj/machinery/light/small{
- dir = 8
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cOm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/tech)
-"bxk" = (
-/obj/machinery/light/small{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Secure Technical Storage";
- dir = 8
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/tech)
-"bxl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cOn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/hallway/primary/central/nw)
-"bxm" = (
-/obj/machinery/computer/card,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/bridge)
-"bxn" = (
-/obj/machinery/computer/crew,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkblue"
+ icon_state = "neutralcorner"
},
-/area/bridge)
-"bxo" = (
+/area/hallway/primary/fore)
+"cOs" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/computer/med_data,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/bridge)
-"bxp" = (
-/obj/structure/table/reinforced,
-/obj/item/restraints/handcuffs,
-/obj/item/flash,
-/obj/machinery/ai_status_display{
- pixel_y = 32
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/area/bridge)
-"bxq" = (
-/obj/machinery/computer/prisoner,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/bridge)
-"bxr" = (
+/area/hallway/primary/fore)
+"cOt" = (
+/obj/structure/table/wood,
+/obj/item/ashtray/bronze{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/storage/fancy/cigarettes/cigpack_robust,
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"cOu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/computer/security{
- network = list("SS13","Mining Outpost")
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Transit Tube";
+ req_one_access_txt = "32;19"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/aienter)
+"cOv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/bridge)
-"bxs" = (
-/obj/machinery/computer/secure_data,
-/turf/simulated/floor/plasteel{
+/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "darkred"
+ icon_state = "pipe-c"
},
-/area/bridge)
-"bxt" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/mechanical,
-/obj/machinery/status_display{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/bridge)
-"bxu" = (
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"cOw" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/computer/station_alert,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkyellow"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/bridge)
-"bxv" = (
-/obj/machinery/computer/atmos_alert,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkyellow"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/bridge)
-"bxw" = (
-/obj/machinery/computer/monitor,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkyellow"
+/obj/machinery/door/airlock/maintenance{
+ name = "Cargo Bay Maintenance";
+ req_access_txt = "31"
},
-/area/bridge)
-"bxy" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/light,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bxz" = (
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"cOx" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/crate/medical,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
initialize_directions = 11
},
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/sorting)
+"cOy" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/primary/central/ne)
-"bxA" = (
+/area/quartermaster/storage)
+"cOz" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "1-8"
},
-/area/hallway/primary/central/ne)
-"bxB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/airlock/vault{
- icon_state = "door_locked";
- locked = 1;
- req_access_txt = "53"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/nuke_storage)
-"bxC" = (
+/area/quartermaster/sorting)
+"cOA" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/virology)
+"cOC" = (
+/obj/machinery/light/small{
dir = 4
},
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"cOF" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j1 (WEST)"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/nuke_storage)
-"bxD" = (
+/area/quartermaster/storage)
+"cOI" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "2-8"
},
-/turf/simulated/floor/greengrid,
-/area/security/nuke_storage)
-"bxE" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ icon_state = "1-8"
},
-/obj/machinery/nuclearbomb,
-/turf/simulated/floor/plasteel,
-/area/security/nuke_storage)
-"bxF" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/greengrid,
-/area/security/nuke_storage)
-"bxG" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"cOL" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/nuke_storage)
-"bxH" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
+ icon_state = "whitehall"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/siberia)
-"bxI" = (
-/obj/machinery/flasher{
- id = "gulagshuttleflasher";
- pixel_x = 25
+/area/toxins/xenobiology)
+"cOM" = (
+/obj/effect/decal/cleanable/blood/xeno,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/light{
- dir = 4
+/area/toxins/xenobiology)
+"cOO" = (
+/obj/structure/closet/secure_closet/injection,
+/obj/effect/decal/warning_stripes/red,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -30
},
-/obj/structure/chair/comfy/shuttle{
- dir = 8
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/siberia)
-"bxJ" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "neutral"
+ icon_state = "dark"
},
-/area/security/main)
-"bxK" = (
+/area/security/execution)
+"cOP" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "neutral"
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/security/main)
-"bxL" = (
-/obj/structure/chair/wood/wings{
- dir = 4;
- tag = "icon-wooden_chair_wings (EAST)"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/effect/landmark/start{
- name = "Civilian"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"bxM" = (
-/obj/item/radio/intercom{
- pixel_x = 28
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/obj/effect/landmark{
+ name = "lightsout"
},
-/area/atmos)
-"bxO" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "brown"
+ icon_state = "purplefull"
},
-/area/security/prisonlockers)
-"bxW" = (
-/turf/simulated/wall,
-/area/security/execution)
-"bxX" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"bxZ" = (
+/area/toxins/xenobiology)
+"cOR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/turret_protected/ai)
-"byd" = (
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/quartermaster/storage)
+"cOS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/turret_protected/ai)
-"byf" = (
+/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
- },
-/area/turret_protected/ai)
-"byh" = (
-/obj/machinery/vending/coffee,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"byi" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"byj" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "atmo_tank_outer";
- locked = 1;
- name = "Atmos External Access";
- req_access = null;
- req_access_txt = "32"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"byk" = (
-/obj/machinery/light/small{
- dir = 4;
- tag = "icon-bulb1 (EAST)"
+/area/quartermaster/storage)
+"cOT" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/slime_scanner,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -29
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"byl" = (
-/turf/simulated/wall,
-/area/engine/break_room)
-"bym" = (
-/obj/structure/table/reinforced,
-/obj/structure/sign/nosmoking_2{
- pixel_y = 32
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"cOU" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"cOY" = (
/obj/machinery/light/small{
dir = 1
},
-/obj/item/wrench,
-/obj/item/crowbar,
-/obj/item/stack/sheet/glass/fifty,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"byn" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/electrical,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"byo" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/engine/break_room)
-"byp" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/rglass,
-/obj/item/stack/rods,
-/obj/item/stack/cable_coil/random,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cPa" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"byq" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light/small{
- dir = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/item/stack/sheet/plasteel,
-/obj/item/wrench,
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/portable_atmospherics/canister,
/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"byr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/engine/break_room)
-"bys" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal,
-/turf/simulated/floor/plating,
-/area/engine/break_room)
-"byt" = (
-/obj/structure/table/reinforced,
-/obj/machinery/newscaster{
- pixel_x = -32
- },
-/obj/item/storage/box/donkpockets,
+/area/engine/controlroom)
+"cPd" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+ icon_state = "white"
},
-/area/engine/break_room)
-"byu" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cPe" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/white,
+/obj/item/stock_parts/cell/high,
+/obj/item/stack/sheet/glass,
+/obj/item/stack/sheet/glass,
+/obj/item/stack/sheet/glass,
/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+ dir = 8;
+ icon_state = "vault"
},
-/area/engine/break_room)
-"byv" = (
-/obj/machinery/vending/cola,
-/obj/machinery/newscaster{
- pixel_x = 32
+/area/storage/tech)
+"cPf" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/area/engine/break_room)
-"byw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/nosmoking_2,
-/turf/simulated/wall/r_wall,
-/area/engine/break_room)
-"byx" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering";
- req_access_txt = "32"
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"cPg" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cautioncorner"
},
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"byy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/engine/break_room)
-"byz" = (
+/area/storage/primary)
+"cPi" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/obj/machinery/computer/monitor{
- name = "Grid Power Monitoring Computer"
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "caution"
+/obj/machinery/power/compressor{
+ comp_id = "incineratorturbine";
+ dir = 4;
+ luminosity = 2
},
-/area/atmos)
-"byA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/chair/office/dark{
- dir = 8
+ icon_state = "4-8"
},
+/turf/simulated/floor/engine,
+/area/maintenance/turbine)
+"cPj" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/atmos)
-"byB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/storage/primary)
+"cPk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/hologram/holopad,
-/obj/effect/landmark/start{
- name = "Life Support Specialist"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/atmos)
-"byC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"byD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/obj/structure/chair/office/dark{
+/area/medical/research/nhallway)
+"cPl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 8;
icon_state = "caution"
},
-/area/atmos)
-"byE" = (
+/area/engine/controlroom)
+"cPm" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/engine,
+/area/maintenance/turbine)
+"cPq" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cPt" = (
+/obj/machinery/door/airlock/glass{
+ autoclose = 0;
+ frequency = 1449;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "gas_turbine_interior";
+ locked = 1;
+ name = "Turbine Interior Airlock";
+ req_access_txt = "12"
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ master_tag = "turbine_control";
+ name = "Gas Turbine Access Button";
+ pixel_x = -1;
+ pixel_y = 22
},
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/table/reinforced,
-/obj/item/folder/yellow,
-/obj/item/pen,
-/obj/machinery/door/window{
- name = "Atmospherics Desk"
+ icon_state = "4-8"
},
-/obj/machinery/door/window{
- dir = 8;
- name = "Atmospherics Desk";
- req_access_txt = "24"
+/turf/simulated/floor/engine,
+/area/maintenance/turbine)
+"cPu" = (
+/obj/structure/table,
+/obj/item/clipboard,
+/obj/item/paper,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"byF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/security/permabrig)
+"cPy" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+ icon_state = "white"
},
-/area/hallway/primary/port/west)
-"byG" = (
+/area/medical/reception)
+"cPz" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 6;
- initialize_directions = 6
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ tag = "icon-pipe-j1 (EAST)"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/port/west)
-"byH" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 8
+ icon_state = "whiteyellow"
},
-/obj/machinery/camera{
- c_tag = "Port Hallway North";
+/area/medical/chemistry)
+"cPA" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/toy/figure/captain,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"cPC" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 8
},
-/obj/machinery/portable_atmospherics/pump,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "arrival"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/primary/port/west)
-"byI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/engine/controlroom)
+"cPE" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/engine,
+/area/medical/chemistry)
+"cPF" = (
+/obj/machinery/smartfridge/medbay,
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ desc = "You have the public fridge, pal, lube off.";
+ dir = 2;
+ icon_state = "left";
+ name = "Anti-Theft Shield";
+ req_access_txt = "5"
+ },
+/turf/simulated/floor/plating,
+/area/medical/chemistry)
+"cPG" = (
+/obj/effect/decal/cleanable/blood/xeno,
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/maintenance/xenozoo)
+"cPI" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/maintenance/turbine)
+"cPJ" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "construction access"
+ },
+/obj/structure/barricade/wooden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cPK" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "caution"
},
+/area/maintenance/turbine)
+"cPL" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "0-4"
},
-/obj/machinery/door/airlock/highsecurity{
- name = "Secure Tech Storage";
- req_access_txt = "19;23"
+/turf/simulated/floor/plating,
+/area/medical/biostorage)
+"cPM" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = "MedbayFoyer";
+ name = "Medical Supplies";
+ req_access_txt = "5"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/storage/tech)
-"byJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/poster/contraband/random{
- pixel_x = 32;
- pixel_y = -32
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"byK" = (
+/area/medical/biostorage)
+"cPN" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plating,
+/area/medical/biostorage)
+"cPO" = (
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHWEST)"
},
+/area/medical/medbay)
+"cPX" = (
+/obj/effect/decal/warning_stripes/northwestcorner,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 6
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"byL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/obj/structure/cable{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
+ icon_state = "2-4"
},
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"cQb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"byM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"byN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/fore)
-"byO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"cQh" = (
+/obj/machinery/computer/arcade/battle,
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"cQj" = (
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"cQk" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cQm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 8;
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/west)
-"byP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/hallway/primary/central/south)
+"cQo" = (
+/obj/machinery/light/small{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/area/hallway/primary/central/nw)
-"byQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"cQp" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Подаёт азот из атмосферки в систему охлаждения реактора, таким образом запитывая её хладагентом";
+ dir = 1;
+ name = "Труба подачи азота в реактор"
},
-/obj/machinery/light{
- dir = 4
+/turf/space,
+/area/space/nearstation)
+"cQq" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/folder/red,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"cQr" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway West 1";
- dir = 8
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"cQu" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ location = "Clown"
},
-/obj/item/radio/intercom{
- pixel_x = 28
+/obj/structure/plasticflaps{
+ opacity = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "bar"
},
-/area/hallway/primary/central/nw)
-"byR" = (
+/area/clownoffice)
+"cQv" = (
/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/regular,
-/obj/item/radio/intercom{
- dir = 8;
- pixel_x = -28
+/obj/structure/window/reinforced,
+/obj/machinery/door_control{
+ id = "xenosecure";
+ name = "Containment Control";
+ pixel_y = 2;
+ req_access_txt = "55"
},
-/obj/machinery/light{
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"cQz" = (
+/obj/structure/shuttle/engine/propulsion/burst{
dir = 8
},
-/turf/simulated/floor/plasteel{
+/turf/simulated/floor/plating,
+/area/shuttle/pod_3)
+"cQB" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/structure/closet/secure_closet/clown,
+/obj/item/clothing/under/soldieruniform,
+/obj/item/clothing/suit/soldiercoat,
+/obj/machinery/light{
dir = 1;
- icon_state = "darkbluecorners"
+ on = 1
},
-/area/bridge)
-"byS" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "bar"
+ },
+/area/clownoffice)
+"cQH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/shower{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "whitehall"
+ },
+/area/toxins/xenobiology)
+"cQK" = (
+/obj/item/flag/clown,
+/obj/machinery/power/apc{
+ pixel_y = 26
},
-/area/bridge)
-"byT" = (
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/chair/office/dark{
- dir = 1
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "bar"
},
-/area/bridge)
-"byU" = (
+/area/clownoffice)
+"cQN" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/bridge)
-"byV" = (
-/obj/structure/chair/office/dark{
- dir = 1
+/area/toxins/xenobiology)
+"cQP" = (
+/obj/machinery/suit_storage_unit/clown,
+/obj/machinery/door_control{
+ id = "Clown";
+ name = "Clowns Privacy Shutters Control";
+ pixel_y = 26
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24;
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "bar"
},
-/area/bridge)
-"byW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/clownoffice)
+"cQQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/area/bridge)
-"byX" = (
-/obj/structure/chair/office/dark{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/area/bridge)
-"byY" = (
-/obj/structure/table/reinforced,
-/obj/item/assembly/timer,
-/obj/item/assembly/signaler,
-/obj/item/wrench,
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"cQR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/machinery/light{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "1-8"
},
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"cQS" = (
+/obj/structure/barricade/wooden,
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cQU" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"cQV" = (
+/obj/structure/safe,
+/obj/item/stack/ore/bluespace_crystal,
+/obj/item/stack/ore/bluespace_crystal,
+/obj/item/stack/ore/bluespace_crystal,
+/obj/item/stack/ore/bluespace_crystal,
+/obj/item/stack/ore/bluespace_crystal,
+/obj/item/grown/bananapeel/bluespace,
+/obj/item/slime_extract/bluespace,
+/obj/item/stack/telecrystal,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cQW" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkyellowcorners"
+ dir = 9;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (NORTHWEST)"
},
-/area/bridge)
-"byZ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/medical/genetics)
+"cRb" = (
+/obj/machinery/autolathe,
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ id = "Autolathe";
+ name = "Autolathe Access";
+ req_access_txt = "47"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "researchdesk1";
+ name = "Research Desk Shutters";
+ opacity = 0
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plating,
-/area/bridge)
-"bza" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
+/area/toxins/lab)
+"cRe" = (
+/obj/structure/chair{
+ dir = 4
},
-/obj/machinery/firealarm{
+/turf/simulated/floor/plasteel{
dir = 8;
- pixel_x = -28
+ icon_state = "red"
+ },
+/area/security/lobby)
+"cRf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/structure/table/reinforced,
+/obj/item/folder/yellow,
+/obj/item/lightreplacer,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/stack/tape_roll,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "neutralfull"
},
-/area/hallway/primary/central/ne)
-"bzb" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/ne)
-"bzc" = (
-/obj/structure/sign/electricshock,
-/turf/simulated/wall/r_wall,
-/area/security/nuke_storage)
-"bzd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/greengrid,
-/area/security/nuke_storage)
-"bze" = (
-/obj/structure/closet/crate,
-/turf/simulated/shuttle/floor,
-/area/shuttle/siberia)
-"bzf" = (
-/obj/machinery/door/airlock/shuttle{
- id_tag = "s_docking_airlock";
- name = "Labor Shuttle Airlock"
+/area/engine/break_room)
+"cRg" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 2;
- height = 5;
- id = "laborcamp";
- name = "labor camp shuttle";
- rebuildable = 1;
- width = 9
+/area/medical/reception)
+"cRh" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/applicator{
+ pixel_x = 6;
+ pixel_y = 7
},
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 2;
- height = 5;
- id = "laborcamp_home";
- name = "fore bay 1";
- width = 9
+/obj/item/reagent_containers/applicator{
+ pixel_x = 6;
+ pixel_y = 7
+ },
+/obj/structure/table/glass,
+/obj/item/reagent_containers/glass/beaker/large{
+ pixel_x = -5;
+ pixel_y = 1
+ },
+/obj/item/reagent_containers/glass/beaker/large{
+ pixel_x = -5;
+ pixel_y = 1
+ },
+/obj/item/reagent_containers/glass/beaker/large{
+ pixel_x = -5;
+ pixel_y = 1
+ },
+/obj/item/reagent_containers/glass/beaker/large{
+ pixel_x = -5;
+ pixel_y = 1
},
-/obj/structure/fans/tiny,
-/turf/simulated/shuttle/floor,
-/area/shuttle/siberia)
-"bzg" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/item/reagent_containers/applicator{
+ pixel_x = 6;
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/applicator{
+ pixel_x = 6;
+ pixel_y = 7
+ },
+/turf/simulated/floor/plasteel{
dir = 1;
- on = 1
+ icon_state = "whiteyellow"
+ },
+/area/medical/chemistry)
+"cRi" = (
+/obj/item/radio/intercom{
+ pixel_x = -28;
+ pixel_y = -3
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/security/main)
-"bzh" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
+/area/medical/biostorage)
+"cRj" = (
+/obj/effect/decal/warning_stripes/blue,
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Briefing Room 1";
- dir = 4;
- network = list("SS13","Security")
+/obj/item/storage/firstaid/o2,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/medical/sleeper)
+"cRk" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ icon_state = "white"
},
-/area/security/main)
-"bzi" = (
+/area/medical/biostorage)
+"cRm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/brig,
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "brown"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/prisonlockers)
-"bzj" = (
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/main)
-"bzk" = (
-/obj/effect/landmark/start{
- name = "Security Officer"
+/area/quartermaster/storage)
+"cRn" = (
+/obj/machinery/door_control{
+ id = "QMLoaddoor2";
+ layer = 4;
+ name = "Loading Doors";
+ pixel_x = 24;
+ pixel_y = 8
},
-/obj/effect/decal/warning_stripes/yellow/partial,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+/obj/machinery/door_control{
+ id = "QMLoaddoor";
+ layer = 4;
+ name = "Loading Doors";
+ pixel_x = 24;
+ pixel_y = -8
},
-/area/security/main)
-"bzl" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/machinery/camera{
+ c_tag = "Cargo Shuttle Airlock";
+ dir = 8
},
-/area/security/main)
-"bzt" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/brig,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/machinery/light{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"cRo" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
},
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"cRq" = (
/obj/machinery/light{
dir = 1;
on = 1
},
-/obj/machinery/camera{
- c_tag = "Labor Camp Room";
- network = list("SS13","Security")
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "brown"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/security/prisonlockers)
-"bzu" = (
-/obj/machinery/light/small{
- dir = 1
+/area/medical/ward)
+"cRr" = (
+/obj/machinery/vending/wallmed{
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "yellow"
},
-/area/engine/mechanic_workshop/hanger)
-"bzw" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+/area/engine/break_room)
+"cRz" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"bzx" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Kitchen";
- req_access_txt = "28"
- },
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/crew_quarters/kitchen)
-"bzy" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+ dir = 8;
+ icon_state = "vault"
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/tcommsat/chamber)
+"cRB" = (
+/obj/structure/chair/office/light{
+ dir = 8
},
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"cRC" = (
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "red"
+ icon_state = "darkred"
},
-/area/security/permabrig)
-"bzz" = (
+/area/security/interrogation)
+"cRE" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cRK" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8;
+ name = "Gas to Cooling Loop"
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cRT" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/northeastcorner,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cRU" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitehall"
+ },
+/area/toxins/xenobiology)
+"cRW" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door_control{
+ id = "xeno1";
+ name = "Containment Control";
+ req_access_txt = "55"
+ },
+/obj/structure/window/reinforced{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26;
+ pixel_y = -32
},
-/obj/structure/cable{
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"cRX" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
+ },
+/area/toxins/xenobiology)
+"cRY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"cSa" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/machinery/meter,
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"cSb" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/security/permabrig)
-"bzA" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaCellsLockdown";
- name = "Perma Cells Lockdown"
+/obj/structure/table,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "brown"
},
+/area/quartermaster/delivery)
+"cSc" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
/turf/simulated/floor/plating,
-/area/security/permabrig)
-"bzB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cSd" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
},
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cSe" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -35750,3735 +35759,3678 @@
d2 = 4;
icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/permabrig)
-"bzC" = (
-/turf/simulated/wall,
-/area/security/brig)
-"bzD" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/area/turret_protected/ai)
-"bzE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravitygenerator)
-"bzF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/quartermaster/delivery)
+"cSf" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravitygenerator)
-"bzG" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 4;
+ icon_state = "brown"
},
-/obj/structure/sign/electricshock{
- pixel_y = 32
+/area/quartermaster/storage)
+"cSh" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"cSp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/closet/crate,
+/obj/item/flashlight,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/engine/gravitygenerator)
-"bzH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/area/maintenance/asmaint2)
+"cSu" = (
/obj/machinery/status_display{
+ layer = 4;
pixel_y = 32
},
-/obj/machinery/light{
- dir = 1;
- on = 1
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
+"cSx" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bzI" = (
+/area/engine/controlroom)
+"cSy" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bzJ" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"cSA" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/power/terminal{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
},
-/obj/item/radio/intercom{
- pixel_y = 26
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/camera{
- c_tag = "Gravity Generator Area";
- network = list("SS13","Engineering")
+/area/engine/controlroom)
+"cSB" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bzK" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ icon_state = "2-4"
},
-/obj/effect/decal/cleanable/cobweb2,
+/obj/effect/landmark/start{
+ name = "Internal Affairs Agent"
+ },
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"cSF" = (
/obj/machinery/power/smes{
charge = 5e+006
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = 22
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bzL" = (
-/turf/simulated/wall,
-/area/engine/gravitygenerator)
-"bzM" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- frequency = 1331;
- id_tag = "atmo_tank_vent"
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "atmo_tank_airlock";
- pixel_x = 57;
- req_access_txt = "32";
- tag_airpump = "atmo_tank_pump";
- tag_chamber_sensor = "atmo_tank_sensor";
- tag_exterior_door = "atmo_tank_outer";
- tag_interior_door = "atmo_tank_inner"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/airlock_sensor{
- id_tag = "atmo_tank_sensor";
- pixel_x = 57;
- pixel_y = 8
+/area/turret_protected/ai)
+"cSG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bzN" = (
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bzO" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/engine/controlroom)
+"cSI" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "neutral"
},
+/area/maintenance/engrooms)
+"cSJ" = (
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/engine/break_room)
-"bzP" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bzQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/turf/simulated/wall,
-/area/engine/break_room)
-"bzR" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/wall,
-/area/engine/break_room)
-"bzS" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
+/obj/structure/closet/secure_closet/bar,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/engine/break_room)
-"bzT" = (
-/obj/machinery/vending/snack,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+/area/crew_quarters/bar)
+"cSK" = (
+/obj/structure/chair{
+ dir = 4
},
-/area/engine/break_room)
-"bzU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bzV" = (
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"cSL" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bzW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bzX" = (
-/obj/machinery/computer/atmoscontrol,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "caution"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/atmos)
-"bzY" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/atmos)
-"bzZ" = (
-/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/atmos)
-"bAa" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/area/medical/chemistry)
+"cSO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whiteyellowfull"
+ },
+/area/medical/chemistry)
+"cTc" = (
+/obj/structure/window/reinforced,
+/obj/machinery/arcade/claw,
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"cTf" = (
+/turf/simulated/wall/r_wall,
+/area/engine/aienter)
+"cTg" = (
+/turf/simulated/wall,
+/area/maintenance/electrical)
+"cTi" = (
+/turf/simulated/wall,
+/area/maintenance/xenozoo)
+"cTj" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/obj/machinery/camera{
+ c_tag = "Bar Backroom"
},
-/area/atmos)
-"bAb" = (
-/obj/structure/table/reinforced,
-/obj/item/tank/emergency_oxygen,
-/obj/item/tank/emergency_oxygen,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/crew_quarters/bar)
+"cTl" = (
+/obj/machinery/atmospherics/unary/outlet_injector/on{
dir = 4;
- icon_state = "caution"
+ frequency = 1441;
+ id = "mix_in"
},
-/area/atmos)
-"bAc" = (
+/turf/simulated/floor/engine,
+/area/maintenance/turbine)
+"cTo" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/turf/simulated/floor/plating,
-/area/atmos)
-"bAd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/universal{
+/area/crew_quarters/chief)
+"cTr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"cTu" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/applicator/burn,
+/obj/item/reagent_containers/glass/bottle/charcoal,
+/obj/machinery/camera{
+ c_tag = "Medbay Genetics Office";
+ network = list("Medical","SS13")
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "yellowcorner"
+ icon_state = "whitepurple"
},
-/area/hallway/primary/port/west)
-"bAe" = (
+/area/medical/genetics)
+"cTz" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno2";
+ name = "Creature Cell #4";
+ opacity = 0
},
-/area/hallway/primary/port/west)
-"bAf" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 8
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"cTA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/portable_atmospherics/pump,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "arrival"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/hallway/primary/port/west)
-"bAg" = (
-/obj/structure/table/reinforced,
-/obj/item/plant_analyzer,
-/obj/item/plant_analyzer,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "whitepurple"
},
-/area/storage/tech)
-"bAh" = (
-/obj/structure/table/reinforced,
-/obj/item/analyzer,
-/obj/item/assembly/signaler,
-/obj/effect/decal/warning_stripes/yellow,
+/area/toxins/xenobiology)
+"cTB" = (
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/storage/tech)
-"bAi" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow,
+/area/toxins/lab)
+"cTE" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/floor/engine,
+/area/maintenance/turbine)
+"cTG" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/storage/tech)
-"bAj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/toxins/xenobiology)
+"cTH" = (
+/obj/structure/sign/fire,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall/coated,
+/area/maintenance/turbine)
+"cTL" = (
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/maintenance/xenozoo)
+"cTM" = (
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/storage/tech)
-"bAk" = (
-/obj/structure/table/reinforced,
-/obj/item/mmi,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -6;
- pixel_y = 32
+/obj/machinery/drone_fabricator,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
+ },
+/area/engine/break_room)
+"cTO" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -29
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 10;
+ icon_state = "yellow"
},
-/area/storage/tech)
-"bAl" = (
+/area/engine/break_room)
+"cTP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "purplecorner"
+ },
+/area/hallway/primary/aft)
+"cTQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"bAm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"bAn" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "26"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/janitor)
-"bAo" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
+/area/hallway/secondary/entry/louge)
+"cTR" = (
+/obj/machinery/r_n_d/destructive_analyzer,
+/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bAp" = (
-/obj/structure/table/reinforced,
-/obj/item/aiModule/reset,
-/obj/item/flash,
-/obj/item/flash,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/storage/tech)
-"bAq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/area/toxins/lab)
+"cTS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/computer/monitor{
+ name = "Grid Power Monitoring Computer"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "yellow"
},
+/area/engine/engineering/monitor)
+"cTU" = (
+/obj/machinery/computer/rdconsole/core,
+/obj/effect/decal/warning_stripes/southwest,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"cTV" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall/r_wall,
+/area/medical/chemistry)
+"cTZ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "white"
},
-/area/crew_quarters/serviceyard)
-"bAr" = (
-/obj/item/twohanded/required/kirbyplants,
+/area/medical/chemistry)
+"cUa" = (
/obj/machinery/light/small{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
-"bAs" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/machinery/status_display{
+ pixel_y = 32
},
-/area/bridge)
-"bAt" = (
-/obj/item/twohanded/required/kirbyplants,
+/obj/structure/closet/secure_closet/bar,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/bridge)
-"bAu" = (
-/obj/machinery/vending/cola,
+/area/crew_quarters/bar)
+"cUb" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "whiteyellow"
},
-/area/bridge)
-"bAv" = (
-/obj/machinery/vending/snack,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+/area/medical/chemistry)
+"cUe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/bridge)
-"bAw" = (
-/obj/machinery/computer/security/mining,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkpurple"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/area/bridge)
-"bAx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/computer/supplycomp,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkyellow"
+ icon_state = "whiteyellow"
},
-/area/bridge)
-"bAy" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/mining_voucher,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/medical/chemistry)
+"cUf" = (
+/obj/structure/closet/crate,
+/obj/item/retractor,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"cUj" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
},
-/area/bridge)
-"bAz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 26
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/effect/landmark{
- name = "Marauder Entry"
+/area/crew_quarters/bar)
+"cUk" = (
+/obj/structure/table,
+/obj/item/storage/box/gloves{
+ pixel_x = -4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/item/storage/box/gloves{
+ pixel_x = -4;
+ pixel_y = 4
},
-/area/bridge)
-"bAA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/item/storage/box/beakers{
+ pixel_x = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/item/storage/box/beakers{
+ pixel_x = 8;
+ pixel_y = 4
},
-/obj/effect/landmark{
- name = "Marauder Entry"
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -26
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable,
+/obj/item/storage/box/iv_bags{
+ pixel_x = -4;
+ pixel_y = 8
},
-/area/bridge)
-"bAB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/item/storage/box/iv_bags{
+ pixel_x = 8;
+ pixel_y = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 10;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (SOUTHWEST)"
},
-/area/bridge)
-"bAC" = (
-/obj/structure/table/reinforced,
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the RD's goons from the safety of his office.";
- name = "Research Monitor";
- network = list("Research","Research Outpost","RD");
- pixel_y = 2
+/area/medical/biostorage)
+"cUn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/bridge)
-"bAD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/medical/biostorage)
+"cUs" = (
+/obj/structure/table/wood,
+/obj/structure/sign/barsign{
+ pixel_y = 32
},
-/obj/machinery/computer/robotics,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/chem_dispenser/soda,
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_x = -32;
+ pixel_y = 0
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkpurple"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/bridge)
-"bAE" = (
-/obj/machinery/computer/aifixer,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkpurple"
+/area/crew_quarters/bar)
+"cUu" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
-/area/bridge)
-"bAF" = (
-/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "cautioncorner"
},
-/area/bridge)
-"bAG" = (
-/obj/machinery/vending/cigarette,
+/area/hallway/primary/port/west)
+"cUx" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/beer,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/bridge)
-"bAH" = (
+/area/crew_quarters/bar)
+"cUy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "bluecorner"
- },
-/area/hallway/primary/central/ne)
-"bAI" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/light/small,
-/obj/structure/closet/crate,
-/obj/item/storage/belt/champion,
-/obj/item/stack/sheet/mineral/gold,
-/obj/item/stack/sheet/mineral/gold,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault"
+ icon_state = "neutralcorner"
},
-/area/security/nuke_storage)
-"bAJ" = (
-/obj/machinery/ai_status_display{
- pixel_y = -32
+/area/hallway/primary/central/south)
+"cUz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"cUB" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/area/solar/port)
+"cUF" = (
+/obj/machinery/vending/boozeomat,
+/obj/machinery/status_display{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
- },
-/area/security/nuke_storage)
-"bAK" = (
-/obj/machinery/light/small,
-/obj/item/clothing/head/bearpelt,
-/obj/item/folder/documents,
-/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,
-/obj/item/lighter/zippo/nt_rep,
-/obj/item/storage/fancy/cigarettes/cigpack_robustgold,
-/obj/item/stack/spacecash/c1000{
- amount = 100000
- },
-/obj/structure/safe{
- known_by = list("captain")
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
+/area/crew_quarters/bar)
+"cUI" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault"
- },
-/area/security/nuke_storage)
-"bAL" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+ icon_state = "caution"
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/siberia)
-"bAM" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/atmos)
+"cUK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cUL" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/flashlight,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"cUN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
},
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/main)
-"bAN" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/spawner/window/reinforced,
+/area/storage/primary)
+"cUQ" = (
+/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/nw)
+"cUS" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/xenozoo)
+"cUU" = (
+/obj/structure/sign/electricshock,
+/turf/simulated/wall,
+/area/toxins/xenobiology)
+"cUW" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"cUY" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/landmark/start{
+ name = "Scientist"
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"bAO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow/partial,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/security/main)
-"bAP" = (
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"cUZ" = (
+/obj/machinery/r_n_d/circuit_imprinter,
+/obj/item/reagent_containers/glass/beaker/sulphuric,
+/obj/effect/decal/warning_stripes/southeast,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"cVb" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
- },
-/area/security/main)
-"bAQ" = (
-/obj/structure/table/reinforced,
-/obj/item/restraints/handcuffs{
- pixel_y = -3
- },
-/obj/item/restraints/handcuffs,
-/obj/item/restraints/handcuffs{
- pixel_y = 3
- },
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/main)
-"bAU" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/obj/machinery/light/small{
- dir = 4
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/camera{
- c_tag = "Gamma Armory Airlock";
- dir = 6;
- network = list("SS13","Security")
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno3";
+ name = "Creature Cell #3";
+ opacity = 0
},
-/turf/simulated/floor/engine,
-/area/security/brig)
-"bAV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ name = "Creature Pen";
+ req_access_txt = "47"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/permabrig)
-"bBf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai)
-"bBg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+ icon_state = "dark"
},
-/obj/machinery/camera/motion{
- c_tag = "Minisat AI Core South";
- network = list("Minisat","SS13")
+/area/toxins/xenobiology)
+"cVc" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id_tag = "researchdesk2";
+ name = "Research Desk Shutters";
+ opacity = 0
},
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating,
+/area/toxins/lab)
+"cVe" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+/obj/item/radio/intercom{
+ pixel_x = 28
},
-/area/turret_protected/ai)
-"bBi" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+ icon_state = "orangecorner"
},
-/area/engine/gravitygenerator)
-"bBj" = (
+/area/hallway/primary/aft)
+"cVf" = (
+/turf/simulated/wall/rust,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cVg" = (
+/obj/structure/computerframe,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cVh" = (
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
-/area/engine/gravitygenerator)
-"bBk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/area/atmos)
+"cVm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"cVs" = (
+/obj/machinery/camera{
+ c_tag = "Research and Development";
+ dir = 8;
+ network = list("Research","SS13")
+ },
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Research Request Console";
+ pixel_x = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "whitepurplecorner"
},
-/area/engine/gravitygenerator)
-"bBl" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/engine/gravitygenerator)
-"bBm" = (
-/obj/effect/decal/warning_stripes/yellow,
+/area/toxins/lab)
+"cVy" = (
+/obj/structure/chair/comfy/teal,
/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
},
-/area/engine/break_room)
-"bBn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/medical/reception)
+"cVz" = (
+/obj/machinery/chem_heater,
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/light,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/structure/cable,
+/turf/simulated/floor/engine,
+/area/medical/chemistry)
+"cVA" = (
+/obj/structure/table,
+/obj/item/roller{
+ pixel_x = 3;
+ pixel_y = 10
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/item/roller{
+ pixel_x = -5;
+ pixel_y = 6
},
-/area/engine/gravitygenerator)
-"bBo" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bBp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/item/roller,
+/obj/effect/decal/warning_stripes/blue,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/medical/sleeper)
+"cVD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bBq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA"
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/wall/r_wall,
-/area/engine/gravitygenerator)
-"bBr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/medical/chemistry)
+"cVF" = (
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/bridge/meeting_room)
+"cVG" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/obj/structure/window/reinforced{
dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bBs" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "atmos_eva_inner";
- locked = 1;
- name = "Atmos External Access";
- req_access = null;
- req_access_txt = "32"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bBt" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Gravity Generation Access";
- dir = 4;
- network = list("Engineering","SS13");
- pixel_y = -22
- },
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/atmospherics/unary/portables_connector{
+/area/toxins/xenobiology)
+"cVH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/structure/closet/walllocker/emerglocker/north,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bBu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/wall,
-/area/engine/break_room)
-"bBv" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/medical/biostorage)
+"cVI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/engine/break_room)
-"bBw" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Storage";
- req_access_txt = "32"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteyellowcorner"
},
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bBx" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/medical/chemistry)
+"cVK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plating,
-/area/engine/break_room)
-"bBy" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteyellow"
+ },
+/area/medical/chemistry)
+"cVO" = (
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "1-4"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Storage";
- req_access_txt = "32"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bBz" = (
-/obj/effect/spawner/window/reinforced,
+/area/atmos)
+"cVP" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plating,
-/area/engine/break_room)
-"bBA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/structure/closet/wardrobe/chemistry_white,
+/obj/item/clothing/glasses/science{
+ pixel_y = 3
},
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bBB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/clothing/glasses/science{
+ pixel_y = 3
},
-/obj/machinery/firealarm{
- pixel_y = 24
+/obj/item/clothing/glasses/science{
+ pixel_y = 3
},
-/obj/effect/decal/warning_stripes/yellow,
+/obj/item/storage/bag/chemistry,
+/obj/item/storage/bag/chemistry,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
+ icon_state = "whiteyellow"
},
-/area/engine/break_room)
-"bBC" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/chemistry)
+"cVT" = (
+/obj/machinery/light{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "yellow"
+/obj/structure/table/wood,
+/obj/machinery/requests_console{
+ department = "Bar";
+ departmentType = 2;
+ name = "Bar Requests Console";
+ pixel_y = 30
},
-/area/engine/break_room)
-"bBD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/item/book/manual/barman_recipes,
+/obj/item/reagent_containers/food/drinks/shaker,
+/obj/item/reagent_containers/food/drinks/shaker,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
+/area/crew_quarters/bar)
+"cVU" = (
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+ icon_state = "dark"
},
-/area/engine/break_room)
-"bBE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/evidence)
+"cVX" = (
+/obj/machinery/door/airlock/glass{
+ name = "Cabin"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
- },
-/area/engine/break_room)
-"bBF" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ icon_state = "freezerfloor"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/crew_quarters/sleep)
+"cVZ" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/area/medical/research/shallway)
+"cWa" = (
+/obj/item/aiModule/protectStation{
+ pixel_x = -2;
+ pixel_y = 2
},
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/item/aiModule/nanotrasen{
+ pixel_x = 2;
+ pixel_y = -2
},
+/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+ icon_state = "dark"
+ },
+/area/turret_protected/ai_upload)
+"cWb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/chair/wood{
+ dir = 8
},
-/area/engine/break_room)
-"bBG" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"cWe" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/toy/figure/bartender,
+/obj/machinery/status_display{
+ pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/engine/break_room)
-"bBH" = (
+/area/crew_quarters/bar)
+"cWf" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+ icon_state = "2-8"
},
-/area/engine/break_room)
-"bBI" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "caution"
- },
-/area/engine/break_room)
-"bBJ" = (
-/obj/structure/table/reinforced,
-/obj/item/flashlight/lamp,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "caution"
+ dir = 1
},
-/area/atmos)
-"bBK" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -24
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel{
+ dir = 9;
icon_state = "caution"
},
/area/atmos)
-"bBL" = (
-/obj/machinery/light,
-/obj/machinery/newscaster{
- pixel_y = -32
- },
-/obj/machinery/computer/atmos_alert,
-/turf/simulated/floor/plasteel{
- icon_state = "caution"
+"cWi" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
},
-/area/atmos)
-"bBM" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/yellow,
-/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "caution"
- },
-/area/atmos)
-"bBN" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/requests_console{
- department = "Atmospherics";
- departmentType = 3;
- name = "Atmospherics Requests Console";
- pixel_x = 30
+ icon_state = "grimy"
},
-/obj/machinery/status_display{
- pixel_y = -32
+/area/crew_quarters/captain)
+"cWn" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "caution"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/area/atmos)
-"bBO" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "dark"
},
-/area/hallway/primary/port/west)
-"bBP" = (
-/obj/structure/table/reinforced,
+/area/atmos)
+"cWo" = (
/obj/machinery/light{
- dir = 8
+ dir = 4
},
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/healthanalyzer,
-/obj/item/healthanalyzer,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"cWp" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom{
+ pixel_y = 28
+ },
+/obj/item/storage/fancy/cigarettes/cigpack_random{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/fancy/cigarettes/cigpack_random,
+/obj/item/storage/box/matches,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "dark";
tag = "icon-vault (NORTHEAST)"
},
-/area/storage/tech)
-"bBQ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
- },
-/area/storage/tech)
-"bBR" = (
+/area/crew_quarters/bar)
+"cWq" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 9;
+ icon_state = "caution"
},
-/area/storage/tech)
-"bBS" = (
+/area/atmos)
+"cWy" = (
+/obj/structure/table/wood,
+/obj/item/toy/cards/deck/syndicate,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"cWA" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno3";
+ name = "Creature Cell #3";
+ opacity = 0
},
-/area/storage/tech)
-"bBT" = (
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"cWL" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+ icon_state = "orangecorner"
},
-/area/storage/tech)
-"bBU" = (
+/area/hallway/primary/aft)
+"cWQ" = (
/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 4
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 1;
+ icon_state = "left";
+ name = "Medical Reception";
+ req_access_txt = "5"
},
-/obj/item/aicard,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
-/area/storage/tech)
-"bBV" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"bBW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bBX" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/analyzer,
-/obj/item/analyzer,
-/obj/item/assembly/signaler,
-/obj/item/assembly/signaler,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bBY" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atm{
- pixel_y = 32
- },
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bBZ" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
+ icon_state = "1-2"
},
-/obj/machinery/disposal,
-/obj/machinery/requests_console{
- department = "Primary Tool Storage";
- name = "Primary Tool Storage Console";
- pixel_y = 30
+/obj/machinery/door_control{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyerPort";
+ name = "Medbay Doors Control";
+ normaldoorcontrol = 1;
+ req_access_txt = null
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bCa" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/turf/simulated/floor/plasteel{
+ icon_state = "bluefull"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bCb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/medical/reception)
+"cWR" = (
+/obj/structure/table,
+/obj/item/storage/box/cups,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bCc" = (
-/obj/structure/window/reinforced{
- dir = 4
+/area/medical/reception)
+"cWS" = (
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope{
+ pixel_y = 6
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/emcloset,
-/obj/machinery/vending/wallmed{
- pixel_y = 30
+/obj/item/clothing/accessory/stethoscope{
+ pixel_y = 3
},
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bCd" = (
-/obj/structure/table/reinforced,
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/item/flashlight/pen{
+ pixel_x = 2;
+ pixel_y = 2
},
-/obj/item/storage/belt/utility,
-/obj/item/weldingtool,
-/obj/item/clothing/head/welding,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bCe" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/storage/primary)
-"bCf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/item/flashlight/pen,
+/obj/item/flashlight/pen{
+ pixel_x = -2;
+ pixel_y = -2
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
-/obj/structure/disposalpipe/segment{
+/obj/structure/window/reinforced{
dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ layer = 2.9
},
-/area/hallway/primary/central/nw)
-"bCg" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 1;
- in_use = 1
- },
-/obj/item/assembly/igniter,
-/obj/item/assembly/igniter,
-/obj/item/assembly/igniter,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bCh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Bridge";
- req_access_txt = "19"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "bluefull"
},
-/area/bridge)
-"bCi" = (
+/area/medical/reception)
+"cWV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/toxins/xenobiology)
+"cWY" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/firedoor,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/hand_labeler,
+/obj/machinery/light{
+ dir = 8
},
-/area/bridge)
-"bCj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/machinery/camera{
+ c_tag = "Medbay Reception";
+ dir = 5;
+ network = list("Medical","SS13")
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "bluefull"
},
+/area/medical/reception)
+"cXa" = (
+/turf/simulated/wall,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"cXb" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
- },
-/area/bridge)
-"bCl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "neutralfull"
},
+/area/toxins/lab)
+"cXc" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "whitepurplecorner"
},
-/area/bridge)
-"bCm" = (
+/area/toxins/lab)
+"cXg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/effect/landmark/start{
+ name = "Chemist"
},
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/bridge)
-"bCn" = (
+/area/medical/chemistry)
+"cXh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
- dir = 1
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/bridge)
-"bCo" = (
+/area/medical/chemistry)
+"cXj" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
-/obj/structure/chair/office/dark{
- dir = 4
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/smartfridge/medbay,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
-"bCp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "whiteyellow"
},
+/area/medical/chemistry)
+"cXp" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/chemistry)
+"cXs" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/machinery/light{
dir = 4
},
-/obj/structure/chair/office/dark{
- dir = 1
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 6;
+ icon_state = "whiteyellow"
},
-/area/bridge)
-"bCq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/chemistry)
+"cXv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
+/area/medical/medbay)
+"cXz" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"cXD" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/obj/structure/sign/poster/official/high_class_martini{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "darkbluecorners"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/bridge)
-"bCr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/bar)
+"cXM" = (
+/obj/structure/morgue,
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/camera{
+ c_tag = "Medbay Coroner's Office";
+ dir = 1;
+ network = list("Medical","SS13")
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/landmark{
+ name = "revenantspawn"
},
-/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
},
-/area/bridge)
-"bCs" = (
+/area/medical/morgue)
+"cXN" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door/window/brigdoor/southright,
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/obj/structure/chair/wood{
+ dir = 1
},
-/area/bridge)
-"bCt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/carpet,
+/area/crew_quarters/mrchangs)
+"cXP" = (
+/obj/machinery/door_control{
+ id = "transitlock";
+ name = "Transit Tube Lockdown Control";
+ pixel_x = 24;
+ pixel_y = -8;
+ req_access_txt = "11"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
},
+/area/engine/aienter)
+"cXQ" = (
/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "0-4"
},
-/obj/structure/window/reinforced,
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/turf/simulated/floor/plasteel{
dir = 1;
- initialize_directions = 11
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/fore)
+"cXR" = (
+/obj/machinery/camera{
+ c_tag = "Chief Engineer's Office";
+ dir = 4;
+ network = list("Engineering","SS13");
+ pixel_y = -22
},
+/obj/machinery/computer/atmos_alert,
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/bridge)
-"bCu" = (
+/area/crew_quarters/chief)
+"cXT" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkbluecorners"
- },
-/area/bridge)
-"bCv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "neutralfull"
},
+/area/hallway/primary/fore)
+"cXU" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/bridge)
-"bCw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ name = "Cargo Bay";
+ req_access_txt = "31"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/delivery)
+"cXZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/wood/poker,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"cYa" = (
+/obj/structure/chair/wood{
+ dir = 1
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"cYb" = (
/obj/structure/chair/office/dark{
- dir = 1
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Chief Engineer"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/bridge)
-"bCx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/chief)
+"cYc" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
+ dir = 8
},
-/obj/structure/chair/office/dark{
- dir = 1
+/obj/machinery/camera{
+ c_tag = "Engineering Lobby";
+ dir = 4;
+ network = list("Engineering","SS13");
+ pixel_y = -22
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "yellow"
+ },
+/area/engine/break_room)
+"cYd" = (
+/obj/structure/morgue,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/bridge)
-"bCy" = (
+/area/chapel/office)
+"cYf" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/wall,
+/area/engine/break_room)
+"cYg" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/mrchangs)
+"cYj" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id_tag = "researchdesk2";
+ name = "Research Desk Shutters";
+ opacity = 0
+ },
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/toxins/lab)
+"cYk" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
},
+/area/hallway/primary/aft)
+"cYn" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
+/area/medical/reception)
+"cYq" = (
+/obj/structure/chair/office/light{
dir = 1
},
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/bridge)
-"bCz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/reception)
+"cYr" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = 24
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHEAST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/reception)
+"cYw" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/wall,
+/area/medical/reception)
+"cYB" = (
+/obj/structure/chair/office/light{
+ dir = 4
},
-/area/bridge)
-"bCA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Bridge";
- req_access_txt = "19"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "whitepurplecorner"
},
-/area/bridge)
-"bCB" = (
+/area/toxins/lab)
+"cYJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/lawoffice)
+"cYK" = (
+/obj/machinery/ai_status_display{
+ pixel_x = 32
},
+/obj/machinery/computer/card/minor/cmo,
+/turf/simulated/floor/plasteel,
+/area/medical/cmo)
+"cYL" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "neutralfull"
},
-/area/bridge)
-"bCC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/quartermaster/storage)
+"cYM" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/medical/biostorage)
+"cYN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
+ },
+/area/medical/medbay)
+"cYP" = (
+/obj/structure/rack{
dir = 8;
- icon_state = "bluecorner"
+ layer = 2.9
},
-/area/hallway/primary/central/ne)
-"bCD" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/light,
+/obj/item/storage/firstaid/regular{
+ pixel_x = 4;
+ pixel_y = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/item/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/firstaid/regular,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
+ },
+/area/medical/biostorage)
+"cYQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/chair/comfy/teal{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/hallway/primary/central/ne)
-"bCE" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway East 5";
- dir = 8
+/area/medical/medbay)
+"cYR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "white"
},
-/area/hallway/primary/central/ne)
-"bCF" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f5"
+/area/medical/medbay)
+"cYS" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j1 (WEST)"
},
-/area/shuttle/siberia)
-"bCG" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/simulated/shuttle/plating,
-/area/shuttle/siberia)
-"bCH" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f9"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/shuttle/siberia)
-"bCI" = (
-/obj/structure/grille,
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"bCK" = (
-/obj/structure/table/reinforced,
-/obj/item/radio{
- pixel_x = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/obj/item/radio{
- pixel_x = -4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/item/radio{
- pixel_x = 4;
- pixel_y = 5
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/item/radio{
- pixel_x = -4;
- pixel_y = 5
+/area/medical/medbay)
+"cYT" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/machinery/light,
-/obj/item/radio/intercom{
- pixel_y = -31
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 4;
+ pixel_y = 4
},
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/firstaid/toxin,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/area/security/main)
-"bCL" = (
-/obj/structure/cable{
- d1 = 1;
+/area/medical/biostorage)
+"cYW" = (
+/turf/simulated/wall,
+/area/crew_quarters/bar/atrium)
+"cYX" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"cZc" = (
+/obj/machinery/power/tesla_coil{
+ anchored = 1
+ },
+/obj/structure/cable/yellow{
d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"cZe" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/security/prisonlockers)
-"bCM" = (
+/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northeast,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 4;
+ icon_state = "yellow"
},
-/area/security/prisonlockers)
-"bCN" = (
-/obj/machinery/vending/security,
+/area/engine/engineering/monitor)
+"cZg" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "redcorner"
- },
-/area/security/main)
-"bCO" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/security/prisonlockers)
-"bCP" = (
-/obj/structure/closet/secure_closet/brig,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ icon_state = "cautioncorner"
},
-/area/security/prisonlockers)
-"bDa" = (
-/obj/structure/window/reinforced{
- dir = 8
+/area/hallway/primary/port/west)
+"cZi" = (
+/obj/docking_port/mobile/supply,
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 5;
+ height = 7;
+ id = "supply_home";
+ name = "supply bay";
+ width = 12
},
-/obj/structure/window/reinforced{
- dir = 1
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3";
+ tag = "icon-swall3"
},
-/obj/item/twohanded/required/kirbyplants,
+/area/shuttle/supply)
+"cZl" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
- },
-/area/construction/hallway)
-"bDb" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = -32
+ dir = 1;
+ icon_state = "yellowcorner"
},
-/obj/machinery/light{
- dir = 8
+/area/hallway/primary/port)
+"cZn" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
+/mob/living/carbon/human/monkey,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/gravitygenerator)
-"bDc" = (
-/turf/simulated/floor/greengrid,
-/area/engine/gravitygenerator)
-"bDd" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/highsecurity{
- name = "Gravity Generator Room";
- req_access_txt = "19;23"
+/area/medical/genetics)
+"cZp" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
},
+/obj/machinery/telepad_cargo,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravitygenerator)
-"bDe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 6;
+ icon_state = "brown"
},
-/obj/machinery/light/small{
- dir = 1
+/area/quartermaster/delivery)
+"cZq" = (
+/obj/structure/rack,
+/obj/item/circuitboard/aifixer{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = 22
+/obj/item/circuitboard/rdconsole,
+/obj/item/circuitboard/rdserver{
+ pixel_x = 3;
+ pixel_y = -3
},
-/obj/structure/closet/radiation,
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bDf" = (
-/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/gravitygenerator)
-"bDg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/storage/tech)
+"cZr" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
},
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bDh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/hallway/primary/aft)
+"cZt" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bDi" = (
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"cZu" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/toxins/lab)
+"cZw" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/highsecurity{
- name = "Gravity Generator Foyer";
- req_access_txt = "10"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellowcorner"
},
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bDj" = (
+/area/storage/primary)
+"cZz" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bDk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/toxins/lab)
+"cZC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Research Division Access";
+ req_access_txt = "47"
},
-/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bDl" = (
+/area/medical/research/nhallway)
+"cZE" = (
+/obj/structure/cable,
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/chemistry)
+"cZH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bDm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bDn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
+/area/medical/medbay)
+"cZI" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Chemistry Lab";
+ req_access_txt = "33"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bDo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/chemistry)
+"cZL" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bDp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/window/reinforced,
+/turf/space,
+/area/space/nearstation)
+"cZM" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
+/area/medical/ward)
+"cZN" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bDq" = (
+/area/medical/medbay3)
+"cZP" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating/airless,
+/area/toxins/test_area)
+"cZQ" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bDr" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/flag/nt{
+ pixel_y = -6
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/construction/hallway)
+"cZS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"cZU" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"cZW" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"daa" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
},
+/area/quartermaster/storage)
+"dac" = (
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Tech Storage";
- req_access_txt = "23"
+/obj/machinery/door/airlock/public/glass{
+ name = "Library"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bDs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bDt" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/library)
+"dae" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/structure/chair/comfy/beige{
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/bridge/meeting_room)
+"dag" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
+ icon_state = "grimy"
},
-/area/engine/break_room)
-"bDu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/bridge/meeting_room)
+"dah" = (
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"dai" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/item/flag/nt{
+ pixel_y = -6
+ },
+/obj/structure/window/reinforced{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 5;
+ icon_state = "darkblue"
},
-/area/engine/break_room)
-"bDv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/construction/hallway)
+"daj" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/window/reinforced,
+/turf/space,
+/area/space/nearstation)
+"dam" = (
+/obj/effect/decal/remains/human,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/maintenance/gambling_den)
+"dan" = (
+/obj/machinery/newscaster{
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"dav" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/engine/break_room)
-"bDw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre";
+ req_access_txt = "45"
},
-/area/engine/break_room)
-"bDx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/holosign/surgery{
+ id = "surgery2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/engine/break_room)
-"bDy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "caution"
+/area/medical/surgery2)
+"dax" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/turbine)
+"day" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light/small,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
-/area/engine/break_room)
-"bDz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/item/tank/plasma,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"daC" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"daE" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light,
+/obj/machinery/door_control{
+ id = "researchdesk2";
+ name = "Secondary Research Shutters";
+ pixel_x = 8;
+ pixel_y = -26
},
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"bDA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door_control{
+ id = "researchdesk1";
+ name = "Primary Research Shutters";
+ pixel_x = -8;
+ pixel_y = -26
},
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"bDB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"daF" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id_tag = "researchdesk2";
+ name = "Research Desk Shutters";
+ opacity = 0
+ },
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/toxins/lab)
+"daN" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ on = 1
+ },
+/obj/item/storage/belt/medical,
+/obj/item/storage/belt/medical,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHWEST)"
},
-/area/hallway/primary/port/west)
-"bDC" = (
+/area/medical/sleeper)
+"daR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/port/west)
-"bDD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/port/west)
-"bDE" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ initialize_directions = 11
},
-/area/storage/tech)
-"bDF" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "grimy"
},
-/area/storage/tech)
-"bDG" = (
+/area/crew_quarters/captain)
+"daS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/nw)
-"bDH" = (
-/obj/structure/rack,
-/obj/item/circuitboard/scan_consolenew{
- pixel_x = -3;
- pixel_y = 3
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/circuitboard/med_data,
-/obj/item/circuitboard/pandemic{
- pixel_x = 3;
- pixel_y = -3
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"daU" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"dbf" = (
+/obj/machinery/light,
+/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/storage/tech)
-"bDI" = (
+/area/medical/medbay)
+"dbi" = (
/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/ai_status_display{
- pixel_x = 32
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -25
},
-/area/storage/tech)
-"bDJ" = (
-/obj/structure/rack,
-/obj/item/circuitboard/aifixer{
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"dbj" = (
+/obj/structure/table,
+/obj/machinery/light,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell,
+/obj/item/phone{
pixel_x = -3;
pixel_y = 3
},
-/obj/item/circuitboard/rdconsole,
-/obj/item/circuitboard/rdserver{
- pixel_x = 3;
- pixel_y = -3
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/medical/ward)
+"dbk" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/drinks/britcup,
+/obj/item/screwdriver,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/storage/tech)
-"bDK" = (
+/area/medical/ward)
+"dbl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "yellow"
+ icon_state = "4-8"
},
-/area/storage/primary)
-"bDL" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/turf/simulated/floor/carpet,
+/area/assembly/showroom)
+"dbm" = (
+/obj/machinery/light/small{
+ dir = 4
},
-/area/storage/primary)
-"bDM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/maintenance/fpmaint2)
+"dbn" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"dbq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/space_heater,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/storage/primary)
-"bDN" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"dbr" = (
+/obj/item/radio/intercom{
+ pixel_x = -28
},
-/area/storage/primary)
-"bDO" = (
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "yellow"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/storage/primary)
-"bDP" = (
+/area/hallway/primary/central/ne)
+"dbs" = (
+/obj/structure/girder,
+/turf/simulated/floor/plasteel,
+/area/maintenance/engrooms)
+"dbt" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/structure/table/reinforced,
-/obj/item/stack/rods,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bDQ" = (
-/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/storage/primary)
-"bDR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/security/podbay)
+"dbu" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/snacks/grown/banana,
+/obj/item/reagent_containers/food/snacks/grown/banana{
+ pixel_x = -6;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/snacks/grown/banana{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/snacks/pie{
+ pixel_y = 7
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+ icon_state = "bar"
},
-/area/hallway/primary/central/nw)
-"bDS" = (
-/obj/structure/table/reinforced,
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/item/gps,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bDT" = (
+/area/clownoffice)
+"dbv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Bridge";
- req_access_txt = "19"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/bridge)
-"bDU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "grimy"
},
+/area/crew_quarters/bar)
+"dbz" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"dbC" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
-"bDV" = (
-/obj/structure/disposalpipe/sortjunction{
dir = 1;
- name = "HoP Junction";
- sortType = 15
+ icon_state = "darkred"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/podbay)
+"dbT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/shower{
+ dir = 4;
+ tag = "icon-shower (EAST)"
},
+/obj/structure/curtain/open/shower,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "showroomfloor"
},
-/area/bridge)
-"bDW" = (
+/area/maintenance/fsmaint)
+"dbU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Bridge";
- req_access_txt = "19"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/bridge)
-"bDX" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
-"bDY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/crew_quarters/bar)
+"dbY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Isolation A";
+ req_access_txt = "39"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/obj/effect/decal/warning_stripes/yellow/partial,
+/obj/effect/decal/warning_stripes/arrow,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/medical/virology)
+"dca" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "neutralcorner"
},
-/area/bridge)
-"bDZ" = (
+/area/hallway/primary/aft)
+"dcc" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/paramedic)
+"dce" = (
+/obj/machinery/conveyor/southeast{
+ id = "cargodelivery"
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"dci" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/area/medical/medbay)
+"dcj" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/fitness)
+"dcm" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
dir = 1
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/grass,
+/area/medical/sleeper)
+"dcq" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/area/bridge)
-"bEa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposaloutlet,
+/obj/structure/window/reinforced{
dir = 4
},
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel,
+/area/quartermaster/delivery)
+"dcs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/bridge)
-"bEb" = (
+/area/security/permabrig)
+"dcv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 9
},
-/area/bridge)
-"bEc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/bridge)
-"bEd" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/area/quartermaster/delivery)
+"dcw" = (
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
- },
-/area/bridge)
-"bEe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/vending/wallmed{
+ pixel_x = -30
},
-/obj/item/restraints/handcuffs,
-/obj/item/flash,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/bridge)
-"bEf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 9;
+ icon_state = "brown"
},
+/area/quartermaster/storage)
+"dcz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/bridge)
-"bEg" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/computer/communications,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Reception";
+ req_access_txt = "63"
},
-/area/bridge)
-"bEh" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/security/wooden_tv,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/door/firedoor,
+/turf/space,
+/turf/simulated/floor/plasteel{
dir = 1
},
+/area/security/reception)
+"dcA" = (
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1
+ },
+/area/security/lobby)
+"dcC" = (
+/obj/machinery/atmospherics/unary/vent_pump,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"dcD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/bridge)
-"bEi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/flashlight/lamp,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
},
-/area/bridge)
-"bEj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plating,
+/area/medical/ward)
+"dcE" = (
+/obj/structure/chair/comfy/brown{
dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkblue"
+ icon_state = "brown"
},
-/area/bridge)
-"bEk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/quartermaster/storage)
+"dcF" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
+/obj/item/paper/deltainfo,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+ dir = 1;
+ icon_state = "brown"
},
-/area/bridge)
-"bEl" = (
+/area/quartermaster/storage)
+"dcL" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/bridge)
-"bEm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/area/engine/aienter)
+"dcN" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "brown"
},
-/area/bridge)
-"bEn" = (
+/area/quartermaster/storage)
+"dcO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/mrchangs)
+"dcQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/bridge)
-"bEo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "bluecorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/hallway/primary/central/ne)
-"bEp" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/mrchangs)
+"dcR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (SOUTHEAST)"
},
+/area/medical/sleeper)
+"dcS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/area/hallway/primary/central/ne)
-"bEq" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"dcU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/ne)
-"bEr" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/southwest,
-/obj/structure/rack{
- dir = 1
+ icon_state = "whitepurplecorner"
},
-/obj/item/pickaxe{
- pixel_x = 5
+/area/toxins/misc_lab)
+"dcV" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (NORTH)"
},
-/obj/item/shovel{
- pixel_x = -5
+/area/toxins/misc_lab)
+"dcW" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (NORTH)"
},
-/obj/item/storage/belt/utility,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
+/area/toxins/misc_lab)
+"dcX" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (NORTH)"
},
+/area/toxins/misc_lab)
+"dcY" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"dda" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/prisonlockers)
-"bEs" = (
-/obj/structure/table/reinforced,
-/obj/item/taperecorder,
-/obj/item/folder/red{
- pixel_y = 3
+/area/quartermaster/storage)
+"ddb" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/area/security/main)
-"bEt" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/southeast,
-/obj/structure/largecrate,
+/area/medical/research/nhallway)
+"ddc" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/prisonlockers)
-"bEu" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"bEw" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/structure/closet/crate,
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "privateroom";
+ name = "Privacy Room Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -26;
+ pixel_y = -24;
+ req_access_txt = "25";
+ specialfunctions = 4
},
-/area/security/prisonlockers)
-"bEC" = (
-/obj/structure/window/reinforced{
- dir = 8
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"ddd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/window/reinforced,
-/obj/structure/showcase,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkred"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/warden)
-"bED" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"ddg" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
+ dir = 1;
+ icon_state = "neutral"
},
-/area/turret_protected/aisat_interior)
-"bEF" = (
-/obj/machinery/porta_turret{
- dir = 4;
- installation = /obj/item/gun/energy/gun;
- name = "hallway turret"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"ddh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "neutralfull"
},
-/area/turret_protected/aisat_interior)
-"bEG" = (
-/obj/machinery/gravity_generator/main/station,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/area/quartermaster/storage)
+"ddi" = (
+/turf/simulated/wall/r_wall,
+/area/toxins/explab)
+"ddk" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"ddl" = (
+/obj/machinery/keycard_auth{
+ pixel_x = -24
},
-/area/engine/gravitygenerator)
-"bEH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/machinery/door_control{
+ id = "engstorage";
+ name = "Engineering Secure Storage Control";
+ pixel_x = -38;
+ pixel_y = 8;
+ req_access_txt = "11"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door_control{
+ id = "transitlock";
+ name = "Transit Tube Lockdown Control";
+ pixel_x = -38;
+ pixel_y = -8;
+ req_access_txt = "11"
},
-/area/engine/gravitygenerator)
-"bEI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/computer/monitor{
+ name = "Grid Power Monitoring Computer"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/engine/gravitygenerator)
-"bEJ" = (
+/area/crew_quarters/chief)
+"ddp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Tech Storage";
- req_access_txt = "23"
+/area/medical/research/nhallway)
+"dds" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "rdprivacy";
+ name = "Research Director Office Shutters";
+ opacity = 0
},
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bEK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
+/turf/simulated/floor/plating,
+/area/crew_quarters/hor)
+"ddx" = (
/obj/effect/decal/warning_stripes/east,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bEL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/crew_quarters/hor)
+"ddE" = (
+/obj/machinery/computer/crew,
+/obj/machinery/light{
+ dir = 8
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/turf/simulated/wall/r_wall,
-/area/engine/gravitygenerator)
-"bEM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/paramedic)
+"ddF" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/power/port_gen/pacman,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bEN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bEO" = (
-/obj/effect/decal/warning_stripes/southeastcorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/reception)
+"ddH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bEP" = (
+/obj/structure/filingcabinet/chestdrawer,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
- },
-/area/engine/break_room)
-"bEQ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/machinery/camera{
- c_tag = "Engineering Storage";
- dir = 1;
- network = list("SS13","Engineering")
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/turf/simulated/floor/plasteel{
- icon_state = "caution"
+/area/medical/reception)
+"ddI" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/engine/break_room)
-"bER" = (
-/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "caution"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/break_room)
-"bES" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/crew_quarters/chief)
+"ddJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/structure/closet/secure_closet/paramedic,
+/obj/item/defibrillator/loaded,
+/obj/item/clothing/glasses/hud/health,
/turf/simulated/floor/plasteel{
- icon_state = "caution"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/engine/break_room)
-"bET" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/area/medical/paramedic)
+"ddM" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "caution"
+ icon_state = "white"
},
-/area/engine/break_room)
-"bEU" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+/area/medical/medbay3)
+"ddO" = (
+/obj/machinery/conveyor/northeast{
+ id = "QMLoad"
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -24
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"ddR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "caution"
+ icon_state = "grimy"
},
-/area/engine/break_room)
-"bEV" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/crew_quarters/chief)
+"deb" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
+ dir = 4;
+ icon_state = "yellowcorner"
},
-/area/engine/break_room)
-"bEW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/hallway/primary/port/west)
+"dec" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/radio/intercom{
+ pixel_x = 28
},
-/area/engine/break_room)
-"bEX" = (
-/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 5;
+ icon_state = "yellow"
},
-/area/engine/break_room)
-"bEY" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/area/maintenance/electrical)
+"ded" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/break_room)
-"bEZ" = (
+/area/storage/primary)
+"deg" = (
+/obj/structure/rack,
+/obj/item/roller,
+/obj/item/reagent_containers/iv_bag,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"del" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"deo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/engine/break_room)
-"bFa" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"dep" = (
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = -26
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "cautioncorner"
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"deq" = (
+/obj/machinery/atm{
+ pixel_x = -32
},
-/area/engine/break_room)
-"bFb" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "yellow"
+ icon_state = "neutralcorner"
},
-/area/engine/break_room)
-"bFc" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+/area/hallway/primary/fore)
+"der" = (
+/obj/structure/grille,
+/obj/structure/window/full/shuttle,
+/turf/simulated/shuttle/plating,
+/area/shuttle/pod_3)
+"des" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = -30
},
-/obj/machinery/computer/guestpass{
- pixel_y = 32
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"det" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "yellow"
+ icon_state = "dark"
},
-/area/engine/break_room)
-"bFd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/camera{
- c_tag = "Engineering Entrance";
- dir = 4;
- network = list("Engineering","SS13");
- pixel_y = -22
+/area/engine/aienter)
+"deu" = (
+/obj/structure/plasticflaps/mining,
+/obj/machinery/conveyor/east{
+ id = "QMLoad"
},
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bFe" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"dev" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/structure/plasticflaps/mining,
+/obj/machinery/conveyor/east{
+ id = "QMLoad"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bFf" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 32
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"dew" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bFg" = (
-/obj/effect/spawner/window/reinforced,
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"deA" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkbluecorners"
+ },
+/area/construction/hallway)
+"deB" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/engine/break_room)
-"bFh" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
+ desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding.";
dir = 4;
- icon_state = "yellowcorner"
+ icon_state = "plaque";
+ name = "Comemmorative Plaque"
},
-/area/hallway/primary/port/west)
-"bFi" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/area/hallway/primary/fore)
+"deE" = (
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 4
},
-/area/storage/tech)
-"bFj" = (
-/obj/structure/rack,
-/obj/item/circuitboard/cloning{
- pixel_x = -3;
- pixel_y = 3
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/item/circuitboard/clonescanner,
-/obj/item/circuitboard/clonepod{
- pixel_x = 3;
- pixel_y = -3
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whitepurplecorner"
},
-/area/storage/tech)
-"bFk" = (
-/obj/structure/rack,
-/obj/item/circuitboard/destructive_analyzer{
- pixel_x = -3;
- pixel_y = 3
+/area/toxins/misc_lab)
+"deF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/item/circuitboard/protolathe,
-/obj/item/circuitboard/circuit_imprinter{
- pixel_x = 3;
- pixel_y = -3
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 10
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/storage/tech)
-"bFl" = (
-/obj/structure/table/reinforced,
-/obj/item/stock_parts/matter_bin,
-/obj/item/stock_parts/matter_bin,
-/obj/item/stock_parts/micro_laser,
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "whitepurple"
},
-/area/storage/tech)
-"bFm" = (
-/obj/structure/rack,
-/obj/item/floor_painter,
-/obj/item/toner,
-/obj/machinery/status_display{
- pixel_x = -32
+/area/toxins/misc_lab)
+"deG" = (
+/turf/simulated/wall,
+/area/quartermaster/delivery)
+"deH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bFn" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/area/storage/primary)
-"bFo" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
+ },
+/area/toxins/explab)
+"deK" = (
+/obj/structure/chair{
+ dir = 4
},
-/area/storage/primary)
-"bFp" = (
-/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/area/storage/primary)
-"bFq" = (
-/turf/simulated/floor/plasteel{
+/area/medical/research/nhallway)
+"deL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "yellow"
+ tag = "icon-pipe-j1 (EAST)"
},
-/area/storage/primary)
-"bFr" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bFs" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whitepurplecorner"
},
-/area/hallway/primary/central/nw)
-"bFt" = (
-/obj/structure/disposalpipe/segment{
+/area/toxins/explab)
+"deM" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
dir = 1;
- icon_state = "pipe-c"
+ layer = 2.9
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/hand_tele,
+/obj/item/coin/plasma,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/captain)
+"deN" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "escape"
},
-/area/hallway/primary/central/nw)
-"bFu" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
+/area/bridge/checkpoint/south)
+"deR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
- },
-/turf/simulated/floor/plating,
-/area/bridge)
-"bFv" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light/small,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research/glass{
+ name = "Experimentor";
+ req_access_txt = "47"
},
-/area/bridge)
-"bFw" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/bridge)
-"bFx" = (
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = -26
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"deS" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/bridge)
-"bFy" = (
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ icon_state = "purplefull"
},
-/area/bridge)
-"bFz" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = -30
+/area/medical/research/nhallway)
+"deU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/bridge)
-"bFA" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
- },
-/area/bridge)
-"bFB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera{
- c_tag = "Bridge Port";
- dir = 1
+ icon_state = "purplefull"
},
+/area/medical/research/nhallway)
+"deW" = (
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ dir = 4;
+ icon_state = "darkbluecorners"
},
-/area/bridge)
-"bFC" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- cell_type = 5000;
- name = "south bump Important Area";
- pixel_y = -24
+/area/construction/hallway)
+"deX" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"dfd" = (
+/obj/structure/bed,
+/obj/item/bedsheet/red,
+/obj/item/radio/intercom{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ icon_state = "redcorner"
},
-/area/bridge)
-"bFD" = (
-/obj/structure/closet/fireaxecabinet{
- pixel_y = -30
+/area/security/prison/cell_block/A)
+"dfe" = (
+/turf/simulated/wall,
+/area/medical/research/restroom)
+"dff" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"dfh" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/bridge)
-"bFE" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkblue"
+ icon_state = "neutralfull"
},
-/area/bridge)
-"bFF" = (
-/obj/structure/rack,
-/obj/machinery/light/small,
-/obj/item/aicard,
-/obj/item/storage/secure/briefcase,
-/obj/item/multitool,
+/area/assembly/chargebay)
+"dfj" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/locker)
+"dfk" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "neutralcorner"
},
-/area/bridge)
-"bFG" = (
-/obj/structure/table/wood,
+/area/hallway/primary/central/ne)
+"dfm" = (
+/turf/simulated/wall/r_wall,
+/area/assembly/chargebay)
+"dfn" = (
+/obj/machinery/computer/mech_bay_power_console,
+/turf/simulated/floor/bluegrid,
+/area/assembly/chargebay)
+"dfo" = (
/obj/structure/window/reinforced{
- dir = 8
+ dir = 1
},
-/obj/item/taperecorder,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 5;
+ icon_state = "darkblue"
},
-/area/bridge)
-"bFH" = (
+/area/construction/hallway)
+"dfr" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/chair/comfy/black{
- dir = 1
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/carpet,
-/area/bridge)
-"bFI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ name = "Delivery Office";
+ req_access_txt = "50"
},
-/turf/simulated/floor/carpet,
-/area/bridge)
-"bFJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/delivery)
+"dft" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/additional)
+"dfu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/carpet,
-/area/bridge)
-"bFK" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 4
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/engine/mechanic_workshop/expedition)
+"dfv" = (
+/turf/simulated/wall,
+/area/medical/paramedic)
+"dfy" = (
+/turf/simulated/wall,
+/area/medical/genetics_cloning)
+"dfA" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/item/folder/blue,
-/obj/item/pen,
-/obj/item/paper_bin,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/camera{
+ c_tag = "Arrivals Shuttle South"
},
-/area/bridge)
-"bFL" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/emergency,
-/obj/item/wrench,
-/obj/machinery/light/small,
-/turf/simulated/floor/plasteel{
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"dfD" = (
+/obj/machinery/light/spot{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
- },
-/area/bridge)
-"bFM" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
+ tag = "icon-tube1 (WEST)"
},
-/area/bridge)
-"bFN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
+/obj/structure/window/reinforced,
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/area/bridge)
-"bFO" = (
-/obj/machinery/camera{
- c_tag = "Bridge Starboard";
+/area/shuttle/syndicate_sit)
+"dfE" = (
+/obj/structure/chair/office/dark{
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/bridge)
-"bFP" = (
+/area/magistrateoffice)
+"dfI" = (
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"dfM" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"dfO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/area/bridge)
-"bFQ" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/area/toxins/misc_lab)
+"dfP" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ dir = 1;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (NORTH)"
},
-/area/bridge)
-"bFR" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light/small,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/toxins/misc_lab)
+"dfQ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/bridge)
-"bFS" = (
-/turf/simulated/wall/r_wall,
-/area/security/detectives_office)
-"bFT" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "brig_detprivacy";
- name = "Detective Privacy Shutters";
- opacity = 0
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d2 = 8;
+ icon_state = "0-8"
},
/turf/simulated/floor/plating,
-/area/security/detectives_office)
-"bFU" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/door_control{
- id = "engsm";
- name = "Supermatter Blast Doors";
- pixel_y = 25;
- req_access_txt = "10"
- },
-/obj/machinery/door_control{
- id = "smbolts";
- name = "Supermatter Bolt Control";
- normaldoorcontrol = 1;
- pixel_y = 36;
- req_access_txt = "56";
- specialfunctions = 4
+/area/maintenance/gambling_den)
+"dfR" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/suit/radiation,
+/obj/item/clothing/head/radiation,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"bFV" = (
-/obj/effect/landmark{
- name = "Marauder Entry"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
-"bGm" = (
-/obj/structure/filingcabinet/chestdrawer,
+/area/toxins/explab)
+"dfS" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
+ icon_state = "whitepurple"
},
-/area/security/warden)
-"bGq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/area/toxins/explab)
+"dfT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkbluefull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/area/turret_protected/ai)
-"bGr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4
},
-/area/engine/gravitygenerator)
-"bGs" = (
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"dfU" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/sign/electricshock{
- pixel_y = -32
- },
/turf/simulated/floor/plating,
-/area/engine/gravitygenerator)
-"bGt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/light/small,
-/obj/structure/closet/radiation,
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bGu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/obj/machinery/light,
-/obj/effect/decal/warning_stripes/southwest,
-/obj/structure/rack,
-/obj/item/crowbar,
-/obj/item/storage/toolbox/mechanical,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bGv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/quartermaster/storage)
+"dfV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/effect/decal/warning_stripes/south,
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bGw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/newscaster{
- pixel_y = -32
+/area/toxins/xenobiology)
+"dfW" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air{
+ filled = 0.05
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bGx" = (
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarport)
+"dfY" = (
/obj/structure/table/reinforced,
-/obj/item/stack/sheet/plasteel,
-/obj/item/wrench,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/obj/machinery/light_switch{
- pixel_y = -26
- },
+/obj/machinery/light,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"dfZ" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/radiation,
/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bGy" = (
+/area/toxins/explab)
+"dgb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bGz" = (
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/chief)
-"bGA" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/engine/break_room)
-"bGB" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
-/obj/item/radio/intercom{
- pixel_x = -28
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
- },
-/area/atmos)
-"bGC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
+/area/medical/research/nhallway)
+"dgc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ tag = "icon-pipe-j1 (EAST)"
},
-/area/engine/break_room)
-"bGD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/engine/break_room)
-"bGE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/research/nhallway)
+"dgd" = (
+/obj/structure/chair{
+ dir = 8
},
-/obj/structure/table/reinforced,
-/obj/item/pen,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/paper_bin,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/area/engine/break_room)
-"bGF" = (
+/area/medical/research/nhallway)
+"dge" = (
+/obj/structure/table,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/light,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/recharger{
+ pixel_y = 3
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/reinforced,
-/obj/item/folder/yellow,
-/obj/item/lightreplacer,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/stack/tape_roll,
/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research/nhallway)
+"dgi" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 8;
- icon_state = "neutralfull"
+ frequency = 1379;
+ id_tag = "engineering_west_pump"
},
-/area/engine/break_room)
-"bGG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"dgk" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
+/area/medical/research/nhallway)
+"dgo" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "4-8"
},
-/area/engine/break_room)
-"bGH" = (
+/turf/simulated/floor/plating,
+/area/maintenance/storage{
+ name = "Perma Maintenance"
+ })
+"dgv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/break_room)
-"bGI" = (
+/area/toxins/lab)
+"dgz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -39486,1506 +39438,1186 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/engine/break_room)
-"bGJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/obj/structure/disposalpipe/segment{
+/area/medical/medbay)
+"dgC" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/shower{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering";
- req_access_txt = "32"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/medical/genetics_cloning)
+"dgE" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/item/destTagger,
+/obj/item/destTagger,
+/obj/item/destTagger,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/break_room)
-"bGK" = (
+/area/quartermaster/storage)
+"dgF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/engine/aienter)
+"dgH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/engine/break_room)
-"bGL" = (
+/area/medical/genetics_cloning)
+"dgO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/east,
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j2";
tag = "icon-pipe-j1 (WEST)"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
+ },
+/area/medical/sleeper)
+"dgQ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre";
+ req_access_txt = "45"
+ },
+/obj/machinery/holosign/surgery{
+ id = "surgery1"
},
-/area/engine/break_room)
-"bGM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
},
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/surgery1)
+"dgT" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/medical/genetics_cloning)
+"dgU" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/landmark{
- name = "lightsout"
+/area/quartermaster/storage)
+"dgW" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/wall,
+/area/medical/psych)
+"dgY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall/r_wall,
+/area/maintenance/fsmaint)
+"dha" = (
+/obj/structure/table/reinforced,
+/obj/item/phone{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/cigarette/cigar{
+ pixel_x = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/break_room)
-"bGN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/chief)
+"dhb" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "brown"
},
+/area/quartermaster/qm)
+"dhc" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering";
- req_access_txt = "32"
+/obj/effect/landmark/start{
+ name = "Chief Engineer"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/engine/break_room)
-"bGO" = (
+/area/crew_quarters/chief)
+"dhh" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/camera{
+ c_tag = "Port Fore Solars";
+ network = list("SS13","Engineering")
+ },
+/obj/item/radio/intercom{
+ pixel_y = 28
+ },
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarport)
+"dhi" = (
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/maintenance/electrical)
+"dhj" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/sign/deathsposal{
+ pixel_y = 32
+ },
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "dark"
},
-/area/hallway/primary/port/west)
-"bGP" = (
+/area/maintenance/turbine)
+"dhm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ icon_state = "1-2"
},
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "yellow"
},
-/area/storage/tech)
-"bGQ" = (
+/area/engine/engineering/monitor)
+"dhn" = (
+/obj/structure/table,
+/obj/item/clipboard,
+/obj/item/toy/figure/qm,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
+ },
+/area/quartermaster/qm)
+"dho" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 1
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/computer/station_alert,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellow"
},
+/area/engine/engineering/monitor)
+"dhp" = (
/obj/structure/disposalpipe/segment{
- dir = 8;
+ dir = 2;
icon_state = "pipe-c"
},
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "dark"
},
-/area/hallway/primary/port/west)
-"bGR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
- dir = 4
+/area/maintenance/turbine)
+"dhq" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
},
+/obj/machinery/atmospherics/unary/tank/toxins,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/port/west)
-"bGS" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/table/reinforced,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+ dir = 1;
+ icon_state = "dark"
},
-/obj/item/folder/yellow,
-/obj/item/airlock_electronics,
+/area/maintenance/turbine)
+"dhr" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "neutralfull"
},
-/area/storage/tech)
-"bGT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/engine/engineering/monitor)
+"dhs" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/computer/general_air_control{
+ frequency = 1443;
+ level = 3;
+ name = "Distribution and Waste Monitor";
+ sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop")
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "neutral"
- },
-/area/storage/tech)
-"bGU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/storage/tech)
-"bGV" = (
-/obj/machinery/vending/assist,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+ icon_state = "yellow"
},
-/obj/machinery/camera{
- c_tag = "Primary Tool Storage";
+/area/engine/engineering/monitor)
+"dht" = (
+/obj/structure/chair{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bGW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/landmark/start{
+ name = "Cyborg"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/storage/tech)
-"bGX" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/area/construction/hallway)
+"dhw" = (
+/obj/structure/table/wood,
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
-/area/storage/tech)
-"bGY" = (
-/obj/structure/table/reinforced,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+ icon_state = "dark"
},
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stock_parts/scanning_module,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/capacitor,
+/area/maintenance/gambling_den)
+"dhx" = (
+/obj/machinery/atmospherics/binary/valve,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/storage/tech)
-"bGZ" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bHa" = (
-/obj/effect/landmark{
- name = "lightsout"
+ icon_state = "whitepurplecorner"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/toxins/misc_lab)
+"dhA" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/camera{
+ c_tag = "Turbine";
+ network = list("SS13","Engineering")
},
-/area/storage/primary)
-"bHb" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/flashlight,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bHc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = 32
},
-/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/unary/portables_connector,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "yellowcorner"
- },
-/area/storage/primary)
-"bHd" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
- },
-/obj/effect/landmark/start{
- name = "Civilian"
+ icon_state = "dark"
},
+/area/maintenance/turbine)
+"dhB" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "dark"
},
-/area/storage/primary)
-"bHe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/maintenance/turbine)
+"dhH" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellowcorner"
+ dir = 1;
+ icon_state = "dark"
},
-/area/storage/primary)
-"bHf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/maintenance/turbine)
+"dhI" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
+/turf/simulated/wall/r_wall,
+/area/turret_protected/ai)
+"dhL" = (
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/storage/primary)
-"bHg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/door/airlock/research/glass{
+ name = "Toxin Mixing";
+ req_access_txt = "47"
},
-/area/hallway/primary/central/nw)
-"bHh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/engine/break_room)
-"bHi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+/area/toxins/mixing)
+"dhM" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
-/area/hallway/primary/central/nw)
-"bHj" = (
-/turf/simulated/wall/r_wall,
-/area/bridge/meeting_room)
-"bHk" = (
-/obj/structure/disposalpipe/segment{
+/obj/structure/window/plasmareinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/lobby)
-"bHl" = (
+/obj/structure/window/plasmareinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"dhN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Conference Room";
- req_access = null;
- req_access_txt = "19"
+ icon_state = "1-2"
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bHm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/bridge/meeting_room)
-"bHn" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/bridge)
-"bHo" = (
-/obj/machinery/recharge_station,
+/area/medical/morgue)
+"dhO" = (
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
-"bHp" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/bridge)
-"bHq" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 8
+ dir = 1;
+ icon_state = "darkblue"
},
-/obj/item/storage/fancy/donut_box,
+/area/turret_protected/ai)
+"dhR" = (
+/obj/structure/sign/biohazard,
+/turf/simulated/wall/r_wall,
+/area/toxins/mixing)
+"dhS" = (
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/bridge)
-"bHr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/carpet,
-/area/bridge)
-"bHs" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Bridge";
- departmentType = 5;
- name = "Bridge Requests Console";
- pixel_x = -30;
- pixel_y = -30
+ dir = 1;
+ icon_state = "darkblue"
},
-/obj/machinery/camera{
- c_tag = "Bridge Center";
+/area/turret_protected/ai)
+"dhT" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
dir = 1
},
-/obj/machinery/turretid/stun{
- control_area = "\improper AI Upload Chamber";
- name = "AI Upload Turret Control";
- pixel_y = -24;
- req_access = list(75)
- },
-/turf/simulated/floor/carpet,
-/area/bridge)
-"bHt" = (
-/obj/machinery/door_control{
- id = "stationawaygate";
- name = "Gateway Shutters Access Control";
- pixel_x = 7;
- pixel_y = -26;
- req_access_txt = "62"
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
-/obj/machinery/door_control{
- id = "eva-shutters";
- name = "Auxilary E.V.A. Storage";
- pixel_x = -7;
- pixel_y = -26;
- req_one_access_txt = "18"
+/obj/structure/window/plasmareinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"dhU" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 1
},
-/obj/machinery/door_control{
- id = "BridgeLockdown";
- name = "Bridge Lockdown";
- pixel_x = 7;
- pixel_y = -35;
- req_access_txt = "62"
+/obj/structure/window/plasmareinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"dhV" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/carpet,
-/area/bridge)
-"bHu" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 4
+/obj/machinery/power/smes{
+ charge = 1e+006
},
-/obj/machinery/keycard_auth,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/sign/electricshock{
+ pixel_y = 32
},
-/area/bridge)
-"bHv" = (
-/obj/machinery/ai_status_display,
-/turf/simulated/wall,
-/area/bridge)
-"bHw" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen/fancy,
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "dark"
},
-/area/bridge)
-"bHx" = (
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/captain)
-"bHy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/captain)
-"bHz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- id_tag = "captainofficedoor";
- name = "Captain's Office";
- req_access = null;
- req_access_txt = "20"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bHA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/maintenance/turbine)
+"dhW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
pixel_x = -24
},
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"dhX" = (
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkred"
+ },
+/area/security/evidence)
+"die" = (
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/hallway/primary/central/ne)
-"bHB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"dil" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/central/ne)
-"bHC" = (
-/obj/machinery/computer/prisoner{
- req_access = null;
- req_access_txt = "2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+/area/hallway/primary/central/nw)
+"dim" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8
},
-/area/lawoffice)
-"bHD" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin/nanotrasen,
-/obj/item/pen/fancy,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/lawoffice)
-"bHE" = (
-/obj/structure/table/reinforced,
-/obj/item/pen,
-/obj/item/paper_bin/nanotrasen,
-/obj/item/flashlight/lamp,
+/area/hallway/primary/aft)
+"dio" = (
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "dark"
},
-/area/lawoffice)
-"bHG" = (
+/area/chapel/main)
+"dip" = (
/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 3
- },
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bHH" = (
-/obj/structure/table/reinforced,
-/obj/machinery/photocopier/faxmachine/longrange{
- department = "Internal Affairs Office"
- },
-/obj/machinery/camera{
- c_tag = "Internal Affairs Office"
+ dir = 8;
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/lawoffice)
-"bHI" = (
-/obj/structure/table/reinforced,
-/obj/item/folder{
- pixel_x = -4
- },
-/obj/item/folder/red{
- pixel_y = 3
+ dir = 4;
+ icon_state = "chapel"
},
-/obj/item/folder/blue{
- pixel_x = 5
+/area/chapel/main)
+"dis" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atm{
+ pixel_y = 32
},
-/obj/item/folder/yellow{
- pixel_x = 2;
- pixel_y = 2
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"dit" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
},
-/obj/item/stamp/law,
-/obj/item/pen/multi,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/lawoffice)
-"bHJ" = (
-/obj/machinery/light{
- dir = 4
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+/area/medical/paramedic)
+"diu" = (
+/obj/machinery/door/window/brigdoor,
+/obj/item/radio/intercom{
+ pixel_x = -32
},
-/area/lawoffice)
-"bHK" = (
-/obj/structure/table,
-/obj/machinery/microscope,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
- },
-/area/security/detectives_office)
-"bHL" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+ icon_state = "dark"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/medical/genetics_cloning)
+"dix" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
- },
-/area/security/detectives_office)
-"bHM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/alarm{
- pixel_y = 23
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHEAST)"
},
+/area/medical/sleeper)
+"diy" = (
+/obj/structure/chair/office/light,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "white"
},
-/area/security/detectives_office)
-"bHN" = (
-/obj/structure/window/reinforced{
- dir = 4
+/area/medical/genetics_cloning)
+"diz" = (
+/obj/item/radio/intercom{
+ pixel_x = 32
},
-/obj/machinery/computer/secure_data,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/camera{
+ c_tag = "Medbay Cloning";
+ dir = 8;
+ network = list("Medical","SS13")
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
- },
-/area/security/detectives_office)
-"bHO" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-22";
- tag = "icon-plant-22"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
+/area/medical/genetics_cloning)
+"diB" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/light{
- dir = 1;
- on = 1
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/camera{
- c_tag = "Detective's Office";
- network = list("SS13","Security")
- },
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bHP" = (
-/obj/item/radio/intercom{
- dir = 8;
- pixel_y = 36
- },
-/obj/item/radio/intercom/department/security{
- pixel_y = 23
- },
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bHQ" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door_control{
- id = "brig_detprivacy";
- name = "Detective Privacy Shutters Control";
- pixel_x = 25;
- pixel_y = 25
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"diD" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bHR" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bHS" = (
-/obj/machinery/vending/security,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/main)
-"bHW" = (
-/obj/machinery/computer/secure_data,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
- },
-/area/security/brig)
-"bHX" = (
-/obj/machinery/computer/security{
- network = list("SS13","Research Outpost","Mining Outpost")
- },
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/security/brig)
-"bHY" = (
-/obj/machinery/computer/brigcells,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+/area/medical/surgery1)
+"diJ" = (
+/turf/simulated/wall,
+/area/medical/psych)
+"diQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/maintenance{
+ name = "construction access"
},
-/area/security/brig)
-"bId" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/obj/structure/barricade/wooden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"diR" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/maintenance/engrooms)
+"diS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/prisonlockers)
-"bIo" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/computer/guestpass{
- pixel_y = 32
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/kitchen)
-"bIp" = (
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/vending/wallmed{
- pixel_y = -30
- },
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bIq" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/item/radio/intercom{
- pixel_x = -28
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/crew_quarters/serviceyard)
+"diU" = (
+/obj/structure/statue/gold/hop{
+ desc = "Золотая литая статуя, посвящённая великому ХоПу - Михаилу Калинину, который продолжал исполнять свой долг даже в самых критических ситуациях";
+ name = "Статуя Михаила Калинина"
},
-/area/crew_quarters/chief)
-"bIr" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/hop)
+"diW" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -6;
- pixel_y = 32
+/obj/structure/window/reinforced{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/chief)
-"bIs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/obj/machinery/ai_status_display{
- pixel_y = 32
+/area/construction/hallway)
+"diX" = (
+/obj/machinery/computer/borgupload,
+/obj/item/radio/intercom/private{
+ pixel_y = -28
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
+"diY" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
},
-/area/crew_quarters/chief)
-"bIt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"dja" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 1
},
-/obj/item/gps/engineering,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "whitepurple"
},
-/area/crew_quarters/chief)
-"bIu" = (
-/obj/structure/disposalpipe/segment{
+/area/toxins/misc_lab)
+"djb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/rack,
-/obj/item/crowbar,
-/obj/item/storage/toolbox/mechanical,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4
},
-/area/crew_quarters/chief)
-"bIv" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/airlock/research{
+ name = "Chemical Toxins";
+ req_access_txt = "47"
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/firealarm{
- pixel_y = 24
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/crew_quarters/chief)
-"bIw" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/toxins/misc_lab)
+"djc" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 25
},
-/obj/structure/disposalpipe/segment{
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/crew_quarters/bar)
+"djf" = (
+/obj/structure/sign/fire,
+/turf/simulated/wall/r_wall,
+/area/toxins/mixing)
+"djg" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/chief)
-"bIx" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bIy" = (
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
+/turf/space,
+/area/space/nearstation)
+"djn" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
dir = 4;
- icon_state = "yellow"
- },
-/area/engine/break_room)
-"bIz" = (
-/obj/structure/disposalpipe/sortjunction{
- name = "CE's Junction";
- sortType = 5
+ name = "Труба смешивания"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба служит для подачу горючей смеси в турбину для её работы";
+ name = "Труба турбины"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "yellow"
+ icon_state = "neutralfull"
},
-/area/engine/break_room)
-"bIA" = (
+/area/atmos)
+"djo" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 4;
+ name = "Труба смешивания"
+ },
+/obj/machinery/meter,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/break_room)
-"bIB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/atmos)
+"djt" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (SOUTHWEST)"
},
-/obj/structure/chair/stool,
+/area/toxins/mixing)
+"dju" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/dispenser,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "whitepurple"
},
-/area/engine/break_room)
-"bIC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/toxins/mixing)
+"djw" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/toxins/mixing)
+"djx" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/binary/valve{
dir = 4
},
+/obj/machinery/camera{
+ c_tag = "Toxin Mixing";
+ network = list("Research","SS13")
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutral"
},
-/area/engine/break_room)
-"bID" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/area/toxins/mixing)
+"djy" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bIE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/firealarm{
+ pixel_y = 26
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/break_room)
-"bIF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "neutralcorner"
},
+/area/toxins/mixing)
+"djJ" = (
+/obj/structure/table,
+/obj/machinery/computer/mob_healer_terminal,
/obj/machinery/light{
dir = 4
},
-/obj/item/radio/intercom{
- pixel_x = 28
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "yellow"
- },
-/area/engine/break_room)
-"bIG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
},
-/turf/simulated/wall,
-/area/engine/break_room)
-"bIH" = (
+/area/medical/reception)
+"djM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bII" = (
-/obj/effect/decal/warning_stripes/southeast,
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bIJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/item/circuitboard/camera{
- pixel_x = -3;
- pixel_y = 3
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/obj/item/circuitboard/prisoner,
-/obj/item/circuitboard/secure_data{
- pixel_x = 3;
- pixel_y = -3
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/storage/tech)
-"bIK" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/engine/break_room)
-"bIL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cautioncorner"
+/area/hallway/primary/fore)
+"djS" = (
+/obj/effect/decal/warning_stripes/northwestsouth,
+/obj/structure/bed/amb_trolley{
+ dir = 4
},
-/area/hallway/primary/port/west)
-"bIM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/newscaster{
+ pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/hallway/primary/port/west)
-"bIN" = (
-/obj/structure/table/reinforced,
-/obj/machinery/camera{
- c_tag = "Technical Storage";
+/area/medical/paramedic)
+"djT" = (
+/obj/effect/decal/warning_stripes/northeastsouth,
+/obj/vehicle/ambulance{
+ dir = 4
+ },
+/obj/machinery/light{
dir = 4
},
-/obj/item/airalarm_electronics,
-/obj/item/apc_electronics,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/area/storage/tech)
-"bIO" = (
-/obj/structure/rack,
-/obj/item/circuitboard/atmos_alert{
- pixel_x = -3;
- pixel_y = 3
+/area/medical/paramedic)
+"djU" = (
+/obj/machinery/atm{
+ pixel_y = -32
},
-/obj/item/circuitboard/powermonitor,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/storage/briefcase,
+/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutral"
},
-/area/storage/tech)
-"bIP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/bridge/vip)
+"djV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/storage/tech)
-"bIQ" = (
-/obj/machinery/vending/tool,
-/obj/item/radio/intercom{
- dir = 0;
- pixel_x = -28
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bIR" = (
+/area/quartermaster/storage)
+"djY" = (
/obj/structure/table/reinforced,
-/obj/item/folder/white,
-/obj/item/stock_parts/cell/high,
-/obj/item/stack/sheet/glass,
-/obj/item/stack/sheet/glass,
-/obj/item/stack/sheet/glass,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/item/clothing/gloves/color/latex/nitrile,
+/obj/item/clothing/mask/breath,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/area/storage/tech)
-"bIS" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/storage/box/lights/mixed,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bIT" = (
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cautioncorner"
+ icon_state = "cmo"
},
-/area/storage/primary)
-"bIU" = (
-/turf/simulated/floor/plasteel{
- icon_state = "yellowcorner"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"djZ" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/area/storage/primary)
-"bIV" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
},
-/area/storage/primary)
-"bIW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/flasher_button{
+ id = "permacell2";
+ name = "Perma cell 2 flasher button";
+ pixel_x = -38;
+ pixel_y = -4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/flasher_button{
+ id = "permacell1";
+ name = "Perma cell 1 flasher button";
+ pixel_x = -38;
+ pixel_y = 6
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkred"
},
+/area/security/permabrig)
+"dka" = (
+/obj/machinery/computer/operating,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/engine/engineering/monitor)
-"bIX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/nw)
-"bIY" = (
-/obj/structure/table/wood,
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/obj/item/flashlight/lamp,
-/obj/machinery/newscaster{
- pixel_y = 32
+ dir = 8;
+ icon_state = "darkblue"
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bIZ" = (
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bJa" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
- dir = 1
+/area/medical/surgery1)
+"dkd" = (
+/obj/structure/table/glass,
+/obj/item/storage/toolbox/surgery{
+ pixel_x = -1;
+ pixel_y = 2
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bJb" = (
-/obj/machinery/firealarm{
- pixel_y = 24
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bJc" = (
+/area/medical/surgery1)
+"dke" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/cmo)
+"dkj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bJd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"dkk" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bJe" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = 26
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "CMO's Office";
+ req_access_txt = "40"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bJf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bJg" = (
-/obj/structure/table/wood,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bJh" = (
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai_upload)
-"bJi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/door/airlock/highsecurity{
- name = "AI Upload";
- req_access_txt = "30"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/medical/cmo)
+"dkn" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/ai_upload)
-"bJj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/toy/figure/captain,
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bJk" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
-/obj/machinery/light_switch{
- pixel_x = 8;
- pixel_y = 26
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bJl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bJm" = (
-/obj/machinery/light{
- dir = 1;
- in_use = 1
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bJn" = (
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bJo" = (
-/obj/machinery/ai_status_display{
- pixel_y = 32
+ icon_state = "whitepurplecorner"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bJp" = (
-/obj/structure/sign/bobross{
- pixel_y = 32
+/area/medical/research{
+ name = "Research Division"
+ })
+"dko" = (
+/obj/machinery/conveyor/north{
+ id = "QMLoad"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bJq" = (
-/obj/machinery/status_display{
- pixel_y = 32
+/obj/machinery/conveyor/northeast/ccw{
+ id = "QMLoad"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bJr" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/vending/wallmed{
- pixel_x = 26
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"dkp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 8
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bJs" = (
-/obj/machinery/computer/security/mining,
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_y = -27
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"dkt" = (
+/obj/structure/table/reinforced,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bJt" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Internal Affairs Agent"
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/tape/random{
+ pixel_x = 3;
+ pixel_y = -3
},
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+/obj/item/taperecorder,
+/obj/item/clothing/glasses/science,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/area/lawoffice)
-"bJu" = (
-/obj/structure/filingcabinet/employment,
+/obj/structure/cable,
+/obj/item/storage/bag/chemistry,
+/obj/item/storage/bag/chemistry,
+/obj/item/storage/bag/chemistry,
+/obj/item/storage/bag/chemistry,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "whitepurple"
},
-/area/lawoffice)
-"bJv" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/carpet,
-/area/lawoffice)
-"bJw" = (
-/obj/machinery/dnaforensics,
+/area/toxins/misc_lab)
+"dku" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/smartfridge/medbay,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
+ dir = 6;
+ icon_state = "whitepurple"
},
-/area/security/detectives_office)
-"bJx" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/area/toxins/misc_lab)
+"dkv" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/structure/chair/office/light{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/light,
+/turf/simulated/floor/engine,
+/area/toxins/misc_lab)
+"dkw" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/security/detectives_office)
-"bJy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/chair/office/dark{
- dir = 4
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"dky" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 4;
+ name = "Труба дыхательной смеси"
},
+/turf/space,
+/area/space/nearstation)
+"dkz" = (
+/obj/structure/table,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/ointment,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"dkF" = (
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
-"bJz" = (
-/obj/item/folder/red{
- pixel_y = 3
+ dir = 4;
+ icon_state = "neutral"
},
-/obj/item/hand_labeler,
-/obj/item/storage/box/evidence,
-/obj/item/storage/box/evidence,
-/obj/item/camera{
- desc = "A one use - polaroid camera. 30 photos left.";
- name = "detectives camera";
- pictures_left = 30
+/area/toxins/mixing)
+"dkG" = (
+/obj/structure/table/glass,
+/obj/item/storage/toolbox/surgery{
+ pixel_x = -1;
+ pixel_y = 2
},
-/obj/item/restraints/handcuffs,
-/obj/item/flash,
/obj/structure/cable{
d1 = 1;
d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/closet/secure_closet/detective,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bJA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "1-4";
+ tag = "90Curve"
},
/obj/structure/cable{
d1 = 4;
@@ -40993,1917 +40625,1863 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/security/detectives_office)
-"bJB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/medical/surgery2)
+"dkI" = (
+/turf/simulated/wall/r_wall,
+/area/toxins/mixing)
+"dkJ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Research Director's Desk";
+ departmentType = 7;
+ name = "Research Director Requests Console";
+ pixel_x = -30;
+ pixel_y = -2
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/item/clipboard,
+/obj/item/toy/figure/rd,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"dkK" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "63"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/table/wood,
-/obj/item/camera_film,
-/obj/item/book/manual/security_space_law,
-/obj/item/reagent_containers/food/drinks/flask/detflask,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bJC" = (
-/obj/structure/chair/office/dark,
-/obj/effect/landmark/start{
- name = "Detective"
+ dir = 1
},
+/area/security/range)
+"dkM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/computer/mecha,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"dkP" = (
+/obj/structure/table,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/folder/blue{
+ pixel_x = 5
},
-/area/security/detectives_office)
-"bJD" = (
-/obj/machinery/computer/security/wooden_tv{
- network = list("SS13","Research Outpost","Mining Outpost")
+/obj/item/folder/red{
+ pixel_x = -6
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/item/clothing/head/cone{
+ desc = "Старый дорожный конус. Говорят он увеличивает интеллект носителя.";
+ name = "Символ Разумизма";
+ pixel_x = -4;
+ pixel_y = 7
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"dkQ" = (
+/obj/machinery/status_display{
+ pixel_x = -32
},
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bJI" = (
-/obj/structure/chair/office/dark{
- dir = 1
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/landmark/start{
+ name = "Cyborg"
},
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"dkS" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 100;
on = 1
},
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/assembly/chargebay)
+"dkX" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"dkY" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/security/brig)
-"bJO" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkbluecorners"
+ dir = 8;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner (WEST)"
},
-/area/construction/hallway)
-"bJP" = (
-/obj/structure/chair{
- dir = 4
+/area/medical/genetics_cloning)
+"dkZ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/light{
+ dir = 8
},
+/mob/living/simple_animal/parrot/Poly,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/construction/hallway)
-"bJQ" = (
-/obj/machinery/gameboard,
+/area/crew_quarters/chief)
+"dlb" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/mrchangs)
+"dlc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "brown"
},
-/area/construction/hallway)
-"bJR" = (
-/obj/item/radio/intercom{
- pixel_y = 28
+/area/quartermaster/miningdock)
+"dld" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
},
-/area/crew_quarters/kitchen)
-"bJW" = (
-/turf/simulated/wall/r_wall,
-/area/turret_protected/aisat)
-"bJX" = (
-/obj/structure/chair{
- dir = 8
+/obj/machinery/light{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/camera{
+ c_tag = "Chief Medical Officer's Office";
+ dir = 8;
+ network = list("Medical","SS13")
},
-/area/construction/hallway)
-"bJY" = (
+/turf/simulated/floor/plasteel,
+/area/medical/cmo)
+"dle" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkbluecorners"
+ dir = 1
},
-/area/construction/hallway)
-"bJZ" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/area/security/customs)
+"dlf" = (
+/obj/structure/table/glass,
+/obj/item/soap{
+ pixel_y = 11
},
-/area/engine/aienter)
-"bKa" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/area/medical/genetics_cloning)
+"dlg" = (
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/engine/aienter)
-"bKb" = (
+/area/medical/medbay2)
+"dlk" = (
+/obj/structure/chair/wood,
+/obj/effect/landmark/start{
+ name = "Civilian"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/mrchangs)
+"dlp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/aienter)
-"bKc" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+ icon_state = "white"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/area/medical/biostorage)
+"dlr" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ pixel_y = 22
},
+/obj/effect/decal/warning_stripes/blue/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "freezerfloor"
},
-/area/engine/aienter)
-"bKd" = (
-/obj/machinery/light{
- dir = 8
+/area/security/permabrig)
+"dlu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/table/reinforced,
-/obj/item/enginepicker{
- layer = 3.1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/landmark{
+ name = "blobstart"
},
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/crew_quarters/chief)
-"bKe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/area/medical/virology)
+"dlv" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/mrchangs)
+"dlz" = (
+/obj/machinery/fishtank/wall,
+/turf/simulated/floor/plating,
+/area/crew_quarters/bar/atrium)
+"dlA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "neutralcorner"
},
/area/crew_quarters/chief)
-"bKf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+"dlB" = (
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ icon_state = "dark"
},
/area/crew_quarters/chief)
-"bKg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+"dlC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/chief)
-"bKh" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/area/engine/engineering)
+"dlJ" = (
+/obj/machinery/light{
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "freezerfloor"
},
-/area/crew_quarters/chief)
-"bKi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/security/permabrig)
+"dlK" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bKj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/construction/hallway)
+"dlL" = (
+/obj/machinery/reagentgrinder,
+/obj/structure/table/reinforced,
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
- },
-/area/engine/break_room)
-"bKk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ dir = 5;
+ icon_state = "whitepurple"
},
+/area/toxins/misc_lab)
+"dlM" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Chief Engineer";
- req_access_txt = "56"
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/chief)
-"bKl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
+/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "yellow"
- },
-/area/engine/break_room)
-"bKm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "neutralfull"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/engine/engineering/monitor)
+"dlO" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 8;
+ frequency = 1443;
+ icon_state = "on";
+ id = "air_in";
+ on = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/sparker{
+ id = "toxinsigniter";
+ pixel_x = 1;
+ pixel_y = 24
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/engine/insulated/vacuum,
+/area/toxins/mixing)
+"dlR" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/area/engine/break_room)
-"bKn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/break_room)
-"bKo" = (
+/area/hallway/primary/port)
+"dlT" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Mech Bay";
+ req_access_txt = "29"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/break_room)
-"bKp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"dlY" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light,
+/obj/machinery/newscaster{
+ pixel_y = -32
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/item/radio/intercom{
+ dir = 0;
+ pixel_x = -28;
+ pixel_y = -28
},
-/area/engine/break_room)
-"bKq" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Research Director's Office"
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"dlZ" = (
+/obj/machinery/light,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/machinery/computer/robotics,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/keycard_auth{
+ pixel_y = -24
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"dmj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "cmo"
+ },
+/area/medical/cmo)
+"dmk" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
-/area/engine/break_room)
-"bKs" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/obj/item/clothing/glasses/hud/hydroponic,
-/obj/item/clothing/glasses/hud/hydroponic,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+ pixel_y = -32
},
+/obj/structure/closet/crate/freezer,
+/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,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 6;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (SOUTHEAST)"
},
-/area/hydroponics)
-"bKt" = (
-/obj/effect/spawner/window/reinforced,
+/area/medical/genetics_cloning)
+"dml" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/central/west)
+"dmm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/turf/simulated/floor/plating,
-/area/engine/engineering/monitor)
-"bKu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/item/circuitboard/teleporter_hub{
- pixel_x = -3;
- pixel_y = 3
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/obj/item/circuitboard/teleporter_station,
-/obj/item/circuitboard/teleporter{
- pixel_x = 3;
- pixel_y = -3
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Reception";
+ req_access_txt = "63"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/storage/tech)
-"bKv" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 1
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/engine/engineering/monitor)
-"bKw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/reception)
+"dmn" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
},
-/obj/structure/sign/electricshock,
-/turf/simulated/wall/r_wall,
-/area/engine/engineering/monitor)
-"bKx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- initialize_directions = 11
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "cautioncorner"
- },
-/area/hallway/primary/port/west)
-"bKy" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/ai_status_display{
- pixel_x = -32
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
+/area/medical/medbay2)
+"dmp" = (
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 1;
+ icon_state = "brown"
},
-/area/storage/tech)
-"bKA" = (
-/obj/structure/rack,
-/obj/item/book/manual/engineering_hacking,
-/obj/item/book/manual/engineering_guide,
-/obj/item/book/manual/engineering_construction,
-/obj/machinery/status_display{
- pixel_x = -32
+/area/quartermaster/office)
+"dmq" = (
+/turf/simulated/wall,
+/area/quartermaster/storage)
+"dmr" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/door/window/eastright{
- dir = 2;
- name = "Hydroponics Delivery";
- req_access_txt = "35";
- tag = "icon-right"
+/turf/simulated/floor/grass,
+/area/hallway/secondary/exit)
+"dms" = (
+/obj/structure/table/glass,
+/obj/item/folder/white,
+/obj/item/flashlight/pen,
+/obj/item/clothing/accessory/stethoscope,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
},
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bKB" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/status_display{
- pixel_x = 32
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
+/area/medical/surgery1)
+"dmu" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/storage/tech)
-"bKC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/quartermaster/storage)
+"dmv" = (
+/obj/machinery/computer/crew,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Medical Officer's Desk";
+ departmentType = 5;
+ name = "Chief Medical Officer Requests Console";
+ pixel_x = 30
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plasteel,
+/area/medical/cmo)
+"dmx" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bKD" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/area/construction/hallway)
+"dmz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
+ },
+/area/turret_protected/ai_upload)
+"dmB" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "solar_tool_airlock";
+ name = "exterior access button";
+ pixel_x = 25;
+ pixel_y = -25;
+ req_access_txt = "32"
},
-/area/storage/primary)
-"bKE" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id_tag = "meetroomshutters";
- name = "Meeting Room Shutters";
- opacity = 0
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
- },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/auxport)
+"dmC" = (
+/obj/machinery/atmospherics/binary/valve,
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/bridge/meeting_room)
-"bKF" = (
+/area/maintenance/electrical)
+"dmE" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "solar_tool_outer";
+ locked = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "32"
+ },
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/table/wood,
-/obj/item/clothing/mask/cigarette/cigar{
- pixel_x = -5;
- pixel_y = 5
- },
-/obj/item/clothing/mask/cigarette/cigar{
- pixel_x = -2;
- pixel_y = 3
- },
-/obj/machinery/door_control{
- id = "meetroomshutters";
- name = "Privacy Shutters";
- pixel_x = 5;
- pixel_y = -4;
- req_one_access_txt = "18"
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bKG" = (
+/turf/simulated/floor/plasteel,
+/area/maintenance/auxsolarport)
+"dmF" = (
+/obj/structure/displaycase/captain,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/bridge/meeting_room)
-"bKH" = (
-/obj/structure/chair/comfy/brown,
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
-"bKI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/crew_quarters/captain)
+"dmH" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHWEST)"
},
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
-"bKJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/medical/reception)
+"dmI" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/chair/comfy/brown,
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
-"bKK" = (
-/obj/structure/chair/comfy/beige,
+/area/quartermaster/qm)
+"dmJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
-"bKL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/table/wood,
-/obj/item/phone,
-/obj/item/cigbutt/cigarbutt,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/bridge/meeting_room)
-"bKM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bKN" = (
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bKO" = (
-/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 0;
+ icon_state = "red"
},
-/area/bridge/meeting_room)
-"bKP" = (
-/obj/machinery/porta_turret,
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"bKR" = (
-/obj/machinery/ai_status_display{
+/area/security/checkpoint2)
+"dmK" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "solar_tool_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "solar_tool_airlock";
+ pixel_y = 25;
+ req_access_txt = "32";
+ tag_airpump = "solar_tool_pump";
+ tag_chamber_sensor = "solar_tool_sensor";
+ tag_exterior_door = "solar_tool_outer";
+ tag_interior_door = "solar_tool_inner"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "solar_tool_sensor";
pixel_y = 32
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"bKS" = (
-/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/permabrig)
-"bKT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/ai_upload)
-"bKU" = (
-/obj/machinery/camera/motion{
- c_tag = "AI Upload Chamber"
+/obj/machinery/light/small,
+/turf/simulated/floor/plasteel,
+/area/maintenance/auxsolarport)
+"dmL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/light_switch{
- pixel_y = 26
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"bKV" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_y = 32
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"dmM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"bKX" = (
-/obj/machinery/vending/boozeomat,
+/obj/effect/decal/remains/xeno,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/captain)
-"bKY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bKZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/area/maintenance/gambling_den)
+"dmN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/door/airlock/maintenance{
+ name = "Gambling Den"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/barricade/wooden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/captain)
-"bLa" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dmP" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/captain)
-"bLb" = (
+/area/quartermaster/qm)
+"dmQ" = (
+/obj/machinery/computer/supplycomp,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_state = "brown"
},
-/area/crew_quarters/captain)
-"bLc" = (
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bLd" = (
-/obj/structure/chair/comfy/brown{
+/area/quartermaster/qm)
+"dmR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Captain"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/captain)
-"bLe" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/donut_box,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "solar_tool_inner";
+ locked = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "32"
},
-/area/crew_quarters/captain)
-"bLf" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/turf/simulated/floor/plasteel,
+/area/maintenance/auxsolarport)
+"dmT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/crew_quarters/captain)
-"bLg" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bLh" = (
-/turf/simulated/wall,
-/area/lawoffice)
-"bLi" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "solar_tool_airlock";
+ name = "interior access button";
+ pixel_x = -25;
+ pixel_y = 25;
+ req_access_txt = "32"
},
-/obj/machinery/light{
- dir = 8
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarport)
+"dmX" = (
+/obj/structure/chair/office/dark{
+ dir = 4
},
-/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ dir = 4;
+ icon_state = "darkblue"
},
-/area/lawoffice)
-"bLj" = (
+/area/turret_protected/ai)
+"dnc" = (
/obj/structure/cable{
- d1 = 2;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "0-8"
},
-/turf/simulated/floor/carpet,
-/area/lawoffice)
-"bLk" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
+/obj/machinery/power/terminal{
+ dir = 1
},
-/turf/simulated/floor/carpet,
-/area/lawoffice)
-"bLl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/effect/landmark{
+ name = "blobstart"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 6
},
-/turf/simulated/floor/carpet,
-/area/lawoffice)
-"bLn" = (
-/obj/structure/barricade/wooden,
-/turf/simulated/floor/wood,
-/area/maintenance/fsmaint)
-"bLo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarport)
+"dnf" = (
+/obj/machinery/light{
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/ignition_switch{
+ id = "toxinsigniter";
+ pixel_x = 24;
+ pixel_y = -9
},
-/area/quartermaster/office)
-"bLp" = (
-/obj/item/radio/intercom{
- dir = 8;
- pixel_x = 30
+/obj/machinery/door_control{
+ id = "ToxinsVenting";
+ name = "Toxin Venting Control";
+ pixel_x = 25
},
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (EAST)"
},
-/obj/item/storage/briefcase,
-/obj/item/storage/secure/briefcase{
- pixel_x = 5;
- pixel_y = -5
+/area/toxins/mixing)
+"dnh" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
-/area/lawoffice)
-"bLq" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/obj/structure/window/plasmareinforced{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/window/plasmareinforced,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,
+/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"dnn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/security/detectives_office)
-"bLr" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"dns" = (
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "darkbluecorners"
},
-/area/security/detectives_office)
-"bLs" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/closet/secure_closet{
- anchored = 1;
- name = "Evidence Storage";
- req_access_txt = "4"
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"dnw" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/item/folder/red{
- pixel_x = -6;
- pixel_y = 6
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/folder/red{
- pixel_x = -6;
- pixel_y = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/folder/red{
- pixel_x = -6;
- pixel_y = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/storage/box/bodybags,
-/obj/item/reagent_containers/glass/bottle/reagent/formaldehyde,
-/obj/item/reagent_containers/dropper,
-/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/detectives_office)
-"bLt" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+/area/hallway/primary/starboard/east)
+"dnx" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 4
},
-/area/lawoffice)
-"bLu" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
},
-/area/security/detectives_office)
-"bLv" = (
-/obj/structure/table/wood,
-/obj/item/ashtray/bronze,
-/obj/item/storage/fancy/cigarettes/dromedaryco,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bLw" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+ icon_state = "neutralcorner"
},
-/obj/item/flashlight/lamp/green{
- on = 0;
- pixel_x = -3;
- pixel_y = 8
+/area/hallway/primary/aft)
+"dny" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/detectives_office)
-"bLx" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/whiskey,
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
+/turf/simulated/floor/plasteel,
+/area/maintenance/turbine)
+"dnz" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bLA" = (
-/turf/simulated/wall/r_wall,
-/area/security/brig)
-"bLB" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- name = "Security Reception";
- req_access_txt = "1"
- },
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Atmospherics Access";
+ req_one_access_txt = "24"
},
-/obj/item/pen,
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"dnB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/security/brig)
-"bLH" = (
-/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"dnD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/genetics)
+"dnE" = (
+/obj/item/storage/box/monkeycubes,
+/obj/item/storage/box/monkeycubes/stokcubes,
+/obj/item/storage/box/monkeycubes/neaeracubes,
+/obj/item/storage/box/monkeycubes/wolpincubes,
+/obj/item/storage/box/monkeycubes/farwacubes,
+/obj/structure/table,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/genetics)
+"dnG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/securearmoury)
-"bLO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/flasher{
- id = null;
- pixel_y = -24
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"dnI" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 1;
+ name = "Труба смешивания"
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 4;
+ name = "Труба фильтрации"
},
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"dnK" = (
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "darkblue"
- },
-/area/turret_protected/aisat_interior)
-"bLP" = (
-/obj/structure/sink/kitchen{
- pixel_y = 30
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"dnN" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -29
},
-/area/crew_quarters/kitchen)
-"bLR" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/cleanable/dirt,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/kitchen)
-"bLS" = (
-/obj/structure/window/reinforced{
- dir = 1
+ dir = 8;
+ icon_state = "vault"
},
-/obj/structure/window/reinforced{
- dir = 4
+/area/engine/aienter)
+"dnO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 4;
+ name = "Труба фильтрации"
},
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+/obj/machinery/atmospherics/binary/volume_pump/on{
+ desc = "Позволяет подать горючую смесь в турбину";
+ dir = 1;
+ name = "Смесь в турбину"
},
-/area/construction/hallway)
-"bLT" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
- },
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bLU" = (
-/obj/structure/window/reinforced{
- dir = 4
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/space,
-/area/space/nearstation)
-"bLW" = (
+/area/atmos)
+"dnP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/effect/decal/warning_stripes/southeast,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"dnQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/engine/break_room)
-"bLX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Transit Tube";
- req_one_access_txt = "32;19"
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/engine/aienter)
-"bLZ" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/metal/fifty{
- pixel_x = -2;
- pixel_y = 3
+/area/medical/surgery1)
+"dnS" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_y = -32
},
-/obj/machinery/alarm{
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
dir = 4;
- pixel_x = -22
+ name = "Труба фильтрации"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bMa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "caution"
},
+/area/atmos)
+"dnV" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/mining)
+"dnW" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"doc" = (
+/obj/machinery/vending/coffee,
+/obj/machinery/light{
+ dir = 8
},
-/area/hallway/primary/central/north)
-"bMb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
- },
-/area/hallway/primary/central/north)
-"bMd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10;
- initialize_directions = 10
+/area/crew_quarters/fitness)
+"dod" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "station_ai_airlock";
- name = "interior access button";
- pixel_x = -20;
- pixel_y = -20;
- req_access_txt = "10;13"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"dog" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/aienter)
-"bMe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/crew_quarters/chief)
+"doh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/engine/aienter)
-"bMf" = (
-/obj/machinery/light/small{
- dir = 4;
- tag = "icon-bulb1 (EAST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/camera{
- c_tag = "AI Transit Tube Airlock";
- dir = 8;
- network = list("SS13","Engineering")
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"doi" = (
+/obj/structure/table,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/storage/toolbox/mechanical,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/aienter)
-"bMg" = (
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/obj/machinery/computer/card/minor/ce,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/maintenance/electrical)
+"dom" = (
+/obj/structure/rack,
+/obj/machinery/newscaster{
+ pixel_y = -32
},
-/area/crew_quarters/chief)
-"bMh" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/item/lock_buster,
+/obj/item/megaphone,
+/obj/item/clothing/glasses/meson{
+ pixel_y = 4
},
+/obj/item/stock_parts/cell/high/plus,
+/obj/item/stock_parts/cell/high/plus,
+/obj/item/rcd_ammo,
+/obj/item/rcd_ammo,
+/obj/item/rcd_ammo,
+/obj/item/rcd_ammo,
+/obj/item/rcd_ammo,
+/obj/item/rcd_ammo,
+/obj/item/rcd_ammo,
+/obj/item/rcd_ammo,
+/obj/item/rcd,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "dark"
},
/area/crew_quarters/chief)
-"bMi" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+"don" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/chief)
-"bMj" = (
-/obj/structure/table/reinforced,
-/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkred"
},
-/area/crew_quarters/chief)
-"bMk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+/area/security/permabrig)
+"dor" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/crew_quarters/chief)
-"bMl" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "ceprivacy";
+ name = "CE Privacy Shutters";
+ opacity = 0
},
-/area/crew_quarters/chief)
-"bMm" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
/turf/simulated/floor/plating,
/area/crew_quarters/chief)
-"bMn" = (
-/obj/machinery/computer/shuttle/mining,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bMo" = (
+"dos" = (
+/obj/structure/sign/electricshock,
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/chief)
+"dot" = (
+/obj/machinery/light,
/obj/item/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "yellow"
- },
-/area/engine/break_room)
-"bMp" = (
-/obj/machinery/computer/drone_control,
-/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
+ pixel_y = -28
},
-/area/engine/break_room)
-"bMq" = (
-/obj/machinery/autolathe,
/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
- },
-/area/engine/break_room)
-"bMr" = (
-/obj/machinery/light,
-/obj/machinery/light_switch{
- pixel_y = -26
+ icon_state = "yellowcorner"
},
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/metal{
- amount = 10
+/area/hallway/primary/port)
+"dox" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/stack/sheet/glass{
- amount = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/engine/break_room)
-"bMs" = (
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"doy" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
- },
-/area/engine/break_room)
-"bMt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
+ icon_state = "1-2"
},
-/area/engine/break_room)
-"bMu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/break_room)
-"bMv" = (
-/obj/machinery/status_display{
- pixel_y = -32
+/area/hallway/primary/aft)
+"doA" = (
+/obj/machinery/portable_atmospherics/canister/air{
+ anchored = 1
},
-/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
+/turf/simulated/floor/engine/air,
+/area/atmos)
+"doB" = (
+/obj/machinery/light/small{
+ dir = 4
},
-/area/engine/break_room)
-"bMw" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
+/turf/simulated/floor/engine/air,
+/area/atmos)
+"doJ" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
},
-/area/engine/break_room)
-"bMx" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/engine/engineering/monitor)
-"bMy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/maintenance/portsolar)
+"doK" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/computer/security/engineering,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/engineering/monitor)
-"bMz" = (
+/area/assembly/chargebay)
+"doO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/light{
- dir = 1
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32;
+ pixel_y = 32
},
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "1-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/computer/station_alert,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/area/engine/engineering/monitor)
-"bMA" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/computer/monitor{
- name = "Grid Power Monitoring Computer"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"doP" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "RoboDesk";
+ name = "Robotics Privacy Shutter"
},
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "yellow"
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"doU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/area/engine/engineering/monitor)
-"bMB" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel,
-/area/hydroponics)
-"bMC" = (
+/area/hallway/primary/aft)
+"doW" = (
/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 8
+/obj/item/paper_bin{
+ pixel_y = 7
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/item/pen,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/storage/toolbox/electrical,
-/obj/item/multitool,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "Genetics";
+ name = "Genetics Privacy Shutters"
},
-/area/storage/tech)
-"bMD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/window/eastleft{
+ name = "Genetics Desk";
+ req_access_txt = "9"
+ },
+/obj/machinery/door/window/eastleft{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/storage/tech)
-"bME" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
+/area/medical/genetics)
+"doX" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/item/firelock_electronics,
-/obj/item/firelock_electronics,
-/obj/item/firealarm_electronics,
-/obj/item/firealarm_electronics,
-/obj/item/circuitboard/sleeper,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/storage/tech)
-"bMF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small{
- dir = 4
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"bMG" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/electrical,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/flashlight,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bMH" = (
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "yellow"
+ icon_state = "white"
},
-/area/storage/primary)
-"bMI" = (
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "yellow"
+/area/medical/genetics)
+"doY" = (
+/obj/machinery/door/window/southright{
+ dir = 1;
+ name = "Primate Pen";
+ req_access_txt = "9"
},
-/area/storage/primary)
-"bMJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/grown/bananapeel,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cautioncorner"
+ icon_state = "dark"
},
-/area/storage/primary)
-"bMK" = (
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "yellow"
+/area/medical/genetics)
+"doZ" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/area/storage/primary)
-"bML" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_y = -32
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"dpa" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/table,
+/obj/item/reagent_containers/food/snacks/grown/banana{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/snacks/grown/banana,
+/obj/item/reagent_containers/food/snacks/grown/banana{
+ pixel_x = -6;
+ pixel_y = 3
},
/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/genetics)
+"dpb" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- icon_state = "neutralcorner"
+ initialize_directions = 11
},
-/area/hallway/primary/central/north)
-"bMM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "2-4"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
},
-/obj/machinery/photocopier,
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bMN" = (
+/area/medical/genetics)
+"dpc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/area/bridge/meeting_room)
-"bMO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/genetics)
+"dpd" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_y = -32
},
-/obj/structure/table/wood,
-/obj/item/folder/blue,
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
-"bMP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/vending/chinese,
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"dpe" = (
+/obj/structure/table/reinforced,
+/obj/structure/mirror{
+ pixel_y = 32
},
-/obj/structure/chair/comfy/brown{
- dir = 4
+/obj/item/reagent_containers/spray/waterflower,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
-"bMQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/mimeoffice)
+"dpg" = (
+/obj/structure/statue/tranquillite/mime,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/table/wood,
-/obj/item/folder/yellow,
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
-"bMR" = (
+/area/mimeoffice)
+"dph" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/table/wood,
-/obj/item/folder/red,
-/obj/item/lighter/zippo,
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4";
- tag = ""
+ icon_state = "2-4"
},
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
-"bMS" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
initialize_directions = 11
},
-/obj/structure/table/wood,
-/obj/item/storage/fancy/donut_box,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ tag = "icon-pipe-j1 (EAST)"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "white"
},
-/area/bridge/meeting_room)
-"bMT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/medbay2)
+"dpn" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair/comfy/black{
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowcorner"
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bMU" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/hallway/primary/port)
+"dpt" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
dir = 8;
- external_pressure_bound = 100;
- on = 1
+ icon_state = "shutter0";
+ id_tag = "hopqueueshutters";
+ name = "Queue Shutters";
+ opacity = 0
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bMV" = (
-/obj/machinery/light{
- dir = 4
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 8
},
-/obj/machinery/vending/cigarette,
-/obj/machinery/camera{
- c_tag = "Uplink Terminal";
+/obj/effect/decal/warning_stripes/yellow/partial{
dir = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/west)
+"dpv" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/arrow,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/bridge/meeting_room)
-"bMW" = (
-/obj/item/aiModule/reset,
-/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/turret_protected/ai_upload)
-"bMX" = (
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"bMY" = (
+/area/crew_quarters/serviceyard)
+"dpw" = (
+/obj/structure/closet/secure_closet/CMO,
+/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/ai_upload)
-"bMZ" = (
-/obj/item/phone{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/medical/cmo)
+"dpA" = (
+/obj/structure/dresser,
+/obj/structure/mirror{
+ pixel_x = 32
},
-/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/ai_upload)
-"bNa" = (
-/obj/item/aiModule/protectStation{
- pixel_x = -2;
- pixel_y = 2
+/area/medical/cmo)
+"dpC" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"dpD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/aiModule/nanotrasen{
- pixel_x = 2;
- pixel_y = -2
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/turret_protected/ai_upload)
-"bNb" = (
-/obj/machinery/vending/cigarette,
-/obj/machinery/camera{
- c_tag = "Captain's Meet Room";
- dir = 4
+/area/quartermaster/office)
+"dpH" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Bar";
+ name = "Bar Privacy Shutters"
},
+/obj/item/reagent_containers/glass/rag,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/crew_quarters/captain)
-"bNc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/crew_quarters/bar)
+"dpP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"dpQ" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/hologram/holopad,
+/obj/structure/window/reinforced,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 6;
+ icon_state = "darkblue"
},
-/area/crew_quarters/captain)
-"bNd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/construction/hallway)
+"dpR" = (
+/obj/machinery/door/airlock/public{
+ name = "Bar";
+ req_access_txt = "25"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/crew_quarters/captain)
-"bNe" = (
+/area/crew_quarters/bar)
+"dpW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bNf" = (
+/area/security/prisonershuttle)
+"dpX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/chair/comfy/brown{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/captain)
-"bNg" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/table/wood,
-/obj/item/clothing/mask/cigarette/cigar,
-/obj/item/clothing/mask/cigarette/cigar,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/captain)
-"bNh" = (
-/obj/machinery/light{
- dir = 4
+/area/quartermaster/office)
+"dpY" = (
+/obj/machinery/door/poddoor/shutters{
+ id_tag = "roboticsshutters";
+ name = "Mech Bay Shutters"
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"dpZ" = (
+/obj/structure/chair{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bNi" = (
-/obj/structure/closet/lawcloset,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/lawoffice)
-"bNj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
+/area/medical/research/nhallway)
+"dqb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "purplefull"
},
-/area/lawoffice)
-"bNk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/research/shallway)
+"dqd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/storage)
+"dqe" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ name = "Quartermaster";
+ req_access_txt = "41"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/carpet,
-/area/lawoffice)
-"bNl" = (
-/obj/structure/chair/comfy/brown,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark/start{
- name = "Internal Affairs Agent"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/carpet,
-/area/lawoffice)
-"bNn" = (
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+/turf/simulated/floor/plasteel,
+/area/quartermaster/qm)
+"dqg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/lawoffice)
-"bNo" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/smartfridge/secure/chemistry/virology,
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"dqi" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"dqk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/remains/human,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"dql" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ name = "Robotics Junction";
+ sortType = 14
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "purplecorner"
+ },
+/area/hallway/primary/aft)
+"dqq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/door/window/eastright{
- dir = 8;
- name = "Forensic laboratory";
- req_access_txt = "4"
- },
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bNp" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-25";
- tag = "icon-plant-25"
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark{
+ name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkblue"
- },
-/area/security/detectives_office)
-"bNq" = (
-/obj/effect/landmark/start{
- name = "Detective"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- name = "standard air scrubber";
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ icon_state = "neutralfull"
},
+/area/hallway/primary/fore)
+"dqr" = (
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "darkblue"
},
-/area/security/detectives_office)
-"bNr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/turret_protected/ai)
+"dqt" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
-"bNs" = (
-/obj/machinery/door/window/eastright{
dir = 8;
- name = "Forensic laboratory";
- req_access_txt = "4"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/medbay2)
+"dqv" = (
+/obj/effect/decal/warning_stripes/arrow,
+/obj/effect/decal/warning_stripes/yellow/partial,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bNu" = (
+/area/quartermaster/delivery)
+"dqw" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bNv" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- name = "standard air scrubber";
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ icon_state = "neutralfull"
},
+/area/quartermaster/storage)
+"dqz" = (
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHEAST)"
},
-/area/security/detectives_office)
-"bNw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/medical/medbay)
+"dqD" = (
+/obj/machinery/ai_slipper,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
},
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bNz" = (
-/obj/structure/chair{
+/area/turret_protected/ai)
+"dqO" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/recharger/wallcharger{
- pixel_x = -24;
- pixel_y = -3
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ icon_state = "neutralcorner"
},
-/area/security/main)
-"bNA" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-22";
- tag = "icon-plant-22"
+/area/hallway/primary/starboard/east)
+"dqP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -42911,518 +42489,445 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/brig)
-"bNB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/mineral/ore_redemption,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bNC" = (
-/obj/structure/plasticflaps{
- opacity = 1
+/area/quartermaster/storage)
+"dqR" = (
+/turf/simulated/wall/r_wall,
+/area/medical/cmo)
+"dqS" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible,
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/maintenance/apmaint)
-"bNF" = (
-/obj/structure/table/reinforced,
-/obj/structure/table/reinforced,
-/obj/item/taperecorder,
-/obj/item/clothing/glasses/sunglasses/blindfold,
+/area/maintenance/electrical)
+"dqT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Aft Starboard Solar Access";
+ req_access_txt = "10"
+ },
+/obj/structure/sign/electricshock{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboardsolar)
+"dqY" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkred"
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "solar_xeno_inner";
+ locked = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "13"
},
-/area/security/execution)
-"bNJ" = (
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- name = "Execution Access";
- req_access_txt = "1"
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
+"dra" = (
+/obj/machinery/door/airlock/command/glass{
+ name = "AI Core";
+ req_access_txt = "16"
},
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/execution)
-"bNK" = (
-/obj/machinery/autolathe{
- hacked = "hack"
+/area/turret_protected/ai)
+"drd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/door/window/brigdoor{
- req_access_txt = "3"
+/obj/item/radio/intercom{
+ pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkred"
+ icon_state = "neutralcorner"
},
-/area/security/securearmoury)
-"bNR" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/area/hallway/primary/starboard/east)
+"dri" = (
+/obj/structure/closet/crate,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"bNS" = (
+/area/quartermaster/storage)
+"dro" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/sortjunction{
- name = "Atmospherics Junction";
- sortType = 6
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 5
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/port/west)
-"bNT" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/drone_fabricator,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
+/area/hallway/secondary/exit)
+"drp" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
},
-/area/engine/break_room)
-"bNU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/engine/insulated/vacuum,
+/area/toxins/mixing)
+"drq" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/turf/simulated/floor/engine/insulated/vacuum,
+/area/toxins/mixing)
+"drs" = (
+/obj/machinery/light{
+ dir = 4
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering";
- req_access_txt = "10"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (EAST)"
},
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bNW" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1
+/area/medical/research/nhallway)
+"drv" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurple"
},
+/area/assembly/robotics)
+"drC" = (
+/obj/machinery/mecha_part_fabricator,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "neutralfull"
},
-/area/engine/aienter)
-"bNX" = (
+/area/assembly/robotics)
+"drD" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/aienter)
-"bNY" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+ icon_state = "white"
},
+/area/medical/genetics)
+"drE" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/engine/aienter)
-"bNZ" = (
-/obj/machinery/camera{
- c_tag = "Chief Engineer's Office";
- dir = 4;
- network = list("Engineering","SS13");
- pixel_y = -22
+ dir = 1;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/obj/machinery/computer/atmos_alert,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/medical/genetics)
+"drF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/crew_quarters/chief)
-"bOa" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "neutral"
- },
-/area/crew_quarters/chief)
-"bOb" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Chief Engineer"
+ icon_state = "whitepurple"
},
+/area/medical/genetics)
+"drG" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/chief)
-"bOd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/quartermaster/storage)
+"drH" = (
+/obj/machinery/light/spot,
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"drK" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/shuttle/supply)
+"drL" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall11";
+ tag = "icon-swall11"
+ },
+/area/shuttle/supply)
+"drM" = (
+/obj/machinery/ai_slipper,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutral"
+ icon_state = "darkblue"
},
-/area/crew_quarters/chief)
-"bOe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/turret_protected/ai)
+"drN" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/folder,
+/obj/machinery/door/window/westleft{
+ name = "Robotics Desk";
+ req_access_txt = "29"
+ },
+/obj/machinery/door/window/eastleft,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "RoboDesk";
+ name = "Robotics Privacy Shutter"
},
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plasteel,
+/area/assembly/robotics)
+"drP" = (
+/obj/structure/table,
+/obj/item/camera{
+ name = "Autopsy Camera";
+ pixel_x = -2;
+ pixel_y = -2
},
-/area/crew_quarters/chief)
-"bOf" = (
-/obj/structure/sign/electricshock,
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/chief)
-"bOg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/nosmoking_2,
-/turf/simulated/wall,
-/area/engine/break_room)
-"bOh" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering";
- req_access_txt = "10"
+/obj/item/storage/box/gloves{
+ pixel_y = 8
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering/monitor)
-"bOi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/securearea,
-/turf/simulated/wall,
-/area/engine/break_room)
-"bOj" = (
-/obj/structure/table/reinforced,
-/obj/item/assembly/timer,
-/obj/item/assembly/timer,
-/obj/item/assembly/voice,
-/obj/item/assembly/voice,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/storage/tech)
-"bOk" = (
-/obj/machinery/camera{
- c_tag = "Engineering Monitoring";
+/obj/item/storage/box/bodybags{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/bodybags,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/simulated/floor/plasteel{
dir = 4;
- network = list("Engineering","SS13");
- pixel_y = -22
+ icon_state = "darkblue"
+ },
+/area/medical/morgue)
+"drR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
+ icon_state = "neutralcorner"
},
-/area/engine/engineering/monitor)
-"bOl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/security/lobby)
+"drT" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/area/security/permabrig)
+"drU" = (
+/obj/structure/bed,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/chair/office/dark{
- dir = 1
+/obj/item/radio/intercom{
+ pixel_x = -30
},
-/obj/effect/landmark/start{
- name = "Station Engineer"
+/obj/machinery/flasher{
+ id = "Perma1";
+ pixel_x = -24;
+ pixel_y = -12
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 9;
+ icon_state = "darkred"
},
-/area/engine/engineering/monitor)
-"bOm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/permabrig)
+"drW" = (
+/obj/machinery/firealarm{
+ pixel_y = 28
},
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
+ dir = 1;
+ icon_state = "red"
},
-/area/engine/engineering/monitor)
-"bOn" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/radio/intercom{
- pixel_y = -28
+/area/security/securehallway)
+"drX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
},
+/area/security/permabrig)
+"dse" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/space,
+/area/space/nearstation)
+"dsg" = (
/turf/simulated/floor/plasteel{
+ dir = 0;
icon_state = "red"
},
-/area/security/brig)
-"bOo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/security/securehallway)
+"dsh" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -28
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/camera{
+ c_tag = "Chief Medical Officer's Quarters";
+ dir = 1;
+ network = list("Medical","SS13")
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "cmo"
},
-/area/hallway/primary/port/west)
-"bOp" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/area/medical/cmo)
+"dsk" = (
+/obj/effect/decal/warning_stripes/southeastcorner,
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ desc = "Труба содержит газ для обработки и после возвращает его обратно в трубу смешивания";
+ dir = 8;
+ name = "Труба обработки"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellowcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/primary/port/west)
-"bOq" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/storage/toolbox/electrical,
-/obj/item/multitool,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/area/atmos)
+"dsq" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/storage/tech)
-"bOr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/storage/tech)
-"bOs" = (
+/turf/space,
+/area/space/nearstation)
+"dsu" = (
+/obj/effect/decal/warning_stripes/southwestcorner,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/storage/tech)
-"bOt" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = -26
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/storage/tech)
-"bOu" = (
-/obj/structure/table/reinforced,
-/obj/machinery/newscaster{
- pixel_y = -32
+ icon_state = "1-2"
},
-/obj/item/wrench,
-/obj/item/crowbar,
-/obj/item/paicard,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/storage/tech)
-"bOv" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"bOw" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/flashlight,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "white"
+ },
+/area/assembly/robotics)
+"dsw" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/storage/tech)
-"bOx" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light,
-/obj/item/assembly/timer,
-/obj/item/assembly/timer,
-/obj/item/multitool,
-/obj/item/multitool,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bOy" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bOz" = (
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bOA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+ dir = 10;
+ icon_state = "darkblue"
},
-/area/storage/primary)
-"bOB" = (
+/area/construction/hallway)
+"dsx" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellowcorner"
+ dir = 10;
+ icon_state = "whitepurple"
},
-/area/storage/primary)
-"bOC" = (
-/turf/simulated/wall,
-/area/storage/primary)
-"bOD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
+/area/medical/research/restroom)
+"dsz" = (
+/obj/structure/table/wood,
+/obj/item/pinpointer,
+/obj/item/disk/nuclear,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "grimy"
+ },
+/area/crew_quarters/captain/bedroom)
+"dsE" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/hallway/primary/central/nw)
-"bOE" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/obj/structure/table/wood,
-/obj/item/book/manual/security_space_law,
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bOF" = (
-/obj/structure/chair/comfy/beige{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
-"bOG" = (
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
-"bOH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/chair/comfy/beige{
- dir = 1
+/area/assembly/robotics)
+"dsG" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
-"bOI" = (
-/obj/structure/chair/comfy/brown{
- dir = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
-"bOJ" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/bridge/meeting_room)
-"bOK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = -32
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bOL" = (
+/area/assembly/robotics)
+"dsI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -43432,8612 +42937,8757 @@
dir = 1;
initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bOM" = (
-/obj/machinery/computer/account_database,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
},
-/area/bridge/meeting_room)
-"bON" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"bOO" = (
-/obj/item/aiModule/quarantine,
-/obj/structure/table/glass,
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 6;
+ icon_state = "neutral"
},
-/area/turret_protected/ai_upload)
-"bOP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 100;
- on = 1
+/area/engine/mechanic_workshop/expedition)
+"dsO" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Atmospherics Storage";
+ req_one_access_txt = "24"
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"bOQ" = (
-/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/atmos)
+"dsP" = (
+/obj/structure/filingcabinet/chestdrawer/autopsy,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "darkblue"
},
-/area/turret_protected/ai_upload)
-"bOR" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/area/medical/morgue)
+"dsQ" = (
+/obj/structure/window/reinforced,
+/obj/machinery/light{
+ on = 1;
+ pixel_y = 7
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"bOS" = (
-/obj/item/aiModule/freeform,
-/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "darkblue"
},
-/area/turret_protected/ai_upload)
-"bOT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/construction/hallway)
+"dsR" = (
+/obj/item/radio/intercom{
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/turret_protected/ai_upload)
-"bOU" = (
-/obj/structure/bed/dogbed{
- name = "fox box"
+/area/medical/medbay2)
+"dsT" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/mob/living/simple_animal/pet/dog/fox/Renault,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/medbay2)
+"dsV" = (
+/obj/item/radio/intercom/custom{
+ pixel_y = 25
},
-/area/crew_quarters/captain)
-"bOV" = (
/obj/item/radio/intercom{
- dir = 1;
+ pixel_x = 28
+ },
+/obj/item/radio/intercom/private{
pixel_y = -28
},
-/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = -32
+/obj/effect/landmark{
+ name = "tripai"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/door/window/southright{
+ dir = 8;
+ name = "AI Intercom";
+ req_access_txt = "16"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bOW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai)
+"dsW" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/light_switch{
+ pixel_x = 6;
+ pixel_y = -26
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
+ },
+/area/medical/cryo)
+"dsY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bOX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
},
-/obj/structure/chair/comfy/brown,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/medical/surgery2)
+"dtb" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bOY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bOZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bPa" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bPb" = (
-/obj/machinery/camera{
- c_tag = "Captain's Room";
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bPc" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
+"dtc" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/ne)
-"bPd" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
+ name = "Труба дыхательной смеси"
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/lawoffice)
-"bPe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ dir = 1;
+ icon_state = "dark"
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/area/atmos)
+"dtd" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
},
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ dir = 6;
+ icon_state = "darkblue"
},
-/area/lawoffice)
-"bPf" = (
-/obj/machinery/vending/coffee/free,
-/obj/machinery/requests_console{
- department = "Internal Affairs Office";
- name = "Internal Affairs Requests Console";
- pixel_y = -33
+/area/construction/hallway)
+"dte" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/machinery/ai_status_display{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/lawoffice)
-"bPg" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/taperecorder{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/camera{
- pixel_x = 3;
- pixel_y = -4
+ icon_state = "grimy"
},
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+/area/crew_quarters/chief)
+"dti" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 4;
+ name = "Труба дыхательной смеси"
},
-/area/lawoffice)
-"bPh" = (
-/obj/structure/table/reinforced,
-/obj/item/pen,
-/obj/item/paper_bin/nanotrasen,
+/turf/simulated/floor/plating,
+/area/atmos)
+"dtj" = (
+/obj/machinery/flasher/portable,
+/obj/effect/decal/warning_stripes/red/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/lawoffice)
-"bPi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ dir = 4;
+ icon_state = "vault"
},
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/security/securearmoury)
+"dtm" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/sleeper)
-"bPj" = (
+/area/maintenance/electrical)
+"dtn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/genetics_cloning)
-"bPk" = (
-/obj/machinery/firealarm{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- pixel_y = -24
- },
-/obj/machinery/vending/cigarette,
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/lawoffice)
-"bPl" = (
-/obj/structure/morgue,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
- },
-/area/security/detectives_office)
-"bPm" = (
-/obj/machinery/light{
- on = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
- },
-/area/security/detectives_office)
-"bPn" = (
-/obj/machinery/optable,
-/obj/item/scalpel,
-/obj/item/autopsy_scanner,
-/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"dtr" = (
+/obj/structure/closet,
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"dtv" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/security/detectives_office)
-"bPo" = (
/obj/structure/window/reinforced{
dir = 8
},
-/obj/machinery/requests_console{
- name = "Detective Requests Console";
- pixel_y = -30
+/turf/space,
+/area/space/nearstation)
+"dtA" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"dtB" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/west)
+"dtC" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/structure/chair/sofa/right{
dir = 4
},
-/obj/machinery/light{
- on = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/bar/atrium)
+"dtD" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/starboard)
+"dtF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bPp" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/crew_quarters/heads/hop)
+"dtI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "privateroom"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "privateroom"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/window/reinforced/polarized{
+ id = "privateroom"
},
+/turf/simulated/floor/plating,
+/area/crew_quarters/bar/atrium)
+"dtJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bPq" = (
-/obj/machinery/photocopier,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/office)
+"dtK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bPr" = (
-/obj/structure/rack,
-/obj/machinery/light{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/maintenance/turbine)
+"dtL" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/item/storage/briefcase,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bPs" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-25";
- tag = "icon-plant-25"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/obj/machinery/light_switch{
- pixel_x = 25
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/maintenance/turbine)
+"dtS" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -28
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
},
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bPt" = (
-/obj/structure/table/reinforced,
+/area/toxins/lab)
+"dtU" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/light,
-/obj/machinery/door_control{
- desc = "A remote control switch for the brig foyer.";
- id = "BrigLeft";
- name = "Left Doors Control";
- normaldoorcontrol = 1;
- pixel_x = -6;
- pixel_y = 7;
- req_access_txt = null
+ icon_state = "1-8"
},
-/obj/machinery/door_control{
- desc = "A remote control switch for the brig foyer.";
- id = "BrigRight";
- name = "Right Doors Control";
- normaldoorcontrol = 1;
- pixel_x = 6;
- pixel_y = 7;
- req_access_txt = null
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "BrigRight";
- name = "Right Doors Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 6;
- pixel_y = -2;
- specialfunctions = 4
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"dtZ" = (
+/obj/machinery/camera{
+ armor = list("melee" = 50, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 100, "bio" = 0, "rad" = 0, "fire" = 90, "acid" = 50);
+ c_tag = "Research Toxins Test Chamber North";
+ network = list("Toxins","Research","SS13")
},
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "BrigLeft";
- name = "Left Doors Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = -6;
- pixel_y = -2;
- specialfunctions = 4
+/obj/machinery/light{
+ dir = 1
},
-/obj/machinery/flasher_button{
- id = "brigkpp";
- name = "Flasher Control";
- pixel_x = -17;
- pixel_y = 2
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"duf" = (
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"duh" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22";
+ tag = "icon-plant-22"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/newscaster{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "red"
- },
-/area/security/brig)
-"bPw" = (
-/obj/structure/table,
-/obj/item/wrench,
-/obj/item/screwdriver,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/machinery/light,
-/obj/machinery/alarm{
- dir = 4;
- locked = 0;
- pixel_x = -22
+ dir = 8;
+ icon_state = "darkblue"
},
-/obj/item/radio/intercom{
- pixel_y = -30
+/area/medical/morgue)
+"duk" = (
+/turf/simulated/wall,
+/area/medical/morgue)
+"dum" = (
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkred"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/security/execution)
-"bPy" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/cigarettes/cigpack_robust,
-/obj/item/lighter,
+/area/medical/medbay2)
+"duo" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
- },
-/area/security/execution)
-"bPz" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/bottle/morphine{
- pixel_x = 8;
- pixel_y = 2
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/reagent_containers/glass/bottle/sulfonal{
- pixel_x = -4;
- pixel_y = 2
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"dup" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/light,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -28
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkred"
+ icon_state = "white"
},
-/area/security/execution)
-"bPA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/item/crowbar/red,
-/obj/item/wrench,
-/obj/item/clothing/head/welding,
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bPB" = (
-/obj/structure/window/reinforced,
-/obj/structure/dispenser/oxygen,
-/obj/effect/decal/warning_stripes/northeast,
+/area/medical/medbay)
+"duq" = (
+/obj/item/flag/cargo,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/securearmoury)
-"bPC" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/space,
-/area/space/nearstation)
-"bPD" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "station_ai_outer";
- locked = 1;
- name = "Minisat Access";
- req_access = null;
- req_access_txt = "10;13"
+ dir = 8;
+ icon_state = "brown"
},
+/area/quartermaster/qm)
+"dut" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel,
+/area/medical/cmo)
+"duw" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/aienter)
-"bPE" = (
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "station_ai_airlock";
- pixel_y = -57;
- req_access_txt = "10;13";
- tag_airpump = "station_ai_pump";
- tag_chamber_sensor = "station_ai_sensor";
- tag_exterior_door = "station_ai_outer";
- tag_interior_door = "station_ai_inner"
- },
-/obj/machinery/airlock_sensor{
- id_tag = "station_ai_sensor";
- pixel_y = -66
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 4;
- frequency = 1379;
- id_tag = "station_ai_pump"
+/area/quartermaster/qm)
+"duB" = (
+/obj/structure/chair/office/dark{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/aienter)
-"bPF" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "station_ai_inner";
- locked = 1;
- name = "Minisat Access";
- req_access = null;
- req_access_txt = "10;13"
+/area/quartermaster/qm)
+"duF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/aienter)
-"bPG" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/power/smes{
- charge = 5e+006
- },
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"duJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/sign/electricshock{
- pixel_y = 32
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
/turf/simulated/floor/plating,
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
+/area/maintenance/port{
+ name = "Brig Maintenance"
})
-"bPH" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/effect/decal/warning_stripes/southeast,
-/obj/item/radio/intercom{
- pixel_y = 24
+"duN" = (
+/obj/machinery/smartfridge/drying_rack,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/security/permabrig)
+"duO" = (
+/obj/machinery/power/terminal,
+/obj/effect/decal/warning_stripes/south,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/plating,
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bPK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 9
},
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "atmo_tank_airlock";
- name = "interior access button";
- pixel_x = -20;
- pixel_y = 20;
- req_access_txt = "32"
- },
-/obj/item/radio/intercom{
- pixel_x = 30;
- pixel_y = 24
- },
/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"bPL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
-"bPM" = (
+/area/engine/controlroom)
+"duT" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkbluecorners"
- },
-/area/turret_protected/aisat)
-"bPN" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 26
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/medical/paramedic)
+"duY" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
- },
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bPP" = (
-/obj/structure/window/reinforced{
- dir = 1
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
-/obj/structure/window/reinforced{
- dir = 8
+/area/medical/research/shallway)
+"dvd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/construction/hallway)
-"bPQ" = (
-/obj/structure/window/reinforced{
- dir = 1
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/area/construction/hallway)
-"bPR" = (
-/obj/structure/foodcart,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/crew_quarters/kitchen)
-"bPS" = (
-/turf/simulated/wall,
-/area/space/nearstation)
-"bPT" = (
-/obj/structure/lattice,
-/obj/machinery/light/small,
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bPU" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "ai_outer";
- locked = 1;
- name = "MiniSat External Access";
- req_access = null;
- req_access_txt = "75;13"
+/area/medical/research/shallway)
+"dvf" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "neutralcorner"
},
-/area/construction/hallway)
-"bPV" = (
-/obj/structure/window/reinforced{
+/area/hallway/primary/central/west)
+"dvg" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/robot_parts/robot_suit,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/assembly/robotics)
+"dvk" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera{
+ c_tag = "Central Hallway South";
dir = 8
},
-/obj/structure/lattice,
-/obj/machinery/light/small{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bPW" = (
-/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SE"
+/turf/simulated/floor/plasteel{
+ icon_state = "orangecorner"
},
-/obj/structure/window/reinforced,
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"bPX" = (
-/obj/structure/lattice,
-/obj/structure/transit_tube{
- icon_state = "E-SW";
- tag = "icon-E-SW"
+/area/hallway/primary/aft)
+"dvm" = (
+/obj/machinery/dna_scannernew,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/turf/space,
-/area/space/nearstation)
-"bPY" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bPZ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 4
+/area/medical/genetics)
+"dvr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/radio,
-/obj/item/radio,
-/obj/item/radio,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/light_switch{
- pixel_x = 24
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/stack/tape_roll,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"bQa" = (
+/area/medical/genetics)
+"dvt" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- name = "Mining Maintenance";
- req_access_txt = "48"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/apmaint)
-"bQb" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/window/westleft{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
dir = 1;
- name = "Cargo Bay Desk";
- req_access_txt = "31"
+ icon_state = "darkblue"
},
-/obj/item/paper/deltainfo,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/medical/morgue)
+"dvu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/quartermaster/office)
-"bQc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/window/eastleft{
- name = "Kitchen Desk";
- req_access_txt = "28"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "Kitchen Windows";
- name = "Kitchen Privacy Shutters"
- },
-/obj/item/clipboard,
-/obj/item/toy/figure/chef,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"bQd" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/paicard,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/chief)
-"bQe" = (
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Transit Tube";
- req_one_access_txt = "32;19"
+ dir = 1;
+ icon_state = "darkblue"
},
-/obj/machinery/door/poddoor{
- icon_state = "open";
- id_tag = "transitlock";
- name = "Transit Tube Blast Doors"
+/area/medical/morgue)
+"dvv" = (
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_access_txt = "6"
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/engine/aienter)
-"bQf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/ai_upload)
-"bQg" = (
+/area/medical/morgue)
+"dvx" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay2)
+"dvA" = (
+/obj/machinery/power/terminal,
+/obj/effect/decal/warning_stripes/south,
+/obj/structure/cable/yellow{
d2 = 8;
icon_state = "0-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/apmaint)
-"bQh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/engine/controlroom)
+"dvB" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/toy/figure/ce,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"dvC" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/crew_quarters/chief)
-"bQi" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "ceprivacy";
- name = "CE Privacy Shutters";
- opacity = 0
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/crew_quarters/chief)
-"bQj" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/newscaster{
- pixel_y = 32
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"dvJ" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/crew_quarters/chief)
-"bQk" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/obj/machinery/ai_status_display{
- pixel_y = 32
+/area/medical/surgery2)
+"dvK" = (
+/obj/effect/spawner/random_spawners/grille_maybe,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"dvM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random_spawners/grille_maybe,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"dvN" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "co2_sensor"
+ },
+/turf/simulated/floor/engine/co2,
+/area/atmos)
+"dvP" = (
+/obj/effect/landmark/start{
+ name = "Mime"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
-/area/crew_quarters/chief)
-"bQl" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+/area/mimeoffice)
+"dvR" = (
+/obj/machinery/chem_master/condimaster,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/structure/bed,
-/obj/item/bedsheet/ce,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/chief)
-"bQm" = (
-/obj/structure/dresser,
-/obj/machinery/status_display{
- pixel_y = 32
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
+/area/crew_quarters/bar)
+"dvS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/crew_quarters/chief)
-"bQn" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "darkred"
+/area/crew_quarters/heads/hop)
+"dwg" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/security/execution)
-"bQp" = (
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+/turf/simulated/floor/plating,
+/area/toxins/server)
+"dwh" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 28
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"dwk" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Engineering Lobby";
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/assembly/robotics)
+"dwm" = (
+/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- network = list("Engineering","SS13");
- pixel_y = -22
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
+ initialize_directions = 11
},
-/area/engine/break_room)
-"bQq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small{
- dir = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/closet/radiation,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bQr" = (
-/turf/simulated/wall,
-/area/engine/engineering)
-"bQs" = (
-/obj/machinery/light_switch{
- pixel_x = -26
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dwo" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "yellow"
+ icon_state = "white"
},
-/area/engine/engineering/monitor)
-"bQt" = (
+/area/crew_quarters/kitchen)
+"dws" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+ dir = 10;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/engine/engineering/monitor)
-"bQu" = (
+/area/medical/reception)
+"dwu" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
},
-/area/engine/engineering/monitor)
-"bQv" = (
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/closet/firecloset,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/area/medical/morgue)
+"dwv" = (
+/obj/structure/morgue,
+/obj/effect/decal/warning_stripes/northwest,
+/obj/effect/landmark{
+ name = "revenantspawn"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
+ icon_state = "dark"
},
-/area/engine/engineering/monitor)
-"bQw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/camera{
- c_tag = "Port Hallway South";
+/area/medical/morgue)
+"dww" = (
+/obj/structure/chair/office/dark{
dir = 8
},
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "brown"
+ },
+/area/quartermaster/delivery)
+"dwy" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- icon_state = "yellowcorner"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/hallway/primary/port/west)
-"bQx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/storage/tech)
-"bQy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/soap,
-/obj/structure/table,
+/area/quartermaster/delivery)
+"dwA" = (
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ dir = 10;
+ icon_state = "darkblue"
},
-/area/crew_quarters/kitchen)
-"bQz" = (
-/obj/structure/disposalpipe/segment{
+/area/medical/surgery2)
+"dwC" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"dwG" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/security/lobby)
-"bQA" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bQB" = (
-/obj/structure/sign/directions/engineering{
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
dir = 8;
- pixel_y = 8
+ icon_state = "neutralfull"
},
-/obj/structure/sign/directions/science{
- pixel_y = 1
+/area/crew_quarters/locker)
+"dwH" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 1;
+ name = "Труба фильтрации"
},
-/obj/structure/sign/directions/evac{
- pixel_y = -8
+/obj/machinery/atmospherics/binary/pump{
+ desc = "Подаёт кислород для смешивания с другими газами";
+ dir = 8;
+ name = "Кислород (O2) в смеситель";
+ target_pressure = 101
},
-/turf/simulated/wall,
-/area/storage/primary)
-"bQC" = (
-/obj/machinery/teleport/hub,
-/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bQD" = (
-/obj/machinery/teleport/station,
-/obj/effect/decal/warning_stripes/south,
-/obj/item/radio/intercom{
- pixel_y = 24
- },
-/obj/machinery/light{
- dir = 1;
- on = 1
+/area/atmos)
+"dwL" = (
+/obj/effect/spawner/lootdrop/trade_sol/largeitem{
+ loot = list(/obj/machinery/floodlight = 50, /obj/machinery/disco = 50, /obj/mecha/combat/durand/old = 50, /obj/machinery/snow_machine = 50);
+ name = "3. Large item"
},
-/obj/machinery/camera/motion{
- c_tag = "Minisat Teleporter Room";
- network = list("Minisat","SS13")
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"dwM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/bluegrid,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bQE" = (
-/obj/structure/table/wood,
-/obj/machinery/ai_status_display{
- pixel_x = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/storage/briefcase,
-/obj/item/storage/secure/briefcase,
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bQF" = (
-/obj/structure/bookcase,
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = -28
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bQG" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bQH" = (
-/obj/machinery/alarm{
+/turf/simulated/floor/plasteel{
dir = 1;
- pixel_y = -22
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bQI" = (
+/area/bridge/vip)
+"dwN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ icon_state = "1-2"
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bQJ" = (
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = -26
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/hallway/primary/port/west)
+"dwP" = (
+/obj/machinery/light/small{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bQK" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
+/obj/machinery/camera{
+ c_tag = "Atmospherics East";
+ dir = 8;
+ network = list("Engineering","SS13")
},
-/obj/machinery/porta_turret{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 10;
+ name = "Труба смешивания"
},
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "dark"
},
-/area/turret_protected/ai_upload)
-"bQL" = (
-/turf/simulated/floor/plasteel{
+/area/atmos)
+"dwW" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/atmos)
+"dwX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- icon_state = "vault"
+ initialize_directions = 11
},
-/area/turret_protected/ai_upload)
-"bQM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/ai_slipper,
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"bQN" = (
-/obj/machinery/porta_turret{
- dir = 8
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/turret_protected/ai_upload)
-"bQO" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/area/quartermaster/storage)
+"dwZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/light{
- dir = 8
+/obj/machinery/conveyor_switch/oneway{
+ id = "QMLoad"
},
-/obj/item/hand_tele,
-/obj/item/coin/plasma,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain)
-"bQP" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/item/paper_bin,
-/obj/item/pen/fancy,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain)
-"bQQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/quartermaster/storage)
+"dxa" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/table/wood,
-/obj/machinery/door/window{
- base_state = "right";
- dir = 1;
- icon_state = "right";
- name = "Captain's Desk Door";
- req_access_txt = "20"
+/obj/machinery/door/window/eastleft{
+ dir = 2;
+ name = "Kitchen Desk";
+ req_access_txt = "28"
},
-/obj/item/folder/blue,
-/obj/item/stamp/captain,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain)
-"bQR" = (
-/obj/machinery/door/window{
- base_state = "right";
- dir = 1;
- icon_state = "right";
- name = "Captain's Desk Door";
- req_access_txt = "20"
+/obj/machinery/smartfridge/dish{
+ opacity = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/crew_quarters/captain)
-"bQS" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
+/area/crew_quarters/kitchen)
+"dxb" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 1;
- layer = 2.9
+ id_tag = "Kitchen Dinner Windows";
+ name = "Kitchen Shutters"
},
-/obj/item/storage/secure/briefcase,
-/obj/item/storage/lockbox/medal,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
+ },
+/area/crew_quarters/kitchen)
+"dxc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/area/crew_quarters/captain)
-"bQT" = (
-/obj/structure/table/wood,
-/obj/item/camera,
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bQU" = (
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bQV" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/medical/genetics_cloning)
-"bQW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock{
- name = "Internal Affairs Office";
- req_access_txt = "38"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ dir = 4;
+ icon_state = "neutral"
},
-/area/lawoffice)
-"bQX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/toxins/mixing)
+"dxd" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f5";
+ tag = "icon-swall_f5"
+ },
+/area/shuttle/supply)
+"dxf" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"dxg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"bQY" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "lawyer";
- name = "Internal Affairs Privacy Shutters";
- opacity = 0
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/item/card/id/captains_spare,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/lawoffice)
-"bQZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/crew_quarters/captain/bedroom)
+"dxh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/medbay2)
-"bRa" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/landmark/start{
- name = "Internal Affairs Agent"
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"dxn" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f9";
+ tag = "icon-swall_f9"
},
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+/area/shuttle/supply)
+"dxs" = (
+/obj/structure/closet/wardrobe/white,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/lawoffice)
-"bRb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- pixel_y = -30
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"bRc" = (
-/obj/machinery/door/airlock/security{
- name = "Detective";
- req_access = null;
- req_access_txt = "4"
+/area/medical/ward)
+"dxt" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Telecommunications Access";
+ req_access_txt = "61"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"bRm" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"bRq" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"bRr" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 4
+/area/tcommsat/chamber)
+"dxu" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner"
},
-/obj/effect/decal/warning_stripes/south,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
+/obj/item/clothing/mask/breath/medical,
+/obj/item/tank/anesthetic,
+/obj/item/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
},
-/turf/simulated/floor/plating,
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bRs" = (
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 4
+/obj/item/storage/box/masks,
+/obj/item/storage/box/bodybags{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/machinery/newscaster{
+ pixel_y = -28
+ },
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bRt" = (
-/obj/machinery/computer/teleporter,
-/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 10;
+ icon_state = "whitepurple"
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bRu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/assembly/robotics)
+"dxv" = (
+/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/assembly/robotics)
+"dxw" = (
+/obj/machinery/optable{
+ name = "Robotics Operating Table"
},
+/obj/machinery/light,
/obj/item/radio/intercom{
- pixel_y = 23
+ dir = 1;
+ pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/area/hallway/primary/central/north)
-"bRv" = (
-/obj/item/radio/intercom{
- pixel_x = 28
+/area/assembly/robotics)
+"dxx" = (
+/obj/machinery/computer/operating{
+ name = "Robotics Operating Computer"
+ },
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellowcorner"
+ dir = 6;
+ icon_state = "whitepurple"
},
-/area/hallway/primary/port/west)
-"bRw" = (
-/obj/structure/window/reinforced,
+/area/assembly/robotics)
+"dxF" = (
+/obj/machinery/door/poddoor/shutters{
+ id_tag = "roboticsshutters";
+ name = "Mech Bay Shutters"
+ },
+/obj/machinery/door_control{
+ id = "roboticsshutters";
+ name = "Mech Bay Door Control";
+ pixel_y = 24;
+ req_access_txt = "29"
+ },
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"dxG" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/vending/artvend,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "escape"
},
-/area/construction/hallway)
-"bRx" = (
-/obj/machinery/power/terminal{
+/area/crew_quarters/fitness)
+"dxN" = (
+/obj/machinery/door/window,
+/obj/structure/window/reinforced{
dir = 1
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/structure/toilet{
+ dir = 4
},
+/obj/effect/decal/warning_stripes/blue/hollow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "freezerfloor"
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bRy" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/area/security/permabrig)
+"dxQ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8;
+ pixel_x = 6
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/aisat)
-"bRA" = (
-/obj/machinery/ai_slipper,
+/area/construction/hallway)
+"dxT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/turret_protected/aisat)
-"bRC" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/area/medical/medbay3)
+"dxZ" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
+/obj/structure/lattice,
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"dyd" = (
+/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "brown"
},
-/area/turret_protected/aisat)
-"bRD" = (
-/obj/structure/table/reinforced,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
+/area/quartermaster/office)
+"dye" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"dyk" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/camera{
- c_tag = "Minisat Hub";
- dir = 8;
- network = list("Minisat","SS13")
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/light{
dir = 4;
- icon_state = "darkblue"
+ pixel_x = -6
},
-/area/turret_protected/aisat)
-"bRE" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/construction/hallway)
-"bRF" = (
-/obj/structure/showcase{
- density = 0;
- dir = 4;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = -9;
- pixel_y = 2
- },
-/obj/machinery/flasher{
- id = null;
- pixel_y = 24
- },
+"dyn" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/ids,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "darkblue"
- },
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bRG" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window{
- dir = 8;
- name = "Kitchen";
- req_access_txt = "28"
+ icon_state = "blue"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Kitchen Hall Windows";
- name = "Kitchen Shutters"
+/area/bridge/checkpoint/north)
+"dyp" = (
+/obj/structure/rack,
+/obj/item/extinguisher,
+/obj/item/clothing/mask/gas,
+/obj/item/grenade/chem_grenade/firefighting,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/light/small,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "neutral"
},
-/obj/item/reagent_containers/food/snacks/beetsoup{
- desc = "With the taste of execution";
- name = "borsch"
+/area/toxins/mixing)
+"dyq" = (
+/obj/machinery/camera{
+ c_tag = "Research Toxins Storage Room";
+ dir = 4;
+ network = list("Research","SS13");
+ pixel_y = -22
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/portable_atmospherics/scrubber/huge,
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"dyr" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/bombcloset,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 1;
+ icon_state = "neutral"
},
-/area/crew_quarters/kitchen)
-"bRJ" = (
-/obj/structure/window/reinforced{
- dir = 1
+/area/toxins/mixing)
+"dys" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/firecloset,
+/obj/machinery/camera{
+ c_tag = "Toxin Equipment Storage";
+ dir = 1;
+ network = list("Research","SS13")
},
-/obj/structure/window/reinforced{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
+/area/toxins/mixing)
+"dyu" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 9;
+ icon_state = "neutral"
},
-/area/construction/hallway)
-"bRK" = (
-/obj/structure/window/reinforced{
+/area/toxins/mixing)
+"dyv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"dyw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"dyy" = (
+/obj/item/wrench,
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"dyB" = (
+/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/portable_atmospherics/scrubber/huge,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/camera{
+ c_tag = "Toxins Gas Storage";
+ dir = 8;
+ network = list("Research","SS13")
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"dyC" = (
+/obj/machinery/camera{
+ c_tag = "Research South Hallway";
+ dir = 4;
+ network = list("Research","SS13");
+ pixel_y = -22
},
-/area/construction/hallway)
-"bRN" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whitepurplecorner"
},
-/area/hallway/secondary/entry/additional)
-"bRO" = (
+/area/medical/research/shallway)
+"dyG" = (
+/obj/machinery/r_n_d/server/robotics,
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 9
},
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "ai_airlock";
- name = "interior access button";
- pixel_x = 25;
- pixel_y = 25
+/turf/simulated/floor/bluegrid{
+ icon_state = "gcircuit";
+ name = "Mainframe Floor";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
},
+/area/toxins/server)
+"dyI" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
- },
-/area/construction/hallway)
-"bRP" = (
-/obj/structure/transit_tube{
- icon_state = "S-NE";
- tag = "icon-S-NE"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/window/reinforced{
+/area/assembly/chargebay)
+"dza" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 1
- },
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+ icon_state = "yellowfull"
},
-/area/construction/hallway)
-"bRQ" = (
-/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NW"
+/area/engine/engineering)
+"dzc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/space,
-/area/space/nearstation)
-"bRR" = (
-/obj/structure/window/reinforced{
- dir = 1
+/area/maintenance/turbine)
+"dzf" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery";
+ location = "Chemistry"
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/plasticflaps{
+ opacity = 1
},
-/turf/space,
-/area/space/nearstation)
-"bRS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bRT" = (
-/obj/structure/window/reinforced{
- dir = 8
+/area/medical/chemistry)
+"dzh" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/secure_closet/cargotech,
+/obj/item/stamp/granted,
+/obj/item/stamp/denied,
+/turf/simulated/floor/plasteel{
+ icon_state = "brown"
},
-/obj/structure/table/reinforced,
-/obj/machinery/light/small{
- dir = 1
+/area/quartermaster/storage)
+"dzi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/clipboard,
-/obj/item/folder/blue,
-/obj/machinery/camera{
- c_tag = "AI Transit Tube Access";
- network = list("SS13","Engineering")
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "yellowfull"
},
-/area/engine/aienter)
-"bRU" = (
+/area/engine/engineering)
+"dzj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "1-2"
},
-/area/engine/aienter)
-"bRV" = (
-/obj/machinery/status_display{
- pixel_x = -32
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/obj/machinery/computer/station_alert,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/chief)
-"bRW" = (
-/obj/structure/table/reinforced,
-/obj/item/phone{
- pixel_x = -3;
- pixel_y = 3
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"dzm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/clothing/mask/cigarette/cigar{
- pixel_x = 5
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/chief)
-"bRX" = (
+/area/engine/engineering)
+"dzp" = (
+/obj/structure/table/wood,
+/obj/item/picket_sign,
+/turf/simulated/floor/carpet,
+/area/maintenance/fsmaint)
+"dzr" = (
+/obj/structure/cable,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/computer/monitor{
+ name = "Engineering Power Monitoring Console"
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
},
-/obj/structure/table/reinforced,
-/obj/item/folder/blue,
-/obj/item/paper/tcommskey,
-/obj/item/stamp/ce,
-/obj/item/paper/monitorkey,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "dark"
},
-/area/crew_quarters/chief)
-"bRY" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/area/engine/controlroom)
+"dzs" = (
+/obj/machinery/photocopier,
+/obj/machinery/firealarm{
dir = 1;
- on = 1
+ pixel_x = -24;
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+ dir = 10;
+ icon_state = "brown"
},
-/area/crew_quarters/chief)
-"bRZ" = (
+/area/quartermaster/qm)
+"dzt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"dzu" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/light/small{
+ dir = 1
},
+/obj/structure/bookcase,
+/obj/item/book/manual/security_space_law,
+/obj/item/book/manual/sop_command,
+/obj/item/book/manual/sop_engineering,
+/obj/item/book/manual/sop_general,
+/obj/item/book/manual/sop_legal,
+/obj/item/book/manual/sop_medical,
+/obj/item/book/manual/sop_science,
+/obj/item/book/manual/sop_security,
+/obj/item/book/manual/sop_service,
+/obj/item/book/manual/sop_supply,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "darkred"
},
-/area/crew_quarters/chief)
-"bSa" = (
+/area/security/processing)
+"dzx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/cable{
- d1 = 1;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "0-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/light/small,
+/obj/machinery/power/smes,
+/turf/simulated/floor/greengrid,
+/area/engine/controlroom)
+"dzy" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Mime Office";
+ dir = 1
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Chief Engineer";
- req_access_txt = "56"
+/obj/structure/window/reinforced{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
-/area/crew_quarters/chief)
-"bSb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/mimeoffice)
+"dzA" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"dzC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"dzD" = (
+/obj/machinery/portable_atmospherics/canister/sleeping_agent,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"dzE" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "brown"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/quartermaster/delivery)
+"dzH" = (
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
-/area/crew_quarters/chief)
-"bSc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/research/shallway)
+"dzI" = (
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
+/area/medical/research/shallway)
+"dzJ" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "whitepurplecorner"
},
-/area/crew_quarters/chief)
-"bSd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/research/shallway)
+"dzL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"dzQ" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/effect/landmark/start{
- name = "Chief Engineer"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
+/area/assembly/robotics)
+"dzY" = (
+/obj/structure/closet,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/stack/sheet/cardboard,
+/obj/item/stack/sheet/cardboard,
+/obj/item/stack/sheet/cardboard,
+/obj/item/stack/sheet/cardboard,
+/obj/item/stack/sheet/cardboard,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/obj/machinery/camera{
+ c_tag = "Evidence Storage";
+ network = list("SS13","Security")
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"dAc" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/area/crew_quarters/chief)
-"bSe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/storage/primary)
-"bSf" = (
+/area/security/evidence)
+"dAf" = (
+/obj/structure/sign/chemistry,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall/r_wall,
+/area/medical/chemistry)
+"dAl" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor{
- icon_state = "open";
- id_tag = "transitlock";
- name = "Transit Tube Blast Doors"
- },
/turf/simulated/floor/plating,
-/area/engine/aienter)
-"bSg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/area/medical/cryo)
+"dAn" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/area/hallway/primary/central/nw)
-"bSh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/item/storage/briefcase{
+ pixel_x = -2;
+ pixel_y = -5
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/item/storage/briefcase{
+ pixel_x = 3
+ },
+/obj/item/storage/secure/briefcase{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/machinery/light{
+ dir = 4
},
-/obj/item/radio/beacon,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/engine/engineering)
-"bSi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/lawoffice)
+"dAo" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/camera{
+ c_tag = "Cargo Personal Corner";
+ dir = 4;
+ pixel_y = -27
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "brown"
},
-/area/hallway/primary/central/ne)
-"bSj" = (
+/area/quartermaster/storage)
+"dAq" = (
/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/ward)
+"dAr" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/turf/simulated/floor/plating,
-/area/engine/engineering/monitor)
-"bSk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/crew_quarters/heads/hop)
+"dAt" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
+/obj/machinery/recharge_station,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"dAv" = (
+/obj/machinery/light{
+ dir = 8
},
-/area/engine/engineering/monitor)
-"bSl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/unary/portables_connector{
dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "neutral"
},
-/area/engine/engineering/monitor)
-"bSm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/toxins/mixing)
+"dAz" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/engineering/monitor)
-"bSn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 5;
+ icon_state = "whitegreencorner"
},
-/area/engine/engineering/monitor)
-"bSo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/medical/virology)
+"dAB" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkbluefull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light/small{
+ dir = 1
},
-/area/turret_protected/aisat)
-"bSp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/ai)
+"dAE" = (
+/obj/machinery/door/window{
dir = 8;
- icon_state = "neutralfull"
+ req_access_txt = "63"
},
-/area/hallway/primary/port/west)
-"bSq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/safe/floor{
+ known_by = list("captain")
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/item/gun/projectile/revolver/russian,
+/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium,
+/obj/item/lighter/zippo/nt_rep,
+/obj/item/storage/fancy/cigarettes/cigpack_robustgold,
+/obj/item/toy/figure/captain,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/structure/sign/poster/random{
- pixel_x = 32;
- pixel_y = 32
+/area/crew_quarters/captain/bedroom)
+"dAF" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/captain/bedroom)
+"dAK" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
},
+/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/ai)
+"dAL" = (
+/obj/machinery/atmospherics/unary/outlet_injector/on{
dir = 4;
- icon_state = "yellowcorner"
+ frequency = 1441;
+ id = "co2_in"
},
-/area/hallway/primary/port/west)
-"bSr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/engine/co2,
+/area/atmos)
+"dAN" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/southeast,
+/obj/structure/window/reinforced,
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/item/extinguisher/mini,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"dAO" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"dAP" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"dAU" = (
+/obj/structure/bed,
+/obj/item/bedsheet/captain,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Captain"
+ },
+/obj/item/storage/secure/safe{
+ pixel_x = 32
},
+/turf/simulated/floor/carpet,
+/area/crew_quarters/captain/bedroom)
+"dAW" = (
+/obj/structure/rack,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dAX" = (
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bSs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/quartermaster/storage)
+"dAY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/alarm{
- pixel_y = 24
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner (WEST)"
},
+/area/medical/genetics)
+"dAZ" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/primary/port)
-"bSt" = (
+/area/quartermaster/storage)
+"dBd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/hallway/primary/port)
-"bSu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dBe" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery";
+ location = "Hydroponics"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/plasticflaps{
+ opacity = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/port)
-"bSv" = (
+/area/hydroponics)
+"dBg" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/conveyor/north{
+ id = "QMLoad"
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"dBh" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/door/airlock/maintenance{
+ name = "Crematorium Maintenance";
+ req_access_txt = "27"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/port)
-"bSw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/maintenance/asmaint2)
+"dBi" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_l";
+ tag = "icon-burst_l"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/turf/simulated/shuttle/plating,
+/area/shuttle/supply)
+"dBl" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_r";
+ tag = "icon-burst_r"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/turf/simulated/shuttle/plating,
+/area/shuttle/supply)
+"dBm" = (
+/obj/machinery/hydroponics/soil,
+/obj/machinery/camera{
+ c_tag = "Animal Garden";
+ dir = 4
},
-/area/hallway/primary/port)
-"bSx" = (
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"dBo" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"dBp" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"dBr" = (
+/turf/simulated/floor/carpet,
+/area/maintenance/fsmaint)
+"dBt" = (
+/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/hallway/primary/port)
-"bSy" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 3
+/obj/effect/landmark/start{
+ name = "Station Engineer"
},
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"bSz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/nw)
-"bSA" = (
-/obj/structure/cable{
- d1 = 4;
+/area/engine/engineering)
+"dBu" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/structure/sign/electricshock{
+ pixel_x = 32
},
-/obj/machinery/power/apc{
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
- name = "north bump";
- pixel_y = 24
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"dBv" = (
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding4"
+ },
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+ icon_state = "asteroid";
+ tag = "icon-asteroid (NORTH)"
},
-/area/hallway/primary/port)
-"bSB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/camera{
- c_tag = "Fore Hallway South 1";
+/area/hydroponics)
+"dBy" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 4
+ },
+/obj/structure/window/plasmareinforced{
dir = 8
},
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+/obj/structure/window/plasmareinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "RnDChem";
+ name = "Biohazard Shutter";
+ opacity = 0
},
-/area/hallway/primary/fore)
-"bSC" = (
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"dBA" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"dBB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A17";
- location = "A16"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/hallway/primary/central/west)
-"bSD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/area/library)
+"dBE" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light/small{
+ dir = 4
},
/obj/machinery/camera{
- c_tag = "Central Ring Hallway West 2";
+ c_tag = "Library North";
dir = 8
},
-/obj/machinery/computer/guestpass{
- pixel_x = 30
+/turf/simulated/floor/wood,
+/area/library)
+"dBF" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"dBG" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/wall,
+/area/library)
+"dBH" = (
+/obj/structure/sign/poster/random{
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
+ dir = 8;
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/west)
-"bSE" = (
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/heads/hop)
-"bSF" = (
+/area/hallway/primary/central/sw)
+"dBL" = (
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/plasteel,
+/area/bridge/vip)
+"dBM" = (
+/mob/living/simple_animal/cow{
+ name = "Betsy"
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"dBN" = (
+/obj/structure/table/reinforced,
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/obj/item/razor,
+/turf/simulated/floor/plasteel{
+ icon_state = "barber"
+ },
+/area/civilian/barber)
+"dBR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Head of Personnel";
- req_access = null;
- req_access_txt = "57"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"bSG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/heads/hop)
-"bSH" = (
-/obj/machinery/door/window{
- base_state = "right";
- icon_state = "right";
- name = "Core Modules";
- req_access_txt = "20"
+ icon_state = "1-2"
},
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/door/airlock/external{
+ id_tag = "supply_home";
+ name = "Cargo Docking Hatch";
+ req_access_txt = "31"
},
-/obj/structure/window/reinforced{
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"dBT" = (
+/obj/machinery/light{
dir = 8
},
-/obj/item/aiModule/crewsimov,
-/obj/item/aiModule/freeformcore,
-/obj/item/aiModule/corp,
-/obj/item/aiModule/paladin,
-/obj/item/aiModule/robocop,
-/obj/structure/table/glass,
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"bSI" = (
-/obj/machinery/light,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/turret_protected/ai_upload)
-"bSJ" = (
-/obj/machinery/computer/aiupload,
-/obj/machinery/flasher{
- id = "AI";
- pixel_y = -21
+/turf/simulated/floor/wood,
+/area/blueshield)
+"dBV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"bSK" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- cell_type = 5000;
- name = "south bump Important Area";
- pixel_y = -24
+/obj/machinery/light{
+ dir = 4
},
-/obj/machinery/computer/message_monitor,
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"bSL" = (
-/obj/machinery/computer/borgupload,
-/obj/item/radio/intercom/private{
- pixel_y = -28
+/obj/machinery/camera{
+ c_tag = "Courtroom East";
+ dir = 9
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"bSM" = (
-/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/ai_upload)
-"bSN" = (
-/obj/machinery/door/window{
- dir = 8;
- name = "High-Risk Modules";
- req_access_txt = "20"
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/aiModule/oxygen,
-/obj/item/aiModule/oneCrewMember,
-/obj/item/aiModule/purge,
-/obj/item/aiModule/antimov,
-/obj/structure/table/glass,
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"bSO" = (
-/obj/machinery/keycard_auth{
- pixel_x = -26;
- pixel_y = 22
+ dir = 4;
+ icon_state = "neutral"
},
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Captain's Desk";
- departmentType = 5;
- name = "Captain Requests Console";
- pixel_x = -30
+/area/crew_quarters/courtroom)
+"dBZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/computer/card,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain)
-"bSP" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/security/wooden_tv,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain)
-"bSQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/chair/comfy/brown{
- dir = 1
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/landmark/start{
- name = "Captain"
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Med. CMO";
+ sortType = 10
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain)
-"bSR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/captain)
-"bSS" = (
+/area/hallway/primary/central/south)
+"dCb" = (
/obj/structure/table/wood,
-/obj/machinery/status_display{
- pixel_x = 32
- },
-/obj/machinery/photocopier/faxmachine/longrange{
- department = "Captain's Office"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/captain)
-"bST" = (
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/captain/bedroom)
-"bSU" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/item/ashtray/glass{
+ pixel_x = -4;
+ pixel_y = -4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/lighter/zippo/blue{
+ pixel_x = 7;
+ pixel_y = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/obj/item/paper/blueshield,
+/obj/item/folder/blue{
+ pixel_x = -5;
+ pixel_y = 6
},
-/area/hallway/primary/central/east)
-"bSV" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "bcarpet05"
},
-/area/hallway/primary/central/ne)
-"bSW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/blueshield)
+"dCe" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/camera{
+ c_tag = "Captain's Quarters";
+ dir = 1
},
-/obj/machinery/firealarm{
- pixel_y = 24
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain/bedroom)
+"dCj" = (
+/obj/machinery/cryopod,
+/obj/effect/decal/warning_stripes/red/hollow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "cautioncorner"
+ icon_state = "dark"
},
-/area/security/lobby)
-"bSX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/area/security/permabrig)
+"dCk" = (
+/obj/machinery/optable,
+/obj/item/scalpel,
+/obj/item/autopsy_scanner,
+/obj/item/clothing/gloves/color/latex/nitrile,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- dir = 8
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "cautioncorner"
- },
-/area/security/lobby)
-"bSY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 6;
+ icon_state = "darkblue"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/security/detectives_office)
+"dCn" = (
+/obj/machinery/power/rad_collector{
+ anchored = 1
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "cautioncorner"
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/security/lobby)
-"bSZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"dCr" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "cautioncorner"
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
},
-/area/security/lobby)
-"bTa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"dCv" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/engineering_guide{
+ pixel_x = 4;
+ pixel_y = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/book/manual/engineering_particle_accelerator,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellow"
},
+/area/engine/engineering)
+"dCw" = (
+/obj/structure/table,
+/obj/machinery/computer/library/public,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "cautioncorner"
+ icon_state = "dark"
},
-/area/security/lobby)
-"bTb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/security/permabrig)
+"dCy" = (
+/obj/structure/table/reinforced,
+/obj/item/radio{
+ pixel_x = 5;
+ pixel_y = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/reagent_containers/spray/cleaner/drone{
+ pixel_x = -6;
+ pixel_y = 1
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "yellow"
},
-/area/security/lobby)
-"bTe" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/engine/engineering)
+"dCz" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/engineering_hacking{
+ pixel_x = 6;
+ pixel_y = 6
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/item/book/manual/engineering_construction{
+ pixel_x = 3;
+ pixel_y = 3
},
+/obj/item/book/manual/engineering_singularity_safety,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ dir = 5;
+ icon_state = "yellow"
},
-/area/crew_quarters/courtroom)
-"bTf" = (
+/area/engine/engineering)
+"dCA" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/door/poddoor{
density = 0;
- dir = 8;
icon_state = "open";
- id_tag = "magistrate";
- name = "Magistrate Privacy Shutters";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
opacity = 0
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
},
/turf/simulated/floor/plating,
-/area/magistrateoffice)
-"bTg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/junction{
- dir = 8
+/area/security/permabrig)
+"dCC" = (
+/obj/structure/chair/office/dark,
+/turf/simulated/floor/wood,
+/area/library)
+"dCD" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/hydroponics)
+"dCH" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_y = 32
},
+/obj/structure/bookcase,
+/turf/simulated/floor/wood,
+/area/library)
+"dCK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"dCL" = (
+/obj/structure/closet/secure_closet/scientist,
+/obj/structure/sign/poster/random{
+ pixel_x = 32
},
-/area/security/lobby)
-"bTh" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "redcorner"
+ icon_state = "whitepurple"
},
-/area/security/lobby)
-"bTi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/research/restroom)
+"dCM" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/window/southleft{
+ dir = 4;
+ name = "Kitchen Delivery";
+ req_access_txt = "28"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/kitchen)
+"dCP" = (
+/obj/machinery/light{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -25
},
-/area/security/lobby)
-"bTj" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "redcorner"
+ icon_state = "neutralcorner"
},
-/area/security/permabrig)
-"bTo" = (
-/obj/machinery/cryopod/right,
-/obj/machinery/computer/cryopod{
- layer = 4;
- pixel_y = 32
+/area/hallway/primary/fore)
+"dCQ" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/quartermaster/miningdock)
+"dCR" = (
+/obj/structure/plasticflaps{
+ opacity = 1
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"dCS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/permabrig)
-"bTs" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal,
-/obj/effect/landmark/start{
- name = "Cyborg"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining{
+ name = "Mining Dock";
+ req_access_txt = "48"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"dCV" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bTt" = (
-/obj/machinery/ai_slipper,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 4;
+ icon_state = "redcorner"
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bTv" = (
-/obj/machinery/hologram/holopad,
+/area/hallway/primary/starboard/east)
+"dCW" = (
+/obj/item/paper_bin,
+/obj/structure/table,
+/obj/item/pen,
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/bridge/checkpoint/south)
+"dCX" = (
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Head of Personnel's Office";
+ dir = 8
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bTx" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bTy" = (
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Chamber Hallway";
- req_access_txt = "75"
+/area/crew_quarters/heads/hop)
+"dCY" = (
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/door_control{
+ id = "QMLoaddoor";
+ layer = 3;
+ name = "Loading Doors";
+ pixel_x = -24;
+ pixel_y = -8
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door_control{
+ id = "QMLoaddoor2";
+ layer = 3;
+ name = "Loading Doors";
+ pixel_x = -24;
+ pixel_y = 8
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bTA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"dDa" = (
+/obj/machinery/light{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "NT Representative";
+ departmentType = 5;
+ name = "NT Representative Requests Console";
+ pixel_x = -32
},
-/area/turret_protected/aisat)
-"bTB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/ntrep)
+"dDb" = (
+/turf/simulated/wall,
+/area/quartermaster/qm)
+"dDe" = (
+/obj/structure/sign/fire,
+/turf/simulated/wall/r_wall/coated,
+/area/maintenance/turbine)
+"dDf" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "darkbluefull"
- },
-/area/turret_protected/aisat)
-"bTC" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ icon_state = "barber"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/civilian/barber)
+"dDi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
+/turf/simulated/floor/engine,
+/area/maintenance/turbine)
+"dDj" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/area/turret_protected/aisat)
-"bTD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "darkbluefull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/area/turret_protected/aisat)
-"bTE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/wood,
+/area/blueshield)
+"dDl" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall/coated,
+/area/maintenance/turbine)
+"dDm" = (
+/obj/machinery/computer/communications,
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/captain)
+"dDn" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/chem_master,
+/turf/simulated/floor/engine,
+/area/medical/chemistry)
+"dDq" = (
+/obj/machinery/light/small{
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/floor/engine,
+/area/maintenance/turbine)
+"dDr" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 10;
+ icon_state = "caution"
},
-/area/turret_protected/aisat)
-"bTF" = (
+/area/maintenance/turbine)
+"dDs" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
-"bTG" = (
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Chamber Hallway";
- req_access_txt = "75"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/binary/valve{
+ dir = 4
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bTH" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bTI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/maintenance/turbine)
+"dDu" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/qm)
+"dDv" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "neutralcorner"
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bTK" = (
-/obj/machinery/hologram/holopad,
+/area/hallway/primary/central/east)
+"dDC" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bTL" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "darkbluefull"
+ icon_state = "1-8"
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bTM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/quartermaster/qm)
+"dDD" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"bTN" = (
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Teleporter Room";
- req_access_txt = "17;75"
+ icon_state = "0-8"
},
-/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/quartermaster/qm)
+"dDE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26;
+ pixel_y = 30
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 5;
+ icon_state = "darkred"
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bTT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/security/evidence)
+"dDF" = (
+/turf/simulated/floor/wood,
+/area/maintenance/fsmaint)
+"dDH" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/wall/r_wall,
+/area/atmos)
+"dDI" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/area/hallway/secondary/entry/additional)
-"bTU" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 4;
- icon_state = "2-4"
+ icon_state = "1-4"
},
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"dDK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/secondary/entry/westarrival)
-"bTV" = (
-/obj/structure/cable{
+/area/crew_quarters/courtroom)
+"dDO" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 1;
+ name = "Труба смешивания"
+ },
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"dDP" = (
+/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+ icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/chief)
-"bTW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bTX" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
/area/engine/engineering)
-"bTY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+"dDQ" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/structure/chair/comfy/purp{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "whitepurplefull"
},
-/area/hallway/primary/port/east)
-"bTZ" = (
+/area/medical/research/restroom)
+"dDR" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whitepurplecorner"
},
-/area/hallway/primary/port/east)
-"bUa" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/research/restroom)
+"dDS" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Подаёт азот из атмосферки в систему охлаждения реактора, таким образом запитывая её хладагентом";
+ dir = 5;
+ name = "Труба подачи азота в реактор"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/space,
+/area/space/nearstation)
+"dDW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "darkblue"
},
-/area/hallway/primary/port/east)
-"bUb" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "atmo_tank_airlock";
- name = "exterior access button";
- pixel_x = 20;
- pixel_y = -20;
- req_access_txt = "32"
+/area/chapel/main)
+"dDX" = (
+/turf/simulated/wall,
+/area/medical/sleeper)
+"dEa" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dEb" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Подаёт азот из атмосферки в систему охлаждения реактора, таким образом запитывая её хладагентом";
+ dir = 4;
+ name = "Труба подачи азота в реактор"
},
-/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
-"bUc" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"dEc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/aienter)
-"bUd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/quartermaster/storage)
+"dEg" = (
+/obj/machinery/computer/general_air_control/large_tank_control{
+ frequency = 1441;
+ input_tag = "o2_in";
+ name = "Oxygen Supply Control";
+ output_tag = "o2_out";
+ sensors = list("o2_sensor" = "Tank")
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 1;
+ name = "Труба фильтрации"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "blue"
},
+/area/atmos)
+"dEi" = (
+/obj/structure/table/wood,
+/obj/item/storage/briefcase,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/aienter)
-"bUe" = (
+/area/library)
+"dEk" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"dEm" = (
+/obj/structure/closet/secure_closet/reagents,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/aienter)
-"bUf" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
+ dir = 10;
+ icon_state = "whiteyellow"
},
+/area/medical/chemistry)
+"dEq" = (
/obj/machinery/light/small{
- dir = 4;
- tag = "icon-bulb1 (EAST)"
+ dir = 4
+ },
+/turf/simulated/floor/engine/o2,
+/area/atmos)
+"dEs" = (
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"dEt" = (
+/obj/structure/table/wood,
+/obj/item/clothing/glasses/sunglasses,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"dEA" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"dED" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "neutralcorner"
},
-/area/engine/aienter)
-"bUg" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/light{
- dir = 8
+/area/hallway/primary/central/west)
+"dEF" = (
+/mob/living/simple_animal/chicken{
+ name = "Commander Clucky"
},
-/mob/living/simple_animal/parrot/Poly,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"dEG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/computer/arcade,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"dEH" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"dEO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/area/crew_quarters/chief)
-"bUh" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/crew_quarters/chief)
-"bUi" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/crew_quarters/chief)
-"bUj" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/crew_quarters/chief)
-"bUk" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/crew_quarters/chief)
-"bUl" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1
},
-/area/crew_quarters/chief)
-"bUm" = (
+/area/security/prisonershuttle)
+"dEP" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"dEV" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "ceprivacy";
- name = "CE Privacy Shutters";
- opacity = 0
- },
/turf/simulated/floor/plating,
-/area/crew_quarters/chief)
-"bUn" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = -24
+/area/bridge/checkpoint/south)
+"dEW" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"dEZ" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 4";
+ dir = 4;
+ network = list("SS13","MiniSat")
},
-/area/crew_quarters/chief)
-"bUo" = (
+/turf/space,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"dFa" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/wood,
+/obj/item/paper_bin,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/crew_quarters/chief)
-"bUp" = (
+/area/crew_quarters/heads/hop)
+"dFb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/crew_quarters/chief)
-"bUq" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/crew_quarters/heads/hop)
+"dFc" = (
+/obj/structure/bookcase,
+/obj/item/book/manual/sop_command,
+/obj/item/book/manual/sop_engineering,
+/obj/item/book/manual/sop_general,
+/obj/item/book/manual/sop_legal,
+/obj/item/book/manual/sop_medical,
+/obj/item/book/manual/sop_science,
+/obj/item/book/manual/sop_security,
+/obj/item/book/manual/sop_service,
+/obj/item/book/manual/sop_supply,
+/turf/simulated/floor/wood,
+/area/ntrep)
+"dFd" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/area/crew_quarters/chief)
-"bUr" = (
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"dFe" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/civilian/barber)
+"dFg" = (
+/turf/simulated/wall,
+/area/library/abandoned)
+"dFi" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/engineering{
- name = "Tech Storage";
- req_access_txt = "23"
+/obj/machinery/light_switch{
+ pixel_x = -25
},
-/turf/simulated/floor/plasteel,
-/area/storage/tech)
-"bUs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/blueshield)
+"dFm" = (
+/obj/machinery/slot_machine,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"dFn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research/restroom)
+"dFp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/engineering)
-"bUt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/bridge/checkpoint/south)
+"dFq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"bUu" = (
+/area/crew_quarters/kitchen)
+"dFr" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "SKPP"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "eslock";
+ name = "Escape Shuttle Lockdown"
},
/turf/simulated/floor/plating,
-/area/engine/engineering/monitor)
-"bUv" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
+/area/bridge/checkpoint/south)
+"dFt" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
+ icon_state = "freezerfloor"
},
-/area/engine/engineering/monitor)
-"bUw" = (
+/area/crew_quarters/kitchen)
+"dFv" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/machinery/light{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/camera{
+ c_tag = "Theatre"
},
-/area/engine/engineering/monitor)
-"bUx" = (
+/obj/machinery/slot_machine,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"dFx" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/engine/engineering/monitor)
-"bUy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/medical/medbay2)
+"dFC" = (
+/obj/structure/table/wood,
+/obj/item/folder/yellow,
+/obj/item/folder/blue{
+ pixel_x = 5;
+ pixel_y = 5
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/computer/secure_data/laptop,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "blue"
+ },
+/area/crew_quarters/courtroom)
+"dFD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/engine/engineering/monitor)
-"bUz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/recharger{
- pixel_y = 3
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "yellow"
+ icon_state = "neutral"
},
-/area/engine/engineering/monitor)
-"bUA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
+/area/crew_quarters/courtroom)
+"dFG" = (
+/turf/simulated/wall/r_wall,
+/area/medical/virology)
+"dFK" = (
+/obj/structure/chair/office/dark{
dir = 8
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A20";
- location = "A19"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cautioncorner"
- },
-/area/hallway/primary/port/west)
-"bUB" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/trinary/mixer,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bUC" = (
-/obj/machinery/door/airlock/shuttle{
- aiControlDisabled = 1;
- hackProof = 1;
- id_tag = "s_docking_airlock";
- name = "Shuttle Hatch"
- },
-/obj/effect/decal/warning_stripes/west,
-/obj/docking_port/stationary{
- dir = 4;
- dwidth = 11;
- height = 18;
- id = "emergency_home";
- name = "emergency evac bay";
- width = 29
- },
-/obj/docking_port/mobile/emergency{
- dwidth = 11;
- height = 18;
- width = 29
- },
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"bUD" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plating,
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bUE" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/port)
-"bUF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/port)
-"bUG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/area/library/abandoned)
+"dFM" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dFQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/area/hallway/primary/port)
-"bUH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/port)
-"bUI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+ icon_state = "white"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/medical/reception)
+"dFS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/hallway/primary/port/east)
-"bUJ" = (
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/lattice,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bUM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/west)
-"bUN" = (
-/obj/machinery/ai_status_display,
-/turf/simulated/wall/r_wall,
-/area/hallway/primary/central/west)
-"bUO" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hallway/primary/central/west)
-"bUP" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/space,
-/area/space/nearstation)
-"bUQ" = (
-/obj/structure/table/wood,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Head of Personnel's Desk";
- departmentType = 5;
- name = "Head of Personnel Requests Console";
- pixel_y = 30
- },
-/obj/item/paper_bin,
-/obj/item/stamp/hop,
-/obj/item/pen/fancy,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"bUR" = (
/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dFW" = (
+/obj/machinery/slot_machine,
+/obj/machinery/firealarm{
+ pixel_y = 26
},
-/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"bUS" = (
+/area/crew_quarters/bar/atrium)
+"dFX" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"bUT" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/computer/guestpass/hop{
- pixel_x = -30
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"bUU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood,
-/obj/item/storage/box/ids,
-/obj/item/storage/box/PDAs,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"bUV" = (
-/obj/machinery/computer/communications,
-/obj/machinery/ai_status_display{
- pixel_x = -32
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain)
-"bUW" = (
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = -26
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/camera{
- c_tag = "Captain's Desk";
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain)
-"bUX" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"dGa" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain)
-"bUY" = (
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = -28
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/area/crew_quarters/captain)
-"bUZ" = (
-/obj/structure/displaycase/captain,
+/area/medical/medbay3)
+"dGc" = (
+/obj/machinery/icemachine,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/captain)
-"bVa" = (
-/obj/machinery/light{
- dir = 8
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/obj/structure/toilet{
- dir = 4
+/area/crew_quarters/kitchen)
+"dGd" = (
+/obj/machinery/status_display{
+ pixel_y = 32
},
-/obj/effect/landmark/start{
- name = "Captain"
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"dGe" = (
+/obj/structure/closet/firecloset,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/bridge/checkpoint/south)
+"dGi" = (
+/obj/machinery/vending/cola,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"dGk" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/condiment/enzyme{
+ layer = 5;
+ pixel_y = 14
},
+/obj/item/stack/packageWrap,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/crew_quarters/captain/bedroom)
-"bVb" = (
-/obj/machinery/shower{
- pixel_y = 22
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/obj/structure/curtain/open/shower,
-/obj/item/soap/deluxe,
-/obj/item/bikehorn/rubberducky,
+/area/crew_quarters/kitchen)
+"dGo" = (
/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 100;
on = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/crew_quarters/captain/bedroom)
-"bVc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/library)
+"dGu" = (
/obj/machinery/light{
- dir = 8
+ dir = 4
},
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway East 4";
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitegreencorner"
+ },
+/area/medical/virology)
+"dGw" = (
+/obj/item/radio/intercom{
+ pixel_x = -30;
+ pixel_y = -4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
+ dir = 1;
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/east)
-"bVd" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/hallway/primary/fore)
+"dGy" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ name = "Cargo Bay";
+ req_access_txt = "31"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/landmark{
- name = "lightsout"
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
+/area/quartermaster/office)
+"dGz" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/status_display/supply_display,
+/turf/simulated/floor/plating,
+/area/quartermaster/office)
+"dGB" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/folder/red,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "carpet"
},
-/area/hallway/primary/central/east)
-"bVf" = (
-/obj/structure/window/reinforced{
- dir = 1
+/area/library/abandoned)
+"dGD" = (
+/obj/structure/chair/sofa/right,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"dGH" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 28
},
-/obj/structure/window/reinforced{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/turf/space,
-/area/space/nearstation)
-"bVg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hallway/primary/fore)
+"dGI" = (
+/obj/machinery/light{
+ dir = 8
},
+/obj/structure/filingcabinet/filingcabinet,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "brown"
},
-/area/security/lobby)
-"bVh" = (
+/area/quartermaster/delivery)
+"dGK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
-/area/security/lobby)
-"bVi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/camera{
+ c_tag = "NT Representative's Office";
+ dir = 1
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
+/obj/machinery/disposal,
+/turf/simulated/floor/wood,
+/area/ntrep)
+"dGL" = (
+/obj/structure/table/reinforced,
+/obj/machinery/kitchen_machine/microwave,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/lobby)
-"bVj" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkbluecorners"
+ icon_state = "brown"
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bVk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/quartermaster/storage)
+"dGN" = (
+/obj/structure/sign/barber{
+ pixel_x = 22;
+ pixel_y = 32
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
+/area/bridge/vip)
+"dGO" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 6;
+ icon_state = "whitepurple"
},
-/area/security/lobby)
-"bVm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/research/restroom)
+"dGP" = (
+/obj/item/radio/intercom{
+ pixel_y = -30
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/lobby)
-"bVn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "brown"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/area/quartermaster/storage)
+"dGQ" = (
+/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/disposalpipe/junction{
dir = 1;
- on = 1
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j1 (WEST)"
},
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"dGR" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/security/lobby)
-"bVo" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/bridge/checkpoint/south)
+"dGS" = (
+/obj/machinery/light{
+ dir = 8
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/filingcabinet/chestdrawer,
+/obj/item/radio/intercom{
+ dir = 0;
+ pixel_x = -28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 9;
+ icon_state = "brown"
},
-/area/security/lobby)
-"bVp" = (
+/area/quartermaster/miningdock)
+"dGX" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/crew_quarters/fitness)
+"dGZ" = (
+/obj/structure/table/wood,
+/obj/item/storage/briefcase{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/secure/briefcase,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "blue"
+ },
+/area/crew_quarters/courtroom)
+"dHa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
},
-/area/security/lobby)
-"bVq" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutral"
- },
-/area/security/lobby)
-"bVr" = (
-/obj/structure/closet/secure_closet/engineering_chief,
-/obj/machinery/camera{
- c_tag = "Chief Engineer's Quarters";
- network = list("Engineering","SS13")
+ icon_state = "whitegreencorner"
},
-/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = 26
+/area/medical/virology)
+"dHd" = (
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 1
},
-/obj/machinery/door_control{
- id = "ceprivacy";
- name = "Privacy Shutters";
- pixel_x = 24
+/obj/effect/decal/warning_stripes/yellow/partial{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/northwest,
-/obj/item/radio/intercom{
- pixel_y = 24
+/obj/machinery/conveyor/east{
+ id = "QMLoad"
},
/turf/simulated/floor/plasteel,
-/area/crew_quarters/chief)
-"bVs" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
- },
-/area/construction/hallway)
-"bVt" = (
-/obj/structure/sign/vacuum{
- pixel_x = -32
+/area/quartermaster/storage)
+"dHe" = (
+/obj/machinery/light_switch{
+ pixel_x = -26;
+ pixel_y = 4
},
-/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
- },
-/area/engine/aienter)
-"bVz" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+ icon_state = "whitegreencorner"
},
-/area/construction/hallway)
-"bVA" = (
+/area/medical/virology)
+"dHg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+ dir = 4
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/flasher{
- desc = "A wall-mounted punk-sorting device. Its bulb seems to have extra power running through it.";
- id = "brigkpp";
- layer = 4;
- range = 3
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitegreencorner"
+ },
+/area/medical/virology)
+"dHi" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/brig)
-"bVB" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/lobby)
-"bVC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ dir = 1;
+ icon_state = "darkblue"
},
+/area/chapel/main)
+"dHj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
},
-/area/hallway/primary/port)
-"bVD" = (
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"dHk" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/security/lobby)
-"bVF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/door/airlock/maintenance{
+ name = "Library Maintenance";
+ req_access_txt = "12"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/glass{
- name = "Courtroom";
- req_access_txt = "63"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/courtroom)
-"bVH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"dHl" = (
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ icon_state = "blue"
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bVI" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/crew_quarters/courtroom)
+"dHm" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
+"dHo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
+ dir = 9
},
-/area/turret_protected/aisat)
-"bVL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
+"dHp" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"dHq" = (
+/obj/machinery/field/generator{
+ anchored = 1;
+ state = 2
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"dHr" = (
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 1
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bVM" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow/partial{
+ dir = 1
},
-/obj/machinery/turretid/stun{
- control_area = "\improper AI Satellite";
- name = "AI Antechamber Turret Control";
- pixel_x = 32;
- req_access_txt = "75"
+/obj/machinery/conveyor/northeast/ccw{
+ id = "QMLoad"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"dHs" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bVN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/turf/simulated/wall/r_wall,
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"bVO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"dHt" = (
+/obj/structure/bookcase,
+/turf/simulated/floor/wood,
+/area/library/abandoned)
+"dHx" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkbluecorners"
+ dir = 4;
+ icon_state = "darkbluefull"
},
-/area/turret_protected/aisat)
-"bVP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/turret_protected/ai)
+"dHy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/airlock/security/glass{
+ name = "Staff room";
+ req_access_txt = "63"
},
-/area/turret_protected/aisat)
-"bVQ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
dir = 1
},
+/area/security/brigstaff)
+"dHA" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/mob/living/simple_animal/bot/secbot/pingsky,
-/turf/simulated/floor/plasteel{
- icon_state = "darkbluefull"
- },
-/area/turret_protected/aisat)
-"bVR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"dHH" = (
+/obj/machinery/computer/arcade/battle,
+/obj/effect/decal/warning_stripes/red/hollow,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/aisat)
-"bVS" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/security/permabrig)
+"dHJ" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkbluecorners"
- },
-/area/turret_protected/aisat)
-"bVT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/wall/r_wall,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bVU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/camera{
+ c_tag = "Chapel Short Hall";
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bVV" = (
-/obj/structure/window/reinforced{
- dir = 4
+ icon_state = "grimy"
},
-/obj/structure/lattice,
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"bVW" = (
-/obj/structure/window/reinforced,
+/area/chapel/office)
+"dHN" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"dHO" = (
/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 7";
+/obj/item/stack/rods{
+ amount = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/security/permabrig)
+"dHP" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
dir = 4;
- network = list("SS13","MiniSat")
+ name = "Труба фильтрации"
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
+ dir = 1;
+ icon_state = "dark"
},
-/area/construction/hallway)
-"bVY" = (
-/obj/effect/decal/warning_stripes/east,
+/area/atmos)
+"dHQ" = (
+/turf/simulated/floor/engine/o2,
+/area/atmos)
+"dHR" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/security/permabrig)
+"dHS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"bVZ" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/construction/hallway)
-"bWa" = (
-/obj/structure/transit_tube{
- icon_state = "N-SE";
- tag = "icon-N-SE"
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start{
+ name = "Botanist"
},
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+ dir = 1;
+ icon_state = "green"
},
-/area/construction/hallway)
-"bWb" = (
-/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+/area/hydroponics)
+"dHT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"dHV" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/wood,
+/area/library)
+"dHW" = (
+/obj/structure/table,
+/obj/item/clothing/glasses/welding{
+ pixel_y = 10
+ },
+/obj/item/weldingtool/largetank{
+ pixel_x = 4;
+ pixel_y = -4
},
/turf/space,
-/area/space/nearstation)
-"bWc" = (
-/obj/structure/table/reinforced,
-/obj/item/restraints/handcuffs,
-/obj/item/flash,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "bot"
},
-/area/turret_protected/ai)
-"bWd" = (
-/obj/structure/lattice,
-/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"dHX" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"dHY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/space,
-/area/space/nearstation)
-"bWf" = (
-/obj/structure/transit_tube,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/engine/aienter)
-"bWg" = (
-/obj/structure/transit_tube,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/aienter)
-"bWi" = (
-/obj/item/radio/intercom{
dir = 1;
- name = "Station Intercom (General)";
- pixel_y = -29
+ icon_state = "green"
+ },
+/area/hydroponics)
+"dHZ" = (
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics";
+ req_access_txt = "35"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/hydroponics)
+"dIb" = (
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding1"
+ },
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding2"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "asteroid";
+ tag = "icon-asteroid (NORTH)"
},
-/area/engine/aienter)
-"bWj" = (
+/area/hydroponics)
+"dId" = (
/obj/structure/table/reinforced,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
+/obj/item/reagent_containers/food/snacks/mint,
+/obj/item/reagent_containers/food/drinks/bottle/cream,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/crew_quarters/chief)
-"bWk" = (
-/obj/structure/table/reinforced,
-/obj/machinery/alarm{
+/area/crew_quarters/kitchen)
+"dIe" = (
+/obj/structure/closet/wardrobe/virology_white,
+/obj/item/storage/belt/medical,
+/obj/item/storage/belt/medical,
+/obj/item/storage/belt/medical,
+/obj/machinery/camera{
+ c_tag = "Virology Bedroom";
dir = 1;
- pixel_y = -24
- },
-/obj/machinery/photocopier/faxmachine/longrange{
- department = "Chief Engineer's Office"
+ network = list("Medical","SS13")
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/chief)
-"bWl" = (
-/obj/machinery/keycard_auth{
- pixel_x = -24
- },
-/obj/machinery/door_control{
- id = "engstorage";
- name = "Engineering Secure Storage Control";
- pixel_x = -38;
- pixel_y = 8;
- req_access_txt = "11"
- },
-/obj/machinery/door_control{
- id = "transitlock";
- name = "Transit Tube Lockdown Control";
- pixel_x = -38;
- pixel_y = -8;
- req_access_txt = "11"
- },
+/area/medical/virology)
+"dIg" = (
+/turf/simulated/wall,
+/area/crew_quarters/hor)
+"dIh" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/computer/monitor{
- name = "Grid Power Monitoring Computer"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/area/crew_quarters/chief)
-"bWm" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/area/crew_quarters/hor)
+"dIi" = (
+/obj/machinery/disposal,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/machinery/computer/sm_monitor,
+/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 9;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (NORTHWEST)"
},
-/area/crew_quarters/chief)
-"bWn" = (
-/obj/machinery/photocopier,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Engineer's Desk";
- departmentType = 7;
- name = "Chief Engineer Requests Console";
- pixel_y = -32
+/area/assembly/robotics)
+"dIj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 10;
+ icon_state = "darkredfull"
},
-/area/crew_quarters/chief)
-"bWo" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/security/securearmoury)
+"dIk" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "ceprivacy";
- name = "CE Privacy Shutters";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkred"
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/chief)
-"bWp" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
+/area/security/permabrig)
+"dIm" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/virology)
+"dIo" = (
+/obj/structure/bookcase{
+ name = "Forbidden Knowledge"
+ },
+/obj/item/book/manual/security_space_law,
+/obj/item/book/manual/sop_command,
+/obj/item/book/manual/sop_engineering,
+/obj/item/book/manual/sop_general,
+/obj/item/book/manual/sop_legal,
+/obj/item/book/manual/sop_medical,
+/obj/item/book/manual/sop_science,
+/obj/item/book/manual/sop_security,
+/obj/item/book/manual/sop_service,
+/obj/item/book/manual/sop_supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/security/permabrig)
+"dIs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "ceprivacy";
- name = "CE Privacy Shutters";
- opacity = 0
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/crew_quarters/chief)
-"bWq" = (
-/obj/effect/spawner/window/reinforced,
+/area/maintenance/asmaint2)
+"dIv" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "ceprivacy";
- name = "CE Privacy Shutters";
- opacity = 0
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/chief)
-"bWs" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dIw" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/vip)
+"dIx" = (
+/turf/simulated/wall,
+/area/chapel/office)
+"dIy" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/security/brig)
-"bWt" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/engine/engineering/monitor)
-"bWu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/maintenance/asmaint2)
+"dIC" = (
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/effect/decal/warning_stripes/arrow,
+/obj/effect/decal/warning_stripes/yellow/partial,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"dIE" = (
+/obj/machinery/door/poddoor{
+ id_tag = "turbinevent";
+ name = "Turbine Vent"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
+/turf/simulated/floor/engine,
+/area/maintenance/turbine)
+"dIF" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/area/engine/engineering/monitor)
-"bWv" = (
-/obj/machinery/ai_status_display{
- pixel_y = -32
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"dIH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/recharge_station,
-/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
+/turf/simulated/floor/greengrid,
+/area/security/nuke_storage)
+"dII" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/engine/engineering/monitor)
-"bWw" = (
-/obj/machinery/light,
-/obj/machinery/newscaster/security_unit{
- pixel_y = -32
+/obj/machinery/power/turbine{
+ dir = 8;
+ luminosity = 2
},
-/obj/structure/table/reinforced,
-/obj/item/storage/briefcase/inflatable{
- pixel_x = -2;
- pixel_y = 4
+/obj/structure/sign/vacuum{
+ pixel_y = -32
},
-/obj/item/storage/briefcase/inflatable,
-/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
+/turf/simulated/floor/engine,
+/area/maintenance/turbine)
+"dIJ" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"dIL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/engine/engineering/monitor)
-"bWx" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
+ dir = 8;
+ icon_state = "whitepurple"
},
-/area/engine/engineering/monitor)
-"bWy" = (
-/obj/machinery/status_display{
- pixel_x = 32
+/area/medical/genetics)
+"dIN" = (
+/obj/effect/landmark/start{
+ name = "Magistrate"
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/obj/structure/chair/comfy/brown{
+ dir = 8
},
-/obj/structure/table/reinforced,
-/obj/item/folder/yellow,
-/obj/item/folder/blue{
- pixel_x = 5;
- pixel_y = 5
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "yellow"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/engineering/monitor)
-"bWz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/crew_quarters/courtroom)
+"dIO" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/exit)
+"dIS" = (
+/obj/machinery/igniter{
+ id = "Incinerator";
+ luminosity = 2
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/turf/simulated/floor/engine,
+/area/maintenance/turbine)
+"dIU" = (
+/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "cautioncorner"
+ icon_state = "neutralcorner"
},
-/area/hallway/primary/port/west)
-"bWA" = (
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"dIV" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
+ },
+/area/quartermaster/miningdock)
+"dIW" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "open";
+ id_tag = "magistrate";
+ name = "Magistrate Privacy Shutters";
+ opacity = 0
},
-/area/hallway/primary/port/west)
-"bWB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "yellowcorner"
+/turf/simulated/floor/plating,
+/area/magistrateoffice)
+"dJb" = (
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 1
},
-/area/hallway/primary/port/west)
-"bWC" = (
-/obj/machinery/door/airlock/security/glass{
- id_tag = "BrigEast";
- name = "Armory";
- req_access_txt = "63"
+/obj/effect/decal/warning_stripes/yellow/partial{
+ dir = 1
},
-/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "purple"
+ },
+/area/quartermaster/miningdock)
+"dJc" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/poddoor/shutters{
- dir = 1;
- id_tag = "ArmorySecAccess";
- name = "Armory Security Shutters"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/security/securearmoury)
-"bWD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/magistrateoffice)
+"dJf" = (
+/obj/machinery/door/airlock/glass{
+ autoclose = 0;
+ frequency = 1449;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "gas_turbine_exterior";
+ locked = 1;
+ name = "Turbine Exterior Airlock";
+ req_access_txt = "12"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ master_tag = "turbine_control";
+ name = "Gas Turbine Access Button";
+ pixel_x = -2;
+ pixel_y = 22
},
-/area/hallway/primary/port)
-"bWE" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/turf/simulated/floor/engine,
+/area/maintenance/turbine)
+"dJh" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/hallway/primary/port)
-"bWF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/hallway/primary/port)
-"bWG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/light,
-/obj/item/radio/intercom{
- pixel_y = -28
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"dJi" = (
+/obj/machinery/field/generator{
+ anchored = 1;
+ state = 2
+ },
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"dJj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/southwest,
+/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "neutralfull"
},
-/area/hallway/primary/port)
-"bWH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/maintenance/turbine)
+"dJk" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба служит для подачу горючей смеси в турбину для её работы";
+ name = "Труба турбины"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "dark"
},
-/area/hallway/primary/port)
-"bWI" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
+/area/atmos)
+"dJl" = (
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 1
},
-/obj/machinery/suit_storage_unit/ce,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/chief)
-"bWJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow/partial{
+ dir = 1
},
-/obj/machinery/light,
-/obj/machinery/firealarm{
+/turf/simulated/floor/plasteel{
dir = 1;
- pixel_y = -24
+ icon_state = "brown"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/area/quartermaster/miningdock)
+"dJn" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/hallway/primary/port/east)
-"bWK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/quartermaster/miningdock)
+"dJr" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Chapel Morgue";
+ req_access_txt = "27"
},
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/camera{
- c_tag = "Engineering Access";
- dir = 4;
- network = list("Engineering","SS13");
- pixel_y = -1
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bWL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/area/chapel/office)
+"dJv" = (
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = 32
},
-/area/hallway/primary/central/west)
-"bWM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/reinforced,
+/obj/item/storage/belt/utility,
+/obj/item/radio,
/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
+ dir = 1;
+ icon_state = "dark"
},
-/area/hallway/primary/central/west)
-"bWN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bWO" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/area/atmos)
+"dJx" = (
+/turf/simulated/wall,
+/area/chapel/main)
+"dJB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/port/east)
-"bWP" = (
+/area/hallway/secondary/exit)
+"dJD" = (
/obj/structure/table/reinforced,
-/obj/item/folder/blue,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/brigdoor/eastleft{
- name = "Access Desk";
- req_access_txt = "57"
- },
-/obj/machinery/door/window/westright{
- name = "Access Queue"
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/door/poddoor/shutters/preopen{
+/obj/item/storage/toolbox/mechanical,
+/obj/item/flashlight,
+/obj/item/radio/intercom{
dir = 8;
- id_tag = "hopprivacy";
- name = "Head of Personal Privacy Shutters"
+ pixel_x = -28
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/heads/hop)
-"bWQ" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Head of Personnel"
+ dir = 4;
+ icon_state = "yellow"
},
-/obj/machinery/door_control/ticket_machine_button{
- pixel_x = -38;
- pixel_y = 38
+/area/engine/engineering)
+"dJE" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/heads/hop)
-"bWR" = (
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"bWS" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+ icon_state = "purplecorner"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/area/hallway/primary/aft)
+"dJH" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/crew_quarters/heads/hop)
-"bWT" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/turf/simulated/floor/plating,
+/area/quartermaster/miningdock)
+"dJJ" = (
+/obj/machinery/computer/shuttle/mining,
+/turf/simulated/shuttle/floor,
+/area/shuttle/mining)
+"dJM" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
},
-/area/crew_quarters/heads/hop)
-"bWU" = (
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
-"bWV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/vending/cart/free,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"bWW" = (
+/area/maintenance/electrical)
+"dJN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/command{
- id_tag = "captainofficedoor";
- name = "Captain's Office";
- req_access = null;
- req_access_txt = "20"
+ icon_state = "1-2"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
-"bWX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/captain)
-"bWY" = (
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/crew_quarters/captain/bedroom)
-"bWZ" = (
-/obj/structure/sink{
dir = 4;
- pixel_x = 12
+ icon_state = "whitegreencorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/medical/virology/lab)
+"dJO" = (
+/obj/item/radio/intercom{
+ pixel_y = 22
+ },
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
+ },
+/area/atmos)
+"dJP" = (
+/obj/machinery/bodyscanner,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/crew_quarters/captain/bedroom)
-"bXa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/area/security/medbay)
+"dJS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/machinery/ai_status_display{
+ pixel_y = 32
},
-/area/hallway/primary/central/east)
-"bXb" = (
-/obj/effect/landmark/start{
- name = "Security Officer"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/mob/living/simple_animal/bot/secbot/pingsky{
+ desc = "Worse than nothing";
+ name = "AI Defender"
+ },
+/obj/machinery/ai_slipper,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+ dir = 1;
+ icon_state = "darkblue"
},
-/area/security/customs)
-"bXc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/turret_protected/ai)
+"dJT" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "tox_sensor"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/engine/plasma,
+/area/atmos)
+"dJU" = (
+/turf/simulated/wall/r_wall/rust,
+/area/storage/secure)
+"dJW" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "dark"
},
-/area/security/lobby)
-"bXd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/atmos)
+"dJZ" = (
+/obj/machinery/computer/atmos_alert,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
},
+/area/atmos)
+"dKa" = (
+/obj/structure/bed,
+/obj/item/bedsheet/hop,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
-/area/security/lobby)
-"bXe" = (
+/area/crew_quarters/heads/hop)
+"dKe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/lobby)
-"bXf" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
-/area/security/lobby)
-"bXg" = (
-/obj/machinery/door_control{
- id = "lawyer";
- name = "Internal Affairs Privacy Shutters Control";
- pixel_x = 1;
- pixel_y = 59
+/area/chapel/main)
+"dKi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/carpet,
-/area/lawoffice)
-"bXh" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"dKm" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/window/reinforced,
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/item/extinguisher/mini,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"dKo" = (
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/security/lobby)
-"bXi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/hallway/secondary/exit)
+"dKt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/security/lobby)
-"bXj" = (
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel Bedroom";
+ req_access_txt = "57"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
-/area/security/lobby)
-"bXk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/crew_quarters/heads/hop)
+"dKu" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"dKy" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
+/turf/simulated/floor/plating,
+/area/medical/virology/lab)
+"dKz" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+ icon_state = "white"
},
-/area/security/lobby)
-"bXl" = (
+/area/medical/virology)
+"dKA" = (
+/obj/structure/bed/roller,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/mob/living/carbon/human/monkey,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitegreencorner"
+ },
+/area/medical/virology)
+"dKB" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "caution"
+ },
+/area/atmos)
+"dKD" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/atmos)
+"dKE" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"dKM" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 1;
+ name = "Труба дыхательной смеси"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/lobby)
-"bXm" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/area/atmos)
+"dKR" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
},
-/turf/space,
-/area/space/nearstation)
-"bXy" = (
+/area/atmos)
+"dKU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass,
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "white"
},
-/area/hallway/primary/central/sw)
-"bXB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/medical/virology/lab)
+"dKV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/light{
- on = 1
+/turf/simulated/floor/plasteel,
+/area/hydroponics)
+"dKW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "red"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/security/permabrig)
-"bXC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/east)
-"bXD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Virology Lab";
+ req_access_txt = "39"
+ },
+/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Primary Security Hallway"
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"dKX" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "green"
+ },
+/area/hydroponics)
+"dKY" = (
+/obj/item/radio/intercom{
+ pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/security/lobby)
-"bXE" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
+/area/toxins/explab)
+"dLa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/computer/general_air_control{
- frequency = 1443;
- level = 3;
- name = "Distribution and Waste Monitor";
- sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop")
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
+/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "yellow"
+ icon_state = "pipe-c"
},
-/area/engine/engineering/monitor)
-"bXF" = (
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/construction/hallway)
-"bXG" = (
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+/area/medical/virology)
+"dLb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/area/turret_protected/ai)
-"bXJ" = (
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/junction,
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"dLd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/turret_protected/aisat)
-"bXL" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ dir = 4;
+ icon_state = "whitegreencorner"
},
-/area/turret_protected/ai)
-"bXM" = (
+/area/medical/virology)
+"dLe" = (
/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/firealarm{
+/obj/item/storage/box/lights/mixed,
+/turf/simulated/floor/plasteel{
dir = 1;
- pixel_y = -26
- },
-/turf/simulated/floor/bluegrid,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bXN" = (
-/obj/machinery/light,
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/obj/structure/window/reinforced{
- dir = 8
+ icon_state = "dark"
},
+/area/atmos)
+"dLf" = (
+/obj/structure/table,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/structure/showcase{
- layer = 5
+/turf/simulated/floor/plasteel,
+/area/hydroponics)
+"dLg" = (
+/obj/machinery/light/small{
+ dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"dLi" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bXO" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/toy/figure/borg,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -24
+/area/crew_quarters/courtroom)
+"dLj" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/turf/simulated/floor/bluegrid,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bXP" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"dLk" = (
+/obj/structure/chair{
+ dir = 4
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"bXR" = (
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 100;
+ on = 1
},
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"bXS" = (
-/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/window/reinforced{
- dir = 1
+/area/crew_quarters/courtroom)
+"dLu" = (
+/obj/structure/chair/office/dark{
+ dir = 4
},
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"bXT" = (
-/obj/structure/lattice,
-/obj/structure/transit_tube{
- icon_state = "E-NW";
- tag = "icon-E-NW"
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"dLx" = (
+/obj/machinery/fishtank/wall{
+ opacity = 1
},
-/turf/space,
-/area/space/nearstation)
-"bXU" = (
-/turf/simulated/wall/r_wall,
-/area/engine/engineering)
-"bXY" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bXZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/securearea,
-/turf/simulated/wall,
-/area/engine/engineering)
-"bYa" = (
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+/turf/simulated/floor/plating,
+/area/crew_quarters/kitchen)
+"dLA" = (
+/obj/machinery/light/small{
+ dir = 4
},
-/area/turret_protected/ai)
-"bYb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA"
+/obj/machinery/slot_machine,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"dLB" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 30
},
-/turf/simulated/wall,
-/area/engine/engineering)
-"bYc" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bYd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/shuttle/syndicate)
+"dLD" = (
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"dLH" = (
+/obj/machinery/light{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "blue"
+ dir = 4;
+ icon_state = "neutral"
},
-/area/hydroponics)
-"bYe" = (
-/obj/machinery/vending/coffee,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cautioncorner"
+/area/crew_quarters/courtroom)
+"dLI" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/hallway/primary/port/west)
-"bYf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/vending/snack,
+/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "yellow"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/hallway/primary/port/west)
-"bYg" = (
-/obj/machinery/vending/cola,
-/turf/simulated/floor/plasteel{
- icon_state = "yellowcorner"
+/area/magistrateoffice)
+"dLK" = (
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
+"dLL" = (
+/turf/simulated/wall,
+/area/medical/virology/lab)
+"dLM" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/area/hallway/primary/port/west)
-"bYi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/obj/machinery/status_display{
+ pixel_x = -32
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"bYj" = (
-/turf/simulated/wall,
-/area/library)
-"bYk" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/library)
-"bYl" = (
-/obj/structure/lattice,
-/obj/structure/transit_tube{
- icon_state = "W-SE";
- tag = "icon-W-SE"
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"dLN" = (
+/obj/structure/table,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Magistrate's Office"
},
-/turf/space,
-/area/space/nearstation)
-"bYm" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway)
-"bYn" = (
-/obj/structure/sign/directions/evac{
- pixel_y = -8
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/structure/sign/directions/medical,
-/obj/structure/sign/directions/security{
- pixel_y = 8
+/area/magistrateoffice)
+"dLP" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/condiment/peppermill{
+ pixel_x = 2;
+ pixel_y = 6
},
-/turf/simulated/wall,
-/area/library)
-"bYo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
+/obj/item/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -2;
+ pixel_y = 4
},
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bYp" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"dLQ" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "hopprivacy";
- name = "Head of Personal Privacy Shutters"
+/turf/simulated/floor/plating,
+/area/medical/virology)
+"dLR" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/crew_quarters/heads/hop)
-"bYq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/virology)
+"dLU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 1
},
-/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/heads/hop)
-"bYr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ dir = 8;
+ icon_state = "whitegreencorner"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"bYs" = (
+/area/medical/virology)
+"dLX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/heads/hop)
-"bYt" = (
+/area/quartermaster/office)
+"dLY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "1-2"
},
-/area/crew_quarters/heads/hop)
-"bYu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/status_display{
+/obj/structure/table/glass,
+/obj/machinery/newscaster{
pixel_x = 32
},
-/obj/machinery/pdapainter,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"bYv" = (
-/turf/simulated/wall/r_wall,
-/area/ntrep)
-"bYw" = (
-/turf/simulated/wall/r_wall,
-/area/civilian/barber)
-"bYx" = (
-/turf/simulated/wall/r_wall,
-/area/blueshield)
-"bYy" = (
-/obj/machinery/photocopier,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -32
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/mask/muzzle,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitegreencorner"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain/bedroom)
-"bYz" = (
+/area/medical/virology)
+"dMc" = (
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "0-2"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain/bedroom)
-"bYA" = (
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = 26
+/obj/machinery/light{
+ dir = 1
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain/bedroom)
-"bYB" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/area/hallway/primary/central/sw)
-"bYE" = (
-/obj/machinery/door/airlock/silver{
- name = "Captain's Bathroom"
+/obj/structure/table/wood,
+/obj/item/kitchen/utensil/fork,
+/obj/machinery/camera{
+ c_tag = "Mr. Chang's"
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"dMd" = (
+/obj/structure/table/wood,
+/obj/item/taperecorder,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/crew_quarters/captain/bedroom)
-"bYF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/captain/bedroom)
-"bYG" = (
-/obj/structure/sign/directions/evac{
- pixel_y = -8
+ icon_state = "dark"
},
-/obj/structure/sign/directions/medical,
-/obj/structure/sign/directions/security{
+/area/library/abandoned)
+"dMg" = (
+/turf/simulated/floor/plasteel{
dir = 4;
- pixel_y = 8
+ icon_state = "chapel"
},
-/turf/simulated/wall,
-/area/crew_quarters/courtroom)
-"bYH" = (
-/turf/simulated/wall,
-/area/crew_quarters/courtroom)
-"bYI" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/crew_quarters/courtroom)
-"bYJ" = (
-/obj/structure/window/reinforced{
+/area/chapel/main)
+"dMi" = (
+/obj/structure/chair/wood{
dir = 4
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"dMk" = (
+/obj/item/radio/intercom{
+ pixel_y = 28
+ },
+/obj/structure/table/wood,
+/obj/item/paper/deltainfo,
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"dMm" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway)
-"bYK" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/crew_quarters/courtroom)
-"bYL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel{
+/turf/simulated/floor/grass,
+/area/hallway/secondary/exit)
+"dMn" = (
+/obj/machinery/firealarm{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central/east)
-"bYM" = (
-/turf/simulated/wall,
-/area/magistrateoffice)
-"bYO" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "magistrate";
- name = "Magistrate Privacy Shutters";
- opacity = 0
+ pixel_x = -24
},
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/magistrateoffice)
-"bYQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"bYY" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/security/permabrig)
-"bZa" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/area/crew_quarters/serviceyard)
+"dMq" = (
+/obj/structure/table/wood,
+/obj/item/kitchen/utensil/fork{
+ pixel_x = 7
},
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- name = "Security Requests Console";
- pixel_y = -31
+/obj/item/kitchen/utensil/spoon{
+ pixel_x = 7
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"dMr" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"dMs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/security/customs)
-"bZf" = (
-/obj/structure/window/reinforced{
- dir = 4
+/obj/structure/chair/office/dark{
+ dir = 8
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"bZh" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -24
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
},
-/obj/item/flag/nt,
-/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/delivery)
+"dMu" = (
+/obj/structure/chair/office/dark{
+ dir = 8
},
-/area/turret_protected/aisat)
-"bZi" = (
-/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "brown"
},
-/area/crew_quarters/courtroom)
-"bZj" = (
-/obj/structure/grille,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"bZk" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/quartermaster/miningdock)
+"dMv" = (
+/obj/machinery/atmospherics/unary/tank/air{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/machinery/light/small{
+ dir = 8
},
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"bZl" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/virology)
+"dMw" = (
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"bZm" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"bZn" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/door/airlock/medical{
+ name = "Virology";
+ req_access_txt = "39"
},
-/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"bZo" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable/yellow{
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitegreencorner"
+ },
+/area/medical/virology)
+"dMx" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/wall,
+/area/medical/virology)
+"dMy" = (
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- on = 1
+ initialize_directions = 11
},
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"bZp" = (
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 4
+/area/medical/virology)
+"dMG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bZq" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
- frequency = 1379;
- id_tag = "engineering_west_pump"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bZr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ external_pressure_bound = 100;
+ on = 1
},
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 4;
+ icon_state = "brown"
},
-/area/security/brig)
-"bZs" = (
-/obj/effect/decal/warning_stripes/northwest,
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/area/quartermaster/delivery)
+"dMI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bZt" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/quartermaster/storage)
+"dMJ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bZu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/quartermaster/storage)
+"dMK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bZv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dML" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bZx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/quartermaster/miningdock)
+"dMP" = (
+/obj/structure/chair/wood,
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bZy" = (
+/area/chapel/main)
+"dMW" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass,
+/area/hallway/secondary/exit)
+"dMX" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
},
-/obj/structure/disposalpipe/sortjunction{
- name = "Engineering Junction";
- sortType = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
+ dir = 8;
initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bZz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bZA" = (
+/area/hallway/primary/central/north)
+"dNd" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/floodlight,
+/turf/simulated/floor/plating,
+/area/storage/secure)
+"dNf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/light,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/camera{
+ c_tag = "Cargo Supply South";
+ dir = 1
},
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bZB" = (
+/area/quartermaster/storage)
+"dNi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"dNl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitegreencorner"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/area/medical/virology)
+"dNm" = (
+/obj/machinery/iv_drip,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bZC" = (
-/obj/effect/spawner/window/reinforced,
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Virology Patients Rooms";
+ dir = 1;
+ network = list("Medical","SS13")
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitegreen";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/virology)
+"dNn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitegreencorner"
+ },
+/area/medical/virology)
+"dNo" = (
+/obj/item/radio/intercom{
+ pixel_x = 30
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkred"
+ },
+/area/security/interrogation)
+"dNr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"dNt" = (
+/obj/machinery/the_singularitygen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"dNw" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "purple"
+ },
+/area/quartermaster/miningdock)
+"dNy" = (
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave{
+ pixel_x = -1;
+ pixel_y = 7
},
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"bZD" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = -28
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"dNz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/power/smes{
- charge = 2e+006
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/atmos)
+"dNA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/greengrid,
-/area/engine/engineering)
-"bZE" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/machinery/power/smes{
- charge = 2e+006
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "caution"
},
-/turf/simulated/floor/greengrid,
-/area/engine/engineering)
-"bZF" = (
+/area/atmos)
+"dNB" = (
+/obj/effect/spawner/random_spawners/cobweb_right_frequent,
+/obj/structure/closet,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dNC" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/wall,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"bZG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/random_spawners/cobweb_left_frequent,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"bZH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"bZI" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"dNE" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/space,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/area/security/processing)
+"dNG" = (
+/obj/structure/closet,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"dNO" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"dNR" = (
+/obj/structure/closet/emcloset,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"bZJ" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/library,
+/area/maintenance/fsmaint)
+"dNT" = (
+/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light_switch{
- pixel_x = 4;
- pixel_y = 26
+ pixel_x = -8;
+ pixel_y = -24
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"dNW" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/library)
-"bZK" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plating,
+/area/medical/virology)
+"dNX" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/library)
-"bZL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/library)
-"bZM" = (
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Monkey Pen";
+ req_access_txt = "39"
+ },
+/obj/effect/decal/warning_stripes/yellow/partial{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/item/grown/bananapeel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "white"
+ },
+/area/medical/virology)
+"dNZ" = (
+/obj/structure/table,
+/obj/item/storage/box/donkpockets,
+/obj/machinery/light{
+ dir = 8
},
-/area/library)
-"bZN" = (
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "whitepurple"
},
-/area/library)
-"bZO" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/firealarm{
- pixel_y = 24
+/area/medical/research/restroom)
+"dOc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/library)
-"bZP" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/obj/item/radio/intercom{
- pixel_y = 26
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitegreencorner"
},
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -32
+/area/medical/virology)
+"dOd" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "darkred"
},
-/area/library)
-"bZQ" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/pen,
-/obj/machinery/newscaster{
- pixel_y = 32
+/area/security/evidence)
+"dOf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"dOh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"dOl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/library)
-"bZR" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/library,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "neutral"
},
-/area/library)
-"bZS" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/obj/item/radio/intercom{
- pixel_y = 26
+/area/crew_quarters/courtroom)
+"dOm" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
},
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -32
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dOn" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "neutral"
},
-/area/library)
-"bZT" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/crew_quarters/courtroom)
+"dOu" = (
+/obj/machinery/alarm{
dir = 8;
- initialize_directions = 11
+ pixel_x = 25
},
-/obj/item/radio/intercom{
- dir = 8;
- pixel_x = -28
+/obj/machinery/suit_storage_unit/ce,
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/chief)
+"dOB" = (
+/obj/machinery/atmospherics/unary/outlet_injector/on{
+ dir = 4;
+ frequency = 1441;
+ id = "tox_in"
+ },
+/turf/simulated/floor/engine/plasma,
+/area/atmos)
+"dOE" = (
+/obj/structure/table/wood,
+/obj/item/storage/briefcase,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"dOF" = (
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (NORTHWEST)"
+ },
+/area/medical/virology)
+"dOH" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ name = "Труба смешивания"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/central/west)
-"bZU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/atmos)
+"dOJ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 4;
+ name = "Труба смешивания"
+ },
+/turf/simulated/floor/plating,
+/area/atmos)
+"dOK" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 4;
+ name = "Труба смешивания"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"dOM" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
+/obj/effect/decal/warning_stripes/northwest,
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"dOS" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/candle_box/eternal,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/hallway/primary/central/west)
-"bZV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark{
- name = "lightsout"
+/area/chapel/main)
+"dOX" = (
+/obj/structure/statue/chickenstatue,
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"dOY" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/item/clothing/glasses/hud/hydroponic,
+/obj/item/clothing/glasses/hud/hydroponic,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/camera{
+ c_tag = "Hydroponics Storage";
+ dir = 5
},
/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
+ icon_state = "dark"
},
-/area/hallway/primary/central/west)
-"bZW" = (
-/obj/machinery/status_display,
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/heads/hop)
-"bZX" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/light{
- dir = 8
+/area/hydroponics)
+"dOZ" = (
+/obj/machinery/shieldgen,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"dPa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "darkblue"
},
-/area/crew_quarters/heads/hop)
-"bZY" = (
-/obj/structure/disposalpipe/segment,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"dPb" = (
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_state = "blue"
},
-/area/crew_quarters/heads/hop)
-"bZZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/hydroponics)
+"dPc" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/newscaster{
+ pixel_x = 32
},
-/area/crew_quarters/heads/hop)
-"caa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood,
-/obj/machinery/light,
-/obj/machinery/photocopier/faxmachine/longrange{
- department = "Head of Personnel's Office"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/vending/wallmed{
- pixel_x = 26
+/area/hydroponics)
+"dPe" = (
+/obj/machinery/status_display{
+ pixel_x = 32
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"cab" = (
-/obj/structure/closet/secure_closet/ntrep,
-/turf/simulated/floor/wood,
-/area/ntrep)
-"cac" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/door_control{
- id = "representative";
- name = "Privacy Shutters Control";
- pixel_x = -4;
- pixel_y = 24;
- req_access_txt = "73"
+/obj/machinery/libraryscanner,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/door_control{
- id = "ntrepofficedoor";
- name = "Office Door";
- normaldoorcontrol = 1;
- pixel_x = 6;
- pixel_y = 24;
- req_access_txt = "73"
+/area/library)
+"dPf" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/wood,
-/area/ntrep)
-"cad" = (
-/obj/structure/table/wood,
-/obj/machinery/photocopier/faxmachine/longrange{
- department = "NT Representative's Office"
+/turf/simulated/floor/carpet,
+/area/crew_quarters/mrchangs)
+"dPg" = (
+/obj/structure/table/glass,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/machinery/alarm{
+ pixel_y = 23
},
-/turf/simulated/floor/wood,
-/area/ntrep)
-"cae" = (
-/obj/item/flag/nt,
/obj/item/radio/intercom{
- pixel_y = 24
- },
-/turf/simulated/floor/wood,
-/area/ntrep)
-"caf" = (
-/obj/machinery/dye_generator,
-/obj/machinery/alarm{
dir = 4;
- pixel_x = -22
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "barber"
+ dir = 4;
+ icon_state = "whitegreencorner"
},
-/area/civilian/barber)
-"cag" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/area/medical/virology)
+"dPk" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "brown"
},
-/obj/structure/chair/barber{
+/area/quartermaster/office)
+"dPl" = (
+/obj/machinery/light/small{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/serviceyard)
+"dPo" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "barber"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/civilian/barber)
-"cah" = (
-/obj/structure/table/reinforced,
-/obj/structure/mirror{
- pixel_x = 28
+/area/quartermaster/office)
+"dPp" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
-/obj/item/razor,
-/obj/machinery/camera{
- c_tag = "Barber Shop"
+/obj/structure/chair/comfy/brown{
+ dir = 4
},
-/obj/item/radio/intercom{
- pixel_y = 24
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"dPq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external{
+ id_tag = "mining_home";
+ name = "Mining Dock Airlock";
+ req_access_txt = "48"
},
+/obj/structure/fans/tiny,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"dPt" = (
/turf/simulated/floor/plasteel{
- icon_state = "barber"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/civilian/barber)
-"cai" = (
-/obj/item/flag/nt,
-/obj/item/radio/intercom{
- pixel_y = 24
+/area/hallway/primary/central/west)
+"dPy" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/wood,
-/area/blueshield)
-"caj" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/turf/simulated/floor/wood,
-/area/blueshield)
-"cak" = (
-/obj/machinery/computer/crew,
-/obj/machinery/door_control{
- id = "blueshieldofficedoor";
- name = "Office Door";
- normaldoorcontrol = 1;
- pixel_x = 6;
- pixel_y = 24;
- req_access_txt = "67"
- },
-/obj/machinery/door_control{
- id = "blueshield";
- name = "Privacy Shutters Control";
- pixel_x = -4;
- pixel_y = 24;
- req_access_txt = "67"
+/area/crew_quarters/bar/atrium)
+"dPF" = (
+/obj/structure/chair/sofa/right{
+ dir = 1
},
-/turf/simulated/floor/wood,
-/area/blueshield)
-"cal" = (
-/obj/structure/closet/secure_closet/blueshield,
-/obj/item/stack/tape_roll,
-/obj/item/sensor_device,
-/turf/simulated/floor/wood,
-/area/blueshield)
-"cam" = (
-/obj/structure/table/wood,
-/obj/item/pinpointer,
-/obj/item/disk/nuclear,
-/obj/item/radio/intercom{
- dir = 8;
- pixel_x = -28
+/obj/effect/landmark/start{
+ name = "Civilian"
},
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"dPJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "darkblue"
},
-/area/crew_quarters/captain/bedroom)
-"can" = (
+/area/turret_protected/ai)
+"dPL" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/grass,
+/area/hallway/secondary/exit)
+"dPN" = (
+/obj/structure/chair/sofa/left{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"dPO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel";
+ req_access = null;
+ req_access_txt = "57"
},
-/area/crew_quarters/captain/bedroom)
-"cao" = (
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain/bedroom)
-"cap" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
/turf/simulated/floor/wood,
-/area/crew_quarters/captain/bedroom)
-"caq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/crew_quarters/heads/hop)
+"dPP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/wood,
-/area/crew_quarters/captain/bedroom)
-"car" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green,
-/obj/item/card/id/captains_spare,
-/obj/structure/window/reinforced{
- dir = 8
- },
+/area/crew_quarters/bar/atrium)
+"dPQ" = (
+/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/crew_quarters/captain/bedroom)
-"cas" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/bridge/vip)
+"dPS" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/camera{
+ c_tag = "Arrivals Port Bay 4"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/captain/bedroom)
-"cat" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 1;
+ icon_state = "arrival"
},
-/obj/item/twohanded/required/kirbyplants,
+/area/hallway/secondary/entry/commercial)
+"dPT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/captain/bedroom)
-"cau" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+ icon_state = "darkblue"
},
+/area/turret_protected/ai)
+"dPX" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
+ dir = 8;
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/east)
-"cav" = (
-/obj/machinery/vending/snack,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/hallway/primary/central/se)
+"dPZ" = (
+/obj/structure/table/wood,
+/obj/item/storage/briefcase{
+ pixel_x = 4;
+ pixel_y = 4
},
-/area/crew_quarters/courtroom)
-"caw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/area/crew_quarters/courtroom)
-"cax" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
-"cay" = (
-/obj/item/twohanded/required/kirbyplants,
+"dQa" = (
+/obj/structure/closet/secure_closet/personal,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/courtroom)
-"caz" = (
-/obj/structure/disposalpipe/segment{
+/area/crew_quarters/locker)
+"dQb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/fore)
+"dQd" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/turret_protected/ai)
+"dQi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 5
},
+/obj/machinery/light,
/obj/machinery/camera{
- c_tag = "Primary Security Hallway East";
+ c_tag = "Chapel South";
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/machinery/hologram/holopad,
+/obj/structure/sign/poster/official/religious{
+ pixel_y = -32
},
-/area/security/lobby)
-"caA" = (
-/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/light{
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/chapel/main)
+"dQl" = (
+/obj/machinery/alarm{
dir = 1;
- on = 1
+ pixel_y = -22
},
/turf/simulated/floor/plasteel{
- icon_state = "carpet"
+ icon_state = "darkblue"
},
-/area/crew_quarters/courtroom)
-"caB" = (
-/obj/structure/chair,
-/obj/machinery/door/window/eastright,
-/turf/simulated/floor/plasteel{
- icon_state = "carpet"
+/area/turret_protected/ai)
+"dQn" = (
+/obj/machinery/porta_turret,
+/obj/machinery/ai_status_display{
+ pixel_x = 32
},
-/area/crew_quarters/courtroom)
-"caC" = (
-/obj/machinery/alarm{
- pixel_y = 23
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/turret_protected/ai)
+"dQq" = (
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "neutralfull"
},
-/area/crew_quarters/courtroom)
-"caD" = (
+/area/atmos)
+"dQr" = (
/obj/machinery/light{
- dir = 1;
- in_use = 1
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = 32
+ dir = 4
},
/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/fore)
+"dQt" = (
+/obj/machinery/power/apc{
dir = 1;
- icon_state = "neutral"
+ name = "north bump";
+ pixel_y = 24
},
-/area/crew_quarters/courtroom)
-"caE" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutral"
- },
-/area/crew_quarters/courtroom)
-"caF" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-25";
- tag = "icon-plant-25"
+ icon_state = "caution"
},
-/obj/machinery/vending/wallmed{
- pixel_y = 30
+/area/atmos)
+"dQu" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "neutral"
+/turf/simulated/floor/plating,
+/area/quartermaster/miningdock)
+"dQy" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"dQz" = (
+/obj/structure/particle_accelerator/end_cap{
+ dir = 8
},
-/area/crew_quarters/courtroom)
-"caG" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-25";
- tag = "icon-plant-25"
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"dQA" = (
+/obj/machinery/light{
+ dir = 4
},
-/obj/machinery/door_control{
- id = "magistrate";
- name = "Privacy Shutters Control";
- pixel_x = -25;
- pixel_y = 8
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"dQB" = (
+/obj/structure/table,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
/obj/machinery/light_switch{
- pixel_x = -25
+ pixel_x = -22;
+ pixel_y = -22
},
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = -27
},
-/area/magistrateoffice)
-"caI" = (
-/obj/structure/chair/comfy/brown,
-/obj/effect/landmark/start{
- name = "Magistrate"
+/obj/machinery/recharger{
+ pixel_y = 3
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/magistrateoffice)
-"caK" = (
-/obj/item/radio/intercom/department/security{
- pixel_x = 32;
- pixel_y = -7
- },
-/obj/item/radio/intercom{
- pixel_x = 32;
- pixel_y = 5
- },
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-22";
- tag = "icon-plant-22"
+ dir = 10;
+ icon_state = "brown"
},
+/area/quartermaster/delivery)
+"dQC" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/wardrobe/engineering_yellow,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"dQD" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"dQF" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 26
- },
-/obj/machinery/camera{
- c_tag = "Magistrate Office North"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/magistrateoffice)
-"caL" = (
-/obj/structure/bookcase,
-/obj/item/book/manual/sop_engineering,
-/obj/item/book/manual/sop_medical,
-/obj/item/book/manual/sop_security,
-/obj/item/book/manual/sop_service,
-/obj/item/book/manual/sop_supply,
-/obj/item/book/manual/sop_general,
-/obj/item/book/manual/sop_legal,
-/obj/item/book/manual/sop_command,
-/obj/item/book/manual/sop_science,
-/obj/item/book/manual/security_space_law,
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/magistrateoffice)
-"caN" = (
-/obj/structure/bed,
-/obj/item/bedsheet/blue,
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitered"
- },
-/area/security/medbay)
-"caQ" = (
-/obj/structure/table/wood,
-/obj/item/radio/intercom{
- pixel_y = 26
- },
-/obj/machinery/computer/med_data/laptop,
-/obj/machinery/flasher_button{
- id = "hopflash";
- pixel_x = -38;
- pixel_y = -6
- },
-/obj/machinery/door_control{
- id = "hopprivacy";
- name = "Privacy Shutters";
- pixel_x = -24;
- pixel_y = -6;
- req_one_access_txt = "18"
- },
-/obj/machinery/door_control{
- id = "hopqueueshutters";
- name = "Queue Shutters";
- pixel_x = -24;
- pixel_y = 6;
- req_one_access_txt = "18"
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/heads/hop)
-"caV" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
+ icon_state = "1-2"
},
-/obj/structure/lattice,
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"caX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkbluecorners"
+ dir = 8;
+ icon_state = "yellow"
},
-/area/turret_protected/ai)
-"caY" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/area/engine/engineering/monitor)
+"dQK" = (
+/obj/effect/decal/cleanable/blood,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dQL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dQP" = (
+/obj/structure/table,
+/obj/item/folder/yellow,
+/obj/item/destTagger,
+/obj/item/rcs,
+/obj/item/rcs,
+/obj/item/rcs,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkbluefull"
- },
-/area/turret_protected/ai)
-"cba" = (
-/obj/structure/grille,
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cbb" = (
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cbc" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cbd" = (
-/obj/machinery/power/emitter{
- anchored = 1;
- state = 2
+ icon_state = "brown"
},
-/obj/structure/cable/yellow,
-/obj/effect/decal/warning_stripes/eastsouthwest,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cbe" = (
-/obj/structure/grille,
+/area/quartermaster/delivery)
+"dQQ" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cbf" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "engineering_west_airlock";
- name = "exterior access button";
- pixel_x = 20;
- pixel_y = 20;
- req_access_txt = "10;13"
- },
/obj/structure/cable/yellow{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cbg" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "engineering_west_outer";
- locked = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/yellow,
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
-"cbh" = (
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "engineering_west_airlock";
- pixel_y = -25;
- req_access_txt = "10;13";
- tag_airpump = "engineering_west_pump";
- tag_chamber_sensor = "engineering_west_sensor";
- tag_exterior_door = "engineering_west_outer";
- tag_interior_door = "engineering_west_inner"
- },
-/obj/machinery/airlock_sensor{
- id_tag = "engineering_west_sensor";
- pixel_y = -34
+"dQR" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/reagent_containers/food/drinks/bottle/vodka{
+ desc = "For the Cargonia!";
+ name = "Molotov cocktail"
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "brown"
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cbi" = (
+/area/quartermaster/storage)
+"dQS" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cbj" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "engineering_west_inner";
- locked = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
+/obj/effect/landmark/start{
+ name = "Station Engineer"
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
/area/engine/engineering)
-"cbk" = (
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "engineering_west_airlock";
- name = "interior access button";
- pixel_x = -20;
- pixel_y = -20;
- req_access_txt = "10;13"
- },
+"dQT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/area/engine/engineering)
-"cbl" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/engine/engineering)
-"cbm" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+"dQV" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "brown"
+ },
+/area/quartermaster/storage)
+"dQW" = (
+/obj/machinery/computer/general_air_control/large_tank_control{
+ frequency = 1441;
+ input_tag = "n2_in";
+ name = "Nitrogen Supply Control";
+ output_tag = "n2_out";
+ sensors = list("n2_sensor" = "Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
dir = 1;
- on = 1
+ name = "Труба фильтрации"
},
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/engine/engineering)
-"cbn" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "red"
},
-/area/engine/engineering)
-"cbo" = (
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/area/atmos)
+"dRb" = (
+/obj/structure/girder,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dRc" = (
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dRd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/engine/engineering)
-"cbp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
- },
-/area/engine/engineering)
-"cbq" = (
-/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "neutralfull"
+ },
+/area/storage/secure)
+"dRe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/engineering)
-"cbr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/area/storage/secure)
+"dRf" = (
+/obj/structure/table,
+/obj/item/storage/box/masks,
+/obj/item/storage/box/gloves,
+/obj/structure/sign/vacuum{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ dir = 5;
+ icon_state = "whitegreencorner"
},
-/area/engine/engineering)
-"cbs" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/area/medical/virology)
+"dRg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "brown"
},
-/area/engine/engineering)
-"cbt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/quartermaster/storage)
+"dRj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ dir = 5;
+ icon_state = "brown"
},
-/area/engine/engineering)
-"cbu" = (
+/area/quartermaster/storage)
+"dRm" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 4;
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/camera{
- c_tag = "Engine Room North";
- network = list("Engineering","SS13")
- },
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- pixel_y = 28
- },
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cbv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/power/terminal{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cbw" = (
+/area/chapel/main)
+"dRq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cbx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/power/terminal{
- dir = 1
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cby" = (
-/obj/structure/table,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"cbz" = (
-/obj/machinery/suit_storage_unit/captain,
-/obj/machinery/light{
- dir = 1;
- in_use = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain/bedroom)
-"cbA" = (
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cbB" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
+/area/medical/surgery1)
+"dRr" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/chapel/main)
+"dRs" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "22"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cbC" = (
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cbD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cbE" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cbF" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -32
- },
-/obj/machinery/light{
- dir = 8
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/window/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/library)
-"cbG" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/area/maintenance/asmaint2)
+"dRt" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/landmark/start{
- name = "Librarian"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/library)
-"cbH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
+/area/chapel/office)
+"dRw" = (
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"cbI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
- external_pressure_bound = 100;
- on = 1
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/storage/secure)
+"dRB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/library)
-"cbJ" = (
-/obj/machinery/newscaster{
- pixel_x = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/recharge_station,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/sw)
+"dRC" = (
+/obj/machinery/atmospherics/binary/valve/digital{
+ desc = "Открывает подачу азота в систему охлаждения реактора для подпитки. Азот служит в качестве хладагента";
+ name = "Азот (N2) в реактор"
},
-/area/library)
-"cbK" = (
-/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "dark"
},
-/area/library)
-"cbL" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/obj/structure/chair/office/dark{
- dir = 1
+/area/atmos)
+"dRE" = (
+/obj/machinery/light/small{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/engine/n2,
+/area/atmos)
+"dRG" = (
+/obj/machinery/status_display/supply_display,
+/turf/simulated/wall,
+/area/quartermaster/qm)
+"dRJ" = (
+/obj/structure/table,
+/obj/item/storage/box/donkpockets,
+/obj/machinery/light{
+ dir = 8
},
-/area/library)
-"cbM" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/status_display{
- pixel_x = 32
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/item/radio/intercom{
+ pixel_x = -32
},
-/area/library)
-"cbN" = (
-/obj/machinery/photocopier,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/library)
-"cbO" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/obj/structure/chair/office/dark{
- dir = 1
+/area/security/permabrig)
+"dRK" = (
+/obj/machinery/light{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/light_switch{
+ pixel_x = 27;
+ pixel_y = 6
},
-/area/library)
-"cbP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/driver_button{
+ id_tag = "chapelgun";
+ name = "Chapel Mass Driver";
+ pixel_x = 27;
+ pixel_y = -5
},
/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
- },
-/area/hallway/primary/central/west)
-"cbQ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 4;
+ icon_state = "darkblue"
},
-/turf/simulated/floor/plating,
-/area/hallway/primary/central/west)
-"cbR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/chapel/main)
+"dRL" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "eva-shutters";
+ name = "E.V.A. Storage Shutters"
},
-/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cbS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/ai_monitored/storage/eva)
+"dRM" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/item/clothing/glasses/hud/hydroponic,
+/obj/item/clothing/glasses/hud/hydroponic,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/status_display{
+ pixel_x = -32
},
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/obj/machinery/light{
+ dir = 8
},
-/area/crew_quarters/heads/hop)
-"cbT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/hydroponics)
+"dRO" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/security/checkpoint)
+"dRT" = (
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/west)
+"dRW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/heads/hop)
-"cbU" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+ icon_state = "4-8"
},
-/obj/machinery/camera{
- c_tag = "Head of Personnel's Office";
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/crew_quarters/heads/hop)
-"cbV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/bridge/vip)
+"dRX" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "green"
},
+/area/hydroponics)
+"dRZ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/medical/medbay)
-"cbW" = (
-/turf/simulated/floor/wood,
-/area/ntrep)
-"cbX" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/paper/ntrep,
-/obj/item/flashlight/lamp/green{
- pixel_x = -5;
- pixel_y = 12
+ icon_state = "dark"
},
-/turf/simulated/floor/carpet,
-/area/ntrep)
-"cbY" = (
-/obj/effect/landmark/start{
- name = "Nanotrasen Representative"
+/area/security/permabrig)
+"dSb" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/structure/chair/comfy/black{
+/obj/structure/lattice,
+/obj/machinery/light/small{
dir = 4
},
-/turf/simulated/floor/carpet,
-/area/ntrep)
-"cbZ" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Mechanic Workshop";
- req_access_txt = "70"
+/turf/space,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"dSc" = (
+/obj/structure/window/reinforced,
+/obj/structure/closet/coffin,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/chapel/main)
+"dSf" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 8
},
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
},
-/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"cca" = (
-/obj/machinery/newscaster{
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "arrival_south_airlock";
+ name = "interior access button";
+ pixel_x = -24;
+ pixel_y = -24;
+ req_access_txt = "10;13"
+ },
+/obj/structure/sign/vacuum{
pixel_x = -32
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"dSg" = (
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Departure Lounge Security Checkpoint West";
+ network = list("SS13","Security")
},
/turf/simulated/floor/plasteel{
- icon_state = "barber"
+ dir = 9;
+ icon_state = "red"
},
-/area/civilian/barber)
-"ccb" = (
+/area/security/checkpoint)
+"dSi" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "barber"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/area/civilian/barber)
-"ccc" = (
-/obj/structure/table/reinforced,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32
- },
-/obj/item/paper/deltainfo,
-/turf/simulated/floor/plasteel{
- icon_state = "barber"
- },
-/area/civilian/barber)
-"ccd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"cce" = (
-/obj/structure/table/wood,
-/obj/item/taperecorder,
-/turf/simulated/floor/plasteel{
- icon_state = "bcarpet05"
- },
-/area/blueshield)
-"ccf" = (
-/obj/effect/landmark/start{
- name = "Blueshield"
- },
-/obj/structure/chair/comfy/black{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "bcarpet05"
- },
-/area/blueshield)
-"ccg" = (
-/turf/simulated/floor/wood,
-/area/blueshield)
-"cch" = (
-/obj/structure/table/wood,
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/obj/item/folder/blue,
-/obj/item/pen/multi/fountain,
-/obj/item/paper/safe_code{
- owner = "captain"
- },
-/obj/item/paper/monitorkey,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 5
},
-/area/crew_quarters/captain/bedroom)
-"cci" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
+/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "red"
},
-/obj/structure/chair/comfy/brown{
- dir = 8
+/area/security/checkpoint)
+"dSj" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/southright{
+ dir = 1;
+ name = "Security Desk";
+ pixel_y = 8;
+ req_access_txt = "63"
},
-/obj/effect/landmark/start{
- name = "Captain"
+/obj/item/folder/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/captain/bedroom)
-"ccj" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+ icon_state = "1-8"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain/bedroom)
-"cck" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
+ },
+/area/security/checkpoint)
+"dSk" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain/bedroom)
-"ccl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/security/checkpoint)
+"dSl" = (
+/obj/structure/closet/wardrobe/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain/bedroom)
-"ccm" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/door/window{
- dir = 8;
- req_access_txt = "63"
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
},
-/obj/structure/safe/floor{
- known_by = list("captain")
+/area/security/checkpoint)
+"dSr" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 100;
+ on = 1
},
-/obj/item/gun/projectile/revolver/russian,
-/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium,
-/obj/item/lighter/zippo/nt_rep,
-/obj/item/storage/fancy/cigarettes/cigpack_robustgold,
-/obj/item/toy/figure/captain,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/crew_quarters/captain/bedroom)
-"ccn" = (
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain/bedroom)
-"cco" = (
-/obj/structure/bed,
-/obj/item/bedsheet/captain,
-/obj/machinery/light/small{
+/area/crew_quarters/courtroom)
+"dSs" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Captain"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "brown"
},
-/obj/item/storage/secure/safe{
- pixel_x = 32
+/area/quartermaster/miningdock)
+"dSy" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain/bedroom)
-"ccp" = (
-/obj/structure/table,
-/obj/machinery/kitchen_machine/microwave,
-/obj/machinery/newscaster{
- pixel_x = -32
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"dSz" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "Singularity";
+ layer = 2.7;
+ name = "Singularity Blast Doors";
+ opacity = 0
},
-/obj/machinery/light{
- dir = 8
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"dSA" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/courtroom)
-"ccq" = (
-/obj/structure/chair{
+/area/chapel/office)
+"dSC" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"dSD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/courtroom)
-"ccr" = (
-/obj/structure/table/wood,
-/obj/item/folder/red,
-/obj/item/pen,
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (EAST)"
+ },
+/area/medical/research/nhallway)
+"dSF" = (
+/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"dSH" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "carpet"
+ icon_state = "yellowfull"
},
-/area/crew_quarters/courtroom)
-"ccs" = (
-/obj/structure/table/wood,
-/obj/item/radio/intercom,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+/area/engine/engineering)
+"dSI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Chapel Office";
+ req_access_txt = "22"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "carpet"
+ icon_state = "dark"
+ },
+/area/chapel/office)
+"dSJ" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/checkpoint)
+"dSL" = (
+/obj/structure/table/wood,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/item/clipboard,
+/obj/item/toy/figure/librarian,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/library)
+"dSM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/area/crew_quarters/courtroom)
-"cct" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/unary/vent_pump{
+/turf/simulated/floor/plasteel{
dir = 4;
- on = 1
+ icon_state = "red"
+ },
+/area/security/checkpoint)
+"dSP" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "neutralfull"
},
-/area/crew_quarters/courtroom)
-"ccu" = (
+/area/security/checkpoint)
+"dSQ" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/kitchen)
+"dSR" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plating,
+/area/security/checkpoint)
+"dSW" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/crew_quarters/courtroom)
-"ccv" = (
+/area/crew_quarters/kitchen)
+"dTd" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/crew_quarters/kitchen)
+"dTf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/carpet,
+/area/chapel/office)
+"dTi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Holding Area";
+ req_access_txt = "1"
},
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/courtroom)
-"ccw" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Courtroom East";
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/security/checkpoint)
+"dTl" = (
+/obj/structure/table/reinforced,
+/obj/item/restraints/handcuffs,
+/obj/item/flash,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "dark"
},
-/area/crew_quarters/courtroom)
-"ccx" = (
-/obj/machinery/computer/monitor,
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/light,
+/area/turret_protected/ai)
+"dTm" = (
+/turf/simulated/floor/carpet,
+/area/chapel/office)
+"dTn" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/crayons,
/obj/machinery/camera{
- c_tag = "Minisat Maintenance Room";
+ c_tag = "Chaplain's Office";
+ dir = 1
+ },
+/obj/machinery/requests_console{
+ department = "Chapel";
+ departmentType = 2;
+ name = "Chapel Requests Console";
+ pixel_y = -30
+ },
+/obj/item/lighter/zippo/black,
+/turf/simulated/floor/carpet,
+/area/chapel/office)
+"dTo" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/ai)
+"dTp" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 1;
- network = list("Minisat","SS13")
+ frequency = 1379;
+ id_tag = "arrival_south_pump"
},
-/obj/machinery/status_display{
- pixel_y = -32
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "arrival_south_airlock";
+ pixel_x = 25;
+ tag_airpump = "arrival_south_pump";
+ tag_chamber_sensor = "arrival_south_sensor";
+ tag_exterior_door = "arrival_south_outer";
+ tag_interior_door = "arrival_south_inner"
},
-/turf/simulated/floor/plating,
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"ccy" = (
-/obj/structure/sign/poster/official/random{
- pixel_x = -32
+/obj/machinery/airlock_sensor{
+ id_tag = "arrival_south_sensor";
+ pixel_x = -24
},
-/obj/machinery/light{
- dir = 8
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 8
},
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"dTr" = (
+/obj/structure/delta_statue/s,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ dir = 8;
+ icon_state = "vault";
+ tag = "icon-vault (WEST)"
+ },
+/area/bridge/vip)
+"dTs" = (
+/obj/machinery/computer/prisoner,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/magistrateoffice)
-"ccz" = (
-/obj/structure/table/reinforced,
-/obj/machinery/computer/secure_data/laptop,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ dir = 6;
+ icon_state = "red"
+ },
+/area/security/checkpoint)
+"dTt" = (
+/obj/machinery/computer/secure_data,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/magistrateoffice)
-"ccA" = (
-/obj/structure/table/reinforced,
-/obj/item/taperecorder,
-/obj/item/megaphone,
-/obj/item/flashlight/lamp,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/magistrateoffice)
-"ccB" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin/nanotrasen,
-/obj/item/pen/multi/gold,
-/obj/item/stamp/magistrate,
+/area/security/checkpoint)
+"dTu" = (
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "white"
},
-/area/magistrateoffice)
-"ccC" = (
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
+/area/crew_quarters/kitchen)
+"dTw" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/machinery/computer/security{
+ network = list("SS13","Research Outpost","Mining Outpost")
+ },
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
},
+/area/security/checkpoint)
+"dTy" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/light{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/magistrateoffice)
-"ccK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/table,
+/obj/item/restraints/handcuffs,
+/obj/item/flash,
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "red"
},
-/area/security/permabrig)
-"ccL" = (
+/area/security/checkpoint)
+"dTz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/se)
+"dTA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/security/permabrig)
-"ccO" = (
/obj/structure/chair{
- dir = 4
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
/obj/machinery/camera{
- c_tag = "Courtroom North"
+ c_tag = "Departure Lounge Security Checkpoint East";
+ dir = 1;
+ network = list("SS13","Security")
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 6;
+ icon_state = "red"
+ },
+/area/security/checkpoint)
+"dTC" = (
+/obj/machinery/porta_turret,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
},
-/area/crew_quarters/courtroom)
-"ccU" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/tcommsat/chamber)
-"ccW" = (
-/obj/machinery/camera/motion{
- c_tag = "Minisat AI Core North";
+/area/turret_protected/ai)
+"dTD" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
- network = list("Minisat","SS13")
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/checkpoint)
+"dTJ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/item/flag/sec,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/hos)
+"dTK" = (
+/obj/structure/chair/comfy/shuttle,
+/turf/simulated/shuttle/floor4,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"dTM" = (
+/obj/structure/table/reinforced,
+/obj/item/paicard,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
/area/turret_protected/ai)
-"cda" = (
-/obj/machinery/power/grounding_rod{
- anchored = 1
+"dTN" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cdb" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cdc" = (
-/obj/machinery/power/grounding_rod{
- anchored = 1
+/area/shuttle/administration)
+"dTS" = (
+/obj/machinery/vending/wallmed{
+ pixel_x = -28
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cdd" = (
-/obj/structure/sign/vacuum,
-/turf/simulated/wall/r_wall,
-/area/engine/engineering)
-"cde" = (
-/obj/machinery/light{
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/locker)
+"dTT" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/lattice,
+/obj/machinery/light/small{
dir = 8
},
-/obj/machinery/status_display{
- pixel_x = -32
+/turf/space,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"dTW" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/chair,
+/obj/structure/disposalpipe/sortjunction{
+ name = "Chapel Junction";
+ sortType = 17
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cdf" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/effect/landmark/start{
+ name = "Civilian"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cdh" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cdi" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "green"
},
-/area/engine/engineering)
-"cdj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/area/hallway/secondary/exit)
+"dUa" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/southwestcorner,
+/turf/space,
+/area/space/nearstation)
+"dUb" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "arrival_south_outer";
+ locked = 1;
+ name = "Arrivals External Access";
+ req_access = null
+ },
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cdk" = (
+/area/hallway/secondary/exit)
+"dUc" = (
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/turret_protected/ai)
+"dUe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/yellow{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cdl" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/locker)
+"dUf" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/structure/sign/poster/official/report_crimes{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plating,
+/area/security/checkpoint)
+"dUg" = (
+/obj/machinery/light,
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/security/checkpoint)
+"dUl" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_x = 27
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/storage/fancy/candle_box/full{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/storage/fancy/candle_box/full,
+/obj/item/storage/fancy/candle_box/full{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/office)
+"dUm" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space)
+"dUo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/outlet_injector/on,
+/turf/simulated/floor/plating,
+/area/space)
+"dUr" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Escape Shuttle Cell";
+ req_access_txt = "2"
+ },
+/turf/simulated/shuttle/floor4,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"dUs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cdm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cdn" = (
-/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/office)
+"dUw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cdo" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/turf/simulated/floor/plasteel{
dir = 8;
- external_pressure_bound = 100;
- on = 1
+ icon_state = "brown"
},
-/obj/structure/cable/yellow{
+/area/quartermaster/miningdock)
+"dUy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/decal/warning_stripes/southwest,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"dUz" = (
+/obj/structure/window/full/shuttle,
+/obj/structure/grille,
+/turf/simulated/shuttle/plating,
+/area/shuttle/mining)
+"dUA" = (
/obj/structure/cable/yellow{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cdp" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"dUC" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/effect/landmark/start{
- name = "Station Engineer"
+/obj/effect/decal/warning_stripes/southeast,
+/obj/item/wrench,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"dUD" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the singularity chamber.";
+ dir = 8;
+ layer = 4;
+ name = "Singularity Engine Telescreen";
+ network = list("Singularity")
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/wall/r_wall,
/area/engine/engineering)
-"cdq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+"dUE" = (
+/obj/machinery/power/tesla_coil{
+ anchored = 1
+ },
+/obj/structure/cable/yellow,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"dUG" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitered"
+ },
+/area/security/medbay)
+"dUH" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- on = 1
+ initialize_directions = 11
},
-/obj/structure/cable/yellow{
- d1 = 1;
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/obj/structure/sign/electricshock{
- pixel_x = 32
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"dUI" = (
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
-"cdr" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+"dUJ" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f10"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/area/shuttle/escape{
+ parallax_movedir = 2
})
-"cds" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "neutral"
+"dUK" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/turf/simulated/floor/carpet,
+/area/chapel/office)
+"dUN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/maintenance/engrooms)
-"cdt" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cdu" = (
-/obj/effect/spawner/random_spawners/grille_maybe,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cdv" = (
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cdw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cdx" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/window/westright{
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"dUO" = (
+/obj/structure/table/reinforced,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/item/tank/plasma,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 30
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "yellow"
+ },
+/area/engine/engineering)
+"dUP" = (
+/obj/machinery/door/poddoor{
+ id_tag = "auxincineratorvent";
+ name = "Incineration Chamber Vent"
+ },
+/turf/simulated/floor/engine,
+/area/maintenance/turbine)
+"dUY" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
dir = 4;
- name = "Library Delivery";
- req_access_txt = "37"
+ name = "Труба дыхательной смеси"
},
-/turf/simulated/floor/wood,
-/area/library)
-"cdy" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "caution"
+ },
+/area/atmos)
+"dVa" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
dir = 4;
- on = 1
+ name = "Труба дыхательной смеси"
},
-/turf/simulated/floor/wood,
-/area/library)
-"cdz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"dVb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
dir = 4;
- initialize_directions = 11
+ name = "Труба дыхательной смеси"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "vault"
},
-/area/library)
-"cdA" = (
+/area/atmos)
+"dVi" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/trinary/mixer,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"dVj" = (
/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light/small{
- dir = 4
+/obj/machinery/light/small,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitegreencorner"
},
-/obj/machinery/camera{
- c_tag = "Library North";
+/area/medical/medbay3)
+"dVm" = (
+/obj/machinery/light{
dir = 8
},
-/turf/simulated/floor/wood,
-/area/library)
-"cdB" = (
-/obj/structure/sign/nosmoking_2,
-/turf/simulated/wall,
-/area/library)
-"cdC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/morgue,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/item/radio/intercom{
+ pixel_x = -28
+ },
+/obj/structure/chair/comfy/brown{
+ dir = 4;
+ layer = 4
+ },
+/obj/effect/landmark/start{
+ name = "Civilian"
},
-/area/library)
-"cdD" = (
-/obj/structure/sign/electricshock,
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/heads/hop)
-"cdE" = (
-/obj/machinery/computer/security/mining,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/crew_quarters/heads/hop)
-"cdF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/bridge/vip)
+"dVo" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = -4
},
+/obj/structure/closet/secure_closet/chaplain,
+/obj/item/storage/fancy/candle_box/eternal,
+/obj/item/storage/fancy/candle_box/eternal,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
+ },
+/area/chapel/office)
+"dVq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/heads/hop)
-"cdG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/crew_quarters/heads/hop)
-"cdH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/table/wood,
+/area/atmos)
+"dVr" = (
/obj/machinery/light{
- dir = 1
+ dir = 1;
+ on = 1
},
-/obj/item/clipboard,
-/obj/item/toy/figure/hop,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"cdI" = (
-/obj/machinery/keycard_auth{
- pixel_x = -24
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_y = 30
},
-/obj/machinery/door/window{
- dir = 2;
- name = "Desk Door";
- req_access_txt = "73"
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
},
-/turf/simulated/floor/wood,
-/area/ntrep)
-"cdJ" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/pen/multi/fountain,
-/obj/item/stamp/rep,
-/turf/simulated/floor/carpet,
-/area/ntrep)
-"cdK" = (
-/obj/structure/table/wood,
-/obj/item/taperecorder,
-/turf/simulated/floor/carpet,
-/area/ntrep)
-"cdL" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/light{
- dir = 4
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"dVs" = (
+/obj/machinery/computer/secure_data,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkred"
},
-/turf/simulated/floor/wood,
-/area/ntrep)
-"cdM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start{
- name = "Barber"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"dVv" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
},
-/obj/machinery/light/small{
- dir = 8
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"dVw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 10;
+ name = "Труба дыхательной смеси"
},
/turf/simulated/floor/plasteel{
- icon_state = "barber"
+ dir = 1;
+ icon_state = "dark"
},
-/area/civilian/barber)
-"cdN" = (
+/area/atmos)
+"dVx" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"dVy" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/chair/barber{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"dVz" = (
+/turf/space,
/turf/simulated/floor/plasteel{
- icon_state = "barber"
- },
-/area/civilian/barber)
-"cdO" = (
-/obj/structure/table/reinforced,
-/obj/structure/mirror{
- pixel_x = 28
+ icon_state = "dark"
},
-/obj/item/razor,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"dVB" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "barber"
- },
-/area/civilian/barber)
-"cdP" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
- },
-/obj/machinery/light{
- dir = 8
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/wood,
-/area/blueshield)
-"cdQ" = (
+/area/atmos)
+"dVC" = (
/obj/structure/table/wood,
-/obj/machinery/recharger{
- pixel_y = 3
+/obj/item/paper_bin,
+/turf/simulated/floor/wood,
+/area/library)
+"dVF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "bcarpet05"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/blueshield)
-"cdR" = (
-/obj/structure/table/wood,
-/obj/item/ashtray/glass{
- pixel_x = -4;
- pixel_y = -4
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/obj/item/lighter/zippo/blue{
- pixel_x = 7;
- pixel_y = 4
+/turf/simulated/floor/plating,
+/area/crew_quarters/mrchangs)
+"dVH" = (
+/obj/structure/chair{
+ dir = 4
},
-/obj/item/paper/blueshield,
-/obj/item/folder/blue{
- pixel_x = -5;
- pixel_y = 6
+/obj/machinery/camera{
+ c_tag = "Courtroom North"
},
/turf/simulated/floor/plasteel{
- icon_state = "bcarpet05"
+ icon_state = "dark"
},
-/area/blueshield)
-"cdS" = (
-/obj/machinery/door/window{
- dir = 2;
- name = "Desk Door";
- req_access_txt = "67"
+/area/crew_quarters/courtroom)
+"dVJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/keycard_auth{
- pixel_x = 24
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/wood,
-/area/blueshield)
-"cdT" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/flask/gold,
-/obj/item/razor,
-/obj/item/radio/intercom{
- dir = 8;
- pixel_x = -28
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/hydroponics)
+"dVM" = (
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/crew_quarters/captain/bedroom)
-"cdU" = (
-/obj/structure/table/wood,
-/obj/machinery/light/small,
-/obj/machinery/computer/security/wooden_tv,
+/area/crew_quarters/locker)
+"dVQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/crew_quarters/captain/bedroom)
-"cdV" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
+/area/crew_quarters/courtroom)
+"dVS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/wood,
-/area/crew_quarters/captain/bedroom)
-"cdW" = (
+/area/crew_quarters/mrchangs)
+"dVU" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain/bedroom)
-"cdX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+ dir = 5
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/turf/simulated/floor/carpet,
+/area/crew_quarters/mrchangs)
+"dVV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/camera{
- c_tag = "Captain's Quarters";
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain/bedroom)
-"cdY" = (
-/obj/structure/cable,
-/obj/structure/table/wood,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1;
+ icon_state = "green"
},
-/area/crew_quarters/captain/bedroom)
-"cdZ" = (
-/obj/structure/filingcabinet,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain/bedroom)
-"cea" = (
-/obj/structure/dresser,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain/bedroom)
-"ceb" = (
-/obj/structure/table,
-/obj/item/storage/box/donkpockets,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/hydroponics)
+"dVW" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/crew_quarters/courtroom)
-"cec" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"dVX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/courtroom)
-"ced" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/chair{
- dir = 4
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"dVY" = (
+/obj/machinery/light{
+ dir = 8
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/table/reinforced,
+/obj/item/stack/cable_coil/random,
+/obj/item/reagent_containers/spray/cleaner/drone,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "yellow"
},
-/area/crew_quarters/courtroom)
-"cee" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "brig_detprivacy";
- name = "Detective Privacy Shutters";
- opacity = 0
+/area/engine/engineering)
+"dWb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
-"ceg" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/courtroom)
-"ceh" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+ dir = 5;
+ icon_state = "green"
},
-/area/crew_quarters/courtroom)
-"cei" = (
+/area/hydroponics)
+"dWc" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"dWd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ dir = 4
},
-/area/crew_quarters/courtroom)
-"cej" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/table/wood,
-/obj/item/folder/blue,
-/obj/item/pen,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "greenblue"
},
-/area/crew_quarters/courtroom)
-"cek" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/crew_quarters/serviceyard)
+"dWe" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/structure/chair{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"dWf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/crew_quarters/courtroom)
-"cem" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"dWg" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"dWh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/magistrateoffice)
-"ceo" = (
-/obj/structure/chair/office/dark{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ dir = 4;
+ icon_state = "whitehall"
},
-/area/magistrateoffice)
-"cep" = (
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+/area/crew_quarters/serviceyard)
+"dWi" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/engine/hardsuitstorage)
+"dWj" = (
+/obj/effect/landmark{
+ name = "lightsout"
},
-/area/magistrateoffice)
-"ceq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/newscaster{
- pixel_x = 32
- },
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/magistrateoffice)
-"cet" = (
-/obj/machinery/door/airlock/security/glass{
- id_tag = "BrigEast";
- name = "Brig";
- req_access_txt = "63"
+/area/hallway/primary/aft)
+"dWl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/quartermaster/delivery)
+"dWn" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"dWp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ name = "Cargo Club";
+ req_access_txt = "31"
+ },
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"dWs" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"dWv" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Kitchen";
+ req_access_txt = "28"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "freezerfloor"
},
-/area/security/customs)
-"cew" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/structure/sign/vacuum{
- pixel_x = 32
+/area/crew_quarters/kitchen)
+"dWy" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"dWz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"cex" = (
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/engine,
-/area/security/execution)
-"ceA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/crew_quarters/kitchen)
+"dWB" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Hatch";
+ req_access_txt = "106"
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
+/area/shuttle/administration)
+"dWC" = (
+/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/security/permabrig)
-"ceI" = (
-/obj/machinery/vending/snack,
+/area/crew_quarters/kitchen)
+"dWD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/turf/simulated/wall,
+/area/quartermaster/storage)
+"dWE" = (
+/obj/structure/bookcase,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
-"ceL" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
+/area/library)
+"dWF" = (
+/obj/structure/table/reinforced,
+/obj/item/stamp/granted{
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/item/stamp/denied{
+ pixel_x = -4;
+ pixel_y = 4
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/tcommsat/chamber)
-"ceN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/quartermaster/storage)
+"dWH" = (
+/obj/structure/chair{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "brown"
},
-/area/tcommsat/chamber)
-"ceP" = (
-/obj/item/radio/intercom{
- pixel_x = 30
+/area/quartermaster/office)
+"dWJ" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"dWK" = (
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+ icon_state = "neutralcorner"
},
-/area/tcommsat/chamber)
-"ceQ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/area/hallway/primary/central/sw)
+"dWL" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
+ },
+/area/quartermaster/qm)
+"dWM" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkbluefull"
+ dir = 1;
+ icon_state = "brown"
},
-/area/turret_protected/ai)
-"ceT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/quartermaster/qm)
+"dWN" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"ceU" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"ceV" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "Singularity";
- layer = 2.7;
- name = "Singularity Blast Doors";
- opacity = 0
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"ceW" = (
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "yellow"
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/area/engine/engineering)
-"ceX" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/medical/cryo)
+"dWQ" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
+/area/bridge/vip)
+"dWR" = (
/obj/structure/table/reinforced,
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/item/tank/emergency_oxygen/engi,
+/obj/item/storage/toolbox/mechanical,
+/obj/machinery/camera{
+ c_tag = "Cargo Ore Storage";
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+ dir = 8;
+ icon_state = "purple"
},
-/area/engine/engineering)
-"ceY" = (
+/area/quartermaster/miningdock)
+"dWS" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "yellow"
+ icon_state = "brown"
},
-/area/engine/engineering)
-"ceZ" = (
-/obj/structure/table/reinforced,
-/obj/item/book/manual/engineering_hacking{
- pixel_x = 6;
- pixel_y = 6
+/area/quartermaster/qm)
+"dWT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Isolation B";
+ req_access_txt = "39"
},
-/obj/item/book/manual/engineering_construction{
- pixel_x = 3;
- pixel_y = 3
+/obj/effect/decal/warning_stripes/yellow/partial,
+/obj/effect/decal/warning_stripes/arrow,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/medical/virology)
+"dWV" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/regular,
+/obj/machinery/camera{
+ c_tag = "Permabrig West";
+ network = list("Prison","SS13")
},
-/obj/item/book/manual/engineering_singularity_safety,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "yellow"
+ icon_state = "dark"
},
-/area/engine/engineering)
-"cfa" = (
-/obj/structure/closet/secure_closet/captains,
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain/bedroom)
-"cfb" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/area/security/permabrig)
+"dWW" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/engine/engineering)
-"cfc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cfd" = (
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "yellow"
+ icon_state = "darkred"
},
-/area/engine/engineering)
-"cfe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/yellow{
+/area/security/permabrig)
+"dWY" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"dWZ" = (
+/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cff" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable/yellow,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cfg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Storage";
- req_access_txt = "32"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cfh" = (
-/obj/machinery/light,
-/obj/item/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = -29
+/area/quartermaster/miningdock)
+"dXa" = (
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/computer/station_alert,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/hallway/secondary/exit)
+"dXb" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/quartermaster/miningdock)
+"dXc" = (
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "purple"
},
-/area/engine/engineering)
-"cfi" = (
-/obj/structure/sign/nosmoking_1{
- pixel_x = 28;
- pixel_y = -28
+/area/quartermaster/miningdock)
+"dXe" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/computer/atmos_alert,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "purple"
},
-/area/engine/engineering)
-"cfj" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/quartermaster/miningdock)
+"dXf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/carpet,
-/area/ntrep)
-"cfk" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cfl" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "bcarpet05"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/blueshield)
-"cfm" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"cfn" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cfo" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/wall,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cfp" = (
-/obj/structure/girder,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/maintenance/engrooms)
-"cfq" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/window/reinforced{
- dir = 1
+/area/crew_quarters/locker)
+"dXg" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/multitool,
+/obj/machinery/light_switch{
+ pixel_x = -24
},
-/turf/simulated/floor/wood,
-/area/library)
-"cfr" = (
-/obj/structure/chair/office/dark,
-/turf/simulated/floor/wood,
-/area/library)
-"cfs" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/wood,
-/area/library)
-"cft" = (
-/obj/machinery/bookbinder,
-/turf/simulated/floor/wood,
-/area/library)
-"cfu" = (
-/obj/machinery/light{
+/turf/simulated/floor/plasteel{
dir = 1
},
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/library)
-"cfv" = (
-/obj/structure/chair/comfy/red,
-/obj/effect/landmark/start{
- name = "Civilian"
- },
-/obj/machinery/vending/wallmed{
- pixel_y = 30
- },
-/turf/simulated/floor/wood,
-/area/library)
-"cfw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/library)
-"cfx" = (
-/obj/machinery/photocopier,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/turf/simulated/floor/wood,
-/area/library)
-"cfy" = (
-/obj/machinery/light{
- dir = 1
+/area/security/range)
+"dXj" = (
+/obj/structure/sign/biohazard,
+/turf/simulated/wall/r_wall,
+/area/medical/virology)
+"dXn" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/camera{
- c_tag = "Library Starboard"
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"dXo" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/library)
-"cfz" = (
-/obj/structure/chair/comfy/red,
+/obj/effect/decal/warning_stripes/northeast,
/obj/item/radio/intercom{
- pixel_y = 26
- },
-/turf/simulated/floor/wood,
-/area/library)
-"cfA" = (
-/obj/machinery/vending/coffee,
-/turf/simulated/floor/wood,
-/area/library)
-"cfB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light/small,
-/obj/structure/closet/radiation,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28;
- pixel_y = -28
+ pixel_x = 28
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plating,
/area/engine/engineering)
-"cfC" = (
+"dXp" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "purple"
},
-/area/crew_quarters/heads/hop)
-"cfD" = (
+/area/quartermaster/miningdock)
+"dXr" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"dXt" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/chair/office/dark,
-/obj/effect/landmark/start{
- name = "Head of Personnel"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"cfE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/obj/machinery/newscaster{
- pixel_x = 32
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"cfF" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/ntrep)
-"cfG" = (
-/obj/structure/chair/office/dark{
- dir = 1
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/carpet,
-/area/ntrep)
-"cfH" = (
-/turf/simulated/floor/carpet,
-/area/ntrep)
-"cfI" = (
+/turf/simulated/floor/plating,
+/area/quartermaster/miningdock)
+"dXw" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/power/apc{
- cell_type = 25000;
- dir = 4;
- name = "east bump";
- pixel_x = 24;
- shock_proof = 1
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/turf/simulated/floor/plating,
+/area/quartermaster/miningdock)
+"dXx" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
},
-/turf/simulated/floor/wood,
-/area/ntrep)
-"cfJ" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "barber"
},
/area/civilian/barber)
-"cfK" = (
+"dXy" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/bridge/checkpoint/south)
+"dXz" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/security/permabrig)
+"dXB" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitegreen"
+ },
+/area/medical/virology/lab)
+"dXD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "barber"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/engine/engineering)
+"dXG" = (
+/obj/structure/table,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/machinery/camera{
+ c_tag = "Permabrig East";
+ network = list("Prison","SS13")
},
-/area/civilian/barber)
-"cfL" = (
-/obj/structure/dresser,
/turf/simulated/floor/plasteel{
- icon_state = "barber"
+ icon_state = "dark"
},
-/area/civilian/barber)
-"cfM" = (
+/area/security/permabrig)
+"dXH" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "ai2";
+ name = "Turret Shutters"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"dXK" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/wood,
-/area/blueshield)
-"cfN" = (
-/obj/structure/chair/office/dark{
- dir = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/chair{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "bcarpet05"
+ icon_state = "red"
},
-/area/blueshield)
-"cfO" = (
-/turf/simulated/floor/plasteel{
- icon_state = "bcarpet05"
+/area/security/checkpoint)
+"dXL" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/chem_master,
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"dXM" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/blueshield)
-"cfP" = (
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/blueshield)
-"cfQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/command{
- id_tag = "captainofficedoor";
- name = "Captain's Office";
- req_access = null;
- req_access_txt = "20"
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/crew_quarters/captain/bedroom)
-"cfR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/captain/bedroom)
-"cfS" = (
+/area/medical/virology/lab)
+"dXN" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitegreencorner"
+ },
+/area/medical/virology/lab)
+"dXO" = (
+/obj/structure/closet/l3closet/virology,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"dXP" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"dXQ" = (
+/turf/simulated/shuttle/floor4,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"dXR" = (
+/obj/structure/closet/secure_closet/medical1,
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/door_control{
+ id = "Virology";
+ name = "Virology Window Shutters Control";
+ pixel_x = -6;
+ pixel_y = -26
+ },
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"dXS" = (
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/central/east)
-"cfT" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/chapel/office)
+"dXU" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/toy/figure/chaplain,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/courtroom)
-"cfU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/office)
+"dXV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/turf/simulated/floor/carpet,
+/area/chapel/office)
+"dXW" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/checkpoint)
+"dXX" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/library/abandoned)
+"dYa" = (
/obj/structure/window/reinforced{
- dir = 4
+ dir = 8
},
-/obj/structure/chair{
- dir = 4
+/obj/structure/window/reinforced{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+ icon_state = "dark"
},
-/area/crew_quarters/courtroom)
-"cfV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/construction/hallway)
+"dYc" = (
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway West 4";
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
},
-/area/crew_quarters/courtroom)
-"cfW" = (
+/area/hallway/primary/central/sw)
+"dYd" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 9
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"dYf" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/o2{
+ pixel_x = -3;
+ pixel_y = -3
},
-/area/crew_quarters/courtroom)
-"cfX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood,
-/obj/item/gavelblock,
-/obj/item/gavelhammer,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "blue"
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
-/area/crew_quarters/courtroom)
-"cfY" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "blue"
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHEAST)"
},
-/area/crew_quarters/courtroom)
-"cfZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"dYg" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4;
+ layer = 4
},
/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/vip)
+"dYi" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=V4";
+ location = "V3"
+ },
+/mob/living/simple_animal/bot/secbot/beepsky{
+ desc = "It's Officer Vipsky! Powered by a potato and a shot of whiskey.";
+ name = "Officer Vipsky"
+ },
+/obj/machinery/light{
dir = 1;
- icon_state = "blue"
+ on = 1;
+ pixel_y = -6
+ },
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"dYj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/crew_quarters/courtroom)
-"cga" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -52045,896 +51695,728 @@
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/photocopier,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/magistrateoffice)
-"cge" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/ai_slipper,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/hallway/primary/central/sw)
-"cgj" = (
-/obj/structure/table/glass,
-/obj/item/storage/box/masks{
- pixel_x = 6;
- pixel_y = 2
+/area/turret_protected/ai)
+"dYk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/item/storage/box/gloves,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/obj/structure/cable{
+ d1 = 1;
d2 = 4;
- icon_state = "0-4"
+ icon_state = "1-4"
},
-/obj/machinery/light{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitered"
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"dYl" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/security/medbay)
-"cgk" = (
-/turf/simulated/floor/plasteel{
- icon_state = "whiteredcorner"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "ai2";
+ name = "Turret Shutters"
},
-/area/security/medbay)
-"cgl" = (
-/obj/machinery/vending/medical{
- req_access_txt = "63"
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"dYm" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "n2o_sensor"
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitered"
+/turf/simulated/floor/engine/n20,
+/area/atmos)
+"dYo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/area/security/medbay)
-"cgr" = (
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/permabrig)
-"cgA" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkbluecorners"
- },
-/area/tcommsat/chamber)
-"cgB" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/camera/emp_proof{
- c_tag = "Singularity NorthEast";
dir = 8;
- network = list("SS13","Singularity","Engineering")
- },
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cgC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "neutralfull"
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
+/area/bridge/checkpoint/south)
+"dYp" = (
+/obj/machinery/light,
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_y = -27
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/port/east)
-"cgD" = (
-/obj/structure/transit_tube/station/reverse{
- dir = 1
- },
-/obj/structure/transit_tube_pod{
- dir = 8
- },
-/obj/machinery/ai_status_display{
- pixel_y = -32
+ icon_state = "brown"
},
+/area/quartermaster/qm)
+"dYs" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/engine/aienter)
-"cgE" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id_tag = "hopqueueshutters";
- name = "Queue Shutters";
- opacity = 0
+ icon_state = "dark"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/arrow{
- dir = 8
+/area/maintenance/gambling_den)
+"dYt" = (
+/obj/structure/disposalpipe/segment{
+ name = "Sorting Office"
},
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"dYv" = (
+/obj/effect/decal/cleanable/blood/xeno,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/west)
-"cgF" = (
-/obj/machinery/flasher{
- id = "hopflash";
- pixel_y = 58
+/area/maintenance/gambling_den)
+"dYy" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/west)
-"cgG" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cgH" = (
-/obj/machinery/vending/engivend,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+ icon_state = "dark"
},
-/area/engine/engineering)
-"cgI" = (
-/obj/machinery/cryopod/robot,
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
+/area/construction/hallway)
+"dYz" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба содержит газ для обработки и после возвращает его обратно в трубу смешивания";
+ name = "Труба обработки"
},
-/turf/simulated/floor/plating,
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"cgJ" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 4;
+ name = "Труба смешивания"
},
-/obj/effect/landmark/start{
- name = "Station Engineer"
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"dYC" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
+/obj/structure/window/reinforced,
+/obj/structure/showcase,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/engineering)
-"cgK" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"cgL" = (
+/area/turret_protected/ai)
+"dYD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/crew_quarters/courtroom)
-"cgM" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/portable_atmospherics/canister,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"cgN" = (
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/engine/engineering)
-"cgO" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
+/area/medical/virology)
+"dYE" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ desc = "Труба содержит газ для обработки и после возвращает его обратно в трубу смешивания";
+ dir = 4;
+ name = "Труба обработки"
},
-/area/engine/engineering)
-"cgP" = (
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cgQ" = (
-/obj/machinery/shieldwallgen,
-/obj/effect/decal/warning_stripes/yellow,
+/area/atmos)
+"dYJ" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ dir = 6;
+ name = "Труба на фильтрацию"
+ },
/turf/simulated/floor/plasteel,
-/area/teleporter)
-"cgR" = (
+/area/atmos)
+"dYL" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/port)
+"dYO" = (
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cgS" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/area/turret_protected/ai)
+"dYP" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A28";
+ location = "A27"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/filingcabinet/chestdrawer,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/locker)
+"dYU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/magistrateoffice)
-"cgT" = (
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cgU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cgV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/closet/toolcloset,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cgW" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/obj/machinery/newscaster{
- pixel_x = -32
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/library)
-"cgX" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/wood,
-/area/library)
-"cgY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/area/library)
-"cgZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"cha" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/area/security/main)
+"dYX" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/library)
-"chb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
},
-/area/hallway/primary/central/sw)
-"chc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/crew_quarters/fitness)
+"dYY" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ dir = 4;
+ name = "Труба на фильтрацию"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"dZa" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/west)
-"chd" = (
-/obj/machinery/status_display,
-/turf/simulated/wall/r_wall,
-/area/hallway/primary/central/west)
-"che" = (
-/obj/machinery/vending/cola,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hallway/primary/central/west)
-"chf" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/obj/machinery/keycard_auth{
- pixel_x = -26
+ icon_state = "neutral"
},
+/area/crew_quarters/fitness)
+"dZb" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"dZc" = (
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 9;
+ icon_state = "yellow"
},
-/area/crew_quarters/heads/hop)
-"chg" = (
-/obj/structure/table/wood,
-/obj/item/folder/blue,
-/obj/item/pen,
-/obj/item/paper/monitorkey,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"chh" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/area/engine/engineering)
+"dZe" = (
+/obj/effect/landmark{
+ name = "blobstart"
},
-/area/crew_quarters/heads/hop)
-"chi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/chair/office/dark{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/crew_quarters/heads/hop)
-"chj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/photocopier,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"chk" = (
-/obj/structure/bookcase,
-/obj/item/book/manual/sop_command,
-/obj/item/book/manual/sop_engineering,
-/obj/item/book/manual/sop_general,
-/obj/item/book/manual/sop_legal,
-/obj/item/book/manual/sop_medical,
-/obj/item/book/manual/sop_science,
-/obj/item/book/manual/sop_security,
-/obj/item/book/manual/sop_service,
-/obj/item/book/manual/sop_supply,
-/turf/simulated/floor/wood,
-/area/ntrep)
-"chl" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/carpet,
-/area/ntrep)
-"chm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/light_switch{
- pixel_x = 25
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/ntrep)
-"chn" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/library)
+"dZf" = (
+/obj/structure/door_assembly,
/turf/simulated/floor/plating,
-/area/civilian/barber)
-"cho" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Barber Shop"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/maintenance/abandonedbar)
+"dZg" = (
/turf/simulated/floor/plasteel{
- icon_state = "barber"
- },
-/area/civilian/barber)
-"chp" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/civilian/barber)
-"chq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/light_switch{
- pixel_x = -25
+ icon_state = "brown"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/blueshield)
-"chr" = (
-/obj/machinery/hologram/holopad,
+/area/quartermaster/office)
+"dZh" = (
/turf/simulated/floor/plasteel{
- icon_state = "bcarpet05"
- },
-/area/blueshield)
-"chs" = (
-/obj/structure/closet{
- icon_closed = "cabinet_closed";
- icon_opened = "cabinet_open";
- icon_state = "cabinet_closed"
+ dir = 5;
+ icon_state = "darkblue"
},
-/obj/item/reagent_containers/food/drinks/bottle/whiskey,
-/obj/item/reagent_containers/food/drinks/drinkingglass,
-/obj/item/reagent_containers/food/drinks/drinkingglass,
-/turf/simulated/floor/wood,
-/area/blueshield)
-"cht" = (
-/turf/simulated/wall/r_wall,
-/area/teleporter)
-"chu" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/area/turret_protected/ai)
+"dZi" = (
+/obj/machinery/alarm{
dir = 1;
- on = 1
+ pixel_y = -22
},
+/obj/structure/filingcabinet,
/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"chv" = (
-/turf/simulated/wall/rust,
-/area/teleporter)
-"chw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/library)
+"dZj" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/construction/hallway)
-"chx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+"dZk" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
},
/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/teleporter)
-"chy" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/space,
+/area/space/nearstation)
+"dZl" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/area/shuttle/pod_1)
+"dZn" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/area/library)
+"dZo" = (
+/obj/docking_port/mobile/pod{
+ id = "pod1";
+ name = "escape pod 1"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/teleporter)
-"chz" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/teleporter)
-"chA" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/light/small{
- dir = 4
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "s_docking_airlock";
+ name = "Escape Pod Hatch"
},
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"chB" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/turf/space,
+/turf/simulated/shuttle/floor,
+/area/shuttle/pod_1)
+"dZp" = (
+/turf/simulated/wall,
+/area/hallway/secondary/entry/westarrival)
+"dZq" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/space,
+/turf/space,
+/area/space/nearstation)
+"dZt" = (
+/obj/structure/rack{
dir = 8;
- initialize_directions = 11
+ layer = 2.9
+ },
+/obj/structure/window/reinforced,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/item/storage/box/teargas,
+/obj/item/storage/box/teargas{
+ pixel_x = 3;
+ pixel_y = -3
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/central/nw)
-"chC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/security/securearmoury)
+"dZu" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
},
-/area/crew_quarters/courtroom)
-"chD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/item/clothing/glasses/welding,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/courtroom)
-"chE" = (
+/area/security/podbay)
+"dZw" = (
+/obj/structure/sign/botany{
+ pixel_y = -32
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkbluecorners"
+ dir = 0;
+ icon_state = "blue"
},
-/area/turret_protected/ai)
-"chF" = (
+/area/hydroponics)
+"dZy" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"dZA" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/structure/table,
+/obj/item/paper/pamphlet,
+/obj/item/paper/pamphlet,
+/obj/item/paper/pamphlet,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"dZB" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/door/window/brigdoor{
- req_access_txt = "2"
+/turf/simulated/floor/plating,
+/area/gateway)
+"dZC" = (
+/obj/machinery/gateway{
+ dir = 4
},
/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/gateway)
+"dZE" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "neutral"
+ icon_state = "pipe-c"
},
-/area/crew_quarters/courtroom)
-"chG" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"dZH" = (
+/obj/item/radio/intercom{
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 1;
+ name = "Труба дыхательной смеси"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
+ },
+/area/atmos)
+"dZJ" = (
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "caution"
+ },
+/area/atmos)
+"dZK" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/wall,
-/area/magistrateoffice)
-"chH" = (
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"dZL" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/west,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/hologram/holopad,
+/area/engine/mechanic_workshop/hangar)
+"dZM" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 6;
+ icon_state = "green"
},
-/area/crew_quarters/courtroom)
-"chI" = (
+/area/hydroponics)
+"dZN" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood,
-/obj/item/folder/yellow,
-/obj/item/folder/blue{
- pixel_x = 5;
- pixel_y = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/hydroponics)
+"dZR" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 4;
+ name = "Труба смешивания"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/computer/secure_data/laptop,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "blue"
+ icon_state = "neutralfull"
},
-/area/crew_quarters/courtroom)
-"chJ" = (
-/obj/structure/chair{
+/area/atmos)
+"dZU" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/trinary/mixer/flipped{
dir = 8
},
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"dZV" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/vending/wallmed{
+ pixel_x = -26
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1
},
-/area/crew_quarters/courtroom)
-"chL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/security/customs)
+"eab" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"ead" = (
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = "MedbayFoyerPort";
+ name = "Medbay Entrance";
+ req_access_txt = "5"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
+ },
+/area/medical/sleeper)
+"eap" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/light/small{
+ dir = 1
},
-/area/magistrateoffice)
-"chM" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
scrub_Toxins = 1
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/carpet,
-/area/magistrateoffice)
-"chN" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"eaq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/crew_quarters/fitness)
+"eaP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/turf/simulated/floor/carpet,
-/area/magistrateoffice)
-"chO" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/turf/simulated/floor/carpet,
-/area/magistrateoffice)
-"chP" = (
+/turf/simulated/floor/wood,
+/area/library/abandoned)
+"eaZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"ebt" = (
+/obj/machinery/shower{
+ dir = 8;
+ tag = "icon-shower (WEST)"
},
+/obj/structure/curtain/open/shower,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/magistrateoffice)
-"chS" = (
-/obj/structure/window/reinforced{
- dir = 4
+ icon_state = "freezerfloor"
},
-/obj/structure/window/reinforced{
+/area/crew_quarters/locker/locker_toilet)
+"eby" = (
+/obj/structure/chair/comfy/shuttle{
dir = 1
},
-/obj/structure/lattice,
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"chV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/tcommsat/chamber)
-"chW" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/tcommsat/chamber)
-"chX" = (
-/obj/machinery/light{
- dir = 4
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/machinery/porta_turret,
-/obj/machinery/status_display{
- pixel_x = 32
+/area/shuttle/administration)
+"ebz" = (
+/obj/structure/table/reinforced,
+/obj/machinery/processor{
+ pixel_y = 9
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
+ icon_state = "freezerfloor"
},
-/area/tcommsat/chamber)
-"cia" = (
+/area/crew_quarters/kitchen)
+"ebI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering";
- req_access_txt = "10"
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cib" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cic" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "Singularity";
- layer = 2.7;
- name = "Singularity Blast Doors";
- opacity = 0
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cid" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cie" = (
-/obj/structure/grille,
+/area/medical/medbay3)
+"ebY" = (
/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cif" = (
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cig" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder{
+ pixel_x = -1;
+ pixel_y = 9
},
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"cih" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/machinery/light,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/atmos)
-"cii" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/crew_quarters/kitchen)
+"ecb" = (
+/obj/machinery/atmospherics/binary/pump{
+ desc = "Подаёт дыхательную смесь для смешивания с другими газами";
+ dir = 8;
+ name = "Дыхательная смесь в смеситель";
+ target_pressure = 101
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/engine/engineering)
-"cij" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
- },
-/area/engine/engineering)
-"cik" = (
-/obj/machinery/vending/tool,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cil" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ dir = 5;
+ icon_state = "arrival"
},
+/area/atmos)
+"ecf" = (
+/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
+ icon_state = "neutral"
},
-/area/engine/engineering)
-"cim" = (
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"eci" = (
/obj/effect/landmark/start{
name = "Station Engineer"
},
@@ -52945,929 +52427,920 @@
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
-"cin" = (
-/obj/machinery/shieldgen,
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cio" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+"ecz" = (
+/obj/machinery/light,
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+/area/crew_quarters/kitchen)
+"ecF" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 30
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cip" = (
-/obj/structure/rack,
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/item/tank/emergency_oxygen/engi,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"ciq" = (
-/obj/effect/spawner/random_spawners/wall_rusted_maybe,
-/turf/simulated/wall/rust,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cir" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/item/reagent_containers/spray/cleaner/drone{
+ pixel_x = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cis" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/random_spawners/blood_maybe,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cit" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"ciu" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/area/engine/hardsuitstorage)
+"ecK" = (
+/mob/living/simple_animal/hostile/retaliate/carp/koi{
+ name = "Jeremy"
},
-/obj/effect/landmark/start{
- name = "Civilian"
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
},
-/turf/simulated/floor/wood,
-/area/library)
-"civ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/crew_quarters/fitness)
+"ecO" = (
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/library)
-"ciw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
+/area/crew_quarters/sleep)
+"ecU" = (
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "red"
},
-/area/library)
-"cix" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/brig)
+"ecV" = (
+/obj/structure/grille,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 4;
+ name = "Труба дыхательной смеси"
+ },
+/turf/simulated/wall/r_wall,
+/area/atmos)
+"ecW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/library)
-"ciy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/toxins/explab)
+"edh" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/obj/effect/landmark{
- name = "lightsout"
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/library)
-"ciz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hallway/primary/central/sw)
+"eds" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/library)
-"ciA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/showcase{
+ layer = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/public/glass,
+/area/turret_protected/aisat)
+"edz" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ id_tag = "air_out";
+ internal_pressure_bound = 2000;
+ internal_pressure_bound_default = 2000;
+ on = 1;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0
+ },
+/turf/simulated/floor/engine/air,
+/area/atmos)
+"edF" = (
+/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/central/east)
-"ciB" = (
+/area/maintenance/xenozoo)
+"eey" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"eeD" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Server Room";
+ req_access_txt = "30"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10;
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/medbay)
-"ciC" = (
-/obj/structure/chair/office/dark{
- dir = 1
+/area/toxins/server)
+"eeE" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Air Tank";
+ network = list("SS13","Engineering")
},
-/obj/machinery/newscaster{
- pixel_x = -32
+/turf/simulated/floor/engine/air,
+/area/atmos)
+"eeG" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "yellow"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"ciD" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/chair/office/dark{
- dir = 1
+/area/engine/engineering)
+"eeI" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
+/obj/structure/table,
+/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/crew_quarters/heads/hop)
-"ciE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/bed/dogbed/ian,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/area/security/prisonershuttle)
+"efb" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/mob/living/simple_animal/pet/dog/corgi/Ian,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"ciF" = (
-/obj/machinery/photocopier,
-/obj/structure/sign/poster/official/random{
- pixel_x = -32
+/area/medical/medbay3)
+"efA" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"efR" = (
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/floor/wood,
-/area/ntrep)
-"ciG" = (
+/area/shuttle/siberia)
+"egh" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/item/flag/nt,
-/turf/simulated/floor/wood,
-/area/ntrep)
-"ciH" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/alarm{
+/obj/structure/grille,
+/obj/structure/window/reinforced{
dir = 1;
- pixel_y = -22
- },
-/obj/machinery/camera{
- c_tag = "NT Representative's Office";
- dir = 1
+ layer = 2.9
},
-/obj/structure/disposalpipe/trunk{
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/disposal,
-/turf/simulated/floor/wood,
-/area/ntrep)
-"ciI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"egl" = (
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/wood,
-/area/ntrep)
-"ciJ" = (
+/area/crew_quarters/kitchen)
+"ego" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "Warden";
+ name = "Warden Privacy Shutters"
},
-/obj/machinery/door/poddoor/shutters{
+/obj/machinery/door/poddoor{
density = 0;
icon_state = "open";
- id_tag = "representative";
- name = "Privacy Shutters";
+ id_tag = "ArmoryLock";
+ name = "Armory Lockdown";
opacity = 0
},
/turf/simulated/floor/plating,
-/area/ntrep)
-"ciK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/barber{
- pixel_x = -21;
- pixel_y = 32
+/area/security/warden)
+"egq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_y = 23
},
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 4;
icon_state = "neutralcorner"
},
-/area/bridge/vip)
-"ciL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/hallway/primary/starboard/east)
+"egu" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/bridge/vip)
-"ciM" = (
-/obj/structure/sign/barber{
- pixel_x = 22;
- pixel_y = 32
+/area/maintenance/electrical)
+"egA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small,
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/obj/machinery/light{
- dir = 1;
- on = 1
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"egC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/bridge/vip)
-"ciN" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d1 = 1;
d2 = 4;
- icon_state = "0-4"
+ icon_state = "1-4"
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "open";
- id_tag = "blueshield";
- name = "Privacy Shutters";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/blueshield)
-"ciO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "neutralfull"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/hallway/primary/port/west)
+"egD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
+/obj/structure/chair/stool,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"egF" = (
+/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "yellow"
},
-/turf/simulated/floor/wood,
-/area/blueshield)
-"ciP" = (
+/area/engine/engineering)
+"egO" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken6";
+ tag = "icon-wood-broken6"
+ },
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"egU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/alarm{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
dir = 1;
- pixel_y = -22
+ icon_state = "whitegreencorner"
},
-/obj/machinery/camera{
- c_tag = "Blueshield's Office";
- dir = 1
+/area/medical/virology)
+"ehl" = (
+/obj/structure/sink{
+ pixel_y = 30
},
-/obj/structure/disposalpipe/trunk{
+/obj/machinery/light{
dir = 8
},
-/obj/machinery/disposal,
-/turf/simulated/floor/wood,
-/area/blueshield)
-"ciQ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/structure/table,
+/obj/item/reagent_containers/food/snacks/grown/banana{
+ pixel_x = -5;
+ pixel_y = 5
},
-/obj/item/flag/nt,
-/turf/simulated/floor/wood,
-/area/blueshield)
-"ciR" = (
-/obj/machinery/photocopier,
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
+/obj/item/reagent_containers/food/snacks/grown/banana{
+ pixel_x = 6;
+ pixel_y = 5
},
-/obj/machinery/firealarm{
+/obj/item/reagent_containers/food/snacks/grown/banana,
+/turf/simulated/floor/plasteel{
dir = 1;
- pixel_y = -24
+ icon_state = "whitegreencorner"
},
-/turf/simulated/floor/wood,
-/area/blueshield)
-"ciS" = (
-/turf/simulated/wall,
-/area/teleporter)
-"ciT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/teleporter)
-"ciU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/medical/virology)
+"ehw" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- name = "Teleporter Maintenance";
- req_access_txt = "17"
+/area/medical/surgery1)
+"ehA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"ciV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/newscaster{
+ pixel_y = -28
},
-/obj/structure/sign/securearea{
- pixel_x = -32
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/obj/machinery/light{
- dir = 8
+/area/medical/research/restroom)
+"ehB" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chem_dispenser/soda,
+/obj/machinery/light,
+/obj/machinery/alarm{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "white"
},
-/area/hallway/primary/central/east)
-"ciW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/crew_quarters/kitchen)
+"ehF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/hallway/primary/central/east)
-"ciX" = (
-/obj/machinery/status_display{
- pixel_y = -32
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/camera{
- c_tag = "Engine SMES";
- dir = 1;
- network = list("Engineering","SS13")
+/obj/machinery/light/small{
+ dir = 4
},
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26;
- pixel_y = -28
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/computer/monitor,
-/obj/structure/cable/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"ehG" = (
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 8;
+ icon_state = "yellow"
},
/area/engine/engineering)
-"ciY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+"ehL" = (
+/obj/structure/closet/boxinggloves,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "neutral"
},
-/area/crew_quarters/courtroom)
-"ciZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/crew_quarters/fitness)
+"ehV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/landmark/start{
+ name = "Station Engineer"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/courtroom)
-"cja" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/engine/hardsuitstorage)
+"ein" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/chair{
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "robotics_solar_airlock";
+ name = "exterior access button";
+ pixel_x = 25;
+ pixel_y = 25;
+ req_access_txt = "13"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/port)
+"eir" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"eiw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/crew_quarters/courtroom)
-"cjb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/toxins/xenobiology)
+"eix" = (
+/obj/machinery/light{
dir = 1;
- initialize_directions = 11
+ on = 1
},
-/obj/structure/chair{
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_y = 30
+ },
+/obj/structure/chair/comfy/shuttle{
dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/courtroom)
-"cjc" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"ejf" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/engine/hardsuitstorage)
+"ejm" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/courtroom)
-"cjd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ icon_state = "4-8"
},
/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/prison/cell_block/A)
+"ejp" = (
+/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/chair{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
-/area/crew_quarters/courtroom)
-"cje" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/courtroom)
-"cjf" = (
+/area/engine/engineering)
+"ejA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/courtroom)
-"cjg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/obj/structure/table/wood,
-/obj/item/radio/intercom,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "blue"
- },
-/area/crew_quarters/courtroom)
-"cjh" = (
-/obj/structure/table/wood,
-/obj/item/storage/briefcase{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/storage/secure/briefcase,
-/turf/simulated/floor/plasteel{
- icon_state = "blue"
- },
-/area/crew_quarters/courtroom)
-"cji" = (
-/turf/simulated/floor/plasteel{
- icon_state = "blue"
- },
-/area/crew_quarters/courtroom)
-"cjj" = (
+/area/hallway/primary/fore)
+"ejB" = (
+/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/turf/simulated/floor/plasteel{
dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/carpet,
-/area/magistrateoffice)
-"cjk" = (
-/turf/simulated/floor/carpet,
-/area/magistrateoffice)
-"cjl" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "neutralcorner"
},
-/turf/space,
-/area/space/nearstation)
-"cjn" = (
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cjp" = (
+/area/hallway/primary/central/south)
+"ejD" = (
/obj/machinery/light/small{
dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cjv" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/turretid/stun{
- control_area = "\improper Telecoms Central Compartment";
- name = "AI Antechamber Turret Control";
- pixel_y = -26;
- req_access_txt = "75"
- },
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/turf/space,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"ejN" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/turret_protected/aisat)
-"cjx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Local Armory";
+ req_access_txt = "1"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
+ dir = 0;
icon_state = "red"
},
-/area/security/permabrig)
-"cjA" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/port)
-"cjF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/security/armoury)
+"ejU" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28
+ },
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/cable,
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"ekb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/xeno,
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"ekk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"ekp" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
-"cjH" = (
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 4;
- location = "Kitchen"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
-"cjI" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cjJ" = (
-/obj/machinery/power/tesla_coil{
- anchored = 1
+ icon_state = "0-2"
},
-/obj/structure/cable/yellow,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cjK" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
+/obj/structure/cable{
icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cjL" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
/obj/machinery/door/poddoor{
density = 0;
- icon_state = "pdoor0";
- id_tag = "Singularity";
- layer = 2.7;
- name = "Singularity Blast Doors";
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
opacity = 0
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
},
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"ekr" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cjM" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cjN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/yellow{
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/office)
+"ekt" = (
+/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cjO" = (
-/obj/machinery/power/apc{
- cell_type = 25000;
- dir = 4;
- name = "east bump";
- pixel_x = 24;
- shock_proof = 1
- },
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cjP" = (
/obj/machinery/door/poddoor{
density = 0;
icon_state = "pdoor0";
- id_tag = "Singularity";
- layer = 2.7;
- name = "Singularity Blast Doors";
+ id_tag = "xenosecure";
+ name = "Secure Creature Cell";
opacity = 0
},
-/obj/structure/cable/yellow{
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ id = null;
+ name = "Creature Pen";
+ req_access_txt = "47"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/toxins/xenobiology)
+"ekW" = (
+/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cjQ" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cjR" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/structure/closet/secure_closet/atmos_personal,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"cjS" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cjT" = (
-/obj/structure/closet/secure_closet/engineering_electrical,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cjU" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/engineering_personal,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
+ dir = 8;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner (WEST)"
},
-/area/engine/engineering)
-"cjV" = (
-/obj/machinery/shieldgen,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cjW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/genetics)
+"elh" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cjX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/quartermaster/miningdock)
+"ell" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"elv" = (
+/obj/structure/morgue,
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/landmark{
+ name = "revenantspawn"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/medical/morgue)
+"elx" = (
+/obj/structure/chair/comfy/shuttle,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = -30
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
})
-"cjY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+"ely" = (
+/obj/machinery/keycard_auth{
+ pixel_x = -24
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"cjZ" = (
+/turf/simulated/floor/wood,
+/area/ntrep)
+"elI" = (
+/obj/structure/lattice,
+/obj/machinery/camera/emp_proof{
+ c_tag = "Singularity NorthWest";
+ dir = 4;
+ network = list("SS13","Singularity","Engineering")
+ },
+/turf/space,
+/area/engine/engineering)
+"elW" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/item/paper_bin{
+ pixel_y = 5
+ },
+/obj/item/pen/multi,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/carpet,
+/area/medical/psych)
+"elZ" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/office)
+"emT" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "admin_home"
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/additional)
+"ena" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
+/area/crew_quarters/hor)
+"enb" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/library)
+"enm" = (
+/obj/structure/chair/sofa/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cka" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"ens" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Virology";
+ name = "Virology Shutters"
+ },
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"ckb" = (
+/area/medical/virology/lab)
+"enG" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/whiskey,
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"enO" = (
+/obj/effect/decal/warning_stripes/northeastcorner,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба содержит газ для обработки и после возвращает его обратно в трубу смешивания";
+ name = "Труба обработки"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/atmos)
+"enV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Prisoner Processing";
+ req_access_txt = "63"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/processing)
+"eoB" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkblue"
+ },
+/area/turret_protected/ai)
+"eoM" = (
+/obj/structure/chair/sofa/corner,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"ckc" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"epd" = (
+/obj/structure/cable,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
},
+/area/crew_quarters/hor)
+"epg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"ckd" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"epy" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/library)
+"epA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/decal/warning_stripes/northwest,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cke" = (
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"epC" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -53877,2432 +53350,2127 @@
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Pods";
+ req_access_txt = "71"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "darkred"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"ckf" = (
+/area/security/podbay)
+"epH" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- name = "Library Maintenance";
- req_access_txt = "12"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/crew_quarters/courtroom)
+"epM" = (
+/obj/structure/chair/wood,
/turf/simulated/floor/plating,
-/area/library)
-"ckg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/maintenance/gambling_den)
+"eqp" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Bar"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/wood,
-/area/library)
-"ckh" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/area/crew_quarters/bar/atrium)
+"eqA" = (
+/obj/machinery/door/poddoor{
+ id_tag = "QMLoaddoor2";
+ name = "supply dock loading door"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/conveyor/west{
+ id = "QMLoad2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"eqC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/library)
-"cki" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"ckj" = (
-/turf/simulated/floor/wood,
-/area/library)
-"ckk" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/wood,
-/area/library)
-"ckl" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/library)
-"ckm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j2"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/primary/central/west)
-"ckn" = (
-/obj/structure/dresser,
+/area/hallway/primary/fore)
+"eqN" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/yellow,
+/obj/item/multitool,
+/obj/item/pen/red,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
-"cko" = (
-/obj/machinery/light{
- dir = 1
+ dir = 1;
+ icon_state = "brown"
},
-/obj/structure/filingcabinet,
+/area/quartermaster/office)
+"eqO" = (
+/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
-"ckp" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
+ dir = 6;
+ icon_state = "darkred"
},
+/area/security/podbay)
+"eqP" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/toy/figure/detective,
/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"ckq" = (
+/area/security/detectives_office)
+"eqY" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
+ },
+/area/quartermaster/office)
+"eri" = (
+/obj/structure/table/reinforced,
+/obj/item/mmi,
+/obj/item/mmi,
+/obj/item/mmi,
+/obj/item/mmi/robotic_brain,
+/obj/item/robotanalyzer,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/machinery/camera{
+ c_tag = "Robotics Lab";
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "whitepurple"
+ },
+/area/assembly/robotics)
+"erl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/heads/hop)
-"ckr" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
+ },
+/area/medical/sleeper)
+"err" = (
+/obj/structure/bookcase,
+/obj/effect/decal/cleanable/cobweb,
+/turf/simulated/floor/wood,
+/area/library/abandoned)
+"erO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/crew_quarters/heads/hop)
-"cks" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/ai_status_display{
- pixel_x = 32
+/obj/machinery/camera{
+ c_tag = "Engine Room North";
+ network = list("Engineering","SS13")
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"ckt" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "representative";
- name = "Privacy Shutters";
- opacity = 0
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = 28
},
-/turf/simulated/floor/plating,
-/area/ntrep)
-"cku" = (
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"esa" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/command{
- id_tag = "ntrepofficedoor";
- name = "NT Representative's Office";
- req_access_txt = "73"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/wood,
-/area/ntrep)
-"ckv" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/area/bridge/vip)
-"ckw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/command{
- id_tag = "blueshieldofficedoor";
- name = "Blueshield's Office";
- req_access_txt = "67"
- },
-/turf/simulated/floor/wood,
-/area/blueshield)
-"ckx" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "blueshield";
- name = "Privacy Shutters";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plating,
-/area/blueshield)
-"cky" = (
-/obj/machinery/light{
- dir = 8
+/area/medical/research/shallway)
+"ese" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
},
-/obj/effect/decal/warning_stripes/arrow,
-/obj/effect/decal/warning_stripes/yellow/partial,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"ckz" = (
-/obj/effect/decal/warning_stripes/arrow,
-/obj/effect/decal/warning_stripes/yellow/partial,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"ckA" = (
+/area/quartermaster/office)
+"esq" = (
/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/structure/extinguisher_cabinet{
+/obj/machinery/camera{
+ c_tag = "Medbay Lobby East"
+ },
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ name = "Cargo Requests Console";
pixel_y = 30
},
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"ckB" = (
+/obj/item/storage/firstaid/regular,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
+ },
+/area/quartermaster/office)
+"esu" = (
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
+/obj/structure/table,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
pixel_y = 24
},
-/obj/structure/table,
-/obj/item/hand_tele,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"ckC" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/item/paper_bin,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/obj/item/radio/intercom{
- pixel_y = 24
+/area/quartermaster/office)
+"esz" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
-/area/teleporter)
-"ckD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/area/medical/research/nhallway)
+"esJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/bluespace_beacon,
-/obj/machinery/door_control{
- id = "teleaccessshutter";
- name = "Teleporter Shutters Access Control";
- pixel_y = 24;
- req_access_txt = "62"
+/obj/effect/landmark{
+ name = "lightsout"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"ckE" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/se)
+"esN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
- icon_state = "bcarpet05"
+ dir = 8;
+ icon_state = "brown"
},
-/area/security/prison/cell_block/A)
-"ckF" = (
-/obj/structure/disposalpipe/segment{
+/area/quartermaster/storage)
+"esO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/teleport/hub,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel,
-/area/teleporter)
-"ckG" = (
+/area/toxins/storage)
+"esP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research/nhallway)
+"esT" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurple"
+ },
+/area/crew_quarters/hor)
+"ete" = (
+/turf/simulated/floor/wood,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"eto" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/yellow,
+/obj/item/gps,
+/obj/item/gps,
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ai_monitored/storage/eva)
+"ets" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
/obj/machinery/door/poddoor/shutters{
+ density = 0;
dir = 2;
- id_tag = "teleaccessshutter";
- name = "Teleporter Access Shutters"
- },
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"ckH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "shutter0";
+ id_tag = "rdprivacy";
+ name = "Research Director Office Shutters";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/crew_quarters/hor)
+"etE" = (
+/obj/machinery/computer/supplycomp,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "neutralfull"
},
-/area/hallway/primary/central/east)
-"ckI" = (
+/area/quartermaster/storage)
+"etO" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"etQ" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/commercial)
+"etR" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"etT" = (
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/light{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"etU" = (
+/obj/effect/decal/warning_stripes/southwest,
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_x = -30;
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"eue" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/botanic_leather,
+/obj/item/reagent_containers/spray/pestspray,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/hallway/primary/central/east)
-"ckJ" = (
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+/area/security/permabrig)
+"eur" = (
+/obj/machinery/hydroponics/constructable{
+ desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays.";
+ name = "Prison hydroponics tray";
+ using_irrigation = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/seeds/carrot,
+/obj/item/seeds/carrot,
+/obj/item/seeds/carrot,
+/obj/effect/decal/warning_stripes/red/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/central/east)
-"ckK" = (
+/area/security/permabrig)
+"euu" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- on = 1
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/crew_quarters/courtroom)
-"ckL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/area/library)
+"euA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/courtroom)
-"ckN" = (
+/area/security/permabrig)
+"evl" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "green"
+ icon_state = "dark"
},
-/area/crew_quarters/courtroom)
-"ckO" = (
+/area/construction/hallway)
+"evo" = (
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"evL" = (
+/obj/machinery/door/airlock{
+ id_tag = "cabin2";
+ name = "Cabin"
+ },
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "greencorner"
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin2)
+"evO" = (
+/obj/machinery/light{
+ dir = 4
},
-/area/crew_quarters/courtroom)
-"ckP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24;
+ pixel_y = -4
},
-/area/crew_quarters/courtroom)
-"ckQ" = (
-/obj/structure/table/wood,
-/obj/item/folder/red,
-/obj/item/pen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"evQ" = (
+/obj/structure/table,
+/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "green"
- },
-/area/crew_quarters/courtroom)
-"ckR" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "neutralfull"
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/area/crew_quarters/locker)
+"ewm" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f9"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/shuttle/mining)
+"ewt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/magistrateoffice)
-"ckS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/magistrateoffice)
-"ckT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/magistrateoffice)
-"ckU" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
dir = 8;
- icon_state = "open";
- id_tag = "magistrate";
- name = "Magistrate Privacy Shutters";
- opacity = 0
+ icon_state = "neutral"
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/toxins/mixing)
+"ewx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/magistrateoffice)
-"ckV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/light/small{
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/security/securehallway)
+"ewF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"ckW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/chair{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/turf/simulated/floor/wood,
-/area/civilian/pet_store)
-"clb" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "dark"
},
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"clk" = (
-/obj/structure/closet,
+/area/crew_quarters/courtroom)
+"ewS" = (
/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+ dir = 1
},
/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 8
},
-/area/security/evidence)
-"clo" = (
+/obj/structure/lattice,
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"exh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering";
- req_access_txt = "10"
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering/monitor)
-"clp" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"clq" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/research{
+ name = "Research Break Room";
+ req_access_txt = "47"
},
-/turf/simulated/wall/r_wall,
-/area/engine/engineering)
-"clr" = (
-/obj/machinery/status_display,
-/turf/simulated/wall/r_wall,
-/area/engine/engineering)
-"cls" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "Singularity";
- layer = 2.7;
- name = "Singularity Blast Doors";
- opacity = 0
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/door_control{
- id = "Singularity";
- name = "Containment Blast Doors";
- pixel_x = 32
+/area/medical/research/restroom)
+"exn" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"clt" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/engineering_personal,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "yellow"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/engine/engineering)
-"clu" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/engine/engineering)
-"clv" = (
-/turf/simulated/wall/r_wall,
-/area/storage/secure)
-"clw" = (
-/turf/simulated/wall/r_wall/rust,
-/area/storage/secure)
-"clx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/surgery2)
+"exv" = (
+/obj/structure/table/reinforced,
+/obj/random/plushie,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -29
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cly" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/security/processing)
+"exy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"clz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/wall,
-/area/library)
-"clA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/library)
-"clB" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Local Armory";
+ req_access_txt = "1"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"clC" = (
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/library)
-"clD" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
+/area/security/armoury)
+"exN" = (
+/obj/structure/chair/stool/bar,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/library)
-"clE" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/donut_box,
-/obj/structure/window/reinforced{
- dir = 1
- },
+/area/maintenance/gambling_den)
+"exV" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/blue,
+/obj/item/robot_parts/r_leg,
+/obj/item/robot_parts/l_leg,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"clF" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/pen,
-/obj/structure/window/reinforced{
- dir = 1
+ icon_state = "dark"
},
+/area/turret_protected/ai)
+"eye" = (
+/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/library)
-"clG" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 1
+/area/chapel/office)
+"eyi" = (
+/obj/structure/morgue,
+/obj/effect/decal/warning_stripes/southwest,
+/obj/effect/landmark{
+ name = "revenantspawn"
},
-/obj/item/stack/tape_roll,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"clH" = (
-/obj/structure/table/wood,
-/obj/item/camera_film,
-/obj/item/camera_film,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+ dir = 10;
+ icon_state = "darkblue"
},
-/obj/structure/window/reinforced{
- dir = 1
+/area/medical/morgue)
+"eyq" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/central/se)
+"eyt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/camera{
- c_tag = "Librarian Desk";
- dir = 9;
- pixel_x = 1;
- pixel_y = -2
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/library)
-"clI" = (
-/obj/machinery/newscaster{
- pixel_x = -32
+/obj/effect/landmark/start{
+ name = "Security Pod Pilot"
},
-/obj/structure/bed,
-/obj/item/bedsheet/hop,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
-"clJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+ icon_state = "dark"
},
-/obj/machinery/light_switch{
- pixel_x = 26;
+/area/security/podbay)
+"eyu" = (
+/obj/structure/sink{
+ layer = 4;
pixel_y = 26
},
-/obj/effect/landmark/start{
- name = "Head of Personnel"
- },
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
-"clK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/obj/machinery/door/airlock/command{
- name = "Head of Personnel Bedroom";
- req_access_txt = "57"
+/area/medical/sleeper)
+"eyI" = (
+/obj/structure/chair/office/dark{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 9;
+ icon_state = "darkblue"
},
-/area/crew_quarters/heads/hop)
-"clL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/turret_protected/ai)
+"eyL" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/decal/warning_stripes/northeast,
+/obj/item/radio/intercom{
+ pixel_x = -28
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"clM" = (
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"eyR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "1-2"
},
-/area/crew_quarters/heads/hop)
-"clN" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
-"clO" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/area/security/processing)
+"eyU" = (
+/obj/machinery/light{
+ dir = 4
},
-/area/crew_quarters/heads/hop)
-"clP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/toy/figure/ian,
+/obj/structure/dispenser/oxygen,
/obj/item/radio/intercom{
dir = 4;
pixel_x = 28
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"clQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"ezi" = (
+/turf/simulated/wall,
+/area/gateway)
+"ezj" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "darkbluecorners"
},
-/area/bridge/vip)
-"clS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/turret_protected/ai)
+"ezv" = (
+/obj/machinery/gateway{
+ dir = 6
+ },
+/obj/machinery/camera{
+ c_tag = "Gateway";
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "JoinLateGateway"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "dark"
+ },
+/area/gateway)
+"ezN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/area/bridge/vip)
-"clT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/radio/beacon,
-/obj/effect/landmark{
- name = "lightsout"
- },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"ezU" = (
+/obj/structure/table,
+/obj/item/folder,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/bridge/vip)
-"clU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway Center 3"
+/area/crew_quarters/fitness)
+"ezY" = (
+/obj/structure/table,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 7
},
-/obj/machinery/firealarm{
- pixel_y = 24
+/obj/item/pen{
+ pixel_x = 4;
+ pixel_y = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"clV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
+/area/maintenance/electrical)
+"eAb" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"clW" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/emergency,
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"clX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 7;
+ icon_state = "yellow"
},
+/area/engine/engineering)
+"eAg" = (
+/obj/effect/decal/remains/human,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/teleporter)
-"clY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/maintenance/xenozoo)
+"eAm" = (
+/obj/machinery/camera/motion{
+ c_tag = "Minisat AI Core North";
+ dir = 1;
+ network = list("Minisat","SS13")
+ },
+/obj/machinery/requests_console{
+ department = "AI";
+ departmentType = 5;
+ name = "AI Requests Console";
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkblue"
},
-/area/teleporter)
-"clZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/turret_protected/ai)
+"eAt" = (
+/obj/structure/closet/redcorp,
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/customs)
+"eAw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "redcorner"
},
-/area/teleporter)
-"cma" = (
+/area/security/main)
+"eAH" = (
+/obj/effect/decal/warning_stripes/south,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"eAS" = (
+/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
- icon_state = "neutralfull"
+ external_pressure_bound = 100;
+ on = 1
},
-/area/teleporter)
-"cmb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/camera{
+ c_tag = "Holodeck Control Room"
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"eBn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck Door"
},
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"eBv" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "darkbluecorners"
},
-/area/teleporter)
-"cmc" = (
+/area/turret_protected/ai)
+"eBy" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"cmd" = (
-/obj/machinery/teleport/station,
-/obj/machinery/status_display{
- pixel_x = 32
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"cme" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway East 3";
- dir = 8
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "ai2";
+ name = "Turret Shutters"
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/hallway/primary/central/east)
-"cmf" = (
-/obj/item/radio/intercom{
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"eBz" = (
+/obj/machinery/alarm{
dir = 8;
- pixel_x = -28
- },
-/obj/machinery/recharge_station,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ pixel_x = 25
},
-/area/crew_quarters/courtroom)
-"cmg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair{
+/obj/machinery/light{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/courtroom)
-"cmh" = (
-/obj/structure/table/wood,
-/obj/item/folder/blue,
-/obj/item/pen,
+/area/chapel/office)
+"eCf" = (
+/obj/effect/decal/warning_stripes/north,
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/turf/simulated/floor/plasteel{
- icon_state = "carpet"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/area/crew_quarters/courtroom)
-"cmi" = (
-/obj/structure/table/wood,
-/obj/item/radio/intercom,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/structure/window/reinforced{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"eCs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "carpet"
+ dir = 8;
+ icon_state = "neutral"
},
-/area/crew_quarters/courtroom)
-"cmj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/crew_quarters/sleep)
+"eCO" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "green"
+ icon_state = "whitepurplecorner"
},
-/area/crew_quarters/courtroom)
-"cmk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/area/medical/research/shallway)
+"eCP" = (
+/obj/machinery/light/small{
+ dir = 1
},
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"eCU" = (
+/obj/structure/table,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/courtroom)
-"cml" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/crew_quarters/locker)
+"eCY" = (
+/obj/machinery/camera{
+ c_tag = "Holodeck Aft";
+ dir = 1
},
-/area/crew_quarters/courtroom)
-"cmm" = (
-/obj/machinery/light{
- dir = 4
+/turf/simulated/floor/engine{
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/alphadeck)
+"eCZ" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin3)
+"eDn" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "grimy"
},
-/area/crew_quarters/courtroom)
-"cmn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/crew_quarters/captain/bedroom)
+"eDD" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/flasher{
+ id = null;
+ pixel_y = -24
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light,
-/obj/structure/filingcabinet,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "darkblue"
},
-/area/magistrateoffice)
-"cmo" = (
-/obj/structure/table,
-/obj/item/clothing/head/helmet/skull{
- desc = "Бедный Йорик...";
- name = "Йорик"
+/area/turret_protected/ai)
+"eDV" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "representative";
+ name = "Privacy Shutters";
+ opacity = 0
},
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+/turf/simulated/floor/plating,
+/area/ntrep)
+"eDX" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
},
-/area/magistrateoffice)
-"cmp" = (
-/obj/structure/table,
-/obj/machinery/photocopier/faxmachine/longrange{
- department = "Magistrate's Office"
+/turf/simulated/shuttle/floor4,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"eEb" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ armor = list("melee" = 60, "bullet" = 70, "laser" = 70, "energy" = 70, "bomb" = 40, "bio" = 100, "rad" = 100, "fire" = 70, "acid" = 100);
+ dir = 2;
+ name = "Secure Armory";
+ req_access_txt = "1"
},
-/obj/structure/sign/poster/official/random{
- pixel_y = -32
+/obj/machinery/door/window/brigdoor{
+ armor = list("melee" = 60, "bullet" = 70, "laser" = 70, "energy" = 70, "bomb" = 40, "bio" = 100, "rad" = 100, "fire" = 70, "acid" = 100);
+ dir = 1;
+ name = "Secure Armory";
+ req_access_txt = "3"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "ArmoryLock";
+ name = "Armory Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "ArmorySec";
+ layer = 5;
+ name = "Armory Security Shutters"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "dark"
},
-/area/magistrateoffice)
-"cms" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/securearmoury)
+"eEh" = (
+/obj/machinery/vending/crittercare,
+/turf/simulated/floor/carpet,
+/area/civilian/pet_store)
+"eEj" = (
+/obj/structure/toilet{
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cmt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"cmx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/window{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes/blue/hollow,
+/obj/item/stack/cable_coil,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+ icon_state = "freezerfloor"
+ },
+/area/security/permabrig)
+"eEu" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
+/area/medical/research{
+ name = "Research Division"
+ })
+"eEK" = (
+/obj/machinery/porta_turret,
+/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
-"cmC" = (
-/obj/structure/lattice,
-/obj/machinery/camera/emp_proof{
- c_tag = "Singularity NorthWest";
- dir = 4;
- network = list("SS13","Singularity","Engineering")
+"eER" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/space,
-/area/engine/engineering)
-"cmL" = (
+/obj/structure/lattice,
/obj/structure/lattice,
/turf/space,
-/area/engine/engineering)
-"cmM" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/machinery/newscaster{
- pixel_y = -32
+/area/space/nearstation)
+"eEY" = (
+/obj/machinery/photocopier,
+/obj/machinery/light{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cmN" = (
-/obj/machinery/requests_console{
- department = "Engineering";
- departmentType = 3;
- name = "Engineering Requests Console";
- pixel_y = -30
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/machinery/firealarm{
+/area/library)
+"eFc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin2)
+"eFi" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24
+ },
+/obj/machinery/camera{
+ c_tag = "Shooting Range West";
dir = 4;
- pixel_x = 28;
- pixel_y = -28
+ network = list("SS13","Security")
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cmO" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/toy/figure/engineer,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "yellow"
+ dir = 1
},
-/area/engine/engineering)
-"cmP" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 8
+/area/security/range)
+"eFo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/storage/toolbox/mechanical,
-/obj/item/flashlight,
-/obj/item/radio/intercom{
- dir = 8;
- pixel_x = -28
+/obj/effect/landmark/start{
+ name = "Mime"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/engine/engineering)
-"cmQ" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
+/obj/structure/cable{
icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cmR" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cmS" = (
-/obj/item/stack/cable_coil/random,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/mimeoffice)
+"eFr" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
dir = 1;
- on = 1
- },
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cmT" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ name = "Труба дыхательной смеси"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cmU" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/light{
+ dir = 8
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cmV" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/storage/secure)
-"cmW" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/atmos)
+"eFE" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 6;
+ name = "Труба фильтрации"
},
-/obj/effect/decal/warning_stripes/northeast,
-/obj/item/radio/intercom{
- pixel_x = 28
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
},
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cmX" = (
-/obj/structure/rack,
-/obj/item/tank/oxygen,
-/obj/item/radio,
-/obj/machinery/firealarm{
+/area/atmos)
+"eFI" = (
+/obj/machinery/alarm{
dir = 1;
pixel_y = -24
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"cmY" = (
-/obj/machinery/shieldgen,
-/obj/structure/sign/nosmoking_2{
- pixel_y = 32
+/obj/machinery/camera{
+ c_tag = "Atmospherics North";
+ dir = 1;
+ network = list("SS13","Engineering")
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cmZ" = (
-/obj/machinery/shieldgen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cna" = (
-/obj/machinery/field/generator{
- anchored = 1
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 4;
+ name = "Труба фильтрации"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cnb" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cnc" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/machinery/floodlight,
-/turf/simulated/floor/plating,
-/area/storage/secure)
-"cnd" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/floodlight,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cne" = (
-/obj/structure/dispenser,
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = 25
+/turf/simulated/floor/plasteel{
+ icon_state = "caution"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/camera{
- c_tag = "Engineering Secure Storage 2";
- dir = 6;
- network = list("Engineering","SS13")
+/area/atmos)
+"eFS" = (
+/obj/structure/sign/science{
+ icon_state = "xenobio2"
},
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cnf" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cng" = (
+/turf/simulated/wall/r_wall,
+/area/medical/research/nhallway)
+"eGb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cnh" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/maintenance/asmaint2)
+"eGn" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
-/obj/machinery/power/apc{
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/poddoor/shutters{
dir = 8;
- name = "west bump";
- pixel_x = -24
+ id_tag = "paramedic";
+ name = "Paramedic Garage"
},
-/turf/simulated/floor/wood,
-/area/library)
-"cni" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel,
+/area/medical/paramedic)
+"eGt" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/simulated/floor/wood,
-/area/library)
-"cnj" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/hallway/secondary/exit)
+"eGA" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Xenobiology Lab";
+ req_access_txt = "47"
},
-/area/library)
-"cnk" = (
-/obj/machinery/door/window/westright{
- name = "Front Desk";
- req_access_txt = "37"
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"eGC" = (
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Service Bay";
+ req_access_txt = "75"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/library)
-"cnl" = (
-/turf/simulated/floor/carpet,
-/area/library)
-"cnm" = (
-/obj/structure/chair/office/dark{
- dir = 1
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"eGR" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/door_control{
+ desc = "A remote control-switch for the pod doors.";
+ id = "secpilot";
+ name = "Pod Door Control";
+ pixel_x = -26;
+ pixel_y = 26;
+ req_access_txt = "71"
},
-/obj/effect/landmark/start{
- name = "Librarian"
+/turf/space,
+/area/security/podbay)
+"eGT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/carpet,
-/area/library)
-"cnn" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/library/checkout,
-/obj/machinery/newscaster{
- pixel_x = 32
+/obj/machinery/door/airlock/maintenance{
+ req_one_access_txt = "12;47"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"cno" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green,
-/obj/item/radio/intercom{
- dir = 8;
- pixel_x = -28
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"eHp" = (
+/obj/structure/chair/comfy/teal,
+/obj/effect/landmark/start{
+ name = "Civilian"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/crew_quarters/heads/hop)
-"cnp" = (
-/obj/structure/closet/secure_closet/hop,
-/obj/machinery/camera{
- c_tag = "Head of Personal's bedroom";
- dir = 1
+/area/medical/reception)
+"eHF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
-"cnq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"cnr" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/area/security/lobby)
+"eHM" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"cns" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"cnt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = -24
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"cnu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaCellsLockdown";
+ name = "Perma Cells Lockdown"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"eHP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/item/radio/intercom{
- pixel_x = -28
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkred"
},
+/area/security/permabrig)
+"eIb" = (
+/obj/structure/table,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/paper/deltainfo,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
-/area/bridge/vip)
-"cnv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/research/nhallway)
+"eIk" = (
+/obj/machinery/atmospherics/unary/outlet_injector/on{
+ dir = 4;
+ frequency = 1441;
+ id = "n2o_in"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/engine/n20,
+/area/atmos)
+"eIu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/bridge/vip)
-"cnw" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/engine/engineering)
+"eIv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/bridge/vip)
-"cnx" = (
+/area/chapel/office)
+"eIw" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/turret_protected/ai)
+"eIQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"eIV" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
+ name = "Chemistry Cleaner"
+ },
+/obj/item/hand_labeler,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
- dir = 1
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/bridge/vip)
-"cny" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 1;
+ icon_state = "whiteyellow"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/medical/chemistry)
+"eIX" = (
+/obj/machinery/light{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/obj/machinery/porta_turret,
+/obj/machinery/status_display{
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "darkblue"
},
-/area/bridge/vip)
-"cnz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/area/tcommsat/chamber)
+"eJc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"cnA" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/camera{
- c_tag = "Teleporter";
- dir = 1
+/area/chapel/main)
+"eJk" = (
+/obj/structure/grille,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 4;
+ name = "Труба фильтрации"
},
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = -24
+/turf/simulated/wall/r_wall,
+/area/atmos)
+"eJl" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/rack,
+/obj/item/flashlight{
+ pixel_x = -6;
+ pixel_y = 9
},
-/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"cnB" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"cnC" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/obj/item/flashlight{
+ pixel_x = -3;
+ pixel_y = 6
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"cnD" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/obj/item/flashlight{
+ pixel_y = 3
},
-/obj/machinery/light,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
+/obj/item/flashlight{
+ pixel_x = 3
+ },
+/obj/item/flashlight{
+ pixel_x = 6;
+ pixel_y = -3
},
-/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"cnE" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"cnG" = (
-/obj/machinery/computer/teleporter,
-/obj/machinery/vending/wallmed{
- pixel_x = 26
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"cnI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/courtroom)
-"cnJ" = (
-/obj/structure/chair{
- dir = 1
+/area/engine/hardsuitstorage)
+"eJs" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/binary/volume_pump/on{
+ desc = "Возвращает газ после обработки в трубу смешивания";
+ name = "Выход газа после обработки"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"eJv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "carpet"
+ icon_state = "1-8"
},
-/area/crew_quarters/courtroom)
-"cnK" = (
-/obj/structure/chair{
- dir = 1
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"eJH" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/clothing/glasses/meson{
+ pixel_x = -5;
+ pixel_y = 9
},
-/obj/machinery/door/window/eastright,
-/turf/simulated/floor/plasteel{
- icon_state = "carpet"
+/obj/item/clothing/glasses/meson{
+ pixel_x = -3;
+ pixel_y = 6
},
-/area/crew_quarters/courtroom)
-"cnL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/item/clothing/glasses/meson{
+ pixel_y = 3
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/item/clothing/glasses/meson{
+ pixel_x = 3
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "green"
+/obj/item/clothing/glasses/meson{
+ pixel_x = 7;
+ pixel_y = -3
},
-/area/crew_quarters/courtroom)
-"cnM" = (
+/obj/structure/rack,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/crew_quarters/courtroom)
-"cnN" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ icon_state = "dark"
},
-/area/crew_quarters/courtroom)
-"cnO" = (
-/obj/structure/disposalpipe/segment{
+/area/engine/hardsuitstorage)
+"eJI" = (
+/obj/machinery/atmospherics/unary/portables_connector{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/wrench,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkred"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/area/security/execution)
+"eJR" = (
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "neutralcorner"
},
-/area/crew_quarters/locker)
-"cnP" = (
-/turf/simulated/wall,
-/area/crew_quarters/locker)
-"cnQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/magistrateoffice)
-"cnV" = (
-/obj/structure/window/reinforced{
- dir = 1
+/area/hallway/primary/central/west)
+"eJV" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ id = "Cell 1";
+ name = "Cell 1";
+ req_access_txt = "2"
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/structure/window/reinforced{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/showcase{
- layer = 5
+/area/security/prison/cell_block/A)
+"eKe" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkred"
},
+/area/security/permabrig)
+"eKh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"eKm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Library"
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/tcommsat/chamber)
-"cnW" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/west)
-"cnX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
+/area/library)
+"eKX" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/turret_protected/ai)
-"cnY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/flag/nt,
+/turf/simulated/floor/wood,
+/area/ntrep)
+"eLf" = (
/turf/simulated/floor/plasteel{
+ dir = 9;
icon_state = "darkblue"
},
-/area/turret_protected/ai)
-"cnZ" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
- },
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"coa" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cob" = (
-/obj/structure/cable/yellow{
+/area/medical/surgery2)
+"eLo" = (
+/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"coc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cod" = (
-/obj/structure/particle_accelerator/particle_emitter/left{
- dir = 8
+/obj/structure/sign/vacuum{
+ pixel_y = -32
},
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"coe" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cof" = (
-/obj/machinery/particle_accelerator/control_box,
-/obj/structure/cable/yellow,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cog" = (
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/computer/med_data,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
- },
-/area/security/detectives_office)
-"coh" = (
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/smes{
- charge = 2e+006
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"coi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/virology)
+"eLq" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/window/plasmareinforced,
+/obj/structure/window/plasmareinforced{
+ dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"coj" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/toxins/storage)
+"eLE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cok" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"col" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/turf/simulated/floor/plasteel{
dir = 8;
- initialize_directions = 11
+ icon_state = "neutralfull"
},
-/obj/structure/cable/yellow{
+/area/hallway/primary/central/west)
+"eLO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 4;
+ name = "Труба фильтрации"
+ },
+/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"com" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "caution"
},
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
+/area/atmos)
+"eLT" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 1;
+ name = "Труба смешивания"
},
-/obj/machinery/power/terminal{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 4;
+ name = "Труба фильтрации"
},
-/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"con" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor{
- id_tag = "engstorage";
- name = "Secure Storage Blast Doors"
+/area/atmos)
+"eLU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"coo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cop" = (
-/obj/machinery/the_singularitygen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"coq" = (
+/area/engine/engineering)
+"eMg" = (
+/obj/machinery/door/airlock/glass{
+ name = "Cabin"
+ },
+/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker)
+"eMl" = (
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Teleport Access";
- req_access_txt = "17"
+/obj/machinery/light{
+ dir = 8
},
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"cor" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/obj/machinery/shieldgen,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/storage/secure)
-"cos" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/medbay3)
+"eMu" = (
+/obj/machinery/computer/general_air_control/large_tank_control{
+ frequency = 1441;
+ input_tag = "air_in";
+ name = "Mixed Air Supply Control";
+ output_tag = "air_out";
+ pressure_setting = 2000;
+ sensors = list("air_sensor" = "Tank")
},
-/obj/machinery/shieldgen,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cot" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
dir = 10;
- initialize_directions = 10
- },
-/obj/machinery/field/generator{
- anchored = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cou" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/floodlight,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cov" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/plating,
-/area/storage/secure)
-"cow" = (
-/obj/structure/bookcase,
-/obj/machinery/light{
- dir = 8
+ name = "Труба фильтрации"
},
-/turf/simulated/floor/wood,
-/area/library)
-"cox" = (
-/obj/structure/table/wood,
/obj/structure/window/reinforced{
- dir = 8
+ dir = 4
},
-/obj/item/paper_bin,
-/obj/item/pen/multi,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_state = "arrival"
},
-/area/library)
-"coz" = (
-/obj/machinery/status_display{
- pixel_x = 32
+/area/atmos)
+"eMv" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/libraryscanner,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/library)
-"coA" = (
+/area/engine/engineering)
+"eMz" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "hopprivacy";
- name = "Head of Personal Privacy Shutters"
- },
/turf/simulated/floor/plating,
-/area/crew_quarters/heads/hop)
-"coB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Head of Personnel";
- req_access = null;
- req_access_txt = "57"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"coC" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/medical/virology)
+"eMC" = (
+/obj/structure/table/wood,
+/obj/machinery/light/small,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/bridge/vip)
-"coD" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"coE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/area/maintenance/gambling_den)
+"eMI" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/crayons,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/ne)
-"coF" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "teleportershutter";
- name = "Teleporter Shutters"
- },
-/obj/machinery/door_control{
- id = "teleportershutter";
- name = "Teleporter Shutters Access Control";
- pixel_x = -24;
- req_access_txt = "17"
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"coG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "teleportershutter";
- name = "Teleporter Shutters"
+/area/library)
+"eMM" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба содержит газ для обработки и после возвращает его обратно в трубу смешивания";
+ dir = 6;
+ name = "Труба обработки"
},
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/teleporter)
-"coH" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/teleporter)
-"coI" = (
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
+/area/atmos)
+"eMN" = (
/obj/machinery/alarm{
dir = 4;
pixel_x = -23
},
-/obj/machinery/light{
- dir = 8
+/obj/machinery/newscaster{
+ pixel_y = -28
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"eMU" = (
+/obj/machinery/washing_machine,
+/obj/machinery/camera{
+ c_tag = "Laundry Room";
+ dir = 4;
+ pixel_y = -22
},
-/area/crew_quarters/courtroom)
-"coJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "arrival"
},
-/area/crew_quarters/courtroom)
-"coK" = (
-/obj/machinery/vending/cigarette,
-/obj/machinery/light{
- dir = 4
+/area/crew_quarters/sleep)
+"eMZ" = (
+/obj/structure/chair/comfy/brown,
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start{
+ name = "Internal Affairs Agent"
},
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"eNq" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/crew_quarters/courtroom)
-"coL" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/light{
- dir = 8
+/area/crew_quarters/serviceyard)
+"eNt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/crew_quarters/courtroom)
-"coM" = (
-/obj/structure/table/wood,
-/obj/item/radio/intercom,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/area/chapel/office)
+"eNx" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"eNy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/courtroom)
-"coN" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/folder,
-/obj/item/pen,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
-"coO" = (
-/obj/structure/table/wood,
-/obj/item/folder/yellow,
-/obj/item/pen,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/courtroom)
-"coP" = (
-/obj/structure/table/wood,
-/obj/item/storage/briefcase{
- pixel_x = 4;
- pixel_y = 4
+/area/hallway/primary/central/west)
+"eNC" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "red"
},
/area/crew_quarters/courtroom)
-"coQ" = (
+"eNW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/closet/secure_closet/personal,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/locker)
-"coR" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/locker)
-"coS" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/pump,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
- },
-/area/crew_quarters/locker)
-"coT" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "escape"
- },
-/area/crew_quarters/locker)
-"coW" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
+ icon_state = "1-2"
},
-/obj/machinery/disposal,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/alarm{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- pixel_x = 24
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ initialize_directions = 11
},
-/area/crew_quarters/locker)
-"cpb" = (
-/obj/machinery/power/smes{
- charge = 5e+006
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/obj/structure/cable{
+ d1 = 1;
d2 = 4;
- icon_state = "0-4"
+ icon_state = "1-4"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/hallway/primary/central/sw)
+"eOr" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/turret_protected/ai)
-"cpc" = (
-/obj/effect/spawner/window/reinforced,
+/area/chapel/office)
+"eOt" = (
+/obj/effect/spawner/random_spawners/blood_maybe,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"cpd" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small{
- dir = 1
- },
+/area/maintenance/asmaint2)
+"eOC" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"eOQ" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
d2 = 4;
- icon_state = "2-4"
+ icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"ePb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/turret_protected/ai)
-"cpe" = (
-/obj/structure/window/reinforced{
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/medical/medbay)
+"ePe" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/ai)
-"cpf" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
- },
+/area/engine/mechanic_workshop/hangar)
+"ePl" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ name = "Труба на фильтрацию"
+ },
/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/west)
-"cpg" = (
-/obj/item/radio/beacon/engine/tesling,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cph" = (
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cpi" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/atmos)
+"ePn" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"ePB" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cpj" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
+/obj/structure/cable{
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cpk" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
+/obj/structure/cable{
icon_state = "1-4"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cpl" = (
-/obj/structure/particle_accelerator/particle_emitter/center{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cpm" = (
-/obj/structure/particle_accelerator/power_box{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cpn" = (
-/obj/structure/particle_accelerator/fuel_chamber{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cpo" = (
-/obj/structure/particle_accelerator/end_cap{
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cpp" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "Singularity";
- layer = 2.7;
- name = "Singularity Blast Doors";
- opacity = 0
+/area/security/brig)
+"ePR" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "engineering_east_outer";
+ locked = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -56312,736 +55480,898 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
-"cpq" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the singularity chamber.";
- dir = 8;
- layer = 4;
- name = "Singularity Engine Telescreen";
- network = list("Singularity")
+"ePU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/wall/r_wall,
-/area/engine/engineering)
-"cpr" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "darkred"
},
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/security/securearmoury)
+"eQd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cps" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/landmark/start{
- name = "Station Engineer"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"eQp" = (
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ icon_state = "whitegreen";
+ tag = "icon-whitehall (WEST)"
},
-/area/engine/engineering)
-"cpt" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/medical/virology/lab)
+"eQA" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
+/area/medical/medbay)
+"eQR" = (
+/obj/machinery/computer/communications,
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"eQV" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating,
/area/engine/engineering)
-"cpu" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+"eQZ" = (
+/obj/machinery/alarm{
dir = 8;
- initialize_directions = 11
+ pixel_x = 24
},
-/obj/structure/cable/yellow{
+/obj/machinery/vending/snack,
+/turf/simulated/floor/plasteel,
+/area/bridge/vip)
+"eRa" = (
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"eRk" = (
+/obj/machinery/sleeper/syndie{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate)
+"eRm" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22";
+ tag = "icon-plant-22"
},
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/engine/engineering)
-"cpv" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/area/medical/medbay3)
+"eRr" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
dir = 8;
- on = 1
+ icon_state = "red"
},
-/obj/structure/cable/yellow{
- d1 = 1;
+/area/security/lobby)
+"eRD" = (
+/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cpw" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor{
- id_tag = "engstorage";
- name = "Secure Storage Blast Doors"
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cpx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cpy" = (
+/area/toxins/storage)
+"eRS" = (
+/obj/structure/table/wood,
+/obj/item/camera,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/storage/secure)
-"cpz" = (
-/obj/effect/decal/cleanable/dirt,
+/area/library)
+"eRU" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
},
-/area/storage/secure)
-"cpA" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/hallway/primary/central/sw)
+"eSm" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Hatch";
+ req_access_txt = "106"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
+/obj/docking_port/mobile{
dir = 8;
- icon_state = "neutralfull"
+ dwidth = 9;
+ height = 18;
+ id = "admin";
+ name = "administration shuttle";
+ roundstart_move = "admin_away";
+ width = 19
},
-/area/storage/secure)
-"cpB" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 9;
+ height = 18;
+ id = "admin_home";
+ name = "port bay 1";
+ width = 19
},
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/shuttle/administration)
+"eSr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/area/storage/secure)
-"cpC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"eSz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/storage/secure)
-"cpD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/atmos)
+"eSK" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal{
+ amount = 10
},
-/obj/machinery/light{
+/obj/item/stack/sheet/metal{
+ amount = 10
+ },
+/obj/item/grenade/chem_grenade/metalfoam,
+/obj/item/grenade/chem_grenade/metalfoam,
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"eTb" = (
+/obj/structure/chair/sofa/left{
dir = 4
},
-/obj/structure/sign/fire{
- pixel_x = 32
+/obj/machinery/button/windowtint{
+ id = "privateroom";
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "privateroom";
+ name = "Privacy Room Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -26;
+ pixel_y = 31;
+ specialfunctions = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/storage/secure)
-"cpE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/crew_quarters/bar/atrium)
+"eTe" = (
+/obj/structure/closet/wardrobe/mixed,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/turf/simulated/wall/r_wall,
-/area/storage/secure)
-"cpF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/crew_quarters/locker)
+"eTl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cpG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/starboard{
name = "Engineering Maintenance"
})
-"cpH" = (
-/obj/machinery/newscaster{
- pixel_x = -32
- },
-/obj/effect/decal/cleanable/cobweb,
-/obj/machinery/camera{
- c_tag = "Library West";
+"eTs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/library)
-"cpJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/library)
-"cpK" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/library)
-"cpL" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/pen/blue,
-/obj/item/pen/red,
-/obj/machinery/door/window/westright{
- name = "Front Desk";
- req_access_txt = "37"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1
},
-/area/library)
-"cpM" = (
-/obj/structure/table/wood,
-/obj/item/storage/bag/books,
-/obj/item/taperecorder,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/area/security/permahallway)
+"eTv" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/library)
-"cpN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkblue"
},
+/area/construction/hallway)
+"eTz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central/sw)
-"cpO" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/sw)
-"cpP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "yellowcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/port)
-"cpQ" = (
+/area/library)
+"eTL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"cpR" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+ icon_state = "white"
},
+/area/medical/medbay)
+"eTP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/bridge/vip)
-"cpS" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/bridge/vip)
-"cpT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/library)
+"eTR" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "red"
},
-/area/bridge/vip)
-"cpU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/securehallway)
+"eTZ" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/area/crew_quarters/bar/atrium)
+"eUc" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "ai2";
+ name = "Turret Shutters"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/bridge/vip)
-"cpV" = (
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"eUm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"eUt" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
- icon_state = "neutralcorner"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/bridge/vip)
-"cpW" = (
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"eVh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"cpX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_y = 32
+ icon_state = "grimy"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/chapel/main)
+"eVy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
-/area/bridge/vip)
-"cpY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/area/crew_quarters/sleep)
+"eVB" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=V1";
- location = "V4"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/turf/simulated/floor/plasteel,
+/area/medical/research/nhallway)
+"eVH" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Подаёт азот из атмосферки в систему охлаждения реактора, таким образом запитывая её хладагентом";
+ dir = 5;
+ name = "Труба подачи азота в реактор"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/bridge/vip)
-"cpZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/atmos)
+"eVK" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"eVO" = (
+/obj/structure/table/reinforced,
+/obj/item/radio{
+ pixel_x = -4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/radio{
+ pixel_x = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/item/radio{
+ pixel_x = -4;
+ pixel_y = 5
},
-/area/bridge/vip)
-"cqa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/radio{
+ pixel_x = 4;
+ pixel_y = 5
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
- dir = 8
+/area/security/main)
+"eWw" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/bridge/vip)
-"cqb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/crew_quarters/chief)
+"eWC" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"eWO" = (
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/crew_quarters/courtroom)
+"eWR" = (
+/obj/machinery/computer/arcade,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/genericbush,
-/obj/structure/window/reinforced{
- dir = 8
+/area/crew_quarters/bar/atrium)
+"eXc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"eXf" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/structure/window/reinforced{
+/turf/simulated/floor/plating,
+/area/medical/research/nhallway)
+"eXm" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/port)
+"eXx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"eXS" = (
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/flora/ausbushes/ywflowers,
/turf/simulated/floor/grass,
-/area/bridge/vip)
-"cqc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hallway/secondary/exit)
+"eXW" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"eXY" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark{
+ name = "lightsout"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/bridge/vip)
-"cqd" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/engine/engineering)
+"eYe" = (
+/obj/machinery/requests_console{
+ department = "EVA";
+ name = "EVA Requests Console";
+ pixel_x = 32
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+/obj/machinery/camera{
+ c_tag = "EVA Storage";
+ dir = 8
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=V3";
- location = "V2"
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"eYh" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Departure Lounge North"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/bridge/vip)
-"cqe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"eYo" = (
+/obj/structure/table/wood/poker,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"eYF" = (
+/obj/machinery/light{
dir = 4
},
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_y = 32
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 25
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"eYG" = (
+/obj/structure/chair/sofa/left{
+ dir = 8
},
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"eYK" = (
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/bridge/vip)
-"cqf" = (
+/area/toxins/xenobiology)
+"eYO" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/turf/simulated/floor/carpet,
+/area/assembly/showroom)
+"eYP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"cqg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "darkred"
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
+/area/security/podbay)
+"eYQ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "brown"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/quartermaster/office)
+"eYR" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/window/plasmareinforced,
+/obj/structure/window/plasmareinforced{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/obj/structure/window/plasmareinforced{
+ dir = 1
},
-/area/bridge/vip)
-"cqh" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
},
+/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"eYT" = (
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/area/bridge/vip)
-"cqj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/medical/paramedic)
+"eYY" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/chair/comfy/brown{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/northeastcorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"eZb" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/prisonershuttle)
+"eZl" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 6;
+ icon_state = "yellow"
},
-/area/bridge/vip)
-"cqk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/maintenance/electrical)
+"eZs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"cql" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/quartermaster/storage)
+"eZt" = (
/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "pipe-c"
},
-/area/bridge/vip)
-"cqm" = (
-/obj/structure/disposalpipe/segment,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A32";
+ location = "A31"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/primary/central/nw)
-"cqn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/crew_quarters/locker)
+"eZu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/item/radio/intercom{
- pixel_x = -28;
- pixel_y = 24
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
+ dir = 1;
initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/primary/central/se)
-"cqo" = (
+/area/quartermaster/storage)
+"eZJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/area/hallway/primary/central/se)
-"cqp" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/area/medical/medbay3)
+"eZR" = (
+/obj/structure/plasticflaps{
+ opacity = 1
},
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ location = "Kitchen"
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/kitchen)
+"far" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/hallway/primary/central/se)
-"cqq" = (
-/obj/machinery/vending/coffee,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"fau" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "purplecorner"
},
-/area/crew_quarters/courtroom)
-"cqr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hallway/primary/aft)
+"fay" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 100;
+ on = 1
},
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"faD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/crew_quarters/courtroom)
-"cqs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
-/obj/machinery/door/airlock/public/glass{
- name = "Courtroom";
- req_access_txt = "63"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"faG" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/firealarm{
+ pixel_y = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/medical/morgue)
+"faL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/crew_quarters/courtroom)
-"cqt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/chair{
- dir = 1
+/obj/machinery/light/small,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/aft)
+"faV" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Подаёт азот из атмосферки в систему охлаждения реактора, таким образом запитывая её хладагентом";
+ dir = 4;
+ name = "Труба подачи азота в реактор"
+ },
+/turf/simulated/floor/plating,
+/area/atmos)
+"faY" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/customs)
+"fbl" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
@@ -57049,1461 +56379,1252 @@
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
-"cqu" = (
-/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
- external_pressure_bound = 100;
- on = 1
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/hallway/primary/aft)
+"fbz" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
-/area/crew_quarters/courtroom)
-"cqv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"fbF" = (
+/obj/structure/chair/office/light{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/machinery/alarm{
+ pixel_y = 57
+ },
+/obj/effect/landmark/start{
+ name = "Geneticist"
},
-/area/crew_quarters/locker)
-"cqw" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/area/crew_quarters/locker)
-"cqx" = (
-/obj/machinery/light{
- dir = 1;
- in_use = 1
+/area/medical/genetics)
+"fbH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/camera{
- c_tag = "Locker Room North"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/status_display{
- layer = 4;
- pixel_y = 32
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- icon_state = "neutral"
+ initialize_directions = 11
},
-/area/crew_quarters/locker)
-"cqy" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 1
},
-/turf/simulated/floor/plasteel{
+/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/locker)
-"cqz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/locker)
-"cqA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ icon_state = "brown"
},
+/area/quartermaster/storage)
+"fbL" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/locker)
-"cqB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/area/hallway/secondary/exit)
+"fbO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/storage/secure/safe{
- pixel_x = 32
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/locker)
-"cqC" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"cqE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cqH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Library"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "brown"
+ },
+/area/quartermaster/qm)
+"fbU" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/library)
-"cqJ" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"cqK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/window/southright{
- dir = 8;
- name = "AI Core Door";
- req_access = null;
- req_access_txt = "16"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "grimy"
},
+/area/crew_quarters/heads/hop)
+"fcN" = (
+/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/turret_protected/ai)
-"cqL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/window/southright{
- dir = 4;
- name = "AI Core Door";
- req_access = null;
- req_access_txt = "16"
+/area/crew_quarters/locker)
+"fcZ" = (
+/obj/machinery/door/airlock/hatch/gamma{
+ locked = 1;
+ req_access_txt = "1";
+ use_power = 0
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plating,
+/area/security/securehallway)
+"fda" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/ai)
-"cqM" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+ dir = 5;
+ icon_state = "darkred"
},
-/turf/simulated/floor/plasteel{
+/area/security/permabrig)
+"fdc" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/maintenance/asmaint)
+"fdj" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Подаёт азот из атмосферки в систему охлаждения реактора, таким образом запитывая её хладагентом";
dir = 4;
- icon_state = "darkbluefull"
- },
-/area/turret_protected/ai)
-"cqN" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
- },
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cqO" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cqP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ name = "Труба подачи азота в реактор"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cqQ" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating/airless,
+/turf/space,
/area/space/nearstation)
-"cqR" = (
-/obj/structure/particle_accelerator/particle_emitter/right{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cqS" = (
-/obj/item/screwdriver,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cqT" = (
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cqU" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cqV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+"fdD" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
},
+/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/southeastcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cqW" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/structure/cable/yellow{
- d1 = 1;
+/area/crew_quarters/locker/locker_toilet)
+"fdQ" = (
+/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cqX" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cqY" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
- },
-/area/engine/engineering)
-"cqZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cra" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor{
- id_tag = "engstorage";
- name = "Secure Storage Blast Doors"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"crb" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/turf/simulated/floor/plasteel{
dir = 8;
- external_pressure_bound = 100;
- on = 1
- },
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"crc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"crd" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cre" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/northwestcorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/quartermaster/qm)
+"fdX" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/bridge/vip)
-"crf" = (
-/obj/machinery/power/tesla_coil,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"crg" = (
-/obj/machinery/power/emitter,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"crh" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cri" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/grille{
+/obj/machinery/door/poddoor{
density = 0;
- icon_state = "brokengrille"
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"crj" = (
+/area/security/permabrig)
+"feb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/obj/structure/girder,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light/small{
- dir = 4
- },
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"crk" = (
-/obj/machinery/camera{
- c_tag = "Library South";
- dir = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/library)
-"crl" = (
-/obj/structure/table/wood,
-/obj/item/storage/pill_bottle/dice,
-/obj/machinery/computer/security/telescreen/entertainment{
+/area/maintenance/fsmaint)
+"fed" = (
+/obj/structure/table/glass,
+/obj/machinery/newscaster{
pixel_y = -32
},
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"crm" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light,
-/obj/machinery/light_switch{
- pixel_x = 4;
- pixel_y = -26
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"crn" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"cro" = (
-/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/computer/med_data/laptop,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"crp" = (
-/obj/structure/table/wood,
-/obj/machinery/alarm{
dir = 8;
- pixel_x = 24
+ icon_state = "cmo"
},
-/obj/item/clipboard,
-/obj/item/toy/figure/librarian,
+/area/medical/cmo)
+"fef" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"crq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/central/sw)
-"crr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/locker)
+"feg" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/toxins/explab)
+"feu" = (
+/obj/structure/table/wood,
+/obj/item/storage/photo_album,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
-/area/hallway/primary/central/sw)
-"crs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Library"
+/area/assembly/showroom)
+"fev" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/range)
+"feD" = (
+/turf/simulated/floor/carpet,
+/area/medical/psych)
+"feE" = (
+/obj/machinery/suit_storage_unit/engine,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/status_display{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/library)
-"cru" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/engine/hardsuitstorage)
+"ffi" = (
+/obj/structure/table,
+/obj/item/folder,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atm{
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"crv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/light,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"crw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway Center 1";
- dir = 1
+ icon_state = "neutralfull"
},
+/area/crew_quarters/locker)
+"ffs" = (
+/obj/structure/closet/wardrobe/pjs,
+/obj/effect/decal/warning_stripes/red,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/bridge/vip)
-"crx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/permabrig)
+"ffK" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/cable{
+/area/security/permabrig)
+"ffP" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"ffR" = (
+/obj/structure/table,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate_sit)
+"fgj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/bridge/vip)
-"cry" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "darkred"
},
-/area/bridge/vip)
-"crz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/permabrig)
+"fgk" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/quartermaster/office)
+"fgv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "darkred"
},
-/obj/machinery/newscaster{
- pixel_y = -32
+/area/security/permabrig)
+"fgB" = (
+/obj/structure/bed,
+/obj/item/bedsheet/blue,
+/obj/machinery/light_switch{
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
-/area/bridge/vip)
-"crA" = (
+/area/crew_quarters/cabin1)
+"fgD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "neutralfull"
},
-/area/bridge/vip)
-"crB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hallway/primary/central/south)
+"fgI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/light/small,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/bridge/vip)
-"crC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "Perma11";
+ name = "First Cell Brig Bolts";
+ normaldoorcontrol = 1;
+ pixel_x = -38;
+ pixel_y = 24;
+ req_access_txt = "2";
+ specialfunctions = 4
},
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "Perma12";
+ name = "First Cell Perma Bolts";
+ normaldoorcontrol = 1;
+ pixel_x = -26;
+ pixel_y = 24;
+ req_access_txt = "2";
+ specialfunctions = 4
+ },
+/obj/machinery/flasher_button{
+ id = "Perma1";
+ layer = 4;
+ name = "Prison Flasher";
pixel_x = -32;
- pixel_y = -32
+ pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "darkred"
},
-/area/bridge/vip)
-"crE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/permabrig)
+"fhd" = (
+/obj/structure/bed,
+/obj/item/bedsheet/syndie,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/security/permabrig)
+"fhY" = (
/obj/structure/chair{
- dir = 8
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/bridge/vip)
-"crF" = (
+/area/crew_quarters/fitness)
+"fif" = (
+/obj/structure/dresser,
+/obj/item/radio/intercom{
+ pixel_x = 26;
+ pixel_y = 28
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin3)
+"fiH" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"fiP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/pointybush,
-/obj/structure/window/reinforced{
- dir = 8
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"fiU" = (
+/obj/machinery/atmospherics/unary/outlet_injector/on,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkred"
},
-/obj/structure/window/reinforced{
- dir = 4
+/area/security/permabrig)
+"fjs" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
},
-/turf/simulated/floor/grass,
-/area/bridge/vip)
-"crG" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
- dir = 4
+/obj/machinery/shower{
+ pixel_y = 20
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/area/bridge/vip)
-"crH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/surgery2)
+"fju" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"fjF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/obj/machinery/atm{
- pixel_y = -32
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "sw_maint2_airlock";
+ name = "interior access button";
+ pixel_x = -24;
+ pixel_y = 24
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"fjL" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/area/hallway/secondary/entry)
-"crI" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_x = 32;
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"fjQ" = (
+/obj/machinery/light/small,
+/obj/structure/sign/poster/contraband/random{
pixel_y = -32
},
+/obj/machinery/vending/boozeomat,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"fjY" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/office)
+"fkh" = (
+/obj/structure/morgue,
+/obj/effect/decal/warning_stripes/northwest,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "darkblue"
},
-/area/bridge/vip)
-"crJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/morgue)
+"fki" = (
+/obj/machinery/status_display/supply_display,
+/turf/simulated/wall,
+/area/quartermaster/office)
+"fkq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/bridge/vip)
-"crK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hallway/secondary/exit)
+"fks" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "BrigLeft";
+ name = "Brig";
+ req_access_txt = "63"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "red"
},
-/area/bridge/vip)
-"crM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/brig)
+"fku" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/closet,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"fkB" = (
+/obj/machinery/hydroponics/constructable{
+ desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays.";
+ name = "Prison hydroponics tray";
+ using_irrigation = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/seeds/wheat/rice,
+/obj/item/seeds/wheat/rice,
+/obj/item/seeds/wheat/rice,
+/obj/effect/decal/warning_stripes/red/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"crN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "dark"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/security/permabrig)
+"fkL" = (
+/obj/effect/decal/warning_stripes/southwest,
+/obj/structure/chair/comfy/purp{
+ dir = 4
},
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "whitepurplefull"
},
-/area/bridge/vip)
-"crO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/research/restroom)
+"fkP" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway Center 2";
- dir = 1
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/obj/machinery/light{
+ dir = 8;
+ pixel_x = 6
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/bridge/vip)
-"crP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/construction/hallway)
+"fkX" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"flo" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/bridge/vip)
-"crQ" = (
+/area/turret_protected/ai)
+"flH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/maintenance/gambling_den)
+"flW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"crR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"fmw" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/se)
-"crS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/medical/research{
+ name = "Research Division"
+ })
+"fmC" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/hallway/primary/central/se)
-"crT" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/light{
dir = 4;
- initialize_directions = 11
+ pixel_x = -6
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/se)
-"crU" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/crew_quarters/courtroom)
-"crV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/vending/wallmed{
- pixel_x = -28
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/area/construction/hallway)
+"fmF" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/hologram/holopad,
+/obj/effect/landmark/start{
+ name = "Station Engineer"
},
-/area/crew_quarters/locker)
-"crW" = (
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/locker)
-"crX" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/engine/hardsuitstorage)
+"fmK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/crew_quarters/locker)
-"crY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/locker)
-"crZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ icon_state = "dark"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/chapel/office)
+"fmL" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 22;
+ id = "syndicate_s";
+ name = "south of station";
+ width = 18
},
+/turf/space,
+/area/space)
+"fmO" = (
+/turf/simulated/floor/engine/co2,
+/area/atmos)
+"fmV" = (
+/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "red"
},
-/area/crew_quarters/locker)
-"csa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/maintenance/fsmaint)
+"fnm" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
- },
-/area/crew_quarters/locker)
-"csc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/starboard/east)
+"fno" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/locker)
-"csi" = (
-/turf/simulated/wall,
-/area/crew_quarters/fitness)
-"csj" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/crew_quarters/fitness)
-"csl" = (
-/obj/structure/window/reinforced,
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"csm" = (
-/obj/machinery/light{
- dir = 4
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research/glass{
+ name = "Robotics Lab";
+ req_access_txt = "29"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"csn" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cso" = (
-/obj/machinery/pipedispenser/disposal,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/mapping_helpers/airlock/unres,
/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"csp" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/assembly/robotics)
+"fnq" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics CO2 Tank";
+ network = list("SS13","Engineering")
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"csq" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/engine/co2,
+/area/atmos)
+"fnr" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ id_tag = "co2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ layer = 2.4;
+ name = "co2 vent";
+ on = 1;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"csr" = (
-/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+/turf/simulated/floor/engine/co2,
+/area/atmos)
+"fnw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 1;
+ name = "Труба дыхательной смеси"
},
-/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SE"
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 4;
+ name = "Труба смешивания"
},
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
},
-/turf/space,
-/area/space/nearstation)
-"css" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door_control{
- id = "engstorage";
- name = "Engineering Secure Storage Control";
- pixel_x = 23;
- pixel_y = 8;
- req_access_txt = "11"
+/area/atmos)
+"fny" = (
+/obj/machinery/atmospherics/binary/pump{
+ desc = "Подаёт углекислый для смешивания с другими газами";
+ dir = 4;
+ name = "Углекислый газ (CO2) в смеситель";
+ target_pressure = 101
},
-/obj/machinery/camera{
- c_tag = "Engineering Central Hall";
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
dir = 1;
- network = list("Engineering","SS13");
- pixel_y = -1
+ name = "Труба фильтрации"
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cst" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/machinery/light/small{
+/obj/structure/window/reinforced{
dir = 8
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"csu" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"csv" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/atmos)
+"fnC" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/atmos)
+"fnI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/southeast,
-/obj/item/wrench,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"csw" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"csx" = (
-/obj/machinery/power/emitter,
-/turf/simulated/floor/plating,
-/area/storage/secure)
-"csy" = (
-/obj/structure/transit_tube{
- icon_state = "W-SE";
- tag = "icon-W-SE"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/space,
-/area/space/nearstation)
-"csz" = (
-/obj/structure/closet/crate{
- name = "solar pack crate"
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"csA" = (
-/obj/structure/rack,
-/obj/item/crowbar/red,
-/obj/item/wrench,
-/obj/item/tank/emergency_oxygen/engi,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 5
+/area/medical/research/nhallway)
+"foa" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"foh" = (
+/obj/machinery/camera{
+ c_tag = "Holodeck Fore"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/stack/tape_roll,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"csB" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/folder/blue,
-/obj/item/firelock_electronics,
-/obj/item/stack/sheet/glass,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/storage/secure)
-"csC" = (
-/obj/structure/table/reinforced,
-/obj/item/airalarm_electronics,
-/obj/item/firealarm_electronics{
- pixel_x = 4;
- pixel_y = 4
+/turf/simulated/floor/engine{
+ name = "Holodeck Projector Floor"
},
-/obj/item/stack/cable_coil/random,
-/obj/item/stock_parts/cell/high,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/storage/secure)
-"csD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/obj/random/toolbox,
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"csE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/holodeck/alphadeck)
+"fos" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 6;
+ name = "Труба дыхательной смеси"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"csF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/mineral_door/wood,
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/atmos)
+"foA" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 2
+ },
+/obj/machinery/disposal,
+/obj/machinery/light{
+ dir = 8
},
-/area/library)
-"csG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/mineral_door/wood,
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
/area/library)
-"csH" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/library)
-"csI" = (
-/obj/machinery/door/morgue{
- name = "Private Study";
- req_access_txt = "37"
+"foE" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12";
+ tag = "icon-swall12"
+ },
+/area/shuttle/pod_4)
+"fpl" = (
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/tcommsat/chamber)
+"fps" = (
+/turf/simulated/wall/r_wall,
+/area/toxins/test_area)
+"fpt" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/siberia)
+"fpN" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/library)
-"csJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall,
-/area/library)
-"csK" = (
-/turf/simulated/wall/r_wall,
-/area/ai_monitored/storage/eva)
-"csL" = (
+"fqa" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"csN" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/bridge/vip)
-"csO" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11
+ icon_state = "pipe-c"
},
-/obj/machinery/light{
- dir = 8
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"csP" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/medical/paramedic)
+"fqf" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 4;
+ name = "Труба дыхательной смеси"
},
-/area/bridge/vip)
-"csQ" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 1;
+ name = "Труба смешивания"
},
-/obj/effect/landmark/start{
- name = "Civilian"
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"fqo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"fqq" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
},
+/area/chapel/main)
+"fqv" = (
+/obj/machinery/computer/security/mining,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/bridge/vip)
-"csR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/crew_quarters/heads/hop)
+"fqG" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 4;
+ name = "Труба дыхательной смеси"
},
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/sunnybush,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 1;
+ name = "Труба фильтрации"
},
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/window/reinforced,
-/turf/simulated/floor/grass,
-/area/bridge/vip)
-"csS" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 6;
+ icon_state = "arrival"
},
-/area/bridge/vip)
-"csT" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/atmos)
+"fre" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/bridge/vip)
-"csU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/area/crew_quarters/locker)
+"frh" = (
+/obj/structure/table/wood,
+/obj/item/dice/d10,
+/obj/item/dice/d20,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
},
-/obj/machinery/light{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/bridge/vip)
-"csV" = (
-/turf/simulated/wall/r_wall,
-/area/gateway)
-"csW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/gateway)
-"csX" = (
+/area/library)
+"fro" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "white"
+ },
+/area/medical/medbay)
+"frp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/area/bridge/vip)
-"csY" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Gateway Access";
- req_access_txt = "62"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"csZ" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/bridge/vip)
-"cta" = (
-/obj/machinery/vending/coffee,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/bridge/vip)
-"ctb" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/area/library)
+"frq" = (
+/obj/effect/landmark{
+ name = "HONKsquad"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"frJ" = (
+/obj/machinery/atmospherics/unary/outlet_injector/on{
dir = 8;
- initialize_directions = 11
+ frequency = 1441;
+ id = "air_in"
+ },
+/turf/simulated/floor/engine/air,
+/area/atmos)
+"frM" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = -32
},
+/obj/structure/chair/stool/bar,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
-/area/hallway/primary/central/se)
-"ctd" = (
+/area/maintenance/gambling_den)
+"frN" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 2;
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/area/crew_quarters/locker)
-"cte" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"fsc" = (
+/obj/structure/grille,
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/light{
+ dir = 8
},
-/area/crew_quarters/locker)
-"ctf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"fsk" = (
+/obj/machinery/light,
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/patron{
+ pixel_y = 7
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_x = 8
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_x = -5
},
-/area/crew_quarters/locker)
-"ctg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/crew_quarters/bar/atrium)
+"fsp" = (
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"fsu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/security/permabrig)
+"fsw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/locker)
-"cth" = (
+/area/hallway/primary/fore)
+"fsz" = (
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 4;
icon_state = "neutralcorner"
},
-/area/crew_quarters/locker)
-"cti" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/area/hallway/primary/fore)
+"fsK" = (
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "freezerfloor"
},
-/area/crew_quarters/locker)
-"ctj" = (
-/obj/structure/disposalpipe/segment{
+/area/crew_quarters/sleep)
+"fsL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/machinery/power/terminal{
+ dir = 1
},
-/area/crew_quarters/locker)
-"ctk" = (
-/obj/machinery/vending/cola,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/bridge/vip)
-"ctl" = (
+/area/engine/engineering)
+"fsZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/hallway/primary/central/west)
+"ftc" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/storage{
+ name = "Perma Maintenance"
+ })
+"ftj" = (
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -58511,5947 +57632,5686 @@
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
-"ctm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+"ftu" = (
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"ftG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"ftP" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/locker)
-"ctn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "brown"
},
-/obj/structure/chair/stool,
-/obj/effect/landmark/start{
- name = "Civilian"
+/area/quartermaster/office)
+"ftZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ name = "Cargo Bay";
+ req_access_txt = "31"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"fui" = (
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/crew_quarters/locker)
-"cto" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/power/smes{
+ charge = 2e+006
},
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"fuj" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/crew_quarters/locker)
-"ctp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/west)
+"fuF" = (
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/structure/table,
-/obj/item/camera,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/crew_quarters/locker)
-"ctq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/area/security/medbay)
+"fuR" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/structure/table,
-/obj/item/camera_film,
-/obj/item/camera_film,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/locker)
-"ctr" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
+/area/quartermaster/storage)
+"fvo" = (
+/obj/effect/decal/warning_stripes/yellow/partial,
+/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"fvs" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "brown"
},
-/area/crew_quarters/locker)
-"cts" = (
+/area/quartermaster/storage)
+"fvu" = (
/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A32";
- location = "A31"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"fvy" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/item/pen{
+ pixel_x = 4;
+ pixel_y = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkblue"
},
-/area/crew_quarters/locker)
-"ctt" = (
-/obj/structure/chair{
- dir = 8
+/area/chapel/main)
+"fvB" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/effect/landmark/start{
- name = "Magistrate"
+/obj/structure/barricade/wooden,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"fvE" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/cable_coil/random,
+/obj/item/multitool,
+/obj/item/stack/rods{
+ amount = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/crew_quarters/courtroom)
-"ctu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/ai_monitored/storage/eva)
+"fvI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"ctv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/firealarm{
+ pixel_y = 24
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"ctw" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
-/area/crew_quarters/fitness)
-"ctx" = (
+/area/bridge/vip)
+"fvQ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "whitegreen"
+ },
+/area/medical/virology)
+"fvU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/area/crew_quarters/fitness)
-"cty" = (
-/obj/structure/table,
-/obj/item/stack/sheet/cloth/ten,
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 8;
icon_state = "neutralcorner"
},
-/area/crew_quarters/fitness)
-"ctz" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 1;
- in_use = 1
+/area/crew_quarters/locker)
+"fvV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/camera{
- c_tag = "Rec Room Fore"
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
-/obj/item/clipboard,
-/obj/item/folder,
-/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ dir = 8;
+ icon_state = "whitegreencorner"
},
-/area/crew_quarters/fitness)
-"ctA" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+/area/medical/virology)
+"fwe" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "laborcamp_home";
+ name = "Labor Camp Airlock";
+ req_access_txt = "2"
},
-/area/crew_quarters/fitness)
-"ctB" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/area/crew_quarters/fitness)
-"ctC" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"fwf" = (
+/obj/structure/table/wood,
+/obj/item/deck/cards,
+/obj/item/deck/cards{
+ pixel_y = 6
},
-/area/crew_quarters/fitness)
-"ctD" = (
-/obj/structure/closet/masks,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "carpet"
},
-/area/crew_quarters/fitness)
-"ctE" = (
-/obj/machinery/door/poddoor/shutters{
+/area/library/abandoned)
+"fwt" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"fwA" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor{
density = 0;
- dir = 8;
- icon_state = "shutter0";
- id_tag = "hopqueueshutters";
- name = "Queue Shutters";
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
opacity = 0
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/arrow{
- dir = 4
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "GYM";
+ name = "Dungeon Privacy Shutters"
},
-/obj/effect/decal/warning_stripes/yellow/partial{
+/turf/simulated/floor/plating,
+/area/security/processing)
+"fwR" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
dir = 4
},
-/obj/machinery/ticket_machine{
- layer = 4;
- pixel_y = 32
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Maintenance";
+ req_access_txt = "12;24"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/west)
-"ctF" = (
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"fxz" = (
/obj/structure/table/reinforced,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
- },
-/obj/item/tank/plasma,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 30
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "yellow"
- },
-/area/engine/engineering)
-"ctG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/status_display{
- pixel_x = 32
+/obj/item/storage/toolbox/electrical,
+/obj/item/clothing/head/welding,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"fxR" = (
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/table/reinforced,
+/obj/item/flash{
+ pixel_x = -4;
+ pixel_y = 2
},
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/light{
- dir = 4
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 7
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"ctH" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/library)
-"ctI" = (
-/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/lattice/catwalk,
+/area/security/permabrig)
+"fxY" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/space,
-/area/space/nearstation)
-"ctJ" = (
-/obj/structure/transit_tube{
- icon_state = "E-NW";
- tag = "icon-E-NW"
- },
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"ctK" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/crayons,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/light/small{
+ dir = 1
},
-/area/library)
-"ctL" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/candle_box,
-/obj/item/storage/fancy/candle_box,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"fye" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/library)
-"ctM" = (
-/obj/structure/dresser,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "darkred"
},
-/area/library)
-"ctN" = (
-/obj/machinery/light_switch{
- pixel_x = 4;
- pixel_y = 26
+/area/security/evidence)
+"fyj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "neutralcorner"
},
-/area/library)
-"ctO" = (
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/hallway/primary/central/west)
+"fyk" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
},
-/area/library)
-"ctP" = (
-/obj/structure/bookcase,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/library)
-"ctQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/sw)
-"ctR" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/cable_coil/random,
-/obj/item/multitool,
-/obj/item/stack/rods{
- amount = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/ai_monitored/storage/eva)
-"ctS" = (
-/obj/effect/spawner/random_spawners/oil_maybe,
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"ctT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
+/area/magistrateoffice)
+"fyp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/light/small{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"ctU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Library"
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"fyt" = (
+/obj/structure/closet/coffin,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/library)
-"ctV" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+/area/chapel/main)
+"fyz" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"fyH" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red{
+ pixel_y = 3
},
-/area/crew_quarters/courtroom)
-"ctW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/book/manual/sop_security,
+/obj/item/stack/tape_roll,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Library"
+/turf/simulated/floor/plasteel{
+ dir = 1
},
+/area/security/customs)
+"fyJ" = (
+/obj/machinery/light/small,
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/library)
-"ctX" = (
+/area/maintenance/xenozoo)
+"fzv" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "E.V.A.";
- req_one_access_txt = "18"
+ icon_state = "0-2"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"ctY" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
+/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"ctZ" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ icon_state = "2-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "GYM";
+ name = "Dungeon Privacy Shutters"
},
/turf/simulated/floor/plating,
-/area/bridge/vip)
-"cua" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/processing)
+"fzL" = (
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkred"
},
+/area/security/permabrig)
+"fzQ" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/structure/table/reinforced,
+/obj/item/implanter/mindshield{
+ pixel_x = 4;
+ pixel_y = 12
},
-/area/bridge/vip)
-"cub" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/item/storage/toolbox/surgery{
+ pixel_y = -6
+ },
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = 30
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"cud" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "darkred"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/processing)
+"fAl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
},
-/area/bridge/vip)
-"cue" = (
+/area/crew_quarters/locker)
+"fAq" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "0-8"
},
-/area/bridge/vip)
-"cuf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 1;
- icon_state = "neutralcorner"
+ id_tag = "GYM";
+ name = "Dungeon Privacy Shutters"
},
-/area/bridge/vip)
-"cug" = (
+/turf/simulated/floor/plating,
+/area/security/processing)
+"fAx" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/area/bridge/vip)
-"cuh" = (
+/turf/simulated/floor/plating,
+/area/security/evidence)
+"fAB" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ icon_state = "1-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
},
/turf/simulated/floor/plating,
-/area/bridge/vip)
-"cui" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/permabrig)
+"fAM" = (
+/obj/structure/table,
+/obj/item/camera,
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/courtroom)
-"cuk" = (
-/obj/structure/closet/secure_closet/exile,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cul" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/security/permabrig)
+"fAR" = (
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway West 2";
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/power/apc{
+/obj/machinery/computer/guestpass{
+ pixel_x = 30
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/west)
+"fBl" = (
+/obj/machinery/blackbox_recorder,
+/obj/machinery/alarm{
dir = 1;
- name = "north bump";
- pixel_y = 24
+ pixel_y = -22
+ },
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"fBo" = (
+/obj/structure/table,
+/obj/item/reagent_containers/glass/beaker/waterbottle,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = -5
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = -5
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cum" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cun" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"fBp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -25
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/medical/sleeper)
+"fBw" = (
+/obj/structure/table/glass,
+/obj/item/clipboard,
+/obj/item/toy/figure/virologist,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "whitegreencorner"
},
-/area/hallway/primary/central/se)
-"cuo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/medical/virology)
+"fBW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 8
},
-/area/hallway/primary/central/se)
-"cup" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "E.V.A.";
- req_one_access_txt = "18"
+/obj/machinery/vending/autodrobe,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"fCi" = (
+/obj/machinery/camera{
+ c_tag = "Fore Hallway South 1";
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cuq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "browncorner"
},
-/area/hallway/secondary/entry/commercial)
-"cur" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/area/hallway/primary/fore)
+"fCp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/crew_quarters/locker)
-"cus" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"fCs" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/hallway/primary/central/nw)
-"cuu" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/assembly/showroom)
+"fCz" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
- on = 1
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/crew_quarters/locker)
-"cuv" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/crew_quarters/locker)
-"cuw" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/crew_quarters/locker)
-"cux" = (
+/area/security/warden)
+"fCJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d2 = 8;
+ icon_state = "1-8";
tag = ""
},
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+ dir = 1
},
-/area/crew_quarters/locker)
-"cuy" = (
-/obj/structure/table,
-/obj/item/storage/fancy/crayons,
+/area/security/processing)
+"fCQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkred"
+ },
+/area/security/permabrig)
+"fCT" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/area/crew_quarters/locker)
-"cuz" = (
-/obj/structure/table,
-/obj/item/folder,
-/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "darkred"
},
-/area/crew_quarters/locker)
-"cuA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/security/permabrig)
+"fDj" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera{
+ c_tag = "Mech Bay External";
+ dir = 4
},
-/obj/structure/table,
-/obj/item/deck/cards,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
},
-/area/crew_quarters/locker)
-"cuB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/chair/stool,
+/area/hallway/primary/aft)
+"fDB" = (
+/obj/machinery/hologram/holopad,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/crew_quarters/locker)
-"cuC" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/main)
+"fEc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/locker)
-"cuD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 1
},
-/obj/structure/closet/wardrobe/black,
+/area/security/range)
+"fEg" = (
+/obj/machinery/recharge_station,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/area/crew_quarters/locker)
-"cuI" = (
+/area/medical/research/nhallway)
+"fEr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/fitness)
-"cuJ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/glass{
- name = "Cabin"
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker)
-"cuK" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Gateway Access";
+ req_access_txt = "62"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Exp_lockdown";
+ name = "Expedition Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"fEt" = (
+/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
+/turf/simulated/floor/plasteel,
+/area/medical/virology)
+"fEz" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "darkred"
},
-/area/crew_quarters/fitness)
-"cuL" = (
+/area/security/podbay)
+"fEC" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ d2 = 2;
+ icon_state = "0-2"
},
+/obj/machinery/gateway/centerstation,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/crew_quarters/fitness)
-"cuM" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/gateway)
+"fEI" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/crew_quarters/fitness)
-"cuN" = (
-/obj/machinery/light/small{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/obj/structure/closet/athletic_mixed,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/area/crew_quarters/fitness)
-"cuO" = (
-/obj/machinery/power/tesla_coil{
- anchored = 1
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
},
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"fEP" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cuP" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/cable/yellow{
+/area/crew_quarters/fitness)
+"fEU" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cuQ" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cuR" = (
-/obj/machinery/pipedispenser,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cuS" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cuT" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/metal/fifty,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/apc_electronics,
-/obj/item/airlock_electronics,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cuU" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/engineering_welding,
-/obj/item/clothing/glasses/welding,
-/obj/item/clothing/glasses/welding,
-/obj/item/clothing/glasses/welding,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cuV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/alarm{
+/area/hallway/secondary/exit)
+"fFf" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
dir = 8;
- pixel_x = 25
+ icon_state = "whitepurple"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cuW" = (
-/obj/machinery/light{
+/area/assembly/robotics)
+"fFm" = (
+/obj/structure/window/reinforced{
dir = 8
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/table/reinforced,
-/obj/item/stack/cable_coil/random,
-/obj/item/reagent_containers/spray/cleaner/drone,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 17";
+ dir = 8;
+ network = list("SS13","MiniSat")
},
-/area/engine/engineering)
-"cuX" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = 24
+/turf/space,
+/area/space/nearstation)
+"fFv" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/gateway)
-"cva" = (
-/obj/machinery/suit_storage_unit/engine,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/southeast,
+/area/crew_quarters/locker/locker_toilet)
+"fFw" = (
+/obj/machinery/porta_turret,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/hardsuitstorage)
-"cvc" = (
-/obj/machinery/suit_storage_unit/engine,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/southwest,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
+/area/turret_protected/ai)
+"fFz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/engine/hardsuitstorage)
-"cvd" = (
-/obj/machinery/suit_storage_unit/engine,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/hallway/primary/starboard/east)
+"fFB" = (
+/obj/machinery/hydroponics/constructable{
+ desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays.";
+ name = "Prison hydroponics tray";
+ using_irrigation = 1
+ },
+/obj/item/seeds/chili,
+/obj/item/seeds/chili,
+/obj/item/seeds/chili,
+/obj/effect/decal/warning_stripes/red/hollow,
/obj/machinery/light{
- dir = 1;
- on = 1
+ dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/engine/hardsuitstorage)
-"cve" = (
-/obj/structure/lattice/catwalk,
-/turf/simulated/wall/r_wall,
-/area/space/nearstation)
-"cvf" = (
-/turf/simulated/wall/r_wall,
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"cvg" = (
-/turf/simulated/wall/r_wall,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"cvh" = (
-/obj/structure/table/wood,
-/obj/machinery/ai_status_display{
- pixel_x = -32
+/obj/item/radio/intercom{
+ pixel_x = 30
},
-/obj/item/clipboard,
-/obj/item/folder,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/library)
-"cvi" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/obj/structure/chair/office/dark,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/area/security/permabrig)
+"fFC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/library)
-"cvj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/chair/office/dark,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"cvk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/hologram/holopad,
-/obj/structure/chair/office/dark,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"cvl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"fFM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/library)
-"cvm" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+ dir = 1;
+ icon_state = "neutral"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/toxins/mixing)
+"fFQ" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_y = -30
},
-/area/library)
-"cvn" = (
-/obj/structure/table/wood,
-/obj/item/storage/briefcase,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/library)
-"cvo" = (
-/obj/structure/cult/archives,
-/obj/machinery/newscaster{
- pixel_x = -32
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"fFR" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/secure_closet/engineering_electrical,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"fGa" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/library)
-"cvp" = (
-/obj/effect/landmark{
- name = "revenantspawn"
+/area/security/podbay)
+"fGj" = (
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"fGt" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "ai2";
+ name = "Turret Shutters"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"fGz" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light/small{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "whitegreencorner"
},
-/area/library)
-"cvq" = (
-/obj/structure/chair/comfy/brown,
-/obj/effect/landmark/start{
- name = "Librarian"
+/area/medical/medbay3)
+"fGA" = (
+/obj/machinery/suit_storage_unit/security/pod_pilot,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/light_switch{
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/library)
-"cvr" = (
-/obj/machinery/newscaster{
- pixel_x = 32
+/area/security/podbay)
+"fGE" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/turf/simulated/wall/r_wall,
+/area/turret_protected/ai)
+"fGK" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/library)
-"cvs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway West 4";
- dir = 4
+/turf/simulated/floor/plating,
+/area/security/reception)
+"fHi" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"fHj" = (
+/obj/structure/table,
+/obj/item/camera_film,
+/obj/item/camera_film,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "neutralfull"
},
-/area/hallway/primary/central/sw)
-"cvt" = (
-/obj/structure/table/reinforced,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/area/crew_quarters/locker)
+"fHp" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door_control{
+ desc = "A remote control-switch for the pod doors.";
+ id = "secpilot";
+ name = "Pod Door Control";
+ pixel_x = 26;
+ pixel_y = 26;
+ req_access_txt = "71"
},
-/obj/item/stack/sheet/plasteel{
- amount = 10
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/item/stack/sheet/rglass{
- amount = 20;
- pixel_x = 3;
- pixel_y = -3
+/area/security/podbay)
+"fHL" = (
+/obj/machinery/computer/security{
+ network = list("SS13","Research Outpost","Mining Outpost")
},
-/obj/item/crowbar,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/ai_monitored/storage/eva)
-"cvu" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/camera{
- c_tag = "Courtroom West";
+/area/security/podbay)
+"fHS" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 3";
+ dir = 4;
+ network = list("SS13","MiniSat")
},
-/area/crew_quarters/courtroom)
-"cvv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/space,
+/area/space/nearstation)
+"fId" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ id_tag = "engstorage";
+ name = "Secure Storage Blast Doors"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cvw" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cvx" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cvy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cvz" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
- dir = 1
+/area/storage/secure)
+"fIg" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"fIi" = (
+/obj/machinery/computer/operating,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cvA" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cvB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery1)
+"fIm" = (
+/obj/machinery/door/airlock/command{
+ name = "Head of Security";
+ req_access_txt = "58"
},
-/area/ai_monitored/storage/eva)
-"cvC" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ icon_state = "1-4"
},
-/turf/simulated/floor/plating,
-/area/ai_monitored/storage/eva)
-"cvD" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "2-4"
},
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/wood,
+/area/security/hos)
+"fIC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"fIE" = (
+/obj/machinery/vending/cart,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/bridge/vip)
-"cvE" = (
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"fIG" = (
+/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 8;
icon_state = "neutralcorner"
},
/area/bridge/vip)
-"cvF" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=V4";
- location = "V3"
- },
-/mob/living/simple_animal/bot/secbot/beepsky{
- desc = "It's Officer Vipsky! Powered by a potato and a shot of whiskey.";
- name = "Officer Vipsky"
- },
-/obj/machinery/atm{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/bridge/vip)
-"cvG" = (
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+"fIH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/bridge/vip)
-"cvH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/turf/simulated/wall/r_wall,
+/area/tcommsat/chamber)
+"fIS" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/area/bridge/vip)
-"cvI" = (
+/turf/simulated/floor/engine/co2,
+/area/atmos)
+"fJd" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "Virology";
+ name = "Virology Shutters"
+ },
/turf/simulated/floor/plating,
-/area/gateway)
-"cvJ" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/rods{
- amount = 8
+/area/medical/virology/lab)
+"fJh" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = -32
},
-/obj/item/storage/toolbox/emergency,
-/obj/item/flashlight,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cvK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/structure/closet/secure_closet/medical1,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cvL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/maintenance/gambling_den)
+"fJp" = (
+/obj/machinery/teleport/hub,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"fKf" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide{
+ anchored = 1
+ },
+/turf/simulated/floor/engine/co2,
+/area/atmos)
+"fKi" = (
+/obj/structure/rack,
+/obj/item/book/manual/engineering_guide,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"fKj" = (
+/obj/structure/chair{
+ dir = 1
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cvM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "carpet"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/crew_quarters/courtroom)
+"fKr" = (
+/obj/machinery/newscaster{
+ pixel_x = 32
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cvN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/wardrobe/atmospherics_yellow,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "caution"
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cvO" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/atmos)
+"fKE" = (
+/obj/structure/window/reinforced,
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 10";
+ dir = 6;
+ network = list("SS13","MiniSat")
},
+/turf/space,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"fKF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/floor/plating,
-/area/gateway)
-"cvP" = (
-/obj/machinery/gateway{
- dir = 9
+/area/maintenance/asmaint)
+"fKI" = (
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/gateway)
-"cvQ" = (
-/obj/machinery/gateway{
- dir = 1
+ dir = 10;
+ icon_state = "red"
},
-/obj/machinery/status_display{
- pixel_y = 32
+/area/security/customs)
+"fKJ" = (
+/obj/structure/table/reinforced,
+/obj/item/radio/intercom{
+ pixel_x = -28
},
+/obj/item/camera,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "darkblue"
},
-/area/gateway)
-"cvR" = (
-/obj/machinery/gateway{
- dir = 5
+/area/turret_protected/aisat)
+"fLk" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/airlock/public/glass{
+ name = "Courtroom";
+ req_access_txt = "63"
},
-/area/gateway)
-"cvT" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/light,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/locker)
-"cvU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ icon_state = "red"
+ },
+/area/crew_quarters/courtroom)
+"fLm" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/crew_quarters/locker)
-"cvV" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/glass{
- name = "Cabin"
+/area/security/permabrig)
+"fLp" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/obj/machinery/door/firedoor,
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/item/extinguisher/mini,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker)
-"cvW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/atmos)
+"fLv" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/hardsuit/medical,
+/obj/item/clothing/mask/gas,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/light,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/westleft{
+ dir = 2;
+ name = "Emergency Hardsuits";
+ req_access_txt = "40"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/crew_quarters/locker)
-"cvX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/biostorage)
+"fLw" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/construction/hallway)
+"fLz" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 1;
+ name = "Труба смешивания"
},
-/obj/item/radio/intercom{
- pixel_y = -28
+/turf/simulated/floor/plating,
+/area/atmos)
+"fLD" = (
+/obj/structure/bed,
+/obj/item/bedsheet/brown,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin2)
+"fLM" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба содержит газ для обработки и после возвращает его обратно в трубу смешивания";
+ name = "Труба обработки"
},
/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"cvY" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/atmos)
+"fMg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/gateway)
-"cvZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/crew_quarters/locker/locker_toilet)
+"fMo" = (
+/obj/machinery/door/window/eastright{
+ dir = 2;
+ name = "Coroner";
+ req_one_access_txt = "5;4"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/medical/morgue)
+"fMt" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/starboardsolar)
+"fMD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/locker)
-"cwa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "grimy"
},
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/door/firedoor,
+/area/chapel/main)
+"fMN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
-/area/crew_quarters/locker)
-"cwb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/area/crew_quarters/sleep)
+"fMS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/crew_quarters/locker)
-"cwc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/locker)
-"cwd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/security/prison/cell_block/A)
+"fMV" = (
+/obj/machinery/power/apc{
dir = 1;
- initialize_directions = 11
+ name = "north bump";
+ pixel_y = 24
},
-/obj/effect/landmark{
- name = "lightsout"
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellowcorner"
},
+/area/hallway/primary/port)
+"fNx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ tag = "icon-pipe-j1 (EAST)"
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
+ },
+/area/medical/sleeper)
+"fNH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/area/crew_quarters/locker)
-"cwe" = (
-/obj/structure/disposalpipe/junction,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 6
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A28";
- location = "A27"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"fNQ" = (
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 26
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "cmo"
},
-/area/crew_quarters/locker)
-"cwf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/closet/wardrobe/grey,
-/obj/machinery/ai_status_display{
- pixel_x = 32
+/area/medical/cmo)
+"fNY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/locker)
-"cwk" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/meter,
/turf/simulated/floor/plating,
-/area/security/execution)
-"cwl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/maintenance/asmaint2)
+"fOa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/wall,
-/area/crew_quarters/fitness)
-"cwm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/radio/intercom{
- pixel_x = -27
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"fOk" = (
+/obj/structure/grille,
+/obj/structure/window/full/shuttle,
+/turf/simulated/shuttle/plating,
+/area/shuttle/pod_4)
+"fOr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/fitness)
-"cwn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ name = "Hydroponics Junction";
+ sortType = 21
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"fOC" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "1-2"
},
-/area/crew_quarters/fitness)
-"cwo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"fOE" = (
/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ dir = 4
},
+/obj/structure/window/reinforced,
+/obj/machinery/arcade/claw,
+/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/fitness)
-"cwp" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/beach/water{
- icon_state = "seadeep"
+"fOK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/crew_quarters/fitness)
-"cwq" = (
-/obj/structure/window/reinforced{
+/obj/machinery/light/small{
dir = 1
},
-/obj/structure/window/reinforced{
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"fON" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/beach/water{
- icon_state = "seadeep"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/area/crew_quarters/fitness)
-"cwr" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "brown"
+ icon_state = "darkred"
},
-/area/quartermaster/office)
-"cws" = (
-/obj/structure/closet/boxinggloves,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+/area/security/prison/cell_block/A)
+"fPi" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/crew_quarters/fitness)
-"cwt" = (
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cwu" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cwv" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"cww" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno6";
+ name = "Creature Cell #6";
+ opacity = 0
},
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"fPA" = (
/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/engine/engineering)
-"cwx" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
-/area/engine/hardsuitstorage)
-"cwy" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/lights/mixed,
-/obj/item/storage/box/lights/mixed{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/lightreplacer{
- pixel_y = 5
- },
-/obj/item/lightreplacer{
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/cobweb{
- layer = 4
+"fPD" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
-/area/engine/hardsuitstorage)
-"cwz" = (
+/area/engine/engineering)
+"fPF" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/light,
+/obj/item/spacepod_key{
+ id = 100000
+ },
+/obj/item/spacepod_equipment/weaponry/laser,
+/obj/item/clothing/suit/jacket/pilot,
+/obj/item/clothing/head/beret/sec,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+ icon_state = "dark"
},
-/area/engine/hardsuitstorage)
-"cwA" = (
+/area/security/podbay)
+"fPX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkbluecorners"
- },
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"cwB" = (
-/obj/structure/table/reinforced,
-/obj/item/tank/jetpack/carbondioxide{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/tank/jetpack/carbondioxide,
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ dir = 1;
+ icon_state = "neutral"
},
-/area/engine/hardsuitstorage)
-"cwC" = (
-/obj/effect/decal/warning_stripes/southwest,
-/obj/spacepod/sec{
- req_access_txt = "71"
+/area/crew_quarters/courtroom)
+"fQh" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "vault"
+ icon_state = "0-2"
},
-/area/security/podbay)
-"cwD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Briefing Room North";
+ network = list("SS13","Security")
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "neutral"
- },
-/area/maintenance/engrooms)
-"cwE" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal,
-/obj/machinery/light{
- dir = 8
+ dir = 1;
+ icon_state = "red"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/security/main)
+"fQu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/library)
-"cwF" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/chair/office/dark{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"cwG" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood,
-/obj/item/paicard,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"fQv" = (
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "yellowfull"
+ },
+/area/engine/engineering)
+"fQy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/library)
-"cwH" = (
/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"fQD" = (
+/obj/structure/chair/comfy/red{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1
},
-/area/library)
-"cwI" = (
+/area/security/brigstaff)
+"fQE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/table/wood,
-/obj/item/newspaper,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/library)
-"cwJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/medbay)
+"fQT" = (
+/obj/structure/closet/secure_closet/roboticist,
+/obj/item/radio/headset/headset_sci{
+ pixel_x = -3
},
-/obj/effect/landmark{
- name = "blobstart"
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/structure/chair/office/dark{
- dir = 8
+/obj/structure/window/reinforced{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 6;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (SOUTHWEST)"
},
-/area/library)
-"cwK" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/area/assembly/robotics)
+"fRj" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 6;
+ icon_state = "darkred"
},
-/area/library)
-"cwL" = (
-/obj/machinery/photocopier,
-/obj/machinery/light{
- dir = 4
+/area/security/evidence)
+"fRt" = (
+/obj/structure/sign/directions/engineering{
+ dir = 8;
+ pixel_y = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/sign/directions/science{
+ dir = 8;
+ pixel_y = 1
},
-/area/library)
-"cwM" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
+/obj/structure/sign/directions/evac{
+ pixel_y = -8
},
-/obj/structure/filingcabinet,
+/turf/simulated/wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"fRL" = (
+/obj/machinery/hydroponics/soil,
/obj/structure/extinguisher_cabinet{
pixel_x = -28
},
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"fRN" = (
+/obj/item/radio/intercom{
+ pixel_x = 26;
+ pixel_y = 28
+ },
+/obj/machinery/cryopod,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "freezerfloor"
},
-/area/library)
-"cwN" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/status_display{
- pixel_y = -32
+/area/crew_quarters/sleep)
+"fRS" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"fRW" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'BOMB RANGE";
+ name = "BOMB RANGE"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/wall/r_wall,
+/area/toxins/test_area)
+"fSj" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/machinery/firealarm{
+ pixel_y = 24
},
-/area/library)
-"cwO" = (
-/obj/structure/table/wood,
-/obj/machinery/light,
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = -28
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"fSo" = (
+/obj/spacepod/sec{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/item/folder,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/library)
-"cwP" = (
-/obj/structure/table/wood,
-/obj/item/camera,
-/obj/machinery/ai_status_display{
- pixel_y = -32
+/area/security/podbay)
+"fSD" = (
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding4"
+ },
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding8"
+ },
+/obj/machinery/light{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "asteroid";
+ tag = "icon-asteroid (NORTH)"
},
-/area/library)
-"cwQ" = (
+/area/hydroponics)
+"fTd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"fTl" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"fTp" = (
+/obj/machinery/hydroponics/soil,
+/obj/machinery/newscaster{
+ pixel_y = 32
},
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"fTs" = (
+/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/sw)
-"cwR" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/area/hallway/primary/central/west)
+"fTu" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ on = 1;
+ pressure_checks = 0;
+ pressure_checks_default = 0
},
-/obj/structure/rack,
-/obj/item/clothing/shoes/magboots{
- pixel_x = -4;
- pixel_y = 3
+/turf/simulated/floor/greengrid{
+ temperature = 80
},
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots{
- pixel_x = 4;
- pixel_y = -3
+/area/toxins/xenobiology)
+"fTC" = (
+/obj/structure/table,
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = -25
},
-/obj/machinery/door/window/southright{
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Public Hall";
dir = 4;
- name = "EVA Equipment"
+ network = list("Medical","SS13")
},
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/ai_monitored/storage/eva)
-"cwS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/medical/reception)
+"fTD" = (
+/obj/structure/table/reinforced,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cwT" = (
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+/obj/machinery/camera{
+ c_tag = "Minisat Hub";
+ dir = 8;
+ network = list("Minisat","SS13")
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cwU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
},
+/area/turret_protected/aisat)
+"fTY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/south,
-/obj/item/radio/beacon,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cwV" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/ai_monitored/storage/eva)
-"cwW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/area/crew_quarters/serviceyard)
+"fUb" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/chair{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cwX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "green"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cwY" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/decal/warning_stripes/yellow,
+/area/hallway/secondary/exit)
+"fUh" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "browncorner";
+ tag = "icon-browncorner (EAST)"
},
-/area/ai_monitored/storage/eva)
-"cwZ" = (
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"fUm" = (
/obj/effect/spawner/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "Genetics";
+ name = "Genetics Privacy Shutters"
},
/turf/simulated/floor/plating,
-/area/assembly/showroom)
-"cxa" = (
-/turf/simulated/wall/r_wall,
-/area/assembly/showroom)
-"cxb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/medical/genetics)
+"fUo" = (
+/obj/effect/landmark{
+ name = "lightsout"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Corporate Lounge";
- req_one_access_txt = "19"
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/wood,
-/area/assembly/showroom)
-"cxc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Corporate Lounge";
- req_one_access_txt = "19"
+/area/crew_quarters/serviceyard)
+"fUr" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/turf/simulated/floor/wood,
-/area/assembly/showroom)
-"cxd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel,
+/area/medical/cmo)
+"fUt" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/crew_quarters/kitchen)
+"fUv" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/condiment/peppermill{
+ pixel_x = 3;
+ pixel_y = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/item/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -3;
+ pixel_y = 11
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"fUO" = (
+/obj/structure/bed,
+/obj/item/bedsheet/cmo,
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/effect/landmark/start{
+ name = "Chief Medical Officer"
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/crew_quarters/locker)
-"cxe" = (
-/obj/structure/bed/roller,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cxf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/medical/cmo)
+"fVc" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/turf/simulated/floor/plasteel{
dir = 8;
- on = 1
+ icon_state = "whitepurple"
+ },
+/area/toxins/mixing)
+"fVj" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Kitchen Dinner Windows";
+ name = "Kitchen Shutters"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/gateway)
-"cxg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/crew_quarters/kitchen)
+"fVn" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cxh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/camera{
+ c_tag = "Xeno Kill Room";
+ network = list("Research","SS13")
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark";
+ temperature = 80
},
+/area/toxins/xenobiology)
+"fVv" = (
+/obj/structure/barricade/wooden,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cxi" = (
-/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/gateway)
-"cxj" = (
-/obj/machinery/gateway{
- dir = 8
+/area/maintenance/fsmaint)
+"fVA" = (
+/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/gateway)
-"cxk" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/library)
+"fVJ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Kitchen Dinner Windows";
+ name = "Kitchen Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/reagent_containers/food/snacks/soup/beetsoup{
+ desc = "With the taste of execution";
+ name = "borsch"
},
-/obj/machinery/gateway/centerstation,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/gateway)
-"cxl" = (
-/obj/machinery/gateway{
- dir = 4
+/area/crew_quarters/kitchen)
+"fVK" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/chair/comfy/black{
+ dir = 8
},
-/area/gateway)
-"cxm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway East 2";
- dir = 4
+/obj/effect/landmark/start{
+ name = "Civilian"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"fVM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/hallway/primary/central/se)
-"cxn" = (
-/turf/simulated/wall,
-/area/crew_quarters/locker/locker_toilet)
-"cxo" = (
-/obj/machinery/door/airlock{
- name = "Unisex Restrooms"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cxp" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/light{
- dir = 8
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/closet/wardrobe/pjs,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "neutralfull"
},
/area/crew_quarters/locker)
-"cxq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+"fVN" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/area/crew_quarters/locker)
-"cxr" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/emergency,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/crew_quarters/locker)
-"cxs" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"fVO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/locker)
-"cxt" = (
-/obj/structure/table,
-/obj/item/storage/briefcase{
- pixel_x = 4;
- pixel_y = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/locker)
-"cxu" = (
+/area/quartermaster/office)
+"fVT" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Morgue Maintenance";
+ req_access_txt = "6"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/crew_quarters/locker)
-"cxv" = (
-/obj/structure/disposalpipe/segment,
+/area/maintenance/asmaint)
+"fVX" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/locker)
-"cxw" = (
+/area/toxins/lab)
+"fWc" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/closet/wardrobe/green,
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/locker)
-"cxx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"fWk" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/alarm{
dir = 8;
- icon_state = "neutralfull"
+ pixel_x = 25
},
-/area/crew_quarters/fitness)
-"cxz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"fWl" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/radio/intercom{
+ pixel_x = 30
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"cxA" = (
-/turf/simulated/floor/beach/water{
- icon_state = "seadeep"
+/obj/machinery/camera{
+ c_tag = "Prison Execution Chamber";
+ dir = 8;
+ network = list("Prison","SS13")
},
-/area/crew_quarters/fitness)
-"cxC" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/quartermaster/office)
-"cxD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 6;
+ icon_state = "darkred"
},
-/area/crew_quarters/fitness)
-"cxE" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cxF" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/donut_box,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cxG" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cxH" = (
+/area/security/execution)
+"fWr" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "HoSPriv";
+ name = "HoS Office Privacy Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/security/hos)
+"fWz" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "yellow"
- },
-/area/engine/hardsuitstorage)
-"cxI" = (
-/obj/structure/showcase{
- density = 0;
- dir = 8;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = 9;
- pixel_y = 2
+ icon_state = "darkred"
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = 6;
- pixel_y = 30
+/area/security/permabrig)
+"fWD" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/cable{
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+ icon_state = "dark"
+ },
+/area/security/podbay)
+"fWL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"cxJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/table,
-/obj/item/paper/pamphlet,
-/obj/item/paper/pamphlet,
-/obj/item/paper/pamphlet,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cxK" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ icon_state = "4-8"
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/engine/hardsuitstorage)
-"cxL" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cxM" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/turf/simulated/floor/plasteel{
+ dir = 1
},
+/area/security/brig)
+"fWP" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "greencorner"
},
+/area/crew_quarters/courtroom)
+"fWS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment,
+/obj/item/flag/nt,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "grimy"
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"cxN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/crew_quarters/heads/hop)
+"fWW" = (
+/obj/effect/decal/warning_stripes/red,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 2
+ },
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/obj/machinery/door_control{
+ id = "SecPilotPriv";
+ name = "Pilot Privacy Shutters Control";
+ pixel_x = 16;
+ pixel_y = 24;
+ req_access_txt = "71"
},
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"cxO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/podbay)
+"fXj" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door_control{
+ id = "xeno6";
+ name = "Containment Control";
+ req_access_txt = "55"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26;
+ pixel_y = 32
},
-/area/bridge/vip)
-"cxP" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/engineering_welding,
-/obj/item/clothing/glasses/welding,
-/obj/item/clothing/glasses/welding,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"fXt" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Kitchen Dinner Windows";
+ name = "Kitchen Shutters"
},
-/area/engine/hardsuitstorage)
-"cxQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/kitchen/utensil/fork{
+ pixel_x = -2
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cxS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/kitchen/utensil/fork{
+ pixel_x = -2
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/obj/item/kitchen/utensil/fork{
+ pixel_x = -2
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"cxU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/item/kitchen/utensil/fork{
+ pixel_x = -2
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/obj/item/kitchen/utensil/fork{
+ pixel_x = -2
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"cxV" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
+/obj/item/kitchen/utensil/spoon{
+ pixel_x = 10
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/item/kitchen/utensil/spoon{
+ pixel_x = 10
},
-/area/library)
-"cxW" = (
-/obj/structure/chair/office/dark{
- dir = 4
+/obj/item/kitchen/utensil/spoon{
+ pixel_x = 10
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/item/kitchen/utensil/spoon{
+ pixel_x = 10
+ },
+/obj/item/kitchen/utensil/spoon{
+ pixel_x = 10
+ },
+/obj/item/kitchen/utensil/fork{
+ pixel_x = -2
+ },
+/obj/item/kitchen/utensil/fork{
+ pixel_x = -2
+ },
+/obj/item/kitchen/utensil/fork{
+ pixel_x = -2
+ },
+/obj/item/kitchen/utensil/fork{
+ pixel_x = -2
+ },
+/obj/item/kitchen/utensil/spoon{
+ pixel_x = 10
+ },
+/obj/item/kitchen/utensil/spoon{
+ pixel_x = 10
+ },
+/obj/item/kitchen/utensil/spoon{
+ pixel_x = 10
},
-/area/library)
-"cxX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood,
-/obj/item/storage/pill_bottle/dice,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "white"
},
-/area/library)
-"cxY" = (
+/area/crew_quarters/kitchen)
+"fXv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/table/wood,
-/obj/item/deck/cards,
-/obj/item/deck/cards{
- pixel_y = 6
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/library)
-"cxZ" = (
-/obj/structure/table/wood,
-/obj/item/taperecorder,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/lawoffice)
+"fXx" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/surgery{
+ pixel_y = 2
+ },
+/obj/structure/sink{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
},
-/area/library)
-"cya" = (
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/area/library)
-"cyb" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/newscaster{
- pixel_x = 32
+/area/assembly/robotics)
+"fXD" = (
+/obj/effect/decal/cleanable/blood/xeno,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
+/area/maintenance/xenozoo)
+"fXK" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light,
+/obj/item/storage/belt/utility,
+/obj/item/radio,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/library)
-"cyc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/library)
-"cyd" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+/area/ai_monitored/storage/eva)
+"fXN" = (
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 18";
dir = 1;
- layer = 2.9
+ network = list("SS13","MiniSat")
},
-/obj/structure/closet/crate/rcd,
-/obj/machinery/door/window/southright{
- dir = 4;
- name = "EVA Equipment"
+/turf/space,
+/area/space/nearstation)
+"fXQ" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ layer = 2.4;
+ on = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "whitepurple"
},
-/area/ai_monitored/storage/eva)
-"cye" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cyf" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/decal/warning_stripes/yellow,
+/area/toxins/xenobiology)
+"fXV" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/ai_monitored/storage/eva)
-"cyg" = (
-/turf/simulated/wall,
-/area/ai_monitored/storage/eva)
-"cyh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ dir = 10;
+ icon_state = "darkred"
},
-/obj/structure/window/reinforced{
- dir = 4
+/area/security/interrogation)
+"fXZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/window/reinforced,
-/obj/structure/showcase,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/assembly/showroom)
-"cyi" = (
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/assembly/showroom)
-"cyj" = (
+/area/crew_quarters/fitness)
+"fYm" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/assembly/showroom)
-"cyk" = (
+"fYu" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"fYB" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ name = "Труба смешивания"
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "caution"
+ },
+/area/atmos)
+"fYM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/assembly/showroom)
-"cyl" = (
-/obj/machinery/ai_status_display{
- pixel_y = 32
+"fYR" = (
+/obj/machinery/door/airlock/public{
+ name = "Kitchen";
+ req_access_txt = "28"
},
-/obj/machinery/camera{
- c_tag = "Showroom"
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
+ },
+/area/crew_quarters/kitchen)
+"fYZ" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"fZf" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "vault"
+ icon_state = "white"
},
-/area/assembly/showroom)
-"cym" = (
+/area/assembly/robotics)
+"fZm" = (
+/obj/item/radio/beacon/engine/tesling,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"fZr" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault"
+ icon_state = "red"
},
-/area/assembly/showroom)
-"cyn" = (
-/obj/machinery/status_display{
- pixel_y = 32
+/area/security/armoury)
+"fZs" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "vault"
+ icon_state = "grimy"
},
/area/assembly/showroom)
-"cyo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
+"fZE" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
/area/assembly/showroom)
-"cyp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+"fZL" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 9;
+ name = "Труба смешивания"
},
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/light{
+ dir = 1
},
-/obj/structure/showcase,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1;
+ icon_state = "caution"
},
-/area/assembly/showroom)
-"cyq" = (
+/area/atmos)
+"gah" = (
+/obj/item/twohanded/required/kirbyplants,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cyr" = (
-/obj/structure/rack,
-/obj/machinery/camera{
- c_tag = "Gateway Access";
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/structure/closet/medical_wall{
- pixel_x = -32
- },
-/obj/item/stack/medical/bruise_pack,
-/obj/item/stack/medical/bruise_pack/advanced,
-/obj/item/stack/medical/ointment,
-/obj/item/stack/medical/ointment/advanced,
-/obj/item/reagent_containers/glass/bottle/charcoal,
-/obj/item/reagent_containers/glass/bottle/morphine,
-/obj/item/reagent_containers/syringe,
-/obj/item/storage/pill_bottle/painkillers,
-/obj/item/reagent_containers/food/pill/patch/styptic,
-/obj/item/reagent_containers/food/pill/patch/silver_sulf,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cys" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/gateway)
-"cyt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cyu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cyv" = (
-/turf/simulated/wall,
-/area/gateway)
-"cyw" = (
-/obj/machinery/gateway{
- dir = 10
- },
-/obj/machinery/light{
- dir = 8
+ dir = 4;
+ icon_state = "green"
},
-/obj/effect/landmark{
- name = "JoinLateGateway"
+/area/hallway/secondary/exit)
+"gat" = (
+/obj/machinery/camera{
+ c_tag = "Fore Hallway South 2";
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/gateway)
-"cyx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/gateway{
- density = 0
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/obj/effect/landmark{
- name = "JoinLateGateway"
+/area/hallway/primary/fore)
+"gay" = (
+/obj/structure/chair/office/light,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/gateway)
-"cyy" = (
-/obj/machinery/gateway{
- dir = 6
+/area/medical/ward)
+"gaE" = (
+/obj/structure/table/wood,
+/obj/item/paicard,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/camera{
- c_tag = "Gateway";
+/area/assembly/showroom)
+"gaJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
-/obj/effect/landmark{
- name = "JoinLateGateway"
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/gateway)
-"cyz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/radio/intercom{
- dir = 0;
- pixel_x = -28
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/se)
-"cyA" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/area/maintenance/gambling_den)
+"gbp" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/area/hallway/primary/central/se)
-"cyC" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/light{
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai)
+"gbI" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"gbQ" = (
+/obj/machinery/disposal,
+/obj/machinery/firealarm{
dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/locker/locker_toilet)
-"cyD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ pixel_y = -24
},
-/obj/machinery/shower{
- dir = 8;
- tag = "icon-shower (WEST)"
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/structure/curtain/open/shower,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ dir = 10;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/crew_quarters/locker/locker_toilet)
-"cyE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/medical/cryo)
+"gbS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/wall,
-/area/crew_quarters/locker/locker_toilet)
-"cyF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cyG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cyH" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cyI" = (
-/obj/machinery/light{
- dir = 4
+/turf/simulated/floor/plating,
+/area/security/brig)
+"gbW" = (
+/obj/structure/table/reinforced,
+/obj/item/folder,
+/obj/item/stack/tape_roll,
+/obj/machinery/light_switch{
+ pixel_x = 24
},
-/obj/structure/dispenser/oxygen,
-/obj/item/radio/intercom{
+/obj/item/rcs,
+/turf/simulated/floor/plasteel{
dir = 4;
- pixel_x = 28
+ icon_state = "brown"
},
-/obj/effect/decal/warning_stripes/yellow,
+/area/quartermaster/office)
+"gca" = (
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/gateway)
-"cyJ" = (
+/area/atmos)
+"gcg" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ai_monitored/storage/eva)
+"gcj" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA"
+ },
+/turf/simulated/wall/r_wall,
+/area/engine/engineering)
+"gcs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Virology Office";
+ req_access_txt = "39"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/chair{
- dir = 1
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/medical/virology)
+"gcx" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "HoSPriv";
+ name = "HoS Office Privacy Shutters"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/area/crew_quarters/courtroom)
-"cyK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plating,
+/area/security/hos)
+"gds" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"gdv" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
+ },
+/turf/simulated/wall/r_wall,
+/area/engine/mechanic_workshop/hangar)
+"gdw" = (
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
+ },
+/obj/machinery/computer/cryopod{
+ pixel_y = 32
},
/obj/machinery/camera{
- c_tag = "Locker Room South";
- dir = 5
+ c_tag = "Cryodorms Fore"
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
},
-/obj/structure/closet/wardrobe/xenos,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "freezerfloor"
},
-/area/crew_quarters/locker)
-"cyL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/sleep)
+"gdD" = (
+/obj/machinery/mech_bay_recharge_port,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/maintenance/electrical)
+"gdQ" = (
+/obj/machinery/ai_status_display{
+ pixel_y = -32
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/secure_closet/cargotech,
+/obj/item/stamp/granted,
+/obj/item/stamp/denied,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "brown"
},
-/area/crew_quarters/locker)
-"cyM" = (
+/area/quartermaster/storage)
+"gdV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/chair/comfy/brown{
+ dir = 1
},
-/obj/structure/chair/stool,
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"geb" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "yellow"
},
-/area/crew_quarters/locker)
-"cyN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/engine/engineering)
+"geg" = (
+/obj/machinery/door/airlock{
+ id_tag = "toilet3";
+ name = "Toilet"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"gem" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/obj/structure/table,
-/obj/item/folder,
-/obj/item/pen,
+/obj/machinery/disposal,
+/obj/machinery/light,
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_y = -27
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "purple"
},
-/area/crew_quarters/locker)
-"cyO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/quartermaster/storage)
+"geA" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/hallway/secondary/exit)
+"geP" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hallway/primary/central/se)
+"gff" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1;
+ tag = "icon-propulsion (NORTH)"
},
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate_sit)
+"gfk" = (
+/obj/item/paper_bin,
/obj/structure/table,
-/obj/item/paicard,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "brown"
},
-/area/crew_quarters/locker)
-"cyP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/quartermaster/qm)
+"gfJ" = (
+/obj/structure/closet/wardrobe/white,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHWEST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/ward)
+"gfO" = (
+/obj/machinery/door_control{
+ id = "Kitchen Hall Windows";
+ name = "Kitchen Hallway Shutters Control";
+ pixel_x = 26;
+ pixel_y = 24;
+ req_access_txt = "28"
},
-/obj/structure/table,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/crew_quarters/locker)
-"cyQ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/crew_quarters/kitchen)
+"gfQ" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hallway/primary/central/sw)
+"ggf" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Quartermaster's Office";
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair/stool,
-/obj/effect/landmark/start{
- name = "Civilian"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "brown"
+ },
+/area/quartermaster/qm)
+"ggx" = (
+/obj/machinery/door/airlock{
+ id_tag = "toilet2";
+ name = "Toilet"
},
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"ggB" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/crew_quarters/locker)
-"cyR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering Storage";
+ req_access_txt = "32"
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/locker)
-"cyS" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/turf/simulated/floor/plasteel,
+/area/engine/hardsuitstorage)
+"ggC" = (
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/area/medical/sleeper)
+"ggD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/structure/closet/wardrobe/pink,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
/area/crew_quarters/locker)
-"cyT" = (
-/obj/structure/dresser,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+"ggP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Bar"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"ggQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_state = "red"
},
-/area/crew_quarters/cabin1)
-"cyU" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_y = 32
+/area/security/customs)
+"ggU" = (
+/obj/structure/closet/l3closet/virology,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/light/small,
+/obj/item/radio/intercom{
+ pixel_x = -28
},
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/item/clothing/suit/leathercoat,
-/obj/item/clothing/head/fedora,
-/obj/item/clothing/under/blacktango,
-/obj/item/clothing/head/bowlerhat,
-/obj/machinery/light{
- dir = 1;
- in_use = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/medical/virology)
+"gha" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/effect/decal/warning_stripes/west,
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/cabin1)
-"cyV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"ghg" = (
/obj/structure/table/wood,
+/obj/machinery/light/small{
+ dir = 8
+ },
/obj/item/radio/intercom{
- pixel_x = 26;
- pixel_y = 28
+ dir = 1;
+ pixel_x = -32
},
-/obj/item/reagent_containers/food/snacks/grown/poppy/geranium,
-/obj/item/reagent_containers/food/snacks/grown/poppy/geranium,
-/obj/item/reagent_containers/food/snacks/grown/poppy/geranium,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/crew_quarters/cabin1)
-"cyW" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/machinery/status_display{
- layer = 4;
- pixel_y = 32
+/area/maintenance/gambling_den)
+"ghk" = (
+/obj/structure/table/glass,
+/obj/item/folder/white,
+/obj/item/flashlight/pen,
+/obj/item/clothing/accessory/stethoscope,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
},
-/obj/item/pen,
-/obj/machinery/light{
- dir = 1;
- in_use = 1
+/area/medical/cmo)
+"ghI" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"ghN" = (
+/obj/structure/table,
+/obj/item/paicard,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ghY" = (
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "cabin2";
+ name = "Door Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_y = -25;
+ specialfunctions = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/cabin2)
-"cyX" = (
-/obj/item/radio/intercom{
- pixel_x = 26;
- pixel_y = 28
+"gig" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/item/clothing/under/lawyer/black,
-/obj/item/clothing/under/lawyer/blue,
-/obj/item/clothing/under/kilt,
-/obj/item/clothing/head/beret,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno1";
+ name = "Creature Cell #1";
+ opacity = 0
},
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"gih" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start{
+ name = "Roboticist"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin2)
-"cyY" = (
-/obj/machinery/cryopod/right,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ icon_state = "white"
},
-/area/crew_quarters/sleep)
-"cyZ" = (
-/obj/machinery/light{
- dir = 1;
- in_use = 1
+/area/assembly/robotics)
+"gik" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "rampbottom";
+ tag = "icon-stage_stairs"
},
-/obj/machinery/computer/cryopod{
- pixel_y = 32
+/area/medical/research{
+ name = "Research Division"
+ })
+"gio" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 7
},
-/obj/machinery/camera{
- c_tag = "Cryodorms Fore"
+/obj/item/pen{
+ pixel_x = 4;
+ pixel_y = 4
},
-/obj/effect/landmark{
- name = "JoinLateCryo"
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"gjh" = (
+/obj/structure/dresser,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
},
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin2)
+"gjm" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/crew_quarters/sleep)
-"cza" = (
-/obj/machinery/cryopod,
-/obj/item/radio/intercom{
- pixel_x = 26;
- pixel_y = 28
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/turret_protected/aisat)
+"gjD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
-/area/crew_quarters/sleep)
-"czb" = (
-/obj/machinery/vending/coffee,
-/obj/machinery/light{
- dir = 8
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"gjV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/area/crew_quarters/fitness)
-"czc" = (
+/area/toxins/lab)
+"gkk" = (
+/obj/structure/transit_tube{
+ icon_state = "D-NW";
+ tag = "icon-D-NW"
+ },
+/turf/space,
+/area/space/nearstation)
+"gko" = (
+/obj/effect/decal/warning_stripes/south,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "darkred"
},
-/area/crew_quarters/fitness)
-"czd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/podbay)
+"gku" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/grown/redbeet{
+ pixel_y = 5
},
-/obj/structure/chair{
- dir = 1
+/turf/simulated/floor/carpet,
+/area/maintenance/fsmaint)
+"gkw" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "brown"
},
+/area/quartermaster/qm)
+"gkD" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"gkQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "4-8"
},
-/area/crew_quarters/courtroom)
-"cze" = (
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/fitness)
-"czf" = (
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/beach/water{
- icon_state = "seadeep"
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Cargo Junction";
+ sortType = 2
},
-/area/crew_quarters/fitness)
-"czg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/fitness)
-"czh" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
+/area/hallway/primary/central/north)
+"gkY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
+ dir = 8;
initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/fitness)
-"czi" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"czj" = (
-/obj/machinery/light_switch{
- pixel_x = -26;
- pixel_y = 26
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- icon_state = "yellow"
- },
-/area/engine/engineering)
-"czk" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ initialize_directions = 11
},
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/flashlight,
/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
+ icon_state = "white"
},
-/area/engine/engineering)
-"czl" = (
+/area/medical/research/shallway)
+"glb" = (
/obj/structure/table/reinforced,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
+/obj/item/storage/bible,
+/obj/item/reagent_containers/food/drinks/bottle/holywater,
/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
+ dir = 1;
+ icon_state = "darkred"
},
-/area/engine/engineering)
-"czm" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/fire,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "yellow"
+/area/security/processing)
+"gld" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/engine/engineering)
-"czn" = (
-/obj/machinery/vending/tool,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/hardsuitstorage)
-"czo" = (
-/obj/structure/showcase{
- density = 0;
- dir = 8;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = 9;
- pixel_y = 2
- },
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+/area/security/evidence)
+"glp" = (
+/obj/machinery/light{
+ dir = 8
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"czp" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northeast,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/machinery/status_display{
+ pixel_x = -32
},
-/obj/structure/closet/secure_closet/atmos_personal,
+/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
-/area/atmos)
-"czr" = (
-/obj/effect/landmark/start{
- name = "Station Engineer"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
/area/engine/engineering)
-"czs" = (
+"glv" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/medical{
+ name = "Virology Bedroom";
+ req_access_txt = "39"
},
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/medical/virology)
+"glw" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A37";
+ location = "A36"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Storage";
- req_access_txt = "32"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/turf/simulated/floor/plasteel,
-/area/engine/hardsuitstorage)
-"czt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/north)
+"glA" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/rack,
-/obj/item/flashlight{
+/obj/item/airlock_painter{
pixel_x = -6;
- pixel_y = 9
- },
-/obj/item/flashlight{
- pixel_x = -3;
pixel_y = 6
},
-/obj/item/flashlight{
+/obj/item/airlock_painter{
+ pixel_x = -3;
pixel_y = 3
},
-/obj/item/flashlight{
- pixel_x = 3
- },
-/obj/item/flashlight{
- pixel_x = 6;
+/obj/item/airlock_painter,
+/obj/item/airlock_painter{
+ pixel_x = 3;
pixel_y = -3
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/item/airlock_painter{
+ pixel_x = 6;
+ pixel_y = -6
},
-/area/engine/hardsuitstorage)
-"czu" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/engineering_electrical,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/engine/hardsuitstorage)
-"czv" = (
-/obj/machinery/light{
+"glJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 27
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/t_scanner,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/engine/hardsuitstorage)
-"czw" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"czx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/area/maintenance/port{
+ name = "Brig Maintenance"
})
-"czy" = (
-/obj/structure/table/wood,
-/obj/machinery/status_display{
- pixel_x = -32
+"glQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/item/newspaper,
-/obj/item/newspaper,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/library)
-"czz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/obj/structure/chair/office/dark{
- dir = 1
+/area/security/processing)
+"glR" = (
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 9;
+ icon_state = "red"
},
-/area/library)
-"czA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/security/customs)
+"glT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/library)
-"czB" = (
+/obj/effect/decal/warning_stripes/northeastcorner,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"czC" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/bridge/vip)
+"gmk" = (
+/obj/structure/cult/archives,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
/area/library)
-"czD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+"gmA" = (
+/obj/structure/table,
+/obj/item/storage/box/evidence,
+/obj/item/storage/box/evidence,
+/obj/item/hand_labeler,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"czE" = (
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/area/security/evidence)
+"gmI" = (
+/obj/machinery/camera{
+ c_tag = "Engine Room South";
+ dir = 1;
+ network = list("Engineering","SS13")
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"czG" = (
-/obj/machinery/space_heater,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"czH" = (
-/obj/machinery/light/small{
+/obj/effect/decal/warning_stripes/south,
+/obj/structure/window/reinforced{
dir = 8
},
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/suit_storage_unit/engine,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"czI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"czJ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"gnf" = (
+/turf/simulated/wall,
+/area/crew_quarters/cabin2)
+"gnn" = (
+/obj/structure/table/wood,
+/obj/machinery/status_display{
+ pixel_y = -32
},
+/obj/machinery/light,
+/obj/item/paicard,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/wood,
-/area/assembly/showroom)
-"czK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/cabin3)
+"gnv" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/wood,
-/area/assembly/showroom)
-"czL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/security/evidence)
+"gnI" = (
+/obj/structure/table,
+/obj/item/storage/fancy/crayons,
+/obj/item/storage/fancy/crayons{
+ pixel_x = 3;
+ pixel_y = 3
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/security/permabrig)
+"gnK" = (
+/obj/machinery/light,
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/medbay3)
+"gnR" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
+ dir = 1;
initialize_directions = 11
},
-/turf/simulated/floor/wood,
-/area/assembly/showroom)
-"czM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/assembly/showroom)
-"czN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/structure/table/wood,
-/obj/item/storage/fancy/donut_box,
-/turf/simulated/floor/carpet,
-/area/assembly/showroom)
-"czO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/whiskey,
-/turf/simulated/floor/carpet,
-/area/assembly/showroom)
-"czP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hallway/primary/port)
+"gnV" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/structure/closet/radiation,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/obj/structure/chair/comfy/black{
- dir = 8
+/area/medical/biostorage)
+"gof" = (
+/obj/structure/table,
+/obj/item/instrument/harmonica,
+/obj/item/dice/d20,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
},
-/turf/simulated/floor/carpet,
-/area/assembly/showroom)
-"czQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/turf/simulated/floor/carpet,
-/area/assembly/showroom)
-"czR" = (
+/area/security/permabrig)
+"goz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/assembly/showroom)
-"czS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/turf/simulated/floor/wood,
-/area/assembly/showroom)
-"czT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/turf/simulated/floor/wood,
-/area/assembly/showroom)
-"czU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/sleeper)
+"goA" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door_control{
+ id = "xeno3";
+ name = "Containment Control";
+ req_access_txt = "55"
},
-/obj/structure/urinal{
- pixel_y = 28
+/obj/structure/window/reinforced{
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"czV" = (
+/area/toxins/xenobiology)
+"goC" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xenosecure";
+ name = "Secure Creature Cell";
+ opacity = 0
},
-/area/gateway)
-"czW" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"czX" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"czY" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
+/obj/effect/spawner/window/reinforced/plasma,
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"goI" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plating,
-/area/gateway)
-"czZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/decal/warning_stripes/northeast,
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"goP" = (
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/gateway)
-"cAa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+"goS" = (
+/obj/item/flag/nt,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cAb" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/ai)
+"goZ" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "SecPilotPriv"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cAc" = (
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/turf/simulated/floor/plating,
+/area/security/podbay)
+"gps" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/area/crew_quarters/locker/locker_toilet)
-"cAd" = (
-/obj/effect/landmark/start{
- name = "Civilian"
+/turf/simulated/floor/plating,
+/area/security/securehallway)
+"gpA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/bikehorn/rubberducky,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/crew_quarters/locker/locker_toilet)
-"cAe" = (
-/obj/machinery/door/airlock{
- name = "Unisex Showers"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Research Director's Office";
+ req_access = null;
+ req_access_txt = "30"
},
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/locker/locker_toilet)
-"cAf" = (
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cAg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cAh" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cAi" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/area/crew_quarters/hor)
+"gpE" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cAj" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cAk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/vending/autodrobe,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/crew_quarters/locker)
-"cAl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/turret_protected/ai)
+"gpH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "red"
},
-/area/crew_quarters/locker)
-"cAm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/closet/wardrobe/mixed,
+/area/security/brig)
+"gpS" = (
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "whitepurple"
},
-/area/crew_quarters/locker)
-"cAn" = (
-/obj/structure/bed,
-/obj/item/bedsheet/blue,
-/obj/machinery/light_switch{
- pixel_x = 24
+/area/medical/research/restroom)
+"gpV" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/light,
+/obj/item/radio/intercom{
+ pixel_y = -28
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"gqd" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/crew_quarters/cabin1)
-"cAo" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/razor,
-/obj/machinery/light_switch{
- pixel_x = -24
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin2)
-"cAp" = (
-/obj/structure/chair/office/dark{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin2)
-"cAq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "yellow"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin2)
-"cAr" = (
-/obj/effect/landmark{
- name = "JoinLateCryo"
+/area/engine/engineering/monitor)
+"gqf" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Head of Security's Desk";
+ departmentType = 5;
+ name = "Head of Security Requests Console";
+ pixel_y = 30
},
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/area/crew_quarters/sleep)
-"cAs" = (
-/obj/machinery/cryopod,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ icon_state = "dark"
},
-/area/crew_quarters/sleep)
-"cAt" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/area/security/hos)
+"gqh" = (
+/obj/structure/rack,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/northwest,
+/obj/item/stack/sheet/metal{
+ amount = 50
},
-/area/crew_quarters/fitness)
-"cAu" = (
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+/obj/item/stack/sheet/metal{
+ amount = 50
},
-/area/crew_quarters/fitness)
-"cAv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair{
- dir = 4
+/obj/item/radio/intercom{
+ pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/crew_quarters/fitness)
-"cAw" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/area/engine/hardsuitstorage)
+"gqS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/fitness)
-"cAx" = (
-/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/fitness)
-"cAy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/wall,
-/area/crew_quarters/fitness)
-"cAz" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ tag = "icon-pipe-j1 (EAST)"
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/fitness)
-"cAB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/turf/simulated/floor/plasteel{
dir = 8;
- initialize_directions = 11
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cAC" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/west,
+/area/hallway/primary/central/sw)
+"gra" = (
/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
+ dir = 4;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/area/engine/engineering)
-"cAD" = (
-/obj/machinery/light{
+/area/medical/sleeper)
+"gre" = (
+/obj/structure/chair/office/dark{
dir = 8
},
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cAE" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cAF" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cAG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/engineering)
-"cAH" = (
-/obj/structure/chair{
- dir = 4
+ icon_state = "grimy"
},
-/obj/structure/disposalpipe/junction{
- dir = 8;
- tag = "icon-pipe-j1 (EAST)"
+/area/library/abandoned)
+"grm" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
-"cAI" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/medbay3)
+"grq" = (
+/turf/simulated/wall,
+/area/quartermaster/office)
+"grN" = (
+/obj/machinery/light/small{
+ dir = 1
},
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/radiation,
/turf/simulated/floor/plating,
-/area/engine/hardsuitstorage)
-"cAJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
+/area/maintenance/asmaint)
+"grQ" = (
+/obj/machinery/light/small{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
})
-"cAK" = (
-/obj/structure/dispenser,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/eastsouthwest,
+"grU" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/power/apc{
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "SecMedPriv"
+ },
+/turf/simulated/floor/plating,
+/area/security/medbay)
+"grW" = (
+/obj/item/radio/intercom{
dir = 1;
- name = "north bump Engineering";
- pixel_y = 24;
- shock_proof = 1
+ pixel_y = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/south)
+"gsc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/engine/hardsuitstorage)
-"cAL" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ icon_state = "dark"
+ },
+/area/toxins/explab)
+"gss" = (
+/obj/item/flag/nt,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
},
-/area/engine/hardsuitstorage)
-"cAM" = (
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "yellow"
+ icon_state = "dark"
},
-/area/engine/hardsuitstorage)
-"cAN" = (
+/area/turret_protected/ai)
+"gsC" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cAO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/chair/office/dark{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
- },
-/area/engine/hardsuitstorage)
-"cAP" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
+ icon_state = "purple"
},
-/area/engine/hardsuitstorage)
-"cAQ" = (
-/obj/machinery/vending/engivend,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/quartermaster/miningdock)
+"gsD" = (
+/obj/structure/chair/comfy/teal{
+ dir = 4
},
-/area/engine/hardsuitstorage)
-"cAR" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/glass/fifty{
- pixel_x = 6;
- pixel_y = 3
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/crowbar/red,
+/obj/structure/cable,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/hardsuitstorage)
-"cAS" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/rack,
-/obj/item/floor_painter{
- pixel_x = -6;
- pixel_y = 6
- },
-/obj/item/floor_painter{
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/item/floor_painter,
-/obj/item/floor_painter{
- pixel_x = 3;
- pixel_y = -3
+/area/medical/medbay3)
+"gsG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/floor_painter{
- pixel_x = 6;
- pixel_y = -6
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHWEST)"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/medical/sleeper)
+"gsN" = (
+/obj/machinery/sleeper{
+ dir = 4;
+ pixel_x = -3
},
+/obj/effect/decal/warning_stripes/blue/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/engine/hardsuitstorage)
-"cAT" = (
-/obj/structure/table/wood,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
+/area/medical/sleeper)
+"gsY" = (
+/obj/structure/chair{
+ dir = 4
},
-/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/processing)
+"gtc" = (
+/obj/structure/closet/radiation,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"gtD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/library)
-"cAU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = -28
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/library)
-"cAV" = (
+/area/crew_quarters/captain/bedroom)
+"gtP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/obj/machinery/light,
-/obj/structure/dresser,
-/obj/machinery/camera{
- c_tag = "Library Backroom";
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/central/west)
+"gtS" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"gui" = (
+/obj/structure/rack,
+/obj/item/target/syndicate,
+/obj/item/target/syndicate,
+/obj/item/target/syndicate,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel,
+/area/security/range)
+"guk" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "whitebluecorner";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/library)
-"cAW" = (
-/obj/structure/table/wood,
-/obj/item/dice/d10,
-/obj/item/dice/d20,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = -32
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"gum" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/space/nearstation)
+"guD" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/area/library)
-"cAX" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/power/apc{
dir = 1;
- icon_state = "pipe-c"
+ name = "north bump";
+ pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/filingcabinet,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/library)
-"cAY" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/library)
-"cAZ" = (
+/area/chapel/office)
+"guF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/stool,
-/turf/simulated/floor/plating,
-/area/maintenance/engrooms)
-"cBa" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cBd" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"cBe" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/glass/fifty{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/stack/sheet/metal/fifty{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/wrench,
-/obj/item/grenade/chem_grenade/metalfoam,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/ai_monitored/storage/eva)
-"cBf" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cBg" = (
+/area/maintenance/fsmaint)
+"guW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"cBh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/courtroom)
+"guX" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/crew_quarters/locker)
-"cBi" = (
-/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
dir = 1
},
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/camera{
- c_tag = "EVA West"
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/flasher{
+ id = "Cell 1";
+ pixel_y = 28
},
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cBj" = (
-/obj/structure/dispenser/oxygen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
+ icon_state = "bcarpet05"
+ },
+/area/security/prison/cell_block/A)
+"gvs" = (
+/obj/docking_port/mobile{
dir = 8;
- icon_state = "neutralfull"
+ dwidth = 4;
+ height = 11;
+ id = "trade_sol";
+ name = "sol trade shuttle";
+ roundstart_move = "trade_sol_base";
+ width = 9
},
-/area/ai_monitored/storage/eva)
-"cBk" = (
-/obj/machinery/requests_console{
- department = "EVA";
- name = "EVA Requests Console";
- pixel_x = 32
+/obj/machinery/door/airlock/shuttle/glass{
+ id_tag = "s_docking_airlock"
},
-/obj/machinery/camera{
- c_tag = "EVA Storage";
- dir = 8
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 4;
+ height = 11;
+ id = "trade_dock";
+ name = "port bay 5 at Kerberos";
+ width = 9
+ },
+/obj/machinery/door/poddoor/shutters{
+ closingLayer = 5;
+ density = 0;
+ icon_state = "open";
+ id_tag = "trader_privacy";
+ layer = 5;
+ name = "Privacy Shutters";
+ opacity = 0
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cBl" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/ai_monitored/storage/eva)
-"cBm" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/area/shuttle/trade/sol)
+"gvy" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 1;
+ name = "Труба дыхательной смеси"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 4;
+ name = "Труба фильтрации"
},
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "dark"
},
-/area/ai_monitored/storage/eva)
-"cBn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/atmos)
+"gvC" = (
+/obj/effect/decal/remains/human,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"gvH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"gvQ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
},
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/toy/figure/dsquad,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/assembly/showroom)
-"cBo" = (
+/area/medical/medbay3)
+"gvS" = (
+/obj/machinery/atmospherics/trinary/filter{
+ desc = "Отфильтровывает углекислый газ из трубы и отправляет его в камеру хранения";
+ filter_type = 3;
+ name = "Фильтр Углекислого Газа (СO2)";
+ on = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1;
+ icon_state = "dark"
},
-/area/assembly/showroom)
-"cBp" = (
-/obj/structure/chair/comfy/black{
- dir = 4
+/area/atmos)
+"gvU" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/turf/simulated/floor/carpet,
-/area/assembly/showroom)
-"cBq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"gwx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/structure/table/wood,
-/obj/item/clothing/mask/cigarette/cigar/havana{
- pixel_x = -3;
- pixel_y = 3
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/item/clothing/mask/cigarette/cigar/cohiba{
- pixel_x = 3;
- pixel_y = -3
+/area/medical/ward)
+"gwA" = (
+/obj/structure/chair,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/carpet,
-/area/assembly/showroom)
-"cBr" = (
-/obj/structure/table/wood,
-/obj/item/folder/blue,
-/obj/item/pen,
-/turf/simulated/floor/carpet,
-/area/assembly/showroom)
-"cBs" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/turf/simulated/floor/carpet,
-/area/assembly/showroom)
-"cBt" = (
-/obj/structure/table/wood,
-/obj/item/lighter/zippo,
-/turf/simulated/floor/carpet,
-/area/assembly/showroom)
-"cBu" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "carpet"
+ },
+/area/crew_quarters/courtroom)
+"gwN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/table/wood,
-/obj/item/storage/secure/briefcase,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/assembly/showroom)
-"cBv" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBw" = (
-/obj/structure/table,
-/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ icon_state = "neutralfull"
},
-/obj/item/storage/belt,
-/obj/item/radio,
+/area/atmos)
+"gwP" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/structure/chair,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/hallway/secondary/exit)
+"gwY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/genetics_cloning)
+"gxg" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ locked = 1;
+ name = "MiniSat Maintenance";
+ req_access_txt = "75"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Gateway Access";
- req_access_txt = "62"
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"gxk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "eva-shutters";
+ name = "E.V.A. Storage Shutters"
},
+/obj/machinery/door_control{
+ id = "eva-shutters";
+ name = "Auxilary E.V.A. Storage";
+ pixel_x = 26;
+ req_one_access_txt = "18"
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/ai_monitored/storage/eva)
+"gxv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBC" = (
+/area/library/abandoned)
+"gxI" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp,
+/obj/item/taperecorder,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 9
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"gxS" = (
+/obj/structure/dispenser,
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = 25
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBE" = (
-/obj/machinery/shower{
- dir = 4
+/area/storage/secure)
+"gxY" = (
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/structure/curtain/open/shower,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/locker/locker_toilet)
-"cBF" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+ dir = 9;
+ icon_state = "darkred"
},
-/obj/machinery/camera{
- c_tag = "Showers";
- dir = 1
+/area/security/podbay)
+"gyo" = (
+/obj/machinery/atmospherics/trinary/mixer{
+ desc = "Смешивает кислород и азот, создавая смесь для дыхания на станции";
+ dir = 1;
+ name = "Дыхательный смеситель";
+ node1_concentration = 0.8;
+ node2_concentration = 0.2;
+ on = 1;
+ target_pressure = 4500
},
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/locker/locker_toilet)
-"cBG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/atmos)
+"gyp" = (
+/obj/structure/window/reinforced,
+/obj/machinery/bodyscanner{
dir = 4
},
-/turf/simulated/wall,
-/area/crew_quarters/locker/locker_toilet)
-"cBH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
},
-/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkred"
+ },
+/area/security/execution)
+"gyW" = (
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/obj/machinery/computer/card/minor/rd,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBI" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/crew_quarters/hor)
+"gyZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellowcorner"
},
+/area/hallway/primary/port)
+"gzc" = (
+/obj/structure/table,
+/obj/item/storage/fancy/donut_box,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/brigstaff)
+"gzd" = (
+/obj/machinery/computer/scan_consolenew,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
dir = 1;
- initialize_directions = 11
+ icon_state = "whitepurple"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cBJ" = (
+/area/medical/genetics)
+"gze" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"gzr" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/machinery/light,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cBK" = (
+/area/hallway/primary/central/west)
+"gzs" = (
+/obj/effect/decal/warning_stripes/north,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "darkred"
+ },
+/area/security/podbay)
+"gzz" = (
+/obj/machinery/door/airlock/centcom{
+ id_tag = "adminshuttle";
+ name = "Holding Cell";
+ opacity = 1;
+ req_access_txt = "104"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"gzB" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/camera{
+ c_tag = "Chaplain's Quarters"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cBL" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/chapel/office)
+"gzR" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cBM" = (
-/obj/structure/cable{
+/area/toxins/storage)
+"gzX" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "Singularity";
+ layer = 2.7;
+ name = "Singularity Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"gAB" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/quartermaster/miningdock)
+"gAD" = (
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/light,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cBN" = (
+/area/maintenance/gambling_den)
+"gAF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research/restroom)
+"gAS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/machinery/door/airlock{
- name = "Unisex Restrooms"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cBO" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"gBj" = (
+/obj/structure/chair/comfy/shuttle,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"gBl" = (
+/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
- icon_state = "neutralcorner"
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ id_tag = "o2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ name = "oxygen vent";
+ on = 1;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0
},
-/area/crew_quarters/locker)
-"cBP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/engine/o2,
+/area/atmos)
+"gBu" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/portable_atmospherics/pump,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 28
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "arrival"
},
/area/crew_quarters/locker)
-"cBQ" = (
+"gBA" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/gateway)
+"gBH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/light,
-/obj/machinery/status_display{
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/area/crew_quarters/locker)
-"cBR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 1
},
-/area/crew_quarters/locker)
-"cBS" = (
+/area/security/permahallway)
+"gBU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/lobby)
+"gCh" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Oxygen Tank";
+ network = list("SS13","Engineering")
+ },
+/turf/simulated/floor/engine/o2,
+/area/atmos)
+"gCs" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/maintenance{
+ name = "Hydroponics Maintenance";
+ req_access_txt = "35"
},
-/area/crew_quarters/locker)
-"cBT" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"gCu" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "mix_sensor"
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/turf/simulated/floor/engine/insulated/vacuum,
+/area/atmos)
+"gCv" = (
+/mob/living/simple_animal/pig{
+ name = "Саня"
},
-/area/crew_quarters/locker)
-"cBU" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"gCx" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 30
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/kitchen)
+"gCz" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced,
+/obj/structure/window/plasmareinforced{
+ dir = 4
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"cBV" = (
-/obj/structure/chair/office/dark,
-/obj/machinery/newscaster{
- pixel_x = -32
+/obj/structure/window/plasmareinforced{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
-/area/crew_quarters/cabin1)
-"cBW" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/newscaster{
- pixel_x = -32
+/turf/simulated/floor/plating,
+/area/atmos)
+"gCB" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/portable_atmospherics/canister/oxygen{
+ name = "Canister: \[O2] (CRYO)"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin2)
-"cBX" = (
-/obj/structure/bed,
-/obj/item/bedsheet/brown,
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin2)
-"cBY" = (
-/obj/machinery/cryopod/right,
-/obj/machinery/newscaster{
- pixel_x = -32
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/crew_quarters/sleep)
-"cBZ" = (
-/obj/structure/table,
-/obj/item/folder,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/door/window/eastright{
+ dir = 2;
+ icon_state = "left";
+ name = "Cryo Tank Storage";
+ req_one_access_txt = "5;32"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/fitness)
-"cCa" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/crew_quarters/fitness)
-"cCb" = (
-/turf/simulated/floor/engine{
- name = "Holodeck Projector Floor"
+ icon_state = "dark"
},
-/area/holodeck/alphadeck)
-"cCc" = (
+/area/medical/cryo)
+"gCI" = (
/obj/machinery/camera{
- c_tag = "Holodeck Fore"
+ c_tag = "Kitchen Backroom"
},
-/turf/simulated/floor/engine{
- name = "Holodeck Projector Floor"
+/obj/structure/sink/kitchen{
+ pixel_y = 30
},
-/area/holodeck/alphadeck)
-"cCd" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/kitchen)
+"gDm" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light/small,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitegreencorner"
+ },
+/area/medical/medbay3)
+"gDx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/engine/hardsuitstorage)
-"cCe" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 8;
- initialize_directions = 11
+ icon_state = "pipe-c"
},
-/obj/effect/decal/warning_stripes/northwestcorner,
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/lobby)
+"gDy" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/kitchenspike,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cCf" = (
-/obj/machinery/power/grounding_rod{
- anchored = 1
+/area/crew_quarters/kitchen)
+"gDz" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cCg" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cCh" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "engineering_east_airlock";
- name = "exterior access button";
- pixel_x = 20;
- pixel_y = 20;
- req_access_txt = "10;13"
+/obj/machinery/door_control{
+ id = "Kitchen Dinner Windows";
+ name = "Kitchen Dinner Shutters Control";
+ pixel_x = -26;
+ pixel_y = 26;
+ req_access_txt = "28"
+ },
+/obj/machinery/camera{
+ c_tag = "Kitchen North";
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/crew_quarters/kitchen)
+"gDB" = (
+/turf/simulated/wall,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"gDQ" = (
+/obj/structure/grille,
/obj/structure/cable/yellow{
- d1 = 2;
+ d1 = 1;
d2 = 4;
- icon_state = "2-4"
+ icon_state = "1-4"
},
+/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plating/airless,
/area/engine/engineering)
-"cCi" = (
-/obj/structure/rack,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/north,
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
+"gDV" = (
/obj/machinery/alarm{
dir = 1;
pixel_y = -22
},
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = -24;
+ pixel_y = -24
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/stamp/denied{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/stamp/granted{
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/machinery/computer/guestpass{
+ pixel_x = -28
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 10;
+ icon_state = "brown"
},
-/area/engine/hardsuitstorage)
-"cCj" = (
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "engineering_east_airlock";
- pixel_y = 25;
- req_access_txt = "10;13";
- tag_airpump = "engineering_east_pump";
- tag_chamber_sensor = "engineering_east_sensor";
- tag_exterior_door = "engineering_east_outer";
- tag_interior_door = "engineering_east_inner"
+/area/quartermaster/office)
+"gDY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/airlock_sensor{
- id_tag = "engineering_east_sensor";
- pixel_y = 33
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/medical/reception)
+"gEq" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/floor/plasteel{
+ icon_state = "brown"
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cCk" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "engineering_east_outer";
- locked = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
+/area/quartermaster/office)
+"gEw" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "brown"
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/quartermaster/office)
+"gEA" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cCl" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "engineering_east_inner";
- locked = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
+/obj/item/stack/sheet/glass/fifty,
+/turf/simulated/floor/plasteel{
+ icon_state = "brown"
},
-/obj/structure/cable/yellow{
+/area/quartermaster/office)
+"gEE" = (
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cCm" = (
-/obj/structure/cable/yellow{
- d1 = 1;
+/area/gateway)
+"gEK" = (
+/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 8;
- icon_state = "neutralfull"
+ frequency = 1379;
+ id_tag = "solar_xeno_pump"
},
-/area/engine/engineering)
-"cCn" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "solar_xeno_airlock";
+ pixel_y = 25;
+ req_access_txt = "13";
+ tag_airpump = "solar_xeno_pump";
+ tag_chamber_sensor = "solar_xeno_sensor";
+ tag_exterior_door = "solar_xeno_outer";
+ tag_interior_door = "solar_xeno_inner"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "solar_xeno_sensor";
+ pixel_y = 32
},
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
+"gEL" = (
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ dir = 4;
+ icon_state = "darkred"
},
-/area/engine/engineering)
-"cCo" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/security/prison/cell_block/A)
+"gES" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkred"
},
-/obj/structure/disposalpipe/segment{
+/area/security/securearmoury)
+"gET" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/area/medical/reception)
+"gFa" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/camera{
+ c_tag = "Chapel West";
+ dir = 4;
+ pixel_y = -22
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "chapel"
},
-/area/engine/engineering)
-"cCp" = (
-/obj/structure/cable{
+/area/chapel/main)
+"gFc" = (
+/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+ icon_state = "4-8"
},
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"gFd" = (
+/obj/machinery/computer/supplycomp,
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ icon_state = "brown"
},
-/area/engine/engineering)
-"cCq" = (
-/obj/structure/rack,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northeast,
-/obj/item/stack/sheet/glass{
- amount = 50
+/area/quartermaster/office)
+"gFf" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
+ },
+/turf/simulated/wall/r_wall,
+/area/assembly/showroom)
+"gFN" = (
+/obj/structure/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "brown"
},
-/area/engine/hardsuitstorage)
-"cCr" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/engine/hardsuitstorage)
-"cCs" = (
+/area/quartermaster/office)
+"gFQ" = (
/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/obj/machinery/status_display{
- pixel_y = -32
+/obj/machinery/light{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/obj/item/stamp/granted{
+ pixel_x = 3;
+ pixel_y = -4
},
-/area/engine/hardsuitstorage)
-"cCt" = (
-/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
+/obj/item/stamp/denied{
+ pixel_x = -4;
+ pixel_y = 4
},
-/area/engine/hardsuitstorage)
-"cCv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_y = -28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cCw" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 28
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno5";
- name = "Creature Cell #5";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "brown"
},
-/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cCx" = (
-/turf/simulated/wall/rust,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cCy" = (
+/area/quartermaster/office)
+"gFR" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/turf/simulated/floor/plating,
+/area/atmos)
+"gFV" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno5";
- name = "Creature Cell #5";
- opacity = 0
+/area/medical/ward)
+"gFX" = (
+/obj/machinery/door/window{
+ dir = 8;
+ name = "High-Risk Modules";
+ req_access_txt = "20"
},
-/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cCz" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/aiModule/oxygen,
+/obj/item/aiModule/oneCrewMember,
+/obj/item/aiModule/purge,
+/obj/item/aiModule/antimov,
+/obj/structure/table/glass,
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
+"gGh" = (
+/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "yellow"
+ dir = 1
+ },
+/area/security/range)
+"gGi" = (
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/area/engine/hardsuitstorage)
-"cCA" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/southwest,
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/black,
-/obj/item/radio,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "red"
},
-/area/engine/hardsuitstorage)
-"cCB" = (
+/area/security/securehallway)
+"gGp" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cCC" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/folder/yellow,
-/obj/item/gps,
-/obj/item/gps,
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/ai_monitored/storage/eva)
-"cCD" = (
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cCE" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cCF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cCG" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cCH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/aft)
+"gGx" = (
/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cCI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/obj/machinery/atmospherics/binary/pump{
+ desc = "Позволяет пропустить смесь не загружая её в хранилище";
+ name = "Смесь в обход хранилища";
+ target_pressure = 101
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cCJ" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cCK" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light,
-/obj/item/storage/belt,
-/obj/item/radio,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 4;
+ name = "Труба дыхательной смеси"
},
-/area/ai_monitored/storage/eva)
-"cCL" = (
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"gGA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/table/wood,
-/obj/item/folder/yellow,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/assembly/showroom)
-"cCM" = (
-/obj/structure/table/wood,
-/obj/item/storage/photo_album,
+/area/chapel/office)
+"gGI" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/portable_atmospherics/scrubber,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/assembly/showroom)
-"cCN" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/firealarm{
dir = 1;
- pixel_y = -24
+ icon_state = "escape"
},
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/area/crew_quarters/locker)
+"gGZ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/assembly/showroom)
-"cCO" = (
-/obj/structure/chair/comfy/brown{
- dir = 1
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "GYM";
+ name = "Dungeon Privacy Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/security/processing)
+"gHb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/assembly/showroom)
-"cCP" = (
-/obj/structure/cable{
+/area/medical/morgue)
+"gHc" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"gHg" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
},
-/area/assembly/showroom)
-"cCQ" = (
-/obj/structure/chair/comfy/black{
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"gHm" = (
+/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"gHp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/chair/comfy/teal{
+ dir = 8
},
-/area/assembly/showroom)
-"cCR" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/medbay)
+"gHq" = (
+/obj/structure/chair/office/dark{
+ dir = 8
},
-/area/assembly/showroom)
-"cCS" = (
-/obj/structure/table/wood,
-/obj/item/paicard,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/assembly/showroom)
-"cCT" = (
-/obj/structure/cable{
+/area/library)
+"gHz" = (
+/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/table/wood,
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28
+ icon_state = "1-2"
},
-/obj/item/folder/red,
+/obj/structure/table/reinforced,
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/item/tank/emergency_oxygen/engi,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1;
+ icon_state = "yellow"
},
-/area/assembly/showroom)
-"cCU" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
+/area/engine/engineering)
+"gHB" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/syringe{
+ pixel_x = -1;
+ pixel_y = -11
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/reagent_containers/syringe/calomel{
+ pixel_x = -1;
+ pixel_y = -6
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cCV" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cCW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/machinery/light_switch{
- pixel_x = 8;
- pixel_y = -24
+/obj/item/reagent_containers/syringe/heparin{
+ pixel_x = -1;
+ pixel_y = -1
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cCX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/item/reagent_containers/glass/bottle/reagent/hairgrownium{
+ pixel_x = -6;
+ pixel_y = 8
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cCY" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/item/reagent_containers/glass/bottle/frostoil{
+ pixel_x = 5;
+ pixel_y = 8
},
-/area/crew_quarters/locker)
-"cCZ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/gateway)
-"cDa" = (
-/obj/machinery/recharge_station,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cDb" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cDc" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cDd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/item/reagent_containers/glass/bottle/mutagen{
+ pixel_y = 6
},
-/obj/effect/landmark{
- name = "lightsout"
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = 30
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central/se)
-"cDe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"cDf" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cDg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "darkred"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/vending/wallmed{
- pixel_x = 26
+/area/security/processing)
+"gHM" = (
+/obj/machinery/door_control{
+ id = "stationawaygate";
+ name = "Gateway Shutters Access Control";
+ pixel_x = -24;
+ req_access_txt = "62"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cDh" = (
-/obj/machinery/door/airlock{
- id_tag = "toilet3";
- name = "Toilet"
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "stationawaygate";
+ name = "Gateway Access Shutters"
},
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cDi" = (
-/obj/machinery/vending/clothing,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Exp_lockdown";
+ name = "Expedition Lockdown";
+ opacity = 0
},
-/area/crew_quarters/locker)
-"cDj" = (
-/obj/machinery/vending/suitdispenser,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"gHO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/area/crew_quarters/locker)
-"cDk" = (
-/obj/machinery/vending/hatdispenser,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/crew_quarters/locker)
-"cDl" = (
-/obj/machinery/vending/shoedispenser,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/crew_quarters/sleep)
+"gHQ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ name = "Труба на фильтрацию"
},
-/area/crew_quarters/locker)
-"cDm" = (
-/obj/machinery/vending/artvend,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plating,
+/area/atmos)
+"gHY" = (
+/obj/machinery/door_control{
+ id = "GYM";
+ name = "Dungeon Privacy Shutters Control";
+ pixel_x = -24;
+ pixel_y = 23;
+ req_access_txt = "63"
},
-/area/crew_quarters/locker)
-"cDn" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "4-8"
},
-/area/crew_quarters/locker)
-"cDo" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/locker)
-"cDp" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/radio/intercom{
- pixel_x = 28
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/security/processing)
+"gIa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/area/crew_quarters/locker)
-"cDq" = (
-/obj/structure/table/wood,
-/obj/item/folder/blue,
-/obj/item/lighter/zippo,
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "cabin1";
- name = "Door Bolt Control";
- normaldoorcontrol = 1;
- pixel_y = -25;
- specialfunctions = 4
+/obj/structure/cable{
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "darkred"
},
-/area/crew_quarters/cabin1)
-"cDr" = (
-/obj/structure/chair,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+/area/security/podbay)
+"gIb" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "stationawaygate";
+ name = "Gateway Access Shutters"
},
-/area/crew_quarters/fitness)
-"cDs" = (
-/obj/structure/table/reinforced,
-/obj/machinery/newscaster{
- pixel_x = 32
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Exp_lockdown";
+ name = "Expedition Lockdown";
+ opacity = 0
},
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"gIn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/ai_monitored/storage/eva)
-"cDt" = (
-/obj/machinery/power/emitter{
- anchored = 1;
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- state = 2
- },
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/effect/decal/warning_stripes/eastnorthwest,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cDu" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cDv" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cDw" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cDx" = (
-/obj/structure/grille,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cDy" = (
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "engineering_east_airlock";
- name = "interior access button";
- pixel_x = -20;
- pixel_y = 20;
- req_access_txt = "10;13"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/bridge/vip)
+"gIq" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 4;
+ name = "Труба дыхательной смеси"
},
-/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"gIs" = (
+/obj/machinery/atmospherics/unary/outlet_injector/on,
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ dir = 4;
+ icon_state = "darkred"
},
-/area/engine/engineering)
-"cDz" = (
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 4
+/area/security/permabrig)
+"gIu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cDA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+/area/ai_monitored/storage/eva)
+"gIA" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 10;
+ name = "Труба дыхательной смеси"
},
-/area/medical/medbay)
-"cDB" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "yellow"
+ dir = 8;
+ icon_state = "caution"
},
-/area/engine/hardsuitstorage)
-"cDC" = (
+/area/atmos)
+"gJf" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno6";
- name = "Creature Cell #6";
- opacity = 0
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "Second Surgery Window";
+ name = "Surgery Shutters"
},
/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cDD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/surgery2)
+"gJh" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/clothing/head/hardhat/red,
+/obj/item/clothing/mask/gas,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/obj/machinery/door/window/eastleft{
+/area/toxins/mixing)
+"gJj" = (
+/turf/simulated/floor/plasteel{
dir = 1;
- req_access_txt = "10"
+ icon_state = "chapel"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cDE" = (
-/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/recharge_station,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cDF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/chapel/main)
+"gJr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
},
-/obj/effect/decal/warning_stripes/south,
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/window/reinforced{
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"gJw" = (
+/obj/machinery/light{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cDG" = (
-/obj/structure/cable/yellow{
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "bluecorner"
+ },
+/area/hallway/primary/aft)
+"gJy" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/machinery/cryopod/right,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep)
+"gJA" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ name = "Труба на фильтрацию"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "caution"
+ },
+/area/atmos)
+"gJB" = (
+/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/camera{
- c_tag = "Particle Accellerator";
- dir = 1;
- network = list("Engineering","SS13")
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Local Armory";
+ req_access_txt = "1"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"cDH" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/armoury)
+"gJJ" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkred"
+ },
+/area/security/permabrig)
+"gJO" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkred"
+ },
+/area/security/evidence)
+"gJQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cDI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/light,
-/obj/item/radio/intercom{
- pixel_y = -28
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cDJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/vending/wallmed{
- pixel_y = -30
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"gKa" = (
+/obj/item/radio/intercom{
+ pixel_x = -32
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cDK" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 30
+/obj/machinery/newscaster{
+ pixel_y = -28
},
-/obj/item/reagent_containers/spray/cleaner/drone{
- pixel_x = 6
+/obj/structure/weightmachine/weightlifter,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/area/security/permabrig)
+"gKm" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/area/engine/hardsuitstorage)
-"cDL" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/hardsuitstorage)
-"cDM" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/power/port_gen/pacman,
-/obj/machinery/light,
-/obj/effect/decal/warning_stripes/northeast,
+/area/security/permabrig)
+"gKC" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "greenblue"
+ },
+/area/crew_quarters/serviceyard)
+"gKG" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/engine/hardsuitstorage)
-"cDN" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/wardrobe/engineering_yellow,
-/obj/machinery/light,
-/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/hardsuitstorage)
-"cDO" = (
-/obj/machinery/ai_status_display{
- pixel_y = -32
- },
+/area/library)
+"gKK" = (
+/obj/machinery/atmospherics/unary/portables_connector,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cDP" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/effect/decal/warning_stripes/yellow,
+/area/toxins/mixing)
+"gKP" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 30
+ },
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"gLd" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Bar";
+ name = "Bar Privacy Shutters"
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/engine/hardsuitstorage)
-"cDQ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/crew_quarters/bar)
+"gLn" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno6";
- name = "Creature Cell #6";
- opacity = 0
+/area/security/main)
+"gLr" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/prisonershuttle)
+"gLz" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
},
+/area/security/processing)
+"gLA" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cDR" = (
+/area/maintenance/fsmaint)
+"gLB" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"gLC" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/cryo)
+"gLH" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- icon_state = "pipe-c"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cDS" = (
-/obj/structure/disposalpipe/segment{
+/turf/simulated/floor/wood,
+/area/assembly/showroom)
+"gLL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cDT" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cDU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cDV" = (
-/obj/structure/disposalpipe/segment{
+/area/maintenance/asmaint2)
+"gLN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 32
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cDW" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j2s";
- name = "Library Junction";
- sortType = 16
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cDX" = (
-/obj/structure/disposalpipe/segment{
+/area/security/permabrig)
+"gLP" = (
+/obj/structure/bed,
+/obj/item/bedsheet/red,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin3)
+"gLR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cDY" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cDZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cEa" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/random_spawners/blood_maybe,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"cEb" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/item/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cEc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cEd" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cEe" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/assembly/showroom)
-"cEf" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/simulated/wall/r_wall,
-/area/assembly/showroom)
-"cEg" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/assembly/showroom)
-"cEh" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/assembly/showroom)
-"cEi" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/assembly/showroom)
-"cEj" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cEk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Gateway Access";
- req_access_txt = "62"
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cEl" = (
-/obj/machinery/door_control{
- id = "stationawaygate";
- name = "Gateway Shutters Access Control";
- pixel_x = -24;
- req_access_txt = "62"
- },
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "stationawaygate";
- name = "Gateway Access Shutters"
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cEm" = (
-/obj/structure/table/wood,
-/obj/machinery/fishtank/bowl{
- pixel_y = 5
- },
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
- },
-/turf/simulated/floor/carpet,
-/area/civilian/pet_store)
-"cEn" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/camera{
- c_tag = "Bathroom South";
- dir = 4
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cEo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/obj/structure/chair{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/camera{
- c_tag = "Jury court";
- dir = 1
- },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
-"cEp" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "stationawaygate";
- name = "Gateway Access Shutters"
+ dir = 1;
+ icon_state = "darkred"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cEq" = (
+/area/security/permabrig)
+"gLT" = (
/obj/structure/toilet{
dir = 8
},
@@ -64467,1158 +63327,863 @@
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
-"cEr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cEs" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cEt" = (
-/obj/machinery/door/airlock{
- id_tag = "cabin1";
- name = "Cabin"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/cabin1)
-"cEu" = (
-/obj/machinery/door/airlock{
- id_tag = "cabin2";
- name = "Cabin"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+"gMf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin2)
-"cEv" = (
-/obj/machinery/door/airlock/glass{
- name = "Cabin"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/crew_quarters/sleep)
-"cEw" = (
-/obj/structure/window/reinforced{
- dir = 8
+/area/hallway/primary/central/west)
+"gMw" = (
+/obj/effect/landmark{
+ name = "revenantspawn"
},
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
- layer = 2.9
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/fitness)
-"cEx" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/area/library)
+"gMy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/light/small{
+ dir = 1
},
-/area/crew_quarters/fitness)
-"cEy" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/window,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"gMU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/crew_quarters/fitness)
-"cEz" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cEA" = (
-/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "vault"
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/area/security/podbay)
-"cEB" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=1";
- location = "Engineering"
+/area/medical/research/restroom)
+"gMZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/plasticflaps{
- opacity = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"cEC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/engine/engineering)
-"cED" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/obj/machinery/status_display{
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/machinery/camera{
- c_tag = "Engineering Storage 1";
- dir = 1;
- network = list("Engineering","SS13")
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/chapel/office)
+"gNb" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"gNj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/hardsuitstorage)
-"cEE" = (
+/area/hallway/primary/central/west)
+"gNl" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cEF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
+/area/security/armoury)
+"gNn" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cEG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cEH" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cEI" = (
-/obj/machinery/light/small{
- dir = 4;
- tag = "icon-bulb1 (EAST)"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cEJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/area/security/securehallway)
+"gNz" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/turret_protected/ai)
-"cEK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/port)
+"gNP" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/wall,
-/area/crew_quarters/kitchen)
-"cEL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "Warden";
+ name = "Warden Privacy Shutters"
},
-/area/hallway/primary/central/sw)
-"cEM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "ArmoryLock";
+ name = "Armory Lockdown";
+ opacity = 0
},
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = 28
+/turf/simulated/floor/plating,
+/area/security/warden)
+"gNR" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
},
+/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 10;
+ icon_state = "darkblue"
},
-/area/hallway/primary/central/south)
-"cEN" = (
-/obj/machinery/status_display{
- pixel_y = -32
+/area/security/detectives_office)
+"gNS" = (
+/obj/structure/table,
+/obj/item/storage/box/bodybags,
+/obj/item/assembly/signaler{
+ code = 6;
+ frequency = 1445
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cEO" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/hardsuitstorage)
-"cEP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "eva-shutters";
- name = "E.V.A. Storage Shutters"
+/area/security/execution)
+"gNU" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 32
},
-/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cEQ" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "eva-shutters";
- name = "E.V.A. Storage Shutters"
+/area/atmos)
+"gNY" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "purple"
},
-/obj/effect/decal/warning_stripes/south,
+/area/maintenance/xenozoo)
+"gNZ" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/monkeycubes,
+/obj/item/storage/box/monkeycubes,
+/obj/effect/decal/warning_stripes/west,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cER" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/poddoor/shutters{
+/area/toxins/xenobiology)
+"gOb" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- id_tag = "eva-shutters";
- name = "E.V.A. Storage Shutters"
+ id_tag = "HoSPriv";
+ name = "HoS Office Privacy Shutters"
},
-/obj/machinery/door_control{
- id = "eva-shutters";
- name = "Auxilary E.V.A. Storage";
- pixel_x = 26;
- req_one_access_txt = "18"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cES" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plating,
+/area/security/hos)
+"gOi" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/obj/machinery/light{
- dir = 1;
- in_use = 1
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/camera{
+ c_tag = "Permabrig South";
+ network = list("Prison","SS13")
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/security/permabrig)
+"gOj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/hallway/primary/central/south)
-"cET" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/firealarm{
- pixel_y = 24
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/central/south)
-"cEU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/permabrig)
+"gOq" = (
+/obj/structure/table/reinforced,
+/obj/item/folder,
+/obj/item/pen,
+/obj/machinery/door/window/southleft{
+ name = "Research Lab Desk";
+ req_access_txt = "47"
},
-/obj/item/radio/intercom{
- pixel_y = 24
+/obj/machinery/door/window/northleft,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "researchdesk1";
+ name = "Research Desk Shutters";
+ opacity = 0
},
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"gOv" = (
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"gOF" = (
+/obj/machinery/computer/crew,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "darkblue"
},
-/area/hallway/primary/central/south)
-"cEV" = (
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"gOL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/wood,
+/obj/item/storage/bible,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/chapel/main)
+"gOO" = (
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"gPv" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/medical/cryo)
+"gPw" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 5;
+ icon_state = "purple"
},
-/area/hallway/primary/central/south)
-"cEW" = (
+/area/maintenance/xenozoo)
+"gPK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 6
},
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ icon_state = "dark"
},
-/area/hallway/primary/central/south)
-"cEX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/area/maintenance/gambling_den)
+"gPL" = (
+/obj/structure/sink{
+ pixel_y = 30
},
-/area/hallway/primary/central/south)
-"cEY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/light{
dir = 4
},
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
+/obj/structure/table,
+/obj/item/storage/box/monkeycubes,
+/obj/item/storage/box/monkeycubes/farwacubes,
+/obj/item/storage/box/monkeycubes/neaeracubes,
+/obj/item/storage/box/monkeycubes/stokcubes,
+/obj/item/storage/box/monkeycubes/wolpincubes,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ dir = 4;
+ icon_state = "whitegreencorner"
},
-/area/hallway/primary/central/south)
-"cEZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/medical/virology)
+"gPM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 1;
- in_use = 1
- },
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway South 3"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/area/hallway/primary/central/south)
-"cFa" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/south)
-"cFb" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/machinery/light/small,
-/obj/effect/landmark/start{
- name = "Civilian"
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "toilet1";
- name = "Toilet Bolt Control";
- normaldoorcontrol = 1;
- pixel_y = -25;
- specialfunctions = 4
+/area/security/permabrig)
+"gPR" = (
+/obj/item/radio/intercom{
+ pixel_x = 28
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"cFc" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/turf/simulated/floor/plasteel{
dir = 4;
- initialize_directions = 11
+ icon_state = "yellowcorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hallway/primary/port/west)
+"gPW" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/se)
-"cFd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 9;
+ icon_state = "red"
},
+/area/security/range)
+"gQr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-8"
},
-/turf/simulated/floor/carpet,
-/area/civilian/pet_store)
-"cFe" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "green"
- },
-/area/crew_quarters/courtroom)
-"cFf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/airlock/security/glass{
+ name = "Shooting Range";
+ req_access_txt = "63"
},
-/obj/effect/decal/warning_stripes/northeastcorner,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/south)
-"cFg" = (
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cFh" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/cleanable/cobweb,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cFi" = (
-/obj/structure/rack,
-/obj/item/roller,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cFj" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cFk" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/cobweb2,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cFl" = (
-/obj/machinery/washing_machine,
-/obj/machinery/camera{
- c_tag = "Laundry Room";
dir = 4;
- pixel_y = -22
+ icon_state = "red"
},
-/turf/simulated/floor/plasteel{
+/area/security/range)
+"gQC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- icon_state = "arrival"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/crew_quarters/sleep)
-"cFm" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/crew_quarters/sleep)
-"cFn" = (
+/area/security/permabrig)
+"gQD" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A31";
- location = "A30"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+/obj/machinery/light_switch{
+ pixel_x = 25
},
-/area/crew_quarters/sleep)
-"cFo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/ntrep)
+"gQH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/area/crew_quarters/sleep)
-"cFp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/toxins/xenobiology)
+"gQN" = (
+/obj/machinery/hydroponics/constructable{
+ desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays.";
+ name = "Prison hydroponics tray";
+ using_irrigation = 1
+ },
+/obj/item/seeds/banana,
+/obj/item/seeds/banana,
+/obj/item/seeds/banana,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/item/radio/intercom{
+ pixel_x = 30
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"gQS" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/machinery/camera{
+ c_tag = "Minisat AI Core West";
dir = 4;
- icon_state = "neutralcorner"
+ network = list("Minisat","SS13")
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/ai)
+"gQV" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Virology";
+ name = "Virology Shutters"
},
+/turf/simulated/floor/plating,
+/area/medical/virology)
+"gRa" = (
+/obj/machinery/light,
+/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
/area/hallway/primary/central/sw)
-"cFq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+"gRb" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkblue"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/turret_protected/ai)
+"gRd" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitegreencorner"
},
+/area/medical/virology)
+"gRN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/sleep)
-"cFr" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A8";
- location = "A7"
+ icon_state = "whitepurplecorner"
},
+/area/medical/research{
+ name = "Research Division"
+ })
+"gRO" = (
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"gRP" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "yellow"
+ },
+/area/engine/hardsuitstorage)
+"gRQ" = (
+/obj/machinery/door/airlock/glass{
+ name = "Cabin"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker)
+"gRY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/window/southright{
+ dir = 8;
+ name = "AI Core Door";
+ req_access = null;
+ req_access_txt = "16"
},
-/area/hallway/secondary/entry/additional)
-"cFs" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/turret_protected/ai)
+"gSi" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/crew_quarters/sleep)
-"cFt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/wood,
+/area/assembly/showroom)
+"gSF" = (
+/obj/machinery/alarm{
+ pixel_y = 23
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- icon_state = "neutralcorner"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/crew_quarters/sleep)
-"cFu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/chapel/office)
+"gSG" = (
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = 8;
+ pixel_y = -24
},
-/obj/machinery/light/small{
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai)
+"gSN" = (
+/obj/machinery/light,
+/obj/structure/chair/comfy/shuttle{
dir = 1
},
-/obj/machinery/vending/wallmed{
- pixel_y = 30
+/turf/simulated/shuttle/floor4,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"gSY" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/machinery/camera{
+ c_tag = "Minisat AI Core East";
+ dir = 8;
+ network = list("Minisat","SS13")
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/sleep)
-"cFv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/turret_protected/ai)
+"gTh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/sleep)
-"cFw" = (
+/area/atmos)
+"gTj" = (
+/turf/simulated/wall/rust,
+/area/maintenance/maintcentral)
+"gTl" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 1;
+ name = "Труба смешивания"
+ },
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"gTr" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/storage/tech)
+"gTw" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "o2_sensor"
+ },
+/turf/simulated/floor/engine/o2,
+/area/atmos)
+"gTx" = (
+/obj/machinery/chem_dispenser,
+/obj/effect/decal/warning_stripes/northwest,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
+/turf/simulated/floor/engine,
+/area/medical/chemistry)
+"gTG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/glass{
- name = "Cabin"
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/sleep)
-"cFx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"gTK" = (
+/obj/machinery/vending/security,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/fitness)
-"cFy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/fitness)
-"cFz" = (
-/obj/structure/window/reinforced{
- dir = 8
+ dir = 9;
+ icon_state = "red"
},
+/area/security/processing)
+"gUa" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/fitness)
-"cFA" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/library)
+"gUe" = (
+/obj/machinery/portable_atmospherics/canister/oxygen{
+ anchored = 1
},
-/area/crew_quarters/fitness)
-"cFB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/engine/o2,
+/area/atmos)
+"gUN" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
},
-/area/crew_quarters/fitness)
-"cFC" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/medical/medbay3)
+"gVa" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/crew_quarters/fitness)
-"cFD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
+/obj/structure/table/glass,
+/obj/item/paper_bin,
+/obj/item/pen,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/fitness)
-"cFE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/glass{
- name = "Holodeck Door"
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cFF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cFG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/door/airlock/glass{
- name = "Holodeck Door"
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cFH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/door/airlock/glass{
- name = "Holodeck Door"
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cFI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cFJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
- external_pressure_bound = 100;
- on = 1
- },
-/obj/machinery/status_display{
- layer = 4;
- pixel_y = 32
- },
-/obj/machinery/camera{
- c_tag = "Holodeck Control Room"
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cFK" = (
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cFL" = (
-/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"cFM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Library Maintenance";
- req_access_txt = "12"
- },
-/turf/simulated/floor/plasteel,
-/area/library)
-"cFN" = (
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "sw_maint_airlock";
- pixel_y = 25;
- tag_airpump = "sw_maint_pump";
- tag_chamber_sensor = "sw_maint_sensor";
- tag_exterior_door = "sw_maint_outer";
- tag_interior_door = "sw_maint_inner"
- },
-/obj/machinery/airlock_sensor{
- id_tag = "sw_maint_sensor";
- pixel_y = 33
- },
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 4;
- frequency = 1379;
- id_tag = "sw_maint_pump"
- },
-/obj/machinery/light/small{
- dir = 1
+ icon_state = "cmo"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cFO" = (
+/area/medical/cmo)
+"gVc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cFP" = (
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "sw_maint_airlock";
- name = "interior access button";
- pixel_x = -24;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cFQ" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/maintenance/engrooms)
-"cFR" = (
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"cFS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance{
- name = "construction access"
- },
-/obj/structure/barricade/wooden,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cFT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cFU" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cFV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cFW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cFY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"cGa" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "neutral"
},
-/obj/machinery/light/small{
- dir = 1
+/area/toxins/mixing)
+"gVd" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"cGb" = (
-/obj/structure/rack,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/radio/intercom{
- pixel_y = -28
- },
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "dark"
},
-/area/engine/hardsuitstorage)
-"cGc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hydroponics)
+"gVl" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cGd" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/computer/message_monitor,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cGe" = (
+/area/toxins/server)
+"gVn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cGf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cGg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/hallway/primary/central/se)
+"gVo" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -3
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/taperecorder{
+ pixel_x = 5;
+ pixel_y = 5
},
-/obj/machinery/light/small{
- dir = 1
+/obj/item/analyzer{
+ pixel_x = -5;
+ pixel_y = 5
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cGh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/camera{
+ c_tag = "Toxins Lab";
+ dir = 5;
+ network = list("Research","SS13")
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/toxins/mixing)
+"gVB" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkred"
},
+/area/security/prison/cell_block/A)
+"gVC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 5
},
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 5
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cGi" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cGj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/emcloset,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cGk" = (
+/area/maintenance/asmaint2)
+"gVK" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno1";
- name = "Creature Cell #1";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cGl" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cGm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cGn" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
+/turf/simulated/floor/plating,
+/area/security/checkpoint)
+"gVL" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/disposalpipe/segment{
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
dir = 8;
- icon_state = "pipe-c"
+ id = "execution"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "execution"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cGo" = (
-/obj/structure/sign/poster/contraband/random{
- pixel_x = -32
+/obj/structure/window/reinforced/polarized{
+ id = "execution"
},
/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"cGp" = (
+/area/security/execution)
+"gVN" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=1";
+ location = "Engineering"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"gVO" = (
/obj/structure/table,
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/item/book/manual/hydroponics_pod_people,
@@ -65635,2468 +64200,2437 @@
icon_state = "dark"
},
/area/hydroponics)
-"cGq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark{
- name = "blobstart"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cGr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cGs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/start{
- name = "Botanist"
+"gVU" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "green"
- },
-/area/hydroponics)
-"cGt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "whitegreencorner"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/medical/virology)
+"gVV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cGu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research/glass{
+ name = "Robotics Lab";
+ req_access_txt = "29"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cGv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/assembly/robotics)
+"gWh" = (
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cGw" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "sw_maint_outer";
- locked = 1;
- name = "West Maintenance External Access";
- req_access = null
+/area/civilian/pet_store)
+"gWz" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cGx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/maintenance/engrooms)
+"gWH" = (
+/obj/structure/table,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_x = -5;
+ pixel_y = 6
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_x = 5;
+ pixel_y = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_y = 3
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/machinery/computer/guestpass{
+ pixel_y = 32
},
-/area/hallway/primary/central/sw)
-"cGy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/hydroponics)
+"gWJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A22";
- location = "A21"
- },
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/central/sw)
-"cGz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/courtroom)
+"gXb" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/status_display{
+ pixel_y = 32
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"gXc" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/flora/ausbushes/ppflowers,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central/south)
-"cGA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"gXh" = (
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+ icon_state = "0-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central/south)
-"cGB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "darkbluefull"
},
+/area/construction/hallway)
+"gXk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/library)
+"gXq" = (
+/obj/machinery/mech_bay_recharge_port,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/central/east)
-"cGC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"gXK" = (
+/obj/structure/barricade/wooden,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/library/abandoned)
+"gXM" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"gYb" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/toxins/server)
+"gYd" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutral"
},
-/area/hallway/primary/central/se)
-"cGD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"gYg" = (
+/obj/machinery/light/small{
+ dir = 1
},
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"gYl" = (
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A26";
- location = "A25"
+/area/medical/medbay3)
+"gYp" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/medical/ward)
+"gYq" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "red"
},
-/area/hallway/primary/central/se)
-"cGE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/securehallway)
+"gYI" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "arrival_south_airlock";
+ name = "exterior access button";
+ pixel_x = 24;
+ pixel_y = 24;
+ req_access_txt = "10;13"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"gYJ" = (
+/obj/item/twohanded/required/kirbyplants{
+ layer = 3
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/hallway/primary/central/se)
-"cGF" = (
+/area/crew_quarters/kitchen)
+"gYL" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/computer/pandemic,
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"gYN" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
},
-/obj/machinery/door/airlock/public/glass{
- name = "Pet Store"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/turf/simulated/floor/wood,
-/area/civilian/pet_store)
-"cGI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/toxins/explab)
+"gYX" = (
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"gZg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/civilian/pet_store)
-"cGJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cGK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/north,
+/area/maintenance/asmaint2)
+"gZr" = (
+/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "bluecorner"
},
/area/hallway/primary/central/south)
-"cGL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+"gZC" = (
+/obj/structure/morgue,
+/obj/effect/decal/warning_stripes/northwest,
+/obj/effect/landmark{
+ name = "revenantspawn"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ dir = 9;
+ icon_state = "darkblue"
},
-/area/hallway/primary/central/se)
-"cGM" = (
+/area/medical/morgue)
+"gZH" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cGN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark{
- name = "blobstart"
+/area/maintenance/fpmaint2)
+"gZJ" = (
+/obj/structure/closet/crate/engineering,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = -4;
+ pixel_y = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 4;
+ pixel_y = -4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cGO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
},
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"hab" = (
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"ham" = (
/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cGP" = (
-/obj/structure/bedsheetbin,
-/obj/structure/table,
-/obj/machinery/light{
- dir = 8
- },
+/obj/item/clipboard,
+/obj/item/toy/figure/scientist,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "arrival"
+ dir = 10;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (SOUTHWEST)"
},
-/area/crew_quarters/sleep)
-"cGQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+/area/toxins/lab)
+"har" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/crew_quarters/sleep)
-"cGR" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/sleep)
-"cGS" = (
-/obj/structure/disposalpipe/segment{
+/area/hallway/primary/fore)
+"has" = (
+/obj/structure/closet/secure_closet/captains,
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain/bedroom)
+"hax" = (
+/obj/machinery/alarm{
dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ pixel_y = -25
},
-/area/crew_quarters/sleep)
-"cGT" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Departure Lounge South";
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"haJ" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/crew_quarters/sleep)
-"cGU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/window/reinforced,
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_y = 7
},
+/obj/item/pen,
+/obj/structure/disposalpipe/segment,
+/obj/item/reagent_containers/spray/cleaner,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/sleep)
-"cGV" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+ dir = 10;
+ icon_state = "darkblue"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/morgue)
+"haO" = (
+/obj/machinery/computer/podtracker,
+/obj/machinery/light{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/area/crew_quarters/sleep)
-"cGW" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A5";
- location = "A4"
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry/westarrival)
-"cGX" = (
-/obj/machinery/camera{
- c_tag = "Rec Room Center";
- dir = 4;
- pixel_y = -22
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
+ icon_state = "dark"
},
+/area/security/podbay)
+"haX" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/fitness)
-"cGY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway South 1"
+ dir = 1;
+ icon_state = "purple"
},
-/obj/effect/decal/warning_stripes/northeastcorner,
+/area/quartermaster/miningdock)
+"hbc" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "blue"
},
-/area/hallway/primary/central/south)
-"cGZ" = (
-/obj/structure/window/reinforced{
- dir = 4
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"hbA" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 9;
+ icon_state = "red"
},
-/area/crew_quarters/fitness)
-"cHa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+/area/security/range)
+"hbD" = (
+/obj/machinery/ai_status_display{
+ pixel_x = 32
},
-/area/crew_quarters/fitness)
-"cHb" = (
-/obj/machinery/computer/HolodeckControl,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cHc" = (
-/obj/structure/chair/office/light{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cHd" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cHe" = (
-/obj/structure/bed,
-/obj/item/bedsheet/rainbow,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 5;
+ icon_state = "whitegreencorner"
},
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
+/area/medical/virology)
+"hbL" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
})
-"cHh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "green"
- },
-/area/hydroponics)
-"cHj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "green"
+"hbT" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/hydroponics)
-"cHk" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/xenozoo)
-"cHl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 1
},
-/obj/effect/decal/warning_stripes/yellow,
+/area/security/main)
+"hbX" = (
+/obj/machinery/recharger,
+/obj/structure/table,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/area/maintenance/port{
+ name = "Brig Maintenance"
})
-"cHm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+"hcg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/nw)
-"cHn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "red"
},
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cHo" = (
-/obj/machinery/light{
- dir = 8
+/area/security/armoury)
+"hcu" = (
+/obj/structure/chair{
+ dir = 1
},
-/turf/simulated/floor/wood,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cHp" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
},
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cHq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/crew_quarters/fitness)
+"hcz" = (
+/obj/structure/closet{
+ icon_closed = "white";
+ icon_state = "white";
+ name = "Medical gear"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/effect/spawner/lootdrop/trade_sol/med{
+ loot = list(/obj/item/storage/fancy/cigarettes/cigpack_med = 50, /obj/item/stack/nanopaste = 50, /obj/item/storage/pill_bottle/random_meds/labelled = 50, /obj/item/reagent_containers/glass/bottle/reagent/omnizine = 50, /obj/item/reagent_containers/glass/bottle/reagent/strange_reagent = 50, /obj/item/scalpel/laser/manager = 50, /obj/item/organ/internal/heart/gland/ventcrawling = 50, /obj/item/organ/internal/heart/gland/heals = 50, /obj/item/dnainjector/regenerate = 50, /obj/item/dnainjector/nobreath = 50, /obj/item/dnainjector/telemut = 50, /obj/item/reagent_containers/glass/bottle/regeneration = 50, /obj/item/reagent_containers/glass/bottle/sensory_restoration = 50, /obj/item/autopsy_scanner = 50, /obj/item/organ/internal/cyberimp/eyes/hud/medical = 50, /obj/item/gun/medbeam = 50, /obj/item/reagent_containers/applicator/dual/syndi = 50, /obj/item/reagent_containers/glass/bottle/retrovirus = 50, /obj/item/reagent_containers/glass/bottle/reagent/strange_reagent = 50, /obj/item/reagent_containers/glass/bottle/tuberculosiscure = 50, /obj/item/reagent_containers/glass/bottle/gbs = 50, /obj/item/bodyanalyzer/advanced = 50);
+ lootcount = 8;
+ name = "5. Medical gear"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cHr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"hcE" = (
+/obj/machinery/light/small{
dir = 4;
- initialize_directions = 11
+ tag = "icon-bulb1 (EAST)"
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/starboard{
name = "Engineering Maintenance"
})
-"cHs" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+"hcW" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
+/obj/machinery/hydroponics/constructable,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/crew_quarters/locker)
-"cHt" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/hydroponics)
+"hcZ" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"cHu" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/crew_quarters/courtroom)
-"cHv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/table,
+/obj/item/clipboard,
+/obj/item/toy/figure/miner,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"hdh" = (
+/obj/effect/decal/warning_stripes/northwestcorner,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/south)
+"hdk" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/gloves{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/masks,
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner"
},
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"cHw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 8
+/area/medical/surgery2)
+"hdm" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"hdu" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "High Sec Zone";
+ req_access_txt = "63"
},
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/security/permahallway)
+"hdx" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"hdG" = (
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cHx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/range)
+"hdV" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/airlock/public/glass{
+ id_tag = "KPPS"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cHy" = (
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "eslock";
+ name = "Escape Shuttle Lockdown"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/turf/simulated/floor/plasteel,
+/area/bridge/checkpoint/south)
+"hdZ" = (
+/obj/machinery/power/grounding_rod{
+ anchored = 1
},
-/area/hallway/primary/fore)
-"cHz" = (
-/obj/structure/window/reinforced{
- dir = 8
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"hec" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/window/reinforced,
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"cHA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"heg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cHB" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/sw)
-"cHC" = (
-/obj/structure/disposalpipe/junction{
dir = 4;
- tag = "icon-pipe-j1 (EAST)"
+ icon_state = "bluecorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hydroponics)
+"heh" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ id = "Cell 2";
+ name = "Cell 2";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/central/sw)
-"cHD" = (
+/area/security/prison/cell_block/A)
+"hes" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bluecorner"
+ },
+/area/hydroponics)
+"hev" = (
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central/south)
-"cHE" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"heE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/south)
-"cHF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "whitehall"
},
+/area/toxins/xenobiology)
+"heF" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "darkbluecorners"
},
-/area/hallway/primary/central/south)
-"cHG" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- name = "Research Junction";
- sortType = 12;
- tag = "icon-pipe-j1s (EAST)"
+/area/tcommsat/chamber)
+"heT" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/floor/plating,
+/area/construction/hallway)
+"heZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/area/hallway/primary/central/south)
-"cHH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/reception)
+"hfg" = (
+/obj/structure/bed/roller,
+/turf/simulated/floor/plasteel{
+ icon_state = "cmo"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"hfq" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/light/small,
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway South 2";
- dir = 1
+/area/maintenance/gambling_den)
+"hfx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "neutralfull"
},
-/area/hallway/primary/central/south)
-"cHI" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/area/hallway/primary/central/north)
+"hfM" = (
+/turf/simulated/floor/wood,
+/area/security/hos)
+"hfR" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/syringes,
+/obj/item/storage/box/beakers{
+ pixel_x = 4;
+ pixel_y = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/turf/simulated/floor/plasteel{
dir = 1;
- initialize_directions = 11
+ icon_state = "whitepurple"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/area/medical/genetics)
+"hfU" = (
+/obj/effect/landmark{
+ name = "revenantspawn"
},
-/area/hallway/primary/central/south)
-"cHJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ icon_state = "dark"
},
-/area/hallway/primary/central/south)
-"cHK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/area/library/abandoned)
+"hgg" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
- },
-/area/hallway/primary/central/south)
-"cHL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "darkred"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/warden)
+"hgx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
+ icon_state = "grimy"
},
-/area/hallway/primary/central/south)
-"cHM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/assembly/showroom)
+"hgF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"hgH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
+ icon_state = "white"
},
-/area/hallway/primary/central/south)
-"cHN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"hgM" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Warden";
+ name = "Warden Privacy Shutters"
},
-/area/hallway/primary/central/south)
-"cHO" = (
+/turf/simulated/floor/plating,
+/area/security/warden)
+"hgQ" = (
+/obj/structure/table,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"hgR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- tag = "icon-pipe-j1 (EAST)"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
+/area/crew_quarters/locker)
+"hgZ" = (
+/obj/structure/table,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/folder/yellow,
+/obj/item/storage/belt/utility,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"hhe" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
+ dir = 1;
+ icon_state = "bot"
},
-/area/hallway/primary/central/south)
-"cHP" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- tag = "icon-pipe-j1 (EAST)"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"hhf" = (
+/obj/item/stack/sheet/metal,
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ pixel_x = 4;
+ pixel_y = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/item/stack/sheet/metal,
+/obj/item/stack/sheet/metal,
+/obj/item/stack/sheet/glass{
+ pixel_x = 4;
+ pixel_y = 4
},
+/obj/item/stack/sheet/glass{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"hhg" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/central/se)
-"cHQ" = (
-/obj/structure/disposalpipe/segment{
+"hhq" = (
+/obj/machinery/alarm{
dir = 8;
- icon_state = "pipe-c"
+ pixel_x = 25
},
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway East 1";
- dir = 8
+/turf/simulated/floor/carpet,
+/area/civilian/pet_store)
+"hhF" = (
+/obj/structure/table/wood,
+/obj/item/taperecorder{
+ pixel_x = -5
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/item/radio{
+ pixel_x = 5
},
-/area/hallway/primary/central/se)
-"cHR" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Chemistry";
- name = "Chemistry Privacy Shutter"
+/area/security/hos)
+"hhH" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
},
+/area/hallway/primary/central/north)
+"hhI" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/medical/chemistry)
-"cHS" = (
+/area/quartermaster/miningdock)
+"hhJ" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plasteel{
- dir = 1
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/janitor)
-"cHT" = (
-/turf/simulated/wall,
-/area/civilian/pet_store)
-"cHU" = (
-/turf/simulated/wall/r_wall,
-/area/security/prison/cell_block/A)
-"cHV" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/customs)
-"cHW" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Virology";
+ name = "Virology Shutters"
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cHX" = (
-/obj/effect/spawner/window/reinforced,
+/area/medical/virology/lab)
+"hhQ" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/security/prison/cell_block/A)
-"cHZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/iv_drip,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cIa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/secondary/entry/louge)
-"cIb" = (
-/obj/machinery/washing_machine,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "arrival"
- },
-/area/crew_quarters/sleep)
-"cIc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/sleep)
-"cId" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A29";
- location = "A28"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ icon_state = "1-4"
},
-/area/crew_quarters/sleep)
-"cIf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/south)
-"cIg" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "neutralfull"
},
-/area/crew_quarters/sleep)
-"cIh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/area/teleporter)
+"hid" = (
+/obj/structure/closet/emcloset,
+/obj/effect/decal/cleanable/cobweb,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"hih" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f6"
},
+/area/shuttle/mining)
+"hiB" = (
/obj/machinery/light/small,
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway North 2";
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
-/area/crew_quarters/sleep)
-"cIi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hallway/primary/central/north)
+"hiH" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/camera{
- c_tag = "Dorm Hallway Port";
- dir = 1
+/obj/structure/table/reinforced,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
+/obj/item/folder/yellow,
+/obj/item/airlock_electronics,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/sleep)
-"cIj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "vault"
},
+/area/storage/tech)
+"hiQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/crew_quarters/sleep)
-"cIk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "white"
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/area/medical/virology)
+"hiV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/crew_quarters/sleep)
-"cIl" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A2";
- location = "A1"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/door/airlock/research{
+ name = "Toxin Mixing";
+ req_access_txt = "47"
},
-/area/hallway/secondary/entry/eastarrival)
-"cIm" = (
+/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/airlock/glass{
- name = "Cabin"
- },
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/sleep)
-"cIn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/toxins/mixing)
+"hjz" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
+/turf/simulated/floor/plating,
/area/crew_quarters/fitness)
-"cIo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+"hjA" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f10";
+ tag = "icon-swall_f10"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/shuttle/mining)
+"hjN" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/fitness)
-"cIp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"cIq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+ icon_state = "arrival"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/hallway/secondary/entry)
+"hjT" = (
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
},
-/area/crew_quarters/fitness)
-"cIr" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/regular,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cIs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Cell Block";
+ req_access_txt = "63"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A30";
- location = "A29"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/fitness)
-"cIt" = (
-/obj/structure/table/reinforced,
-/obj/item/paper/holodeck,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cIu" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "sw_maint_inner";
- locked = 1;
- name = "West Maintenance External Access";
- req_access = null;
- req_access_txt = "10;13"
+ icon_state = "darkred"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
+/area/security/prison/cell_block/A)
+"hkf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cIv" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/port)
+"hko" = (
+/obj/machinery/requests_console{
+ department = "Crew Quarters";
+ name = "Crew Quarters Requests Console";
+ pixel_x = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
-/area/hallway/primary/port)
-"cIx" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/xenozoo)
-"cIz" = (
+/area/crew_quarters/fitness)
+"hkp" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"hkr" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
+/turf/simulated/floor/plating,
+/area/security/podbay)
+"hkF" = (
+/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cIA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/gateway)
+"hlh" = (
+/obj/structure/closet/emcloset,
/turf/simulated/floor/plating,
/area/maintenance/starboard{
name = "Engineering Maintenance"
})
-"cIB" = (
-/obj/structure/computerframe,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+"hlj" = (
+/obj/machinery/computer/crew,
+/obj/machinery/computer/guestpass{
+ pixel_y = -32
},
-/area/maintenance/xenozoo)
-"cID" = (
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/reception)
+"hlF" = (
+/obj/structure/table/glass,
+/obj/structure/sign/deathsposal{
+ pixel_y = -32
+ },
+/obj/item/paper_bin,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"hlJ" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cIE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/maintenance/asmaint2)
+"hlT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/wall/r_wall,
-/area/toxins/misc_lab)
-"cIF" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "brown"
+ },
+/area/quartermaster/sorting)
+"hmo" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "SecPilotPriv"
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cIG" = (
+/area/security/podbay)
+"hmq" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "SecMedPriv"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cIH" = (
-/turf/simulated/wall/r_wall,
-/area/toxins/xenobiology)
-"cII" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cIJ" = (
-/obj/machinery/atmospherics/unary/portables_connector,
+/area/security/medbay)
+"hmB" = (
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cIK" = (
-/obj/machinery/atmospherics/unary/tank/air,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cIL" = (
-/turf/simulated/wall,
-/area/toxins/xenobiology)
-"cIM" = (
+/obj/structure/sign/poster/contraband/rebels_unite{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"hmE" = (
+/obj/machinery/door/morgue{
+ name = "Confession Booth (Chaplain)";
+ req_access_txt = "22"
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/toxins/xenobiology)
-"cIN" = (
-/obj/machinery/power/tesla_coil,
-/obj/machinery/camera{
- c_tag = "Engineering Secure Storage 1";
- dir = 1;
- network = list("Engineering","SS13")
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cIO" = (
+/area/chapel/office)
+"hmL" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark";
- temperature = 80
+ dir = 5;
+ icon_state = "yellow"
},
-/area/toxins/xenobiology)
-"cIP" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/suit_storage_unit/engine,
-/obj/machinery/alarm{
- pixel_y = 24
+/area/engine/hardsuitstorage)
+"hmS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel,
-/area/storage/secure)
-"cIQ" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cIR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cIS" = (
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"hne" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"cIT" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
-/area/hallway/primary/central/south)
-"cIU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/library)
+"hng" = (
+/obj/structure/weightmachine/weightlifter,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"hnB" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "SecMedPriv"
+ },
+/turf/simulated/floor/plating,
+/area/security/medbay)
+"hnQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/south)
-"cIV" = (
-/obj/structure/sign/science,
-/turf/simulated/wall,
-/area/hallway/primary/central/sw)
-"cIX" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
-"cIY" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cIZ" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/medical/research{
- name = "Research Division"
- })
-"cJa" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cJb" = (
-/obj/structure/sign/directions/engineering{
- dir = 8;
- pixel_y = 8
+/area/crew_quarters/fitness)
+"hnW" = (
+/obj/machinery/keycard_auth{
+ pixel_x = -26;
+ pixel_y = 22
},
-/obj/structure/sign/directions/science{
- dir = 8;
- pixel_y = 1
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Captain's Desk";
+ departmentType = 5;
+ name = "Captain Requests Console";
+ pixel_x = -30
},
-/obj/structure/sign/directions/evac{
- pixel_y = -8
+/obj/machinery/computer/card,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/captain)
+"hog" = (
+/obj/machinery/sleeper{
+ pixel_x = 3
},
-/turf/simulated/wall,
-/area/medical/research{
- name = "Research Division"
- })
-"cJc" = (
+/obj/effect/decal/warning_stripes/blue/hollow,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Exam Room North";
+ network = list("SS13","Medical");
+ pixel_x = 34
},
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "white"
},
-/area/crew_quarters/locker)
-"cJd" = (
-/obj/structure/lattice,
-/obj/machinery/camera/emp_proof{
- c_tag = "Singularity SouthWest";
- dir = 4;
- network = list("SS13","Singularity","Engineering")
+/area/medical/sleeper)
+"hox" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
-/turf/space,
-/area/engine/engineering)
-"cJe" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/item/pen,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"cJf" = (
-/obj/structure/sign/redcross{
- desc = "The Star of Life, a symbol of Medical Aid.";
- icon_state = "lifestar";
- name = "Medbay"
+/area/security/reception)
+"hoH" = (
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = "medcabin1";
+ name = "Patients Room"
},
-/turf/simulated/wall,
-/area/medical/reception)
-"cJg" = (
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "medcabin2";
- name = "Door Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 7;
- pixel_y = 24;
- specialfunctions = 4
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "medcabin1";
- name = "Door Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = -6;
- pixel_y = 24;
- specialfunctions = 4
+/area/medical/ward)
+"hoM" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"hoS" = (
+/obj/machinery/camera{
+ c_tag = "Research Hallway";
+ network = list("Research","SS13")
+ },
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whitepurplecorner"
},
-/area/medical/ward)
-"cJh" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/medical/research/nhallway)
+"hoT" = (
+/obj/structure/delta_statue/c,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault";
+ tag = "icon-vault (WEST)"
+ },
+/area/bridge/vip)
+"hoU" = (
+/obj/structure/chair/office/dark,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/area/medical/reception)
-"cJj" = (
-/obj/structure/sign/chemistry,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/wall/r_wall,
-/area/medical/chemistry)
-"cJl" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/obj/effect/landmark/start{
+ name = "Warden"
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
-"cJm" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cJn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cJo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/landmark{
- name = "blobstart"
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkredfull"
+ },
+/area/security/warden)
+"hoX" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cJp" = (
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
})
-"cJq" = (
-/turf/simulated/wall/r_wall,
-/area/medical/biostorage)
-"cJr" = (
+"hpc" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "browncorner"
+ },
+/area/hallway/primary/central/north)
+"hpg" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 1;
- icon_state = "red"
+ id_tag = "SecMedPriv"
},
-/area/security/prison/cell_block/A)
-"cJs" = (
-/obj/machinery/firealarm{
- pixel_y = 26
+/turf/simulated/floor/plating,
+/area/security/medbay)
+"hph" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/reagent_containers/spray/pepper{
+ pixel_x = -9;
+ pixel_y = 5
+ },
+/obj/item/flash{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{
+ pixel_x = 5;
+ pixel_y = -3
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ dir = 8;
+ icon_state = "darkred"
},
-/area/security/prison/cell_block/A)
-"cJt" = (
-/obj/machinery/door_timer/cell_5{
- dir = 1;
- pixel_y = 0
+/area/security/processing)
+"hpE" = (
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
+/area/bridge/vip)
+"hpG" = (
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
},
-/area/security/prison/cell_block/A)
-"cJu" = (
-/obj/structure/rack,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 8
- },
-/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
-"cJv" = (
+"hpZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 8;
+ icon_state = "darkred"
},
-/area/security/prison/cell_block/A)
-"cJx" = (
-/obj/machinery/vending/crittercare,
-/turf/simulated/floor/carpet,
-/area/civilian/pet_store)
-"cJy" = (
-/obj/machinery/door/airlock{
- id_tag = "cabin4";
- name = "Cabin"
+/area/security/evidence)
+"hqc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/cabin4)
-"cJz" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/crew_quarters/fitness)
-"cJA" = (
-/obj/structure/window/reinforced,
-/obj/machinery/door/window{
- dir = 8
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"hqh" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/area/crew_quarters/fitness)
-"cJB" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/fitness)
-"cJC" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"hqq" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom{
+ pixel_y = 26
+ },
+/obj/machinery/computer/med_data/laptop,
+/obj/machinery/flasher_button{
+ id = "hopflash";
+ pixel_x = -38;
+ pixel_y = -6
+ },
+/obj/machinery/door_control{
+ id = "hopprivacy";
+ name = "Privacy Shutters";
+ pixel_x = -24;
+ pixel_y = -6;
+ req_one_access_txt = "18"
+ },
+/obj/machinery/door_control{
+ id = "hopqueueshutters";
+ name = "Queue Shutters";
+ pixel_x = -24;
+ pixel_y = 6;
+ req_one_access_txt = "18"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/crew_quarters/fitness)
-"cJD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/crew_quarters/heads/hop)
+"hqC" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/customs)
+"hqG" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ id_tag = "mix_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ layer = 2.4;
+ name = "mix vent";
+ on = 1;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0
},
+/turf/simulated/floor/engine/insulated/vacuum,
+/area/atmos)
+"hqP" = (
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness)
-"cJE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"hqS" = (
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/door/airlock/glass{
- name = "Holodeck Door"
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = 32
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cJF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
},
-/obj/machinery/light{
- dir = 1;
- in_use = 1
+/area/medical/medbay3)
+"hrb" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ name = "Труба смешивания"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cJG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/meter,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/door/airlock/glass{
- name = "Holodeck Door"
+/area/atmos)
+"hrt" = (
+/turf/simulated/wall/rust,
+/area/maintenance/disposal)
+"hrL" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
},
+/area/security/brigstaff)
+"hrO" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cJH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/area/crew_quarters/locker/locker_toilet)
+"hrW" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
},
-/obj/machinery/door/airlock/glass{
- name = "Holodeck Door"
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cJI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/rack,
+/obj/item/tank/jetpack/carbondioxide{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/tank/jetpack/carbondioxide{
+ pixel_x = 4;
+ pixel_y = -3
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cJJ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/area/engine/mechanic_workshop/expedition)
+"hrX" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 1;
+ name = "Труба смешивания"
+ },
+/turf/simulated/floor/plasteel{
dir = 8;
- on = 1
+ icon_state = "neutralfull"
},
-/obj/machinery/status_display{
- pixel_y = -32
+/area/atmos)
+"hrY" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "KPPN";
+ name = "North Checkpoint Bolts";
+ normaldoorcontrol = 1;
+ pixel_x = -6;
+ pixel_y = 7;
+ req_access_txt = "19";
+ specialfunctions = 4
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cJK" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "KPPS";
+ name = "South Checkpoint Bolts";
+ normaldoorcontrol = 1;
+ pixel_x = 6;
+ pixel_y = 7;
+ req_access_txt = "19";
+ specialfunctions = 4
+ },
+/obj/machinery/door_control{
+ id = "eslock";
+ name = "Privacy Shuttes Control";
+ pixel_x = 6;
+ pixel_y = -2;
+ req_access_txt = "19"
+ },
+/obj/machinery/door_control{
+ id = "SKPP";
+ name = "Privacy Shuttes Control";
+ pixel_x = -6;
+ pixel_y = -2;
+ req_access_txt = "19"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "blue"
+ },
+/area/bridge/checkpoint/south)
+"hsp" = (
+/turf/simulated/wall,
/area/maintenance/fsmaint2{
name = "Tourist Area Maintenance"
})
-"cJL" = (
-/turf/simulated/floor/wood{
- icon_state = "wood-broken";
- tag = "icon-wood-broken"
+"hsI" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/light/small{
+ dir = 1
},
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
+/turf/simulated/floor/plating,
+/area/maintenance/storage{
+ name = "Perma Maintenance"
})
-"cJM" = (
-/obj/structure/closet/l3closet/scientist,
+"hsQ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 8;
+ name = "Труба дыхательной смеси"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "caution"
},
-/area/maintenance/xenozoo)
-"cJN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/atmos)
+"hsS" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"hsU" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cJO" = (
-/obj/machinery/door/airlock/maintenance,
-/obj/structure/barricade/wooden,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cJS" = (
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "purple"
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/area/maintenance/xenozoo)
-"cJW" = (
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "purple"
+ icon_state = "dark"
},
-/area/maintenance/xenozoo)
-"cJY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/area/security/execution)
+"htj" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 1
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 8
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cJZ" = (
-/obj/effect/decal/warning_stripes/northwest,
+/area/toxins/mixing)
+"htt" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold4w/visible/purple,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "caution"
+ },
+/area/atmos)
+"htC" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "experimentor";
+ name = "Experimentor Blast Door";
+ opacity = 0
},
-/area/maintenance/xenozoo)
-"cKa" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"cKb" = (
-/obj/effect/decal/cleanable/blood/xeno,
-/obj/effect/decal/warning_stripes/northeast,
+/area/toxins/explab)
+"htF" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/maintenance/xenozoo)
-"cKc" = (
+/area/hallway/primary/central/west)
+"hur" = (
+/obj/structure/toilet{
+ desc = "Старый грязный туалет, по какой-то причине стоящий в техах. У вас нет ни единого понятия откуда он здесь.";
+ name = "Параша"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"huw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Service Hall"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light/small{
- dir = 8
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"huT" = (
+/obj/structure/bed/psych,
+/obj/machinery/light{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cKd" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"hvg" = (
+/obj/item/radio/intercom/custom{
+ pixel_y = 25
+ },
+/obj/item/radio/intercom{
+ pixel_x = -28
+ },
+/obj/item/radio/intercom/private{
+ pixel_y = -28
+ },
+/obj/effect/landmark{
+ name = "tripai"
+ },
+/obj/machinery/door/window/southright{
+ dir = 4;
+ name = "AI Intercom";
+ req_access_txt = "16"
+ },
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai)
+"hvr" = (
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/main)
+"hvz" = (
+/obj/structure/table,
+/obj/item/stock_parts/cell/high,
+/obj/machinery/cell_charger,
+/obj/item/radio/intercom{
dir = 8;
- initialize_directions = 11
+ pixel_x = -28
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cKe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/area/shuttle/escape{
+ parallax_movedir = 2
})
-"cKf" = (
+"hvE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"hvI" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"hvP" = (
+/obj/effect/decal/warning_stripes/southwestcorner,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"hvW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard{
name = "Engineering Maintenance"
})
-"cKg" = (
+"hwa" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/rack,
-/obj/item/book/manual/engineering_guide,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cKh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/sw)
+"hwj" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cKi" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cKj" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"cKk" = (
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"hwu" = (
+/turf/simulated/floor/engine/plasma,
+/area/atmos)
+"hwz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/northwest,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cKl" = (
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/showcase{
- layer = 5
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ tag = "icon-pipe-j1 (EAST)"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/tcommsat/chamber)
-"cKm" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/effect/landmark{
- name = "blobstart"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 8
+/area/hallway/primary/central/south)
+"hwC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cKn" = (
-/mob/living/simple_animal/slime,
-/turf/simulated/floor/greengrid,
-/area/toxins/xenobiology)
-"cKo" = (
-/turf/simulated/floor/greengrid,
-/area/toxins/xenobiology)
-"cKp" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- external_pressure_bound = 140;
- external_pressure_bound_default = 140;
- on = 1;
- pressure_checks = 0;
- pressure_checks_default = 0
- },
-/turf/simulated/floor/greengrid{
- temperature = 80
+ dir = 4
},
-/area/toxins/xenobiology)
-"cKq" = (
-/turf/simulated/floor/greengrid{
- temperature = 80
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/toxins/xenobiology)
-"cKr" = (
-/turf/simulated/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
-"cKs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
-"cKt" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/grille,
/turf/simulated/floor/plating,
/area/maintenance/starboard{
name = "Engineering Maintenance"
})
-"cKu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
+"hwE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
})
-"cKv" = (
+"hxp" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/vending/plasmaresearch,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "green"
+ icon_state = "neutralcorner"
},
-/area/hydroponics)
-"cKw" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/structure/sign/poster/official/science{
- pixel_x = -32
+/area/toxins/mixing)
+"hxV" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Toxins Tank";
+ network = list("SS13","Engineering")
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+/turf/simulated/floor/engine/plasma,
+/area/atmos)
+"hya" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ id_tag = "tox_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ layer = 2.4;
+ name = "plasma vent";
+ on = 1;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0
},
-/area/medical/research{
- name = "Research Division"
- })
-"cKx" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/chair,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+/turf/simulated/floor/engine/plasma,
+/area/atmos)
+"hyj" = (
+/obj/machinery/atmospherics/binary/pump{
+ desc = "Подаёт токсины для смешивания с другими газами";
+ dir = 4;
+ name = "Токсины (Плазма) в смеситель";
+ target_pressure = 101
},
-/area/medical/research{
- name = "Research Division"
- })
-"cKy" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
dir = 1;
- icon_state = "whitepurplecorner"
+ name = "Труба фильтрации"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cKz" = (
-/obj/structure/chair,
-/obj/effect/landmark/start{
- name = "Civilian"
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
-"cKA" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ dir = 9;
+ icon_state = "purple"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cKB" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/area/atmos)
+"hyk" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
+/obj/machinery/disposal,
+/obj/machinery/light/small{
+ dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
-"cKC" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil/random,
-/obj/item/assembly/igniter,
-/obj/item/assembly/timer{
- pixel_x = 4;
- pixel_y = 4
+/obj/machinery/light_switch{
+ pixel_x = -26;
+ pixel_y = -4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cKD" = (
-/obj/structure/chair,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+/area/chapel/office)
+"hyv" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cKE" = (
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"hyI" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/medical/research{
name = "Research Division"
})
-"cKG" = (
-/obj/structure/chair,
-/obj/effect/landmark/start{
- name = "Civilian"
+"hyJ" = (
+/obj/machinery/atmospherics/unary/heat_reservoir/heater{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"hyT" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
-"cKH" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/glasses/science,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cKI" = (
-/obj/structure/sign/science,
-/turf/simulated/wall,
-/area/medical/research{
- name = "Research Division"
- })
-"cKJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
-"cKK" = (
-/turf/simulated/floor/plasteel{
+"hze" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
dir = 8;
- icon_state = "neutralfull"
+ name = "west bump";
+ pixel_x = -24
},
-/area/hallway/primary/aft)
-"cKL" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
+ dir = 6;
+ icon_state = "bluefull"
},
-/area/hallway/primary/aft)
-"cKM" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+/area/bridge/checkpoint/south)
+"hzk" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/reception)
-"cKP" = (
-/obj/structure/chair/comfy/teal,
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/radio/intercom{
- pixel_x = 28
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/reception)
-"cKR" = (
-/obj/structure/table/glass,
-/obj/machinery/reagentgrinder{
- pixel_x = -1;
- pixel_y = 9
+/area/hallway/primary/central/south)
+"hzp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/radio/intercom{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door_control{
- id = "Chemistry";
- name = "Chem Privacy Shutters Control";
- pixel_x = -23;
- pixel_y = -9
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteyellow"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/medical/chemistry)
-"cKS" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/dropper,
-/obj/item/reagent_containers/dropper,
-/obj/item/reagent_containers/dropper,
-/obj/item/reagent_containers/dropper/precision,
-/obj/item/reagent_containers/dropper/precision,
-/obj/item/reagent_containers/dropper/precision,
-/obj/item/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
+/area/bridge/vip)
+"hzN" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-25";
+ tag = "icon-plant-25"
},
-/obj/item/storage/box/syringes,
-/obj/item/storage/box/syringes,
-/obj/item/storage/box/iv_bags{
- pixel_x = 4;
- pixel_y = 4
+/obj/machinery/door_control{
+ id = "magistrate";
+ name = "Privacy Shutters Control";
+ pixel_x = -25;
+ pixel_y = 8
},
-/obj/item/storage/box/iv_bags{
- pixel_x = 4;
- pixel_y = 4
+/obj/machinery/light_switch{
+ pixel_x = -25
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/magistrateoffice)
+"hzS" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHWEST)"
+ },
+/area/medical/ward)
+"hzT" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = -26
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteyellow"
+ icon_state = "brown"
},
-/area/medical/chemistry)
-"cKT" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/applicator{
- pixel_x = 6;
- pixel_y = 7
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"hzX" = (
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
},
-/obj/item/reagent_containers/applicator{
- pixel_x = 6;
- pixel_y = 7
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = -5;
- pixel_y = 1
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = -5;
- pixel_y = 1
+/area/hallway/primary/central/south)
+"hAu" = (
+/obj/item/radio/intercom{
+ pixel_x = -28
},
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = -5;
- pixel_y = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = -5;
- pixel_y = 1
+/area/hallway/primary/central/east)
+"hAC" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ desc = "Труба содержит газ для обработки и после возвращает его обратно в трубу смешивания";
+ dir = 4;
+ name = "Труба обработки"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"hAQ" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/item/reagent_containers/applicator{
- pixel_x = 6;
- pixel_y = 7
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/item/reagent_containers/applicator{
- pixel_x = 6;
- pixel_y = 7
+/area/chapel/main)
+"hAX" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/northwest,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = -5;
- pixel_y = 1
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/item/extinguisher/mini,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"hAY" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s9"
},
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = -5;
- pixel_y = 1
+/area/shuttle/administration)
+"hBg" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteyellow"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/medical/chemistry)
-"cKU" = (
-/obj/structure/closet/secure_closet/reagents,
-/obj/machinery/light{
+/area/medical/medbay3)
+"hBH" = (
+/obj/machinery/atmospherics/unary/outlet_injector/on{
+ dir = 8;
+ frequency = 1441;
+ id = "o2_in"
+ },
+/turf/simulated/floor/engine/o2,
+/area/atmos)
+"hBQ" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/structure/window/reinforced{
dir = 1
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera{
- c_tag = "Medbey Chemistry";
- dir = 6;
- network = list("Medical","SS13")
+/turf/simulated/floor/wood,
+/area/library)
+"hBR" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/carpet,
+/area/maintenance/fsmaint)
+"hBX" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/landmark/start{
+ name = "Scientist"
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteyellow"
+ dir = 4;
+ icon_state = "neutral"
},
-/area/medical/chemistry)
-"cKV" = (
-/obj/machinery/chem_dispenser,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/toxins/mixing)
+"hCd" = (
+/obj/item/radio/intercom/department/security{
+ pixel_x = 32;
+ pixel_y = -7
},
-/turf/simulated/floor/engine,
-/area/medical/chemistry)
-"cKW" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/chair/stool,
-/obj/effect/landmark/start{
- name = "Chemist"
+/obj/item/radio/intercom{
+ pixel_x = 32;
+ pixel_y = 5
},
-/turf/simulated/floor/engine,
-/area/medical/chemistry)
-"cKX" = (
-/obj/machinery/chem_master,
-/obj/effect/decal/warning_stripes/northeast,
-/obj/structure/disposalpipe/segment,
-/obj/structure/reagent_dispensers/fueltank/chem{
- pixel_x = 33
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22";
+ tag = "icon-plant-22"
},
-/obj/machinery/door_control{
- id = "Chemistry1";
- name = "Chem Hallway Desk Shutters";
- pixel_x = 25;
- pixel_y = 23
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/engine,
-/area/medical/chemistry)
-"cKY" = (
-/turf/simulated/wall,
-/area/medical/ward)
-"cKZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 26
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cLa" = (
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/machinery/camera{
+ c_tag = "Magistrate Office North"
},
-/obj/structure/closet/radiation,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/medical/biostorage)
-"cLb" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+/area/magistrateoffice)
+"hCl" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/hardsuit/medical,
-/obj/item/clothing/mask/gas,
/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/window/reinforced{
- dir = 4
+/obj/structure/closet/crate/hydroponics/prespawned,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/window/reinforced{
- dir = 8
+/area/hydroponics)
+"hCs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/machinery/door/window/westleft{
- dir = 2;
- name = "Emergency Hardsuits";
- req_access_txt = "40"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "white"
},
-/area/medical/biostorage)
-"cLc" = (
+/area/medical/research/nhallway)
+"hCy" = (
+/obj/structure/table/reinforced,
+/obj/item/tank/jetpack/carbondioxide{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
+ },
+/area/engine/hardsuitstorage)
+"hCD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 6
},
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cLd" = (
-/obj/structure/chair{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cLe" = (
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/hydroponics)
+"hCR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -68105,1430 +66639,1684 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "red"
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Chemistry Junction";
+ sortType = 11
},
-/area/security/prison/cell_block/A)
-"cLh" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/turf/simulated/floor/plasteel{
dir = 8;
- on = 1
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+/area/hallway/primary/central/south)
+"hCW" = (
+/obj/structure/table,
+/obj/item/tank/emergency_oxygen/nitrogen{
+ pixel_x = 6;
+ pixel_y = -2
},
-/area/security/prison/cell_block/A)
-"cLi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/item/tank/emergency_oxygen/nitrogen{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/tank/emergency_oxygen/nitrogen{
+ pixel_x = 6;
+ pixel_y = 10
+ },
+/obj/item/tank/emergency_oxygen/plasma{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/obj/item/tank/emergency_oxygen/plasma{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/tank/emergency_oxygen/plasma{
+ pixel_x = -6;
+ pixel_y = 10
+ },
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cLj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/medical/biostorage)
+"hDv" = (
+/obj/structure/table/wood/poker,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cLk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/maintenance/gambling_den)
+"hDD" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/security/processing)
+"hDH" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
},
+/turf/space,
+/area/space/nearstation)
+"hDU" = (
+/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cLl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hallway/primary/port)
+"hEb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cLm" = (
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/beach/water{
- icon_state = "seadeep"
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/area/crew_quarters/fitness)
-"cLn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/area/medical/virology/lab)
+"hEe" = (
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding1"
},
-/obj/effect/decal/cleanable/cobweb2,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cLo" = (
-/obj/structure/dresser,
-/obj/item/radio/intercom{
- pixel_x = 26;
- pixel_y = 28
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin3)
-"cLp" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/cabin4)
-"cLq" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/item/radio/intercom{
- pixel_x = 26;
- pixel_y = 28
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/cabin4)
-"cLr" = (
-/obj/item/radio/intercom{
- pixel_x = 26;
- pixel_y = 28
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/machinery/cryopod,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ icon_state = "asteroid";
+ tag = "icon-asteroid (NORTH)"
},
-/area/crew_quarters/sleep)
-"cLs" = (
-/obj/machinery/vending/cola,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/radio/intercom{
- pixel_x = -28
+/area/hydroponics)
+"hEh" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall14"
},
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"hEs" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 4;
+ icon_state = "blue"
},
-/area/crew_quarters/fitness)
-"cLt" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+/area/hydroponics)
+"hEv" = (
+/obj/structure/chair/office/dark{
+ dir = 8
},
-/area/crew_quarters/fitness)
-"cLu" = (
-/obj/structure/chair{
- dir = 1
+/obj/effect/landmark/start{
+ name = "Librarian"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ icon_state = "dark"
},
-/area/crew_quarters/fitness)
-"cLv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/area/library)
+"hEB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/crew_quarters/fitness)
-"cLw" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ name = "Creature Pen";
+ req_access_txt = "47"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"hED" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/crew_quarters/fitness)
-"cLx" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ icon_state = "1-4"
},
+/turf/simulated/floor/plating,
+/area/security/prison/cell_block/A)
+"hEK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"hEN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/ward)
-"cLz" = (
-/obj/structure/chair/wood/wings{
- dir = 8;
- tag = "icon-wooden_chair_wings (WEST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/wood{
- icon_state = "wood-broken6";
- tag = "icon-wood-broken6"
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"hEY" = (
+/obj/machinery/door/morgue{
+ name = "Private Study";
+ req_access_txt = "37"
},
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cLA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/library)
+"hFe" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/light{
+ dir = 4
},
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkred"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
},
-/area/security/podbay)
-"cLC" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cLG" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"cLI" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "purplecorner"
- },
-/area/maintenance/xenozoo)
-"cLJ" = (
-/obj/effect/decal/remains/xeno,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "purple"
- },
-/area/maintenance/xenozoo)
-"cLL" = (
+/area/medical/medbay3)
+"hFg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/space_heater,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cLM" = (
-/obj/item/shard{
- icon_state = "small"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/item/shard{
- icon_state = "medium";
- pixel_x = -7;
- pixel_y = -10
+/area/hallway/primary/central/nw)
+"hFn" = (
+/turf/simulated/floor/mech_bay_recharge_floor,
+/area/assembly/chargebay)
+"hFv" = (
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding1"
},
-/obj/item/airlock_electronics,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding2"
},
-/area/maintenance/xenozoo)
-"cLP" = (
-/obj/structure/disposalpipe/segment{
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/light/small{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cLQ" = (
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 9;
- level = 2
+/turf/simulated/floor/plasteel{
+ icon_state = "asteroid";
+ tag = "icon-asteroid (NORTH)"
+ },
+/area/hydroponics)
+"hFx" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -29
},
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cLR" = (
-/obj/structure/disposalpipe/trunk,
-/obj/structure/disposaloutlet{
- dir = 1
+/area/ai_monitored/storage/eva)
+"hFG" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
},
+/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/toxins/xenobiology)
-"cLS" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8
+/area/maintenance/electrical)
+"hFX" = (
+/obj/machinery/atm,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall8";
+ tag = "icon-swall12"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark";
- temperature = 80
+/area/shuttle/trade/sol)
+"hGm" = (
+/obj/structure/chair/office/light{
+ dir = 4
},
-/area/toxins/xenobiology)
-"cLT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark";
- temperature = 80
+ dir = 4;
+ icon_state = "whitepurple"
},
-/area/toxins/xenobiology)
-"cLU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
+/area/assembly/robotics)
+"hGs" = (
+/obj/structure/table/wood,
+/obj/machinery/light,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
+ },
+/obj/item/toy/plushie/orange_cat{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/turf/simulated/floor/wood,
+/area/civilian/pet_store)
+"hGB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark";
- temperature = 80
+ icon_state = "white"
},
-/area/toxins/xenobiology)
-"cLV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/area/medical/virology)
+"hGI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cautioncorner"
+ icon_state = "dark"
},
-/area/hallway/primary/port/west)
-"cLW" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Telescience"
+/area/maintenance/gambling_den)
+"hGZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/structure/barricade/wooden,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
})
-"cLX" = (
+"hHa" = (
+/turf/simulated/wall,
+/area/hallway/primary/central/north)
+"hHd" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/engine/engineering/monitor)
-"cLY" = (
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
pixel_y = 24
},
+/obj/structure/table,
+/obj/item/hand_tele,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"hHo" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = -32
+ },
+/obj/item/grenade/chem_grenade,
+/obj/item/grenade/chem_grenade{
+ pixel_x = 10;
+ pixel_y = 5
+ },
+/obj/item/grenade/chem_grenade{
+ pixel_x = -7;
+ pixel_y = 6
+ },
+/obj/item/grenade/chem_grenade{
+ pixel_x = 1;
+ pixel_y = 10
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple"
+ },
+/area/toxins/mixing)
+"hHs" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/disposal,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/disposalpipe/trunk{
- dir = 4
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/east)
+"hHu" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"hHy" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/area/engine/engineering/monitor)
-"cLZ" = (
-/turf/simulated/wall,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cMa" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/chem_master,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "darkredcorners"
+ },
+/area/security/podbay)
+"hHL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/hydroponics)
-"cMc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/locker)
+"hHP" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/turret_protected/ai)
-"cMd" = (
-/obj/structure/table,
-/obj/item/folder/white,
-/obj/item/gps,
+/area/crew_quarters/sleep)
+"hIc" = (
+/obj/structure/delta_statue/n,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ dir = 8;
+ icon_state = "vault";
+ tag = "icon-vault (WEST)"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cMe" = (
-/obj/structure/disposalpipe/segment,
+/area/bridge/vip)
+"hIk" = (
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "grimy"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cMf" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+/area/chapel/main)
+"hIA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"cMg" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
+/area/medical/sleeper)
+"hIB" = (
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cMh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/security/warden)
+"hIZ" = (
+/obj/effect/decal/warning_stripes/southwestcorner,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"hJA" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cMi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"hJC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"cMj" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cMk" = (
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"hJG" = (
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cMn" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "burst_l"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/trade/sol)
-"cMp" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
-/area/medical/reception)
-"cMq" = (
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/area/toxins/explab)
+"hJO" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler{
+ pixel_x = -8;
+ pixel_y = 5
},
-/area/medical/reception)
-"cMr" = (
-/obj/structure/closet/secure_closet/reagents,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteyellow"
+/obj/item/assembly/signaler{
+ pixel_x = 8;
+ pixel_y = 5
},
-/area/medical/chemistry)
-"cMs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/item/assembly/signaler{
+ pixel_y = 13
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteyellow"
+ dir = 8;
+ icon_state = "whitepurple"
},
-/area/medical/chemistry)
-"cMt" = (
-/obj/machinery/disposal,
-/obj/effect/decal/warning_stripes/southeast,
-/obj/structure/disposalpipe/trunk{
+/area/toxins/mixing)
+"hJX" = (
+/obj/effect/decal/warning_stripes/southeastcorner,
+/obj/structure/chair/office/light{
dir = 1
},
-/turf/simulated/floor/engine,
-/area/medical/chemistry)
-"cMu" = (
-/obj/structure/table/glass,
-/obj/item/stack/packageWrap,
-/obj/item/reagent_scanner/adv,
-/obj/machinery/light{
- dir = 1
+/obj/effect/landmark/start{
+ name = "Roboticist"
},
-/obj/item/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (NORTHWEST)"
},
-/obj/item/storage/box/pillbottles{
- pixel_x = 2;
- pixel_y = 2
+/area/assembly/robotics)
+"hJZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 26
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteyellow"
+ icon_state = "dark"
},
-/area/medical/chemistry)
-"cMv" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
- name = "Chemistry Cleaner"
+/area/crew_quarters/locker)
+"hKe" = (
+/obj/machinery/tcomms/core/station,
+/obj/machinery/flasher{
+ id = null;
+ pixel_y = -24
},
-/obj/item/hand_labeler,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/camera/motion{
+ c_tag = "Minisat Telecommunications";
+ dir = 1;
+ network = list("Minisat","SS13")
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"hKl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"hKm" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/obj/structure/window/reinforced{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteyellow"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/chemistry)
-"cMw" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/window/eastright{
- dir = 2;
- name = "Chemistry Delivery";
- req_access_txt = "33"
+/area/hallway/primary/central/ne)
+"hKt" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteyellow"
- },
-/area/medical/chemistry)
-"cMx" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Chemistry";
- name = "Chemistry Privacy Shutter"
+ dir = 8;
+ icon_state = "darkblue"
},
+/area/chapel/main)
+"hKG" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/virology)
+"hKH" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/medical/biostorage)
-"cMy" = (
-/obj/item/radio/intercom{
- pixel_x = -28;
- pixel_y = -3
- },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/biostorage)
-"cMA" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/hardsuit/medical,
-/obj/item/clothing/mask/gas,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
+ icon_state = "neutralfull"
},
-/obj/machinery/door/window/westleft{
- dir = 2;
- name = "Emergency Hardsuits";
- req_access_txt = "40"
+/area/crew_quarters/sleep)
+"hLe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+ icon_state = "dark"
},
-/area/medical/biostorage)
-"cME" = (
+/area/security/execution)
+"hLh" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/kitchen)
+"hLi" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger{
+ pixel_y = 3
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bcarpet05"
+ },
+/area/blueshield)
+"hLD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"hLJ" = (
+/obj/machinery/vending/cigarette/free,
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research/restroom)
+"hLK" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/glass/beaker/large{
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/glass/beaker/large{
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/glass/beaker/large{
+ pixel_y = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
+/area/crew_quarters/kitchen)
+"hLL" = (
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
-"cMH" = (
-/obj/structure/bed,
-/obj/machinery/light{
- dir = 1;
- on = 1
+"hLZ" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/item/radio/intercom{
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
pixel_y = 24
},
-/obj/structure/curtain/open,
-/obj/item/bedsheet/medical{
- level = 1.4
+/obj/structure/table/wood,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/storage/toolbox/electrical,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"hMh" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/airlock/public/glass{
+ id_tag = "KPPN"
},
-/obj/machinery/camera{
- c_tag = "Medbay Patients Rooms";
- network = list("SS13","Medical");
- pixel_x = 30
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "eslock";
+ name = "Escape Shuttle Lockdown"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel,
+/area/bridge/checkpoint/south)
+"hMj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+ icon_state = "dark"
},
-/area/medical/ward)
-"cMI" = (
-/obj/structure/bed,
-/obj/item/radio/intercom{
- pixel_x = -32
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"hMB" = (
+/obj/structure/table/wood,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
-/obj/structure/curtain/open,
-/obj/item/bedsheet/medical{
- level = 1.4
+/obj/machinery/status_display{
+ pixel_y = 32
},
+/obj/item/reagent_containers/food/drinks/bottle/holywater,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "dark"
},
-/area/medical/ward)
-"cMJ" = (
+/area/chapel/office)
+"hMY" = (
/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 7
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light{
+ dir = 8
},
-/obj/item/pen{
- pixel_x = 4;
- pixel_y = 4
+/obj/item/radio/intercom{
+ dir = 0;
+ pixel_x = -28
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "brown"
+ },
+/area/quartermaster/office)
+"hMZ" = (
+/obj/item/radio/intercom{
+ dir = 0;
+ pixel_x = -28;
+ pixel_y = -28
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"hNt" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
+ },
+/area/quartermaster/office)
+"hNA" = (
+/obj/machinery/door/airlock/shuttle{
+ aiControlDisabled = 1;
+ hackProof = 1;
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/floor/plasteel,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"hNH" = (
+/obj/machinery/light,
+/obj/machinery/vending/wallmed{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 10;
icon_state = "whiteblue";
tag = "icon-whitehall (WEST)"
},
/area/medical/ward)
-"cMK" = (
-/obj/structure/reagent_dispensers/oil,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
+"hNJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/assembly/robotics)
-"cML" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cMM" = (
-/obj/structure/bed,
-/obj/item/bedsheet/red,
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin3)
-"cMN" = (
-/obj/structure/table/wood,
-/obj/machinery/newscaster{
- pixel_x = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/storage/briefcase,
-/obj/item/cane,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/cabin4)
-"cMO" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/cabin4)
-"cMP" = (
-/obj/machinery/newscaster{
- pixel_x = -32
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/cryopod/right,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/crew_quarters/sleep)
-"cMQ" = (
-/obj/machinery/vending/snack,
-/obj/effect/decal/warning_stripes/yellow,
+"hOi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "brown"
},
-/area/crew_quarters/fitness)
-"cMR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair{
- dir = 4
+/area/quartermaster/office)
+"hOp" = (
+/mob/living/simple_animal/crab/Coffee{
+ desc = "Master of the GYM";
+ name = "Billy Crabington";
+ real_name = "Billy Crabington"
},
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
/area/crew_quarters/fitness)
-"cMU" = (
-/obj/effect/decal/cleanable/blood/xeno,
-/obj/machinery/power/apc{
+"hOs" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
dir = 1;
- name = "north bump";
- pixel_y = 24
+ icon_state = "brown"
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/quartermaster/office)
+"hOx" = (
+/obj/structure/sign/poster/random{
+ pixel_x = 32;
+ pixel_y = 32
},
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"cMW" = (
-/obj/structure/rack,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cMX" = (
-/obj/item/shard{
- icon_state = "medium";
- pixel_x = 9;
- pixel_y = -9
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellowcorner"
},
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"cMY" = (
-/obj/effect/decal/remains/xeno,
+/area/hallway/primary/port/west)
+"hOE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/security/processing)
+"hOJ" = (
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/xenozoo)
-"cNa" = (
-/obj/effect/decal/cleanable/blood/xeno,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel,
-/area/maintenance/xenozoo)
-"cNb" = (
+/area/crew_quarters/courtroom)
+"hOT" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/wall,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"hOZ" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "0-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Virology";
+ name = "Virology Shutters"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plating,
+/area/medical/virology/lab)
+"hPb" = (
+/obj/structure/chair/comfy/lime{
dir = 4
},
-/obj/machinery/light/small{
- dir = 1
+/obj/machinery/light{
+ on = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -29
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cNe" = (
-/obj/structure/computerframe,
-/obj/machinery/light/small{
- dir = 1
+/obj/effect/landmark/start{
+ name = "Psychiatrist"
},
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"hPg" = (
+/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/xenozoo)
-"cNf" = (
+/area/crew_quarters/fitness)
+"hPl" = (
+/obj/structure/table/wood,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/item/folder/blue,
+/obj/item/pen/multi/fountain,
+/obj/item/paper/safe_code{
+ owner = "captain"
+ },
+/obj/item/paper/monitorkey,
+/obj/item/lighter/zippo/cap,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cNg" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/crew_quarters/captain/bedroom)
+"hPr" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/computer/supplycomp/public,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "brown"
+ },
+/area/quartermaster/office)
+"hPC" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "purple"
},
+/area/quartermaster/miningdock)
+"hPK" = (
/obj/structure/grille,
/obj/structure/window/plasmareinforced{
dir = 8
},
+/obj/structure/window/plasmareinforced,
/obj/structure/window/plasmareinforced{
dir = 4
},
/turf/simulated/floor/plating,
-/area/engine/controlroom)
-"cNh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"cNi" = (
-/obj/effect/decal/cleanable/blood/xeno,
+/area/toxins/mixing)
+"hPQ" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/toxins/xenobiology)
-"cNj" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/obj/effect/decal/cleanable/blood/xeno,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/toxins/xenobiology)
-"cNk" = (
+/area/security/nuke_storage)
+"hQg" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/shieldwallgen{
- req_access = list(47)
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cNl" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/obj/structure/table/wood,
+/obj/machinery/door_control{
+ id = "Brig_lockdown";
+ name = "Brig Lockdown";
+ pixel_x = 7;
+ pixel_y = 6;
+ req_access_txt = "58"
},
-/obj/machinery/disposal,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/keycard_auth{
+ pixel_x = -4;
+ pixel_y = 6
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26;
- pixel_y = 32
+/obj/item/paper/monitorkey,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/security/hos)
+"hQl" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/radiation,
/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cNm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cNn" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/medical/research/nhallway)
+"hQn" = (
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ name = "Труба на фильтрацию"
},
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "caution"
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/atmos)
+"hQr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"cNo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"hQz" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "purple"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Xenobiology Lab";
- req_access_txt = "47"
+/area/quartermaster/miningdock)
+"hQH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cNp" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno4";
- name = "Creature Cell #4";
- opacity = 0
+/turf/simulated/floor/carpet,
+/area/library)
+"hQI" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cNq" = (
+/area/bridge/vip)
+"hQK" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno4";
- name = "Creature Cell #4";
- opacity = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/window/brigdoor{
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plasteel{
dir = 1;
- name = "Creature Pen";
- req_access_txt = "47"
+ icon_state = "darkblue"
+ },
+/area/medical/morgue)
+"hQL" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/area/toxins/xenobiology)
-"cNr" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/medical/medbay)
+"hQM" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno4";
- name = "Creature Cell #4";
- opacity = 0
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"hQT" = (
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
},
-/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cNs" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
+ },
+/area/quartermaster/miningdock)
+"hQW" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/door/poddoor{
+/obj/machinery/door/poddoor/shutters{
density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno5";
- name = "Creature Cell #5";
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "rdprivacy";
+ name = "Research Director Office Shutters";
opacity = 0
},
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- name = "Creature Pen";
- req_access_txt = "47"
+/turf/simulated/floor/plating,
+/area/crew_quarters/hor)
+"hQX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/toxins/xenobiology)
-"cNt" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno6";
- name = "Creature Cell #6";
- opacity = 0
+/area/security/processing)
+"hRg" = (
+/obj/machinery/vending/wallmed{
+ pixel_x = -30;
+ pixel_y = 30
},
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- name = "Creature Pen";
- req_access_txt = "47"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
+/area/shuttle/specops)
+"hRq" = (
+/obj/machinery/computer/atmos_alert,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/toxins/xenobiology)
-"cNu" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ dir = 9;
+ icon_state = "darkyellow"
},
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cNv" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"hRv" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/turf/simulated/floor/carpet,
+/area/bridge/meeting_room)
+"hRw" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/regular,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/storage/firstaid/regular{
+ pixel_x = 4;
+ pixel_y = 4
},
-/obj/machinery/door_control{
- id = "xenokill";
- name = "Xenobio Kill Room Bolts";
- normaldoorcontrol = 1;
- pixel_x = 30;
- specialfunctions = 4
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"hRx" = (
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 4
},
-/obj/machinery/door/airlock/research/glass{
- id_tag = "xenokill";
- locked = 1;
- name = "Xenobio Kill Room"
+/obj/effect/decal/warning_stripes/yellow/partial{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "purple"
},
-/area/toxins/xenobiology)
-"cNw" = (
+/area/quartermaster/miningdock)
+"hRC" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d1 = 2;
d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cNx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ icon_state = "2-8"
},
/obj/structure/cable{
- d1 = 1;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating,
+/area/quartermaster/miningdock)
+"hRD" = (
+/obj/structure/bed,
+/obj/machinery/newscaster{
+ pixel_y = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/ai)
-"cNz" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+ dir = 6;
+ icon_state = "red"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cNA" = (
-/obj/structure/chair/office/dark,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
+/area/security/prison/cell_block/A)
+"hRY" = (
+/obj/machinery/camera{
+ armor = list("melee" = 50, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 100, "bio" = 0, "rad" = 0, "fire" = 90, "acid" = 50);
+ c_tag = "Research Toxins Test Chamber South";
+ dir = 1;
+ network = list("Toxins","Research","SS13")
},
-/area/turret_protected/ai)
-"cNB" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"hSo" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "open";
+ id_tag = "blueshield";
+ name = "Privacy Shutters";
+ opacity = 0
},
-/area/hallway/primary/central/sw)
-"cNC" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+/turf/simulated/floor/plating,
+/area/blueshield)
+"hSs" = (
+/obj/item/storage/secure/safe{
+ pixel_x = 32
},
-/area/medical/research{
- name = "Research Division"
- })
-"cND" = (
-/obj/machinery/recharge_station,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cNE" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/area/lawoffice)
+"hSA" = (
+/obj/structure/table,
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/turf/simulated/shuttle/floor,
+/area/shuttle/mining)
+"hSF" = (
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "engineering_east_airlock";
+ name = "interior access button";
+ pixel_x = -20;
+ pixel_y = 20;
+ req_access_txt = "10;13"
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cNF" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/area/engine/engineering)
+"hTs" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
},
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cNG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/medical/medbay)
+"hTw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"cNH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/landmark{
- name = "lightsout"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cNI" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 28;
+ pixel_y = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cNJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atm{
- pixel_x = -32
+/area/security/warden)
+"hTU" = (
+/turf/simulated/floor/plasteel{
+ dir = 1
},
+/area/security/securehallway)
+"hUf" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/hallway/primary/fore)
-"cNK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/genetics_cloning)
+"hUg" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Airlock";
+ req_access_txt = "150"
},
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "syndicate_sit_1";
+ name = "Side Hull Door";
+ opacity = 0;
+ req_access_txt = "150"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cNL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 3;
+ height = 5;
+ id = "sit";
+ name = "SIT shuttle";
+ roundstart_move = "sit_away";
+ width = 11
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 3;
+ height = 5;
+ id = "sit_arrivals";
+ name = "South-East Solars";
+ width = 11
},
-/area/medical/research{
- name = "Research Division"
- })
-"cNM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/fans/tiny,
+/obj/machinery/door_control{
+ id = "syndicate_sit_1";
+ name = "Blast Doors";
+ pixel_y = -23;
+ req_access_txt = "150"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cNN" = (
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate_sit)
+"hUk" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
-/area/hallway/primary/aft)
-"cNO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hallway/primary/central/sw)
+"hUm" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall,
+/area/engine/engineering)
+"hUH" = (
+/obj/structure/sign/biohazard,
+/turf/simulated/wall,
+/area/toxins/xenobiology)
+"hUJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/hallway/primary/aft)
-"cNP" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/toxins/xenobiology)
+"hUL" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"hUP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/hallway/primary/aft)
-"cNQ" = (
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+ dir = 4;
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (EAST)"
},
-/area/medical/reception)
-"cNR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/virology/lab)
+"hUQ" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin2)
+"hVe" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 32;
+ pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Command Departure Checkpoint"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ dir = 1;
+ icon_state = "blue"
},
-/area/medical/reception)
-"cNS" = (
+/area/bridge/checkpoint/south)
+"hVD" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance{
+ name = "Chapel Maintenance";
+ req_access_txt = "12"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/medbay)
-"cNT" = (
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/area/maintenance/asmaint2)
+"hVL" = (
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "engineering_west_airlock";
+ pixel_y = -25;
+ req_access_txt = "10;13";
+ tag_airpump = "engineering_west_pump";
+ tag_chamber_sensor = "engineering_west_sensor";
+ tag_exterior_door = "engineering_west_outer";
+ tag_interior_door = "engineering_west_inner"
},
-/area/medical/medbay)
-"cNV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/machinery/airlock_sensor{
+ id_tag = "engineering_west_sensor";
+ pixel_y = -34
},
-/obj/structure/disposalpipe/segment{
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"hVP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"hWb" = (
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/rack{
dir = 8;
- icon_state = "pipe-c"
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
},
+/obj/structure/window/reinforced,
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Secure Armory";
+ req_access_txt = "1"
+ },
+/obj/item/clothing/suit/armor/laserproof,
+/obj/item/gun/energy/ionrifle,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteyellowcorner"
+ icon_state = "dark"
},
-/area/medical/chemistry)
-"cNW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/securearmoury)
+"hWA" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken";
+ tag = "icon-wood-broken"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"hWL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"hWX" = (
+/obj/machinery/sleeper{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteyellow"
+ icon_state = "white"
},
-/area/medical/chemistry)
-"cNX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/medbay)
+"hXm" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = -5;
+ pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/wrench,
+/obj/item/clothing/glasses/welding,
+/obj/item/storage/belt/utility,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/recharger{
+ pixel_y = 3
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteyellowcorner"
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/area/medical/chemistry)
-"cNY" = (
+/area/toxins/lab)
+"hXy" = (
+/obj/structure/bed/roller,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/security/medbay)
+"hXL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"hYi" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -69539,54 +68327,19 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/chemistry)
-"cNZ" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"cOa" = (
-/obj/structure/table,
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = 5;
- pixel_y = 10
- },
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = -5;
- pixel_y = 10
- },
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = 5
- },
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = -5
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
+/area/medical/research/shallway)
+"hYl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/light/small{
+ dir = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69596,2299 +68349,2165 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/biostorage)
-"cOb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"hYw" = (
+/obj/machinery/shieldgen,
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"hYI" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/biostorage)
-"cOc" = (
-/obj/structure/table,
-/obj/item/gun/syringe{
- pixel_y = -2
+/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/gun/syringe{
- pixel_y = 6
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"hYL" = (
+/obj/machinery/door/morgue{
+ name = "Chapel Morgue";
+ req_access_txt = "22"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/window/reinforced{
- dir = 8
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/biostorage)
-"cOd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "grimy"
},
+/area/chapel/office)
+"hYQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 8;
+ icon_state = "darkred"
},
-/area/medical/biostorage)
-"cOe" = (
-/obj/structure/closet/secure_closet/medical3,
-/obj/item/storage/box/rxglasses,
-/obj/item/storage/belt/medical,
-/obj/item/clothing/glasses/hud/health,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/area/security/evidence)
+"hZa" = (
+/obj/structure/table/reinforced,
+/obj/item/paicard,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"hZV" = (
+/obj/machinery/atmospherics/unary/outlet_injector/on{
+ dir = 1
},
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"hZW" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/item/clothing/glasses/hud/health,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/area/medical/biostorage)
-"cOf" = (
-/obj/structure/closet/secure_closet/medical3,
-/obj/item/storage/box/rxglasses,
-/obj/item/storage/belt/medical,
-/obj/item/clothing/glasses/hud/health,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/turf/simulated/floor/plating,
+/area/maintenance/storage{
+ name = "Perma Maintenance"
+ })
+"iaa" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"iad" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Rubber bullets";
+ req_access = list(1)
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/item/ammo_box/magazine/enforcer{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/ammo_box/magazine/enforcer,
+/obj/item/ammo_box/magazine/enforcer{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/ammo_box/magazine/enforcer{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -30
},
-/obj/item/clothing/glasses/hud/health,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ dir = 1
},
-/area/medical/biostorage)
-"cOh" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/pointybush,
-/obj/structure/window/reinforced{
+/area/security/armoury)
+"iah" = (
+/obj/machinery/light{
dir = 8
},
-/obj/structure/window/reinforced,
-/turf/simulated/floor/grass,
-/area/medical/biostorage)
-"cOj" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
+/obj/machinery/ignition_switch{
+ id = "testigniter";
+ pixel_x = -24;
+ pixel_y = 6
+ },
+/obj/machinery/door_control{
+ id = "RnDChem";
+ name = "Chamber Blast Doors";
+ pixel_x = -24;
+ pixel_y = -5
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ dir = 8;
+ icon_state = "whitepurple"
},
-/area/medical/ward)
-"cOk" = (
-/obj/structure/bed,
-/obj/structure/curtain/open,
-/obj/item/bedsheet/medical{
- level = 1.4
+/area/toxins/misc_lab)
+"ibj" = (
+/obj/structure/cable{
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHEAST)"
+ icon_state = "dark"
},
-/area/medical/ward)
-"cOl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/medical/medbay2)
-"cOm" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/security/permabrig)
+"ibA" = (
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"cOn" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/obj/item/shard,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"ibD" = (
+/obj/machinery/autolathe/upgraded{
+ hacked = 1
},
-/area/medical/medbay)
-"cOo" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall3"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/area/shuttle/trade/sol)
-"cOp" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -28
+/area/shuttle/administration)
+"ibF" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "Perma2";
+ name = "Permabrig Access";
+ req_access_txt = "2"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin3)
-"cOq" = (
-/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin3)
-"cOr" = (
-/obj/structure/table/wood,
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/machinery/light_switch{
- pixel_x = -24
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/cabin4)
-"cOs" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/area/crew_quarters/fitness)
-"cOt" = (
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/fans/tiny,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/gameboard{
- pixel_x = 3;
- pixel_y = -7
+/area/security/permabrig)
+"ibI" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"cOu" = (
-/obj/structure/window/reinforced{
- dir = 1
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"ibJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/chair/comfy/black{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
-/obj/effect/landmark/start{
- name = "Civilian"
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"cOv" = (
-/obj/structure/window/reinforced{
+/area/library/abandoned)
+"ibM" = (
+/obj/machinery/light{
dir = 1;
- layer = 2.9
- },
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"cOw" = (
-/obj/machinery/camera{
- c_tag = "Holodeck Aft";
- dir = 1
+ on = 1
},
-/turf/simulated/floor/engine{
- name = "Holodeck Projector Floor"
+/obj/structure/displaycase/labcage,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"ibN" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/holodeck/alphadeck)
-"cOx" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
+/obj/structure/rack,
+/obj/item/clothing/suit/space/syndicate/black/red,
+/obj/item/clothing/head/helmet/space/syndicate/black/red,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"cOy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"cOz" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"cOA" = (
+/area/shuttle/syndicate)
+"ice" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "Virology";
- name = "Virology Shutters"
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
},
/turf/simulated/floor/plating,
-/area/medical/virology/lab)
-"cOB" = (
-/obj/effect/decal/cleanable/blood/xeno,
+/area/security/permabrig)
+"icl" = (
+/obj/effect/decal/warning_stripes/red,
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/item/reagent_containers/glass/bucket,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/xenozoo)
-"cOC" = (
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
- },
-/obj/item/shard,
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"cOE" = (
-/obj/machinery/light/small{
+/area/security/permabrig)
+"icp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"cOF" = (
-/obj/machinery/door/airlock/maintenance,
-/obj/structure/barricade/wooden,
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"cOG" = (
-/obj/machinery/light/small{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"cOI" = (
-/obj/effect/decal/remains/xeno,
-/obj/effect/decal/cleanable/blood/xeno,
-/turf/simulated/floor/greengrid,
-/area/toxins/xenobiology)
-"cOJ" = (
-/obj/structure/sign/electricshock,
-/turf/simulated/wall/r_wall,
-/area/toxins/xenobiology)
-"cOK" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xenosecure";
- name = "Secure Creature Cell";
- opacity = 0
- },
-/obj/effect/spawner/window/reinforced/plasma,
-/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cOL" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/light_switch{
- pixel_x = 4;
- pixel_y = 26
- },
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = 28
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cOM" = (
-/obj/effect/decal/cleanable/blood/xeno,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"cON" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cOO" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/wrench,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cOP" = (
-/obj/structure/sign/science{
- icon_state = "xenobio2"
- },
-/turf/simulated/wall,
-/area/toxins/xenobiology)
-"cOQ" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cOR" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door_control{
- id = "xeno6";
- name = "Containment Control";
- req_access_txt = "55"
+ icon_state = "2-4"
},
-/obj/structure/window/reinforced{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26;
- pixel_y = 32
+/area/security/main)
+"ics" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "brown"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cOS" = (
-/obj/machinery/monkey_recycler,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"icz" = (
+/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
-"cOT" = (
-/obj/structure/sign/electricshock,
-/turf/simulated/wall,
-/area/toxins/xenobiology)
-"cOU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+"icS" = (
+/obj/machinery/washing_machine,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "arrival"
},
+/area/crew_quarters/sleep)
+"idn" = (
+/obj/item/storage/box/zipties,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"ido" = (
/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cOV" = (
-/obj/machinery/atmospherics/unary/cold_sink/freezer{
- current_temperature = 80;
- dir = 1;
- min_temperature = 80;
- on = 1
+/obj/machinery/light/small,
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26;
- pixel_y = 32
+/area/library/abandoned)
+"idu" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
},
+/obj/structure/closet/coffin,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cOW" = (
-/obj/structure/sign/science{
- icon_state = "doors"
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "vault"
},
-/turf/simulated/wall,
-/area/toxins/xenobiology)
-"cOX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/chapel/main)
+"idx" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cOY" = (
-/obj/structure/sign/biohazard,
-/turf/simulated/wall,
-/area/toxins/xenobiology)
-"cOZ" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cPa" = (
-/obj/item/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 29;
- pixel_y = 22
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/sink{
- pixel_y = 30
+/area/assembly/robotics)
+"idE" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cPb" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/beakers,
-/obj/item/storage/box/syringes,
-/obj/item/extinguisher/mini,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/firealarm{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- pixel_x = 28
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cPc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/library)
+"ieh" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A29";
+ location = "A28"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cPd" = (
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cPe" = (
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cPf" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "neutral"
},
-/area/assembly/robotics)
-"cPg" = (
-/obj/structure/chair{
+/area/crew_quarters/sleep)
+"ies" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/chair/stool,
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"ieY" = (
+/obj/structure/table/reinforced,
/obj/machinery/light{
dir = 8
},
+/obj/item/robot_parts/chest,
+/obj/item/robot_parts/r_arm,
+/obj/item/robot_parts/l_arm,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cPh" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/area/turret_protected/ai)
+"ifq" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/shieldwallgen{
+ req_access = list(47)
+ },
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"ifw" = (
+/obj/item/radio/intercom{
+ pixel_x = 26;
+ pixel_y = 28
+ },
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/item/clothing/under/lawyer/black,
+/obj/item/clothing/under/lawyer/blue,
+/obj/item/clothing/under/kilt,
+/obj/item/clothing/head/beret,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin2)
+"ifC" = (
+/obj/structure/closet/crate,
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/emergency,
+/obj/item/flashlight/flare,
+/obj/item/flashlight/flare,
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/item/radio,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "bot"
},
-/area/assembly/robotics)
-"cPi" = (
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"ifD" = (
+/obj/machinery/space_heater,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"ifK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"cPj" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/vending/snack,
-/obj/structure/sign/poster/contraband/smoke{
- pixel_y = 32
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"cPk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "green"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/north)
+"igc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
},
-/area/hydroponics)
-"cPl" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 5;
+ icon_state = "darkblue"
},
-/area/engine/controlroom)
-"cPm" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/turret_protected/ai)
+"igj" = (
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "neutralcorner"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cPo" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/area/hallway/primary/central/west)
+"igk" = (
+/obj/machinery/photocopier,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 26
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cPp" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ dir = 4;
+ icon_state = "darkred"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cPq" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/warden)
+"igo" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -30
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+/turf/simulated/floor/wood,
+/area/security/hos)
+"igC" = (
+/obj/machinery/door/airlock/glass{
+ name = "Cabin"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cPr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/sleep)
+"igE" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/storage/box/rxglasses,
+/obj/item/storage/belt/medical,
+/obj/item/clothing/glasses/hud/health,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/item/clothing/glasses/hud/health,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/medical/research{
- name = "Research Division"
+/area/medical/biostorage)
+"igF" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "s_docking_airlock"
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/floor/plasteel,
+/area/shuttle/escape{
+ parallax_movedir = 2
})
-"cPs" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+"igH" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+/obj/structure/window/reinforced,
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Security SMG's";
+ req_access_txt = "3"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cPt" = (
-/obj/machinery/hydroponics/soil,
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/item/gun/projectile/automatic/wt550{
+ pixel_x = -3;
+ pixel_y = 3
},
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"cPv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/gun/projectile/automatic/wt550,
+/obj/item/gun/projectile/automatic/wt550{
+ pixel_x = 3;
+ pixel_y = -3
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cPw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/securearmoury)
+"igL" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/engine/plasma,
+/area/atmos)
+"igP" = (
+/obj/machinery/shieldgen,
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cPx" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
+/area/storage/secure)
+"igV" = (
+/turf/simulated/wall,
+/area/civilian/pet_store)
+"ihl" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- icon_state = "neutralcorner"
+ id_tag = "ai1";
+ name = "Turret Shutters"
},
-/area/hallway/primary/aft)
-"cPy" = (
-/obj/effect/landmark{
- name = "lightsout"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/turf/simulated/floor/plating,
+/area/turret_protected/aisat_interior)
+"ihm" = (
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/aft)
-"cPz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
- },
-/area/hallway/primary/aft)
-"cPA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/atmos)
+"ihp" = (
+/obj/machinery/door/poddoor/multi_tile/two_tile_ver{
+ id_tag = "secpilot";
+ req_access_txt = "71"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/structure/cable{
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/area/hallway/primary/central/south)
-"cPB" = (
-/obj/structure/chair/comfy/teal,
-/obj/effect/landmark/start{
- name = "Civilian"
+/obj/structure/spacepoddoor{
+ luminosity = 3
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "dark"
},
-/area/medical/reception)
-"cPC" = (
+/area/security/podbay)
+"ihs" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/landmark/start{
- name = "Chemist"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/chemistry)
-"cPE" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
- },
-/area/medical/reception)
-"cPF" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+/area/medical/ward)
+"ihv" = (
+/obj/machinery/camera{
+ c_tag = "Departure Lounge South-West";
+ dir = 1
},
-/area/medical/reception)
-"cPH" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/chair/stool,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"ihw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/landmark/start{
- name = "Chemist"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/engine,
-/area/medical/chemistry)
-"cPI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1
},
-/area/medical/chemistry)
-"cPJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/security/processing)
+"ihB" = (
+/obj/machinery/atmospherics/unary/outlet_injector/on{
+ dir = 1
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plating,
+/area/tcommsat/chamber)
+"ihW" = (
+/obj/machinery/requests_console{
+ department = "Medbay";
+ departmentType = 1;
+ name = "Medbay Requests Console";
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/area/medical/chemistry)
-"cPK" = (
-/obj/structure/cable/yellow{
+/area/medical/medbay)
+"iil" = (
+/obj/machinery/atmospherics/binary/pump{
+ desc = "Позволяет подать смесь в вентиляции станции";
+ name = "Подача смеси в систему вентиляции";
+ target_pressure = 101
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/atmos)
+"iis" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 8
+ },
+/obj/structure/window/plasmareinforced,
+/obj/structure/window/plasmareinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"iiP" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"cPL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/area/library)
+"ija" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whiteyellowfull"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/medical/chemistry)
-"cPM" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/security/brig)
+"ijj" = (
+/obj/structure/sign/directions/evac{
+ pixel_y = -8
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/structure/sign/directions/medical{
+ dir = 1
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = 8
},
+/turf/simulated/wall,
+/area/bridge/checkpoint/south)
+"ijp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/command{
+ id_tag = "captainofficedoor";
+ name = "Captain's Office";
+ req_access = null;
+ req_access_txt = "20"
},
-/area/medical/chemistry)
-"cPN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/maintenance/maintcentral)
+"ijv" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "sw_maint2_inner";
+ locked = 1;
+ name = "West Maintenance External Access";
+ req_access = null;
+ req_access_txt = "10;13"
},
-/obj/structure/table/glass,
-/obj/item/storage/box/masks,
-/obj/item/storage/box/gloves{
- pixel_x = 4;
- pixel_y = 4
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
},
-/obj/item/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
- name = "Chemistry Cleaner"
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"ijz" = (
+/obj/machinery/door/airlock/shuttle/glass{
+ name = "Emergency Airlock Access";
+ req_one_access_txt = "2;19"
},
+/turf/simulated/floor/plasteel,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"ijD" = (
+/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellow"
+ icon_state = "darkred"
},
-/area/medical/chemistry)
-"cPO" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/window/reinforced{
+/area/security/warden)
+"ijH" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"ijJ" = (
+/obj/machinery/portable_atmospherics/canister/toxins{
+ anchored = 1
+ },
+/turf/simulated/floor/engine/plasma,
+/area/atmos)
+"ikc" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/turf/simulated/floor/grass,
-/area/medical/biostorage)
-"cPP" = (
-/obj/structure/table,
-/obj/item/storage/box/gloves{
- pixel_x = -4
+/area/chapel/office)
+"ikg" = (
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "whitepurple"
},
-/obj/item/storage/box/gloves{
- pixel_x = -4;
- pixel_y = 4
+/area/toxins/xenobiology)
+"ikr" = (
+/obj/machinery/suit_storage_unit/security,
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/item/storage/box/beakers{
- pixel_x = 8
+/area/security/hos)
+"ikv" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 1;
+ name = "Труба фильтрации"
},
-/obj/item/storage/box/beakers{
- pixel_x = 8;
- pixel_y = 4
+/obj/machinery/computer/general_air_control/large_tank_control{
+ frequency = 1441;
+ input_tag = "tox_in";
+ name = "Toxin Supply Control";
+ output_tag = "tox_out";
+ sensors = list("tox_sensor" = "Tank")
},
-/obj/machinery/power/apc{
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
dir = 8;
- name = "west bump";
- pixel_x = -26
- },
-/obj/structure/cable,
-/obj/item/storage/box/iv_bags{
- pixel_x = -4;
- pixel_y = 8
- },
-/obj/item/storage/box/iv_bags{
- pixel_x = 8;
- pixel_y = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHWEST)"
- },
-/area/medical/biostorage)
-"cPQ" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/biostorage)
-"cPS" = (
-/obj/structure/sign/redcross{
- desc = "The Star of Life, a symbol of Medical Aid.";
- icon_state = "lifestar";
- name = "Medbay"
+ icon_state = "purple"
},
+/area/atmos)
+"ikA" = (
/turf/simulated/wall/r_wall,
-/area/medical/chemistry)
-"cPU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"ikJ" = (
+/obj/structure/closet/secure_closet/hop,
+/obj/machinery/camera{
+ c_tag = "Head of Personal's bedroom";
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "grimy"
},
-/area/medical/biostorage)
-"cPW" = (
-/obj/structure/closet/wardrobe/white,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/area/crew_quarters/heads/hop)
+"ikN" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 5;
+ name = "Труба смешивания"
+ },
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"ikS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "white"
},
/area/medical/ward)
-"cPX" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"cPY" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "sw_maint_airlock";
- name = "exterior access button";
- pixel_x = 24;
- pixel_y = 24
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"cPZ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- icon_state = "open";
- id_tag = "brig_detprivacy";
- name = "Detective Privacy Shutters";
- opacity = 0
+"ilr" = (
+/obj/machinery/atmospherics/binary/pump{
+ desc = "Подаёт азот для смешивания с другими газами";
+ dir = 8;
+ name = "Азот (N2) в смеситель";
+ target_pressure = 101
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 1;
+ name = "Труба фильтрации"
},
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
-"cQa" = (
-/obj/structure/closet/wardrobe/white,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
- },
-/area/medical/ward)
-"cQb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+ dir = 8;
+ icon_state = "vault"
},
+/area/atmos)
+"ilv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/chemistry)
-"cQd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cQe" = (
-/obj/structure/table/wood,
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/obj/machinery/light,
-/obj/item/paicard,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/medical/genetics_cloning)
+"ilz" = (
+/mob/living/simple_animal/hostile/retaliate/goat{
+ name = "Pete";
+ real_name = "Pete"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin3)
-"cQf" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/item/clothing/head/kitty,
-/obj/item/clothing/under/maid,
-/obj/item/clothing/suit/browntrenchcoat,
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin3)
-"cQg" = (
-/obj/structure/dresser,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/cabin4)
-"cQh" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
},
+/area/crew_quarters/kitchen)
+"ilJ" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/storage/bag/bio,
+/obj/item/storage/bag/bio,
+/obj/item/storage/bag/bio,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"ilL" = (
/obj/structure/cable{
+ d1 = 2;
d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/cabin4)
-"cQi" = (
-/obj/structure/bed,
-/obj/machinery/status_display{
- pixel_y = -32
+ icon_state = "2-8"
},
-/obj/machinery/light,
-/obj/item/bedsheet/yellow,
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/cabin4)
-"cQj" = (
-/obj/machinery/light,
-/obj/machinery/computer/cryopod{
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"ilQ" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/structure/sign/nosmoking_2{
pixel_y = -32
},
-/obj/machinery/camera{
- c_tag = "Cryodorms Aft";
+/obj/machinery/atmospherics/unary/portables_connector{
dir = 1
},
-/obj/effect/landmark{
- name = "JoinLateCryo"
- },
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ icon_state = "arrival"
},
-/area/crew_quarters/sleep)
-"cQk" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 8
+/area/atmos)
+"ima" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "escape"
},
+/area/atmos)
+"iml" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permahallway)
+"imy" = (
+/obj/machinery/light/spot{
dir = 8;
- icon_state = "neutralcorner"
+ tag = "icon-tube1 (WEST)"
},
-/area/crew_quarters/fitness)
-"cQo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair{
+/obj/structure/chair/comfy/shuttle{
dir = 4
},
-/obj/machinery/light{
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate_sit)
+"imB" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/atmos)
+"imD" = (
+/obj/machinery/light/small{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 10;
+ name = "Труба смешивания"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "dark"
},
-/area/crew_quarters/fitness)
-"cQp" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/atmos)
+"imF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/fitness)
-"cQq" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/fitness)
-"cQr" = (
-/obj/effect/spawner/window/reinforced,
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/fitness)
-"cQt" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
dir = 4
},
-/obj/structure/window/plasmareinforced{
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"imH" = (
+/obj/machinery/light/small{
dir = 8
},
-/obj/structure/window/plasmareinforced,
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "RnDChem";
- name = "Biohazard Shutter";
- opacity = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"imJ" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"cQu" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/reagent_containers/dropper/precision,
-/obj/item/reagent_containers/dropper/precision,
-/obj/item/reagent_containers/dropper,
-/obj/item/reagent_containers/dropper,
-/obj/item/storage/box/pillbottles,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/storage/box/beakers,
-/obj/item/storage/box/beakers,
-/obj/item/storage/box/syringes,
-/obj/item/storage/box/syringes,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple"
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"imN" = (
+/obj/machinery/iv_drip,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/toxins/misc_lab)
-"cQv" = (
-/obj/effect/decal/warning_stripes/southeast,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 10;
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (SOUTHWEST)"
},
-/area/maintenance/xenozoo)
-"cQw" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
+/area/medical/virology)
+"imT" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"cQx" = (
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
- dir = 8
+ dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"cQz" = (
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"cQB" = (
-/obj/effect/decal/remains/human,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/xenozoo)
-"cQC" = (
-/obj/structure/bed,
-/obj/item/bedsheet/orange,
-/turf/simulated/floor/carpet,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
})
-"cQD" = (
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"cQE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+"ind" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/effect/spawner/random_spawners/blood_maybe,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xenosecure";
- name = "Secure Creature Cell";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/spawner/window/reinforced/plasma,
+/area/library/abandoned)
+"inl" = (
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cQF" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door_control{
- id = "xeno4";
- name = "Containment Control";
- req_access_txt = "55"
+/area/security/processing)
+"inw" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 5
},
-/obj/structure/window/reinforced{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cQG" = (
+/area/atmos)
+"inx" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/window/eastleft{
+ dir = 2;
+ name = "Chapel Delivery";
+ req_access_txt = "22"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/main)
+"inF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- name = "Creature Pen";
- req_access_txt = "47"
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cQH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cQI" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/area/atmos)
+"inI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/disposal,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A17";
+ location = "A16"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cQJ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/reagent_containers/glass/beaker,
-/obj/item/reagent_containers/dropper,
-/obj/machinery/newscaster{
- pixel_x = 32
+/area/hallway/primary/central/west)
+"inP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cQK" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
+ },
+/area/security/prisonershuttle)
+"inQ" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken7";
+ tag = "icon-wood-broken7"
},
+/area/maintenance/fsmaint)
+"inS" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cQL" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door_control{
- id = "xeno5";
- name = "Containment Control";
- req_access_txt = "55"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
},
-/obj/structure/window/reinforced{
+/area/crew_quarters/sleep)
+"inV" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/library)
+"iof" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cQM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitehall"
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"ioo" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/area/toxins/xenobiology)
-"cQN" = (
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"iox" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall"
- },
-/area/toxins/xenobiology)
-"cQO" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
- dir = 1;
- on = 1
+ dir = 8;
+ icon_state = "vault"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/tcommsat/chamber)
+"ioU" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
+/obj/structure/cable,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall"
+ dir = 0;
+ icon_state = "red"
},
-/area/toxins/xenobiology)
-"cQP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/security/permahallway)
+"ipb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"ipi" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/item/clothing/glasses/hud/hydroponic,
+/obj/item/clothing/glasses/hud/hydroponic,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/radio/intercom{
+ pixel_x = -30;
+ pixel_y = -4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall"
- },
-/area/toxins/xenobiology)
-"cQQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "dark"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cQR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hydroponics)
+"ipw" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whitepurple"
+ dir = 1;
+ icon_state = "whitegreencorner"
},
-/area/toxins/xenobiology)
-"cQS" = (
+/area/medical/virology)
+"ipx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
- },
-/area/toxins/xenobiology)
-"cQT" = (
-/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
- layer = 2.4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
- },
-/area/toxins/xenobiology)
-"cQU" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/chair/office/light{
- dir = 4;
- pixel_y = 3
+ icon_state = "green"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cQV" = (
+/area/hydroponics)
+"ipV" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"ipW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/east,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cQW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/medical/research{
- name = "Research Division"
- })
-"cQX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j2s";
- name = "Kitchen Junction";
- sortType = 20
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/fore)
-"cQY" = (
-/turf/simulated/wall/r_wall,
-/area/toxins/test_area)
-"cRb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cRd" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/item/radio/intercom{
- pixel_x = -28
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+/area/hallway/primary/central/north)
+"iqh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"cRe" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"cRf" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"cRg" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cRh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
- dir = 4
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=V3";
+ location = "V2"
},
-/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"iqk" = (
+/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
+ icon_state = "white"
},
-/area/hallway/primary/aft)
-"cRi" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/area/crew_quarters/kitchen)
+"iqs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Chemistry";
- name = "Chemistry Privacy Shutter"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plating,
-/area/medical/chemistry)
-"cRj" = (
-/obj/structure/table,
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- pixel_x = -25
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Medbay Public Hall";
- dir = 4;
- network = list("Medical","SS13")
- },
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
+/area/maintenance/asmaint2)
+"iqD" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/northwestsouth,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"iqN" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "dark"
},
-/area/medical/reception)
-"cRk" = (
+/area/maintenance/xenozoo)
+"iqP" = (
/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "HoSPriv";
+ name = "HoS Office Privacy Shutters"
+ },
/obj/machinery/door/poddoor{
density = 0;
icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
opacity = 0
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Chemistry1";
- name = "Chemistry Privacy Shutter"
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
/turf/simulated/floor/plating,
-/area/medical/chemistry)
-"cRm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/closet/wardrobe/chemistry_white,
-/obj/item/clothing/glasses/science{
- pixel_y = 3
+/area/security/hos)
+"iqR" = (
+/obj/structure/chair{
+ dir = 4
},
-/obj/item/clothing/glasses/science{
- pixel_y = 3
+/obj/machinery/light{
+ dir = 4
},
-/obj/item/clothing/glasses/science{
- pixel_y = 3
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
+/area/crew_quarters/fitness)
+"iqU" = (
+/obj/machinery/atmospherics/binary/valve,
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
- icon_state = "whiteyellow"
+ dir = 0;
+ icon_state = "yellow"
},
-/area/medical/chemistry)
-"cRn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/maintenance/electrical)
+"irg" = (
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/structure/filingcabinet/security,
/turf/simulated/floor/plasteel{
- icon_state = "whiteyellow"
+ dir = 6;
+ icon_state = "blue"
},
-/area/medical/chemistry)
-"cRo" = (
+/area/bridge/checkpoint/south)
+"irq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
-"cRp" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- dir = 1;
- name = "Chemistry Desk";
- req_access_txt = "33"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Chemistry1";
- name = "Chemistry Privacy Shutter"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/medical/chemistry)
-"cRq" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/biostorage)
-"cRr" = (
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/biostorage)
-"cRs" = (
-/obj/machinery/smartfridge/medbay,
-/obj/machinery/door/window/eastright{
- dir = 2;
- name = "Chemistry Desk";
- req_access_txt = "33"
+/area/security/lobby)
+"iru" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery";
+ dir = 8;
+ location = "Library"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Chemistry1";
- name = "Chemistry Privacy Shutter"
+/obj/structure/plasticflaps{
+ opacity = 1
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/turf/simulated/floor/wood,
+/area/library)
+"irC" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/landmark/start{
+ name = "Chef"
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/sink{
+ layer = 4;
+ pixel_y = 26
},
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/chemistry)
-"cRt" = (
-/obj/structure/chair/office/light{
- dir = 8
+/area/crew_quarters/kitchen)
+"irD" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "browncorner"
},
+/area/hallway/primary/fore)
+"irG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/door/airlock/command{
+ id_tag = "captainofficedoor";
+ name = "Captain's Office";
+ req_access = null;
+ req_access_txt = "20"
},
-/area/toxins/misc_lab)
-"cRv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"irJ" = (
+/turf/simulated/wall/r_wall,
+/area/engine/mechanic_workshop/expedition)
+"irZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "bcarpet05"
+/obj/effect/decal/warning_stripes/yellow/partial{
+ dir = 1
},
-/area/medical/ward)
-"cRw" = (
-/obj/item/bedsheet/medical{
- level = 1.4
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 4
},
-/obj/structure/bed,
-/obj/structure/curtain/open,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/ward)
-"cRy" = (
-/obj/effect/spawner/lootdrop/trade_sol/civ,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"cRz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cRA" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"iso" = (
+/obj/structure/chair{
+ dir = 4
},
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+/obj/effect/landmark/start{
+ name = "Civilian"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "brown"
},
-/area/crew_quarters/fitness)
-"cRB" = (
+/area/quartermaster/office)
+"isq" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "yellow"
+ },
+/area/maintenance/electrical)
+"isv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"isF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/crew_quarters/fitness)
-"cRC" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/area/medical/virology)
+"isM" = (
+/obj/structure/chair{
+ dir = 4
},
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"cRD" = (
-/obj/machinery/light{
- dir = 8
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+/area/medical/research/nhallway)
+"itk" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -11
},
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cRE" = (
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- name = "Creature Pen"
+/obj/item/radio/intercom{
+ pixel_x = -30;
+ pixel_y = -4
},
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- name = "Creature Pen"
+/obj/item/reagent_containers/glass/bucket,
+/obj/machinery/camera{
+ c_tag = "Hydroponics South";
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/xenozoo)
-"cRG" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"cRH" = (
+/area/hydroponics)
+"itv" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
- icon_state = "purple"
+ dir = 4;
+ icon_state = "red"
},
-/area/maintenance/xenozoo)
-"cRI" = (
-/obj/effect/decal/cleanable/blood/xeno,
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"cRK" = (
-/obj/machinery/door/window/brigdoor{
- name = "Creature Pen"
+/area/security/reception)
+"itZ" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube{
+ icon_state = "D-NE";
+ tag = "icon-D-NE"
},
-/obj/machinery/door/window/brigdoor{
+/turf/space,
+/area/space/nearstation)
+"iuh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"iui" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- name = "Creature Pen"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ initialize_directions = 11
},
-/area/maintenance/xenozoo)
-"cRL" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/maintenance/xenozoo)
-"cRN" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"iul" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/light/small{
+ dir = 1
},
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"ium" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "neutralcorner"
},
-/area/turret_protected/aisat_interior)
-"cRO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/bridge/vip)
+"iuy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cRP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/quartermaster/miningdock)
+"iuA" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_x = 30;
+ pixel_y = 0
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xenosecure";
- name = "Secure Creature Cell";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
},
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- id = null;
- name = "Creature Pen";
- req_access_txt = "47"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"iuG" = (
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/yellow/partial{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"iuQ" = (
+/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 10;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (SOUTHWEST)"
},
-/area/toxins/xenobiology)
-"cRQ" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced,
-/obj/machinery/door_control{
- id = "xenosecure";
- name = "Containment Control";
- pixel_y = 2;
- req_access_txt = "55"
+/area/medical/medbay3)
+"iuW" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cRR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"ive" = (
+/obj/structure/bed,
+/obj/item/bedsheet/patriot,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cRS" = (
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"ivi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark/start{
- name = "Scientist"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cRT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cRU" = (
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"ivw" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/bridge/checkpoint/south)
+"ivy" = (
+/obj/structure/grille,
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cRV" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"ivL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/north)
+"ivT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cRW" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/chapel/main)
+"ivV" = (
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/toxins/xenobiology)
-"cRX" = (
+/area/hallway/primary/central/north)
+"iwe" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/toxins/xenobiology)
-"cRY" = (
+/obj/machinery/nuclearbomb,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel,
+/area/security/nuke_storage)
+"iwp" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "HoSPriv";
+ name = "HoS Office Privacy Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/security/hos)
+"iwr" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"iwt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/toxins/xenobiology)
-"cRZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/security/podbay)
+"iwv" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkredcorners"
},
+/area/security/permabrig)
+"iww" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/atmos)
+"iwz" = (
+/obj/structure/bookcase,
+/turf/simulated/floor/wood,
+/area/assembly/showroom)
+"iwC" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ pixel_x = 1;
+ pixel_y = 2
},
-/obj/effect/landmark{
- name = "lightsout"
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/obj/item/radio/intercom{
+ pixel_x = -30
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24;
+ pixel_y = 28
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ dir = 9;
+ icon_state = "whitered"
},
-/area/toxins/xenobiology)
-"cSa" = (
+/area/security/medbay)
+"iwI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "darkredcorners"
+ },
+/area/security/prison/cell_block/A)
+"iwS" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitered"
+ },
+/area/security/medbay)
+"ixc" = (
+/obj/machinery/door_timer/cell_2{
+ pixel_y = 0
},
-/area/toxins/xenobiology)
-"cSb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cSc" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/xenobiology)
-"cSd" = (
+/obj/machinery/light/small,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "darkred"
},
-/area/toxins/xenobiology)
-"cSe" = (
+/area/security/prison/cell_block/A)
+"ixi" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/effect/landmark/start{
- name = "Scientist"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/toxins/xenobiology)
-"cSf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/toxins/xenobiology)
-"cSg" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/monkeycubes,
-/obj/item/storage/box/monkeycubes,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cSh" = (
-/obj/machinery/computer/camera_advanced/xenobio,
-/obj/machinery/status_display{
- pixel_x = 32
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/greengrid,
-/area/toxins/xenobiology)
-"cSi" = (
-/obj/machinery/light/small{
- dir = 1
+/area/gateway)
+"ixk" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/camera{
- c_tag = "Xeno Containment 4";
- network = list("Research","SS13")
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_x = 60;
+ pixel_y = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "whitered"
},
-/area/toxins/xenobiology)
-"cSl" = (
-/obj/machinery/light/small{
- dir = 1
+/area/security/medbay)
+"ixm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/camera{
- c_tag = "Xeno Containment 5";
- network = list("Research","SS13")
+ c_tag = "Secure Armory West";
+ dir = 4;
+ network = list("SS13","Security")
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "darkred"
},
-/area/toxins/xenobiology)
-"cSm" = (
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/airlock_electronics,
-/obj/item/stack/sheet/glass,
-/obj/item/assembly/signaler,
+/area/security/securearmoury)
+"ixo" = (
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "rampbottom";
+ tag = "icon-stage_stairs"
+ },
+/area/medical/reception)
+"ixs" = (
+/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
- icon_state = "whitepurplecorner"
+ external_pressure_bound = 100;
+ on = 1
},
-/area/medical/research{
- name = "Research Division"
- })
-"cSn" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"ixu" = (
+/obj/structure/closet,
+/obj/item/storage/box/handcuffs,
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/mask/muzzle,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/stack/tape_roll,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "darkred"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cSo" = (
+/area/security/processing)
+"ixy" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "neutralfull"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cSp" = (
-/obj/machinery/light,
+/area/bridge/checkpoint/south)
+"ixz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"iyh" = (
+/obj/structure/closet/coffin,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ dir = 10;
+ icon_state = "vault"
},
-/area/medical/research{
- name = "Research Division"
+/area/chapel/main)
+"iyV" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"izb" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
})
-"cSq" = (
-/obj/machinery/light/small{
- dir = 1
+"izf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/camera{
- c_tag = "Xeno Containment 6";
- network = list("Research","SS13")
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/door/window/brigdoor{
+ req_access_txt = "2"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutral"
},
-/area/toxins/xenobiology)
-"cSr" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/crew_quarters/courtroom)
+"izr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cSs" = (
-/obj/structure/disposalpipe/segment{
+/area/security/checkpoint)
+"izJ" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- icon_state = "pipe-c"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ dir = 6;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (SOUTHEAST)"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cSu" = (
+/area/medical/ward)
+"izP" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/medical/cmo)
+"izY" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/maintenance/turbine)
+"iAf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -24
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ dir = 10;
+ icon_state = "darkred"
},
-/area/hallway/primary/central/nw)
-"cSv" = (
-/obj/structure/table,
-/obj/machinery/light,
-/obj/item/paicard,
+/area/security/evidence)
+"iAj" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/security/securehallway)
+"iAw" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cSw" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/aft)
-"cSx" = (
-/obj/structure/chair/comfy/teal{
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"iAy" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/emergency,
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"iAK" = (
+/obj/structure/disposaloutlet{
dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/reception)
-"cSy" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/fsmaint)
-"cSz" = (
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/plating,
+/area/space/nearstation)
+"iAS" = (
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
@@ -71896,1499 +70515,1371 @@
d2 = 2;
icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"iBh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/medical/reception)
-"cSB" = (
+/area/bridge/vip)
+"iBj" = (
/obj/structure/table,
-/obj/machinery/computer/mob_healer_terminal,
-/obj/machinery/light{
+/obj/effect/decal/cleanable/cobweb2,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"iBC" = (
+/obj/machinery/cryopod/right,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep)
+"iBE" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/storage{
+ name = "Perma Maintenance"
+ })
+"iBT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
/area/medical/reception)
-"cSC" = (
-/obj/machinery/light/small{
- dir = 1
+"iBW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "eslock";
+ name = "Escape Shuttle Lockdown"
},
-/obj/machinery/camera{
- c_tag = "Xeno Kill Room";
- network = list("Research","SS13")
+/obj/machinery/door/airlock/glass{
+ name = "Chapel"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark";
- temperature = 80
+ icon_state = "dark"
},
-/area/toxins/xenobiology)
-"cSF" = (
-/turf/simulated/wall/r_wall,
-/area/medical/chemistry)
-"cSG" = (
-/obj/structure/cable,
-/obj/effect/spawner/window/reinforced,
+/area/chapel/main)
+"iCk" = (
/turf/simulated/floor/plating,
-/area/medical/chemistry)
-"cSH" = (
+/area/maintenance/storage{
+ name = "Perma Maintenance"
+ })
+"iCu" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Chemistry Lab";
- req_access_txt = "33"
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaCellsLockdown";
+ name = "Perma Cells Lockdown"
},
-/area/medical/chemistry)
-"cSI" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"iCB" = (
+/obj/machinery/bodyscanner{
+ dir = 4
},
-/obj/structure/closet/l3closet,
-/obj/item/clothing/mask/gas,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "cmo"
},
-/area/medical/biostorage)
-"cSJ" = (
-/obj/structure/chair,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cSK" = (
-/obj/machinery/space_heater,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cSL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"iDp" = (
+/obj/machinery/door/airlock/public/glass{
+ id_tag = "Perma22"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/structure/cable{
+ icon_state = "2-4"
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
},
-/area/medical/reception)
-"cSM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaCellsLockdown";
+ name = "Perma Cells Lockdown"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"iDr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/medical/biostorage)
-"cSN" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d1 = 1;
d2 = 4;
- icon_state = "0-4"
+ icon_state = "1-4"
},
-/turf/simulated/floor/plating,
-/area/medical/biostorage)
-"cSO" = (
-/obj/structure/table,
-/obj/item/storage/box/cups,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ icon_state = "dark"
},
-/area/medical/reception)
-"cSP" = (
+/area/turret_protected/ai)
+"iDs" = (
+/obj/structure/closet/crate,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel,
+/area/security/range)
+"iDE" = (
+/obj/structure/table/glass,
+/obj/item/clipboard,
+/obj/item/toy/figure/cmo,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/turf/simulated/floor/plasteel,
+/area/medical/cmo)
+"iDF" = (
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/area/medical/biostorage)
-"cST" = (
-/obj/structure/chair/comfy/teal,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
+/obj/machinery/light{
+ dir = 1;
on = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/ward)
-"cSU" = (
-/obj/structure/table/wood,
-/obj/machinery/fishtank/bowl{
- pixel_y = 5
+ dir = 1;
+ icon_state = "red"
},
-/obj/machinery/light_switch{
+/area/security/securehallway)
+"iDJ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/firealarm{
pixel_y = 24
},
-/obj/machinery/camera{
- c_tag = "Pet Shop";
- dir = 9
- },
-/turf/simulated/floor/carpet,
-/area/civilian/pet_store)
-"cSV" = (
-/obj/structure/closet/secure_closet/medical3,
-/obj/item/storage/box/rxglasses,
-/obj/item/storage/belt/medical,
-/obj/item/clothing/glasses/hud/health,
+/turf/simulated/floor/plasteel,
+/area/medical/cmo)
+"iDS" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/item/clothing/glasses/hud/health,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/medical/biostorage)
-"cSW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cSX" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"iEb" = (
+/obj/machinery/power/port_gen/pacman,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cSY" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"iEi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple"
+ icon_state = "neutralcorner"
},
-/area/toxins/misc_lab)
-"cSZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/area/hallway/primary/starboard/east)
+"iEY" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cTa" = (
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"iFc" = (
/obj/effect/landmark{
name = "blobstart"
},
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cTb" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cTc" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cTd" = (
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/disposal,
-/obj/structure/window/plasmareinforced{
- dir = 8
- },
-/obj/structure/window/plasmareinforced{
- dir = 1
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/simulated/floor/engine,
-/area/toxins/misc_lab)
-"cTe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"cTf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"cTg" = (
-/turf/simulated/wall,
-/area/maintenance/electrical)
-"cTi" = (
+/area/maintenance/asmaint2)
+"iFi" = (
/obj/structure/table/wood,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cTj" = (
-/obj/effect/decal/cleanable/blood/xeno,
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"cTk" = (
-/obj/structure/table/reinforced,
-/obj/item/folder,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/xenozoo)
-"cTl" = (
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/xenozoo)
-"cTm" = (
-/obj/effect/decal/cleanable/blood/xeno,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/xenozoo)
-"cTn" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"cTo" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/engine,
-/area/toxins/misc_lab)
-"cTp" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/structure/disposaloutlet{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/toxins/xenobiology)
-"cTq" = (
+/area/library/abandoned)
+"iFq" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xenosecure";
- name = "Secure Creature Cell";
- opacity = 0
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/effect/spawner/window/reinforced/plasma,
-/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cTr" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cTs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/door/window/brigdoor{
- id = null;
- name = "Creature Pen";
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research/glass{
+ name = "Xenobiology Lab";
req_access_txt = "47"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cTt" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"iFu" = (
+/obj/machinery/computer/med_data,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
+/area/medical/ward)
+"iFv" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cTu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/door/morgue{
+ name = "Chapel Morgue";
+ req_access_txt = "22"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cTv" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/camera{
- c_tag = "Xenobio West";
- network = list("Research","SS13")
+/area/chapel/office)
+"iFw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/machinery/status_display{
- pixel_y = 32
+/obj/machinery/camera/motion{
+ c_tag = "Minisat AI Core South";
+ network = list("Minisat","SS13")
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cTw" = (
-/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cTx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitehall"
+ icon_state = "darkblue"
},
-/area/toxins/xenobiology)
-"cTy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/turret_protected/ai)
+"iFD" = (
+/obj/structure/chair/wood{
dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light,
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/maintenance/gambling_den)
+"iFH" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitehall"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/toxins/xenobiology)
-"cTz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/engine/engineering)
+"iFO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitehall"
- },
-/area/toxins/xenobiology)
-"cTA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "darkblue"
},
+/area/turret_protected/ai)
+"iFR" = (
+/obj/structure/table,
+/obj/item/storage/fancy/crayons,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitehall"
- },
-/area/toxins/xenobiology)
-"cTB" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Research Division Access";
- req_access_txt = "47"
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cTC" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Research Division Access";
- req_access_txt = "47"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cTD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/locker)
+"iFS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/area/toxins/xenobiology)
-"cTE" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/toxins/xenobiology)
-"cTF" = (
-/obj/structure/table/reinforced,
-/obj/item/folder,
-/obj/item/pen,
-/obj/machinery/door/window/southleft{
- name = "Research Lab Desk";
- req_access_txt = "7"
- },
-/obj/machinery/door/window/northleft,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "researchdesk1";
- name = "Research Desk Shutters";
- opacity = 0
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"cTG" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door_control{
- id = "xeno2";
- name = "Containment Control";
- req_access_txt = "55"
+ icon_state = "dark"
},
-/obj/structure/window/reinforced{
- dir = 8
+/area/turret_protected/ai)
+"iGj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cTH" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door_control{
- id = "xeno3";
- name = "Containment Control";
- req_access_txt = "55"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkbluefull"
},
-/obj/structure/window/reinforced{
- dir = 8
+/area/turret_protected/ai)
+"iGn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cTJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/structure/sign/botany{
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "blue"
- },
-/area/hydroponics)
-"cTM" = (
-/obj/machinery/processor{
- desc = "A machine used to process slimes and retrieve their extract.";
- name = "Slime Processor"
+ dir = 1
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cTN" = (
-/obj/structure/sign/science,
-/turf/simulated/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
-"cTO" = (
-/obj/structure/chair/office/light{
- dir = 4
+/area/security/processing)
+"iGo" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cTP" = (
+/obj/structure/lattice,
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"iGu" = (
/obj/structure/sign/securearea,
/turf/simulated/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
-"cTQ" = (
+/area/security/nuke_storage)
+"iGw" = (
+/obj/structure/lattice,
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"iGE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cTR" = (
-/turf/simulated/wall/r_wall,
-/area/toxins/lab)
-"cTS" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/autolathe,
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- id = "Autolathe";
- name = "Autolathe Access";
- req_access_txt = "47"
- },
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "researchdesk1";
- name = "Research Desk Shutters";
- opacity = 0
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/lab)
-"cTT" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "researchdesk1";
- name = "Research Desk Shutters";
- opacity = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/plating,
-/area/toxins/lab)
-"cTU" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/radiation,
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cTV" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_x = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "whitegreencorner"
},
-/area/hallway/primary/aft)
-"cTW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+/area/medical/virology)
+"iGF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Kitchen";
+ req_access_txt = "28"
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "Kitchen Hall Windows";
+ name = "Kitchen Shutters"
},
-/area/hallway/primary/aft)
-"cTX" = (
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
+/obj/item/kitchen/utensil/fork{
+ pixel_x = -2
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cTY" = (
-/obj/structure/disposalpipe/segment,
-/obj/item/radio/intercom{
- pixel_x = -28
+/obj/item/kitchen/utensil/spoon{
+ pixel_x = 10
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+/obj/item/kitchen/utensil/spoon{
+ pixel_x = 10
},
-/area/medical/sleeper)
-"cTZ" = (
-/obj/structure/sign/chemistry,
-/turf/simulated/wall/r_wall,
-/area/medical/chemistry)
-"cUa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/item/kitchen/utensil/spoon{
+ pixel_x = 10
},
-/turf/simulated/floor/plasteel{
- icon_state = "whiteyellow"
+/obj/item/kitchen/utensil/spoon{
+ pixel_x = 10
},
-/area/medical/chemistry)
-"cUb" = (
-/obj/structure/chair/comfy/teal{
- dir = 1
+/obj/item/kitchen/utensil/fork{
+ pixel_x = -2
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+/obj/item/kitchen/utensil/fork{
+ pixel_x = -2
},
-/area/medical/reception)
-"cUd" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+/obj/item/kitchen/utensil/fork{
+ pixel_x = -2
},
-/area/medical/sleeper)
-"cUe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
+ },
+/area/crew_quarters/kitchen)
+"iGG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/medical/reception)
-"cUf" = (
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+ icon_state = "red"
+ },
+/area/security/brig)
+"iGM" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/area/medical/medbay)
-"cUg" = (
-/obj/machinery/atmospherics/unary/cryo_cell,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+ icon_state = "dark"
},
-/area/medical/cryo)
-"cUh" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/canister/oxygen{
- name = "Canister: \[O2] (CRYO)"
+/area/turret_protected/ai)
+"iHp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door/window/eastright{
- dir = 2;
- icon_state = "left";
- name = "Cryo Tank Storage";
- req_one_access_txt = "5;32"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/medical/cryo)
-"cUi" = (
-/obj/machinery/atmospherics/unary/cryo_cell,
+/area/security/main)
+"iHu" = (
+/obj/structure/table,
+/obj/item/folder/red,
+/obj/item/restraints/handcuffs,
/obj/machinery/light{
- dir = 1;
- layer = 1;
- on = 1
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/area/medical/cryo)
-"cUj" = (
-/obj/machinery/atmospherics/unary/cryo_cell,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 26
+/area/shuttle/siberia)
+"iHx" = (
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Forensic laboratory";
+ req_access_txt = "4"
},
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "dark"
},
-/area/medical/cryo)
-"cUk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/security/detectives_office)
+"iHE" = (
+/obj/structure/chair/office/dark{
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/ntrep)
+"iHF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteyellowcorner"
+/obj/structure/cable,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/medical/chemistry)
-"cUm" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = "medcabin1";
- name = "Patients Room"
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"iHJ" = (
+/obj/machinery/atmospherics/trinary/filter{
+ desc = "Отфильтровывает токсины из трубы и отправляет их в камеру хранения";
+ name = "Фильтр Токсинов (Плазма)";
+ on = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 10;
+ icon_state = "purple"
},
-/area/medical/ward)
-"cUn" = (
-/obj/machinery/chem_heater,
-/obj/effect/decal/warning_stripes/southwest,
+/area/atmos)
+"iHM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/engine,
-/area/medical/chemistry)
-"cUo" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/rack,
-/obj/item/circuitboard/autolathe{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/circuitboard/mechfab,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/storage/tech)
-"cUp" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = "medcabin2";
- name = "Patients Room"
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"iHV" = (
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whiteblue";
tag = "icon-whiteblue (WEST)"
},
-/area/medical/ward)
-"cUr" = (
-/obj/structure/closet/lasertag/red,
-/turf/simulated/floor/plasteel{
+/area/medical/sleeper)
+"iHX" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering Storage";
dir = 1;
- icon_state = "neutralcorner"
+ network = list("SS13","Engineering")
},
-/area/crew_quarters/fitness)
-"cUs" = (
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHEAST)"
+ icon_state = "caution"
},
-/area/medical/medbay)
-"cUt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/engine/break_room)
+"iIc" = (
+/obj/machinery/atmospherics/unary/cold_sink/freezer{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"iIl" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/obj/item/pen,
+/obj/item/paper/monitorkey,
+/obj/item/lighter/zippo/hop,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"iIm" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cUu" = (
+/area/engine/engineering)
+"iIq" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (NORTH)"
+ },
+/area/toxins/explab)
+"iJa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/turf/simulated/floor/plasteel{
dir = 8;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cUv" = (
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/chem_master,
-/obj/structure/window/plasmareinforced{
- dir = 1
+ icon_state = "red"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/engine,
-/area/toxins/misc_lab)
-"cUw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/security/checkpoint)
+"iJg" = (
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/shower{
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel{
dir = 8;
- tag = "icon-shower (WEST)"
+ icon_state = "neutralfull"
},
-/obj/structure/curtain/open/shower,
+/area/atmos)
+"iJw" = (
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ icon_state = "dark"
},
-/area/crew_quarters/locker/locker_toilet)
-"cUx" = (
+/area/chapel/main)
+"iJN" = (
+/obj/effect/decal/warning_stripes/southwest,
+/obj/structure/table/reinforced,
+/obj/item/taperecorder,
+/obj/item/clothing/glasses/sunglasses/blindfold,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "4-8"
},
+/turf/simulated/floor/engine,
+/area/security/execution)
+"iJV" = (
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cUy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"cUz" = (
+/obj/effect/decal/warning_stripes/east,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cUA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/engine/hardsuitstorage)
+"iJW" = (
+/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"iJZ" = (
+/obj/structure/window/reinforced,
+/obj/machinery/door/window{
+ dir = 8
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cUB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/fitness)
+"iKy" = (
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/toxins/mixing)
+"iKz" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cUC" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cUD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/radio/intercom{
+ pixel_x = 28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/wood,
+/area/civilian/pet_store)
+"iKD" = (
+/obj/structure/chair/office/dark{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/library)
+"iKW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitehall"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cUE" = (
+/area/toxins/xenobiology)
+"iLb" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/closet/emcloset,
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/crew_quarters/fitness)
-"cUF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/security/prisonershuttle)
+"iLc" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/area/security/range)
+"iLi" = (
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/fitness)
-"cUG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/area/atmos)
+"iLk" = (
/obj/structure/window/reinforced{
dir = 8
},
-/obj/structure/chair/comfy/black,
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"cUI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/table,
+/obj/item/storage/toolbox/syndicate{
+ pixel_y = 7
+ },
+/obj/item/storage/toolbox/syndicate,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
+/area/shuttle/syndicate)
+"iLo" = (
+/turf/simulated/floor/wood,
+/area/blueshield)
+"iLA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"cUJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/chair/stool,
-/obj/effect/landmark/start{
- name = "Civilian"
- },
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"cUK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/chair/stool,
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"cUL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/toxins/lab)
+"iLB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 5;
+ name = "Труба дыхательной смеси"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/fitness)
-"cUM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/area/atmos)
+"iLK" = (
+/obj/machinery/portable_atmospherics/scrubber/huge/stationary,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"iLS" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "brown"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"iMh" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 4;
+ name = "Труба дыхательной смеси"
+ },
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"iMi" = (
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway Center 2";
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
-/area/crew_quarters/fitness)
-"cUN" = (
+/area/bridge/vip)
+"iMj" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "escape"
+ icon_state = "neutralfull"
+ },
+/area/engine/hardsuitstorage)
+"iMk" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/aisat_interior)
+"iMx" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellow"
+ },
+/area/maintenance/electrical)
+"iMK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/area/crew_quarters/fitness)
-"cUO" = (
-/obj/structure/table/wood,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/sleep)
+"iNf" = (
+/obj/machinery/requests_console{
+ department = "Engineering";
+ departmentType = 3;
+ name = "Engineering Requests Console";
+ pixel_y = -30
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/machinery/firealarm{
dir = 4;
- icon_state = "escape"
+ pixel_x = 28;
+ pixel_y = -28
},
-/area/crew_quarters/fitness)
-"cUP" = (
-/obj/structure/closet{
- icon_closed = "cabinet_closed";
- icon_opened = "cabinet_open";
- icon_state = "cabinet_closed"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"iNk" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 1;
+ name = "Труба фильтрации"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cUQ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cUR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/atmospherics/binary/pump{
+ desc = "Подаёт азот в смеситель для создания дыхательной смеси, которая потом распространяется по станции";
+ dir = 8;
+ name = "Азот (N2) в дыхательную смесь";
+ on = 1;
+ target_pressure = 101
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 5;
+ icon_state = "red"
},
-/area/maintenance/gambling_den)
-"cUS" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/xenozoo)
-"cUT" = (
+/area/atmos)
+"iNy" = (
/obj/structure/cable,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xenosecure";
- name = "Secure Creature Cell";
- opacity = 0
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/obj/effect/spawner/window/reinforced/plasma,
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cUU" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/area/maintenance/portsolar)
+"iNB" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ id_tag = "n2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ name = "n2 vent";
+ on = 1;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0
},
+/turf/simulated/floor/engine/n2,
+/area/atmos)
+"iNC" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cUV" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/area/chapel/office)
+"iNJ" = (
+/obj/structure/closet{
+ icon_closed = "black";
+ icon_state = "black";
+ name = "Mineral's"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cUW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/effect/spawner/lootdrop/trade_sol/minerals{
+ loot = list(/obj/item/stack/sheet/mineral/silver = 50, /obj/item/stack/sheet/mineral/silver {amount = 10} = 50, /obj/item/stack/sheet/mineral/silver {amount = 30} = 50, /obj/item/stack/sheet/mineral/gold = 50, /obj/item/stack/sheet/mineral/gold {amount = 10} = 50, /obj/item/stack/sheet/mineral/gold {amount = 30} = 50, /obj/item/stack/sheet/mineral/uranium = 50, /obj/item/stack/sheet/mineral/uranium {amount = 10} = 50, /obj/item/stack/sheet/mineral/uranium {amount = 30} = 50, /obj/item/stack/sheet/mineral/diamond = 50, /obj/item/stack/sheet/mineral/diamond {amount = 10} = 50, /obj/item/stack/sheet/mineral/diamond {amount = 30} = 50, /obj/item/stack/sheet/mineral/titanium = 50, /obj/item/stack/sheet/mineral/titanium {amount = 10} = 50, /obj/item/stack/sheet/mineral/titanium {amount = 30} = 50, /obj/item/stack/sheet/plasteel = 50, /obj/item/stack/sheet/plasteel {amount = 10} = 50, /obj/item/stack/sheet/plasteel {amount = 30} = 50, /obj/item/stack/sheet/titaniumglass = 50, /obj/item/stack/sheet/titaniumglass {amount = 10} = 50, /obj/item/stack/sheet/titaniumglass {amount = 30} = 50, /obj/item/stack/sheet/mineral/tranquillite = 50, /obj/item/stack/sheet/mineral/tranquillite {amount = 10} = 50, /obj/item/stack/sheet/mineral/tranquillite {amount = 30} = 50, /obj/item/stack/sheet/mineral/bananium = 50, /obj/item/stack/sheet/mineral/bananium {amount = 10} = 50, /obj/item/stack/sheet/mineral/bananium {amount = 30} = 50, /obj/item/stack/sheet/wood = 50, /obj/item/stack/sheet/wood {amount = 10} = 50, /obj/item/stack/sheet/wood {amount = 30} = 50, /obj/item/stack/sheet/plastic = 50, /obj/item/stack/sheet/plastic {amount = 10} = 50, /obj/item/stack/sheet/plastic {amount = 30} = 50, /obj/item/stack/sheet/mineral/sandstone = 50, /obj/item/stack/sheet/mineral/sandstone {amount = 10} = 50, /obj/item/stack/sheet/mineral/sandstone {amount = 30} = 50);
+ lootcount = 15;
+ name = "9. Minerals"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cUX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
+"iNR" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cUY" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cUZ" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/area/maintenance/xenozoo)
+"iNS" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 4;
+ name = "Труба фильтрации"
},
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cVa" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/turf/simulated/floor/plasteel{
dir = 8;
- initialize_directions = 11
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/yellow,
+/area/atmos)
+"iOk" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cVb" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/security/lobby)
+"iOz" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "Chemistry";
+ name = "Chemistry Privacy Shutter"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/east,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cVc" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cVd" = (
-/obj/structure/closet/firecloset,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cVe" = (
-/obj/effect/decal/warning_stripes/northeast,
-/obj/item/stack/packageWrap,
-/obj/item/stack/sheet/glass/fifty{
- amount = 10
- },
-/obj/item/stack/sheet/metal/fifty{
- amount = 10
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/status_display{
- pixel_y = 32
+/turf/simulated/floor/plating,
+/area/medical/biostorage)
+"iOD" = (
+/turf/simulated/wall/r_wall,
+/area/security/checkpoint)
+"iOH" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/maintenance/engrooms)
+"iOJ" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/obj/structure/table/reinforced,
-/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"cVf" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+/obj/structure/rack,
+/obj/item/clothing/shoes/magboots{
+ pixel_x = -4;
+ pixel_y = 3
},
-/area/toxins/xenobiology)
-"cVg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots{
+ pixel_x = 4;
+ pixel_y = -3
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start{
- name = "Scientist"
+/obj/machinery/door/window/southright{
+ dir = 4;
+ name = "EVA Equipment"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/toxins/xenobiology)
-"cVh" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/ai_monitored/storage/eva)
+"iOQ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 4;
+ name = "Труба фильтрации"
},
-/obj/machinery/shieldwallgen{
- req_access = list(47)
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 1;
+ name = "Труба дыхательной смеси"
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cVm" = (
-/obj/machinery/smartfridge/secure/extract,
-/obj/machinery/light_switch{
- pixel_x = -26
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/segment,
+/area/atmos)
+"iOV" = (
+/obj/effect/decal/warning_stripes/red,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/securearmoury)
+"iPd" = (
+/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cVn" = (
+/area/hallway/secondary/exit)
+"iPo" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Nitrogen Tank";
+ network = list("SS13","Engineering")
+ },
+/turf/simulated/floor/engine/n2,
+/area/atmos)
+"iPx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cVo" = (
+/turf/simulated/floor/wood,
+/area/library/abandoned)
+"iPD" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/table/reinforced,
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/item/folder/white,
-/obj/item/pen,
-/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/warning_stripes/northeastsouth,
/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cVq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
+/area/engine/break_room)
+"iQf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"iQu" = (
+/obj/machinery/atmospherics/unary/cold_sink/freezer{
+ current_temperature = 80;
+ dir = 1;
+ min_temperature = 80;
on = 1
},
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26;
+ pixel_y = 32
+ },
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/firealarm{
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"iQL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
dir = 8;
- pixel_x = -26
+ icon_state = "blue"
+ },
+/area/hydroponics)
+"iRd" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
-/turf/simulated/floor/plasteel,
/area/medical/research{
name = "Research Division"
})
-"cVr" = (
-/obj/structure/sign/nosmoking_2,
-/turf/simulated/wall/r_wall,
-/area/toxins/lab)
-"cVs" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+"iRu" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating/airless,
+/area/toxins/mixing)
+"iRA" = (
+/obj/machinery/seed_extractor,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"iSO" = (
+/turf/simulated/wall/rust,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"iSS" = (
+/obj/machinery/power/grounding_rod{
+ anchored = 1
+ },
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"iST" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/security/lobby)
+"iSW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/library)
+"iSY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cVt" = (
-/obj/structure/disposalpipe/segment,
+/area/toxins/storage)
+"iTe" = (
+/obj/effect/decal/warning_stripes/blue,
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/storage/firstaid/brute,
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
-/area/toxins/lab)
-"cVu" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/area/medical/sleeper)
+"iTi" = (
+/obj/machinery/vending/medical,
+/obj/effect/decal/warning_stripes/blue/hollow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
+ },
+/area/medical/sleeper)
+"iTk" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Armory_South";
+ location = "Armory_North"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/securearmoury)
+"iTz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics";
+ req_access_txt = "35"
},
-/area/toxins/lab)
-"cVv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/hydroponics)
+"iTF" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube{
+ icon_state = "NE-SW"
},
-/area/toxins/lab)
-"cVw" = (
-/obj/structure/chair/office/light{
- dir = 1;
- pixel_y = 3
+/turf/space,
+/area/space/nearstation)
+"iTM" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/machinery/newscaster{
+ pixel_y = -32
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"iTQ" = (
+/obj/structure/closet,
+/obj/structure/window/reinforced{
+ dir = 8
},
/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"iTZ" = (
+/turf/simulated/wall,
+/area/crew_quarters/serviceyard)
+"iUs" = (
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "cabin3";
+ name = "Door Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/alarm{
dir = 4;
- icon_state = "whitepurplecorner"
+ pixel_x = -22
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin3)
+"iUH" = (
+/obj/structure/table/glass,
+/obj/item/defibrillator/loaded{
+ pixel_y = 5
},
-/area/toxins/lab)
-"cVx" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -73397,1757 +71888,1403 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/toxins/lab)
-"cVy" = (
-/obj/machinery/newscaster{
- pixel_y = 32
+/area/medical/surgery1)
+"iUI" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/structure/table,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/glass/fifty{
- pixel_x = -5;
- pixel_y = 5
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "red"
},
-/obj/item/wrench,
-/obj/item/clothing/glasses/welding,
-/obj/item/storage/belt/utility,
+/area/security/permahallway)
+"iUP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/recharger{
- pixel_y = 3
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/crew_quarters/kitchen)
+"iUT" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"iVa" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/aquatic_kit/full,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/fish_eggs/salmon,
+/obj/item/fish_eggs/shrimp,
+/obj/item/fish_eggs/salmon,
+/obj/item/fish_eggs/shrimp,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/kitchen)
+"iVc" = (
+/obj/structure/dispenser,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/eastsouthwest,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump Engineering";
+ pixel_y = 24;
+ shock_proof = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/hardsuitstorage)
+"iVn" = (
+/obj/structure/chair/wood,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
},
+/area/chapel/main)
+"iVo" = (
+/obj/effect/decal/remains/xeno,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplecorner"
+ icon_state = "purple"
},
-/area/toxins/lab)
-"cVz" = (
+/area/maintenance/xenozoo)
+"iVt" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor/shutters{
density = 0;
+ dir = 2;
icon_state = "shutter0";
- id_tag = "researchdesk2";
+ id_tag = "researchdesk1";
name = "Research Desk Shutters";
opacity = 0
},
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/toxins/lab)
-"cVA" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "purplecorner"
- },
-/area/hallway/primary/aft)
-"cVB" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+"iVE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/vending/dinnerware,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/hallway/primary/aft)
-"cVC" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/area/crew_quarters/kitchen)
+"iVI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "orangecorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/primary/aft)
-"cVD" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/reception)
-"cVF" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/engine,
-/area/medical/chemistry)
-"cVG" = (
-/obj/machinery/camera{
- c_tag = "Xeno High Security Containment";
+/turf/simulated/floor/plasteel{
dir = 4;
- network = list("Research","SS13");
- pixel_y = -22
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (EAST)"
},
-/obj/item/radio/intercom{
- pixel_x = -28
+/area/medical/research/nhallway)
+"iVJ" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/disposal,
+/obj/machinery/light{
+ dir = 8
},
-/area/toxins/xenobiology)
-"cVH" = (
-/obj/structure/table/glass,
-/obj/machinery/reagentgrinder{
- pixel_x = -1;
- pixel_y = 9
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteyellow"
+ dir = 8;
+ icon_state = "caution"
},
-/area/medical/chemistry)
-"cVI" = (
+/area/atmos)
+"iVN" = (
+/obj/machinery/vending/coffee,
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "white"
},
-/area/medical/reception)
-"cVK" = (
+/area/medical/research/restroom)
+"iWe" = (
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/reception)
-"cVL" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/crew_quarters/kitchen)
+"iWk" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/security/permabrig)
+"iWl" = (
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
-/area/medical/sleeper)
-"cVO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/crew_quarters/hor)
+"iWq" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Gambling Den"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"iWC" = (
+/obj/effect/landmark/start{
+ name = "Chef"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "white"
},
-/area/medical/reception)
-"cVP" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/area/crew_quarters/kitchen)
+"iWJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/reception)
-"cVQ" = (
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"iWM" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/medical/cryo)
-"cVR" = (
-/obj/effect/landmark/start{
- name = "Medical Doctor"
+/obj/structure/disposalpipe/sortjunction{
+ name = "Atmospherics Junction";
+ sortType = 6
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/manifold4w/visible,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/cryo)
-"cVT" = (
-/obj/machinery/door/airlock/medical{
- name = "Operating Theatre"
+/area/hallway/primary/port/west)
+"iWO" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/quartermaster/office)
+"iXb" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/crew_quarters/locker)
+"iXf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/medical/surgery1)
-"cVV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/area/toxins/mixing)
+"iXh" = (
+/obj/effect/decal/warning_stripes/arrow{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/effect/decal/warning_stripes/yellow/partial{
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ dir = 4;
+ icon_state = "brown"
},
-/area/medical/medbay)
-"cVX" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/quartermaster/office)
+"iXr" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "BrigRight";
+ name = "Brig";
+ req_access_txt = "63"
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep)
-"cVY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/security/brig)
+"iXs" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "wall3"
+ },
+/area/shuttle/syndicate_sit)
+"iXv" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"iXx" = (
+/obj/machinery/atmospherics/unary/portables_connector{
dir = 8
},
+/obj/machinery/portable_atmospherics/scrubber,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ dir = 4;
+ icon_state = "escape"
},
-/area/hallway/primary/central/se)
-"cWa" = (
+/area/hallway/primary/port/west)
+"iXG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cWb" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
-"cWc" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+"iXI" = (
+/obj/effect/decal/remains/xeno,
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
-/area/medical/medbay)
-"cWe" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/area/maintenance/gambling_den)
+"iXX" = (
+/obj/machinery/computer/security{
+ network = list("SS13","Mining Outpost")
},
-/obj/machinery/disposal,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"iYa" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plating,
+/area/maintenance/portsolar)
+"iYh" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/fitness)
-"cWf" = (
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"cWg" = (
-/obj/structure/window/reinforced,
-/obj/machinery/arcade/claw,
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"cWh" = (
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "neutralfull"
},
-/area/crew_quarters/fitness)
-"cWi" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "escape"
+/area/storage/secure)
+"iYl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/fitness)
-"cWj" = (
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = 30;
- pixel_y = 30
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/ward)
-"cWk" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/wood{
- icon_state = "wood-broken5";
- tag = "icon-wood-broken5"
- },
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cWm" = (
-/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"iYq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"cWn" = (
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -28
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/structure/cable,
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"cWo" = (
-/obj/machinery/smartfridge/secure/extract,
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/door/airlock/research{
+ name = "Chemical Toxins";
+ req_access_txt = "47"
},
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = -32
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"cWp" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/storage/box/monkeycubes,
-/obj/item/storage/box/monkeycubes,
-/obj/item/storage/box/monkeycubes,
-/obj/item/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
- name = "Chemistry Cleaner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitepurple"
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"iYw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/toxins/misc_lab)
-"cWq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"cWr" = (
-/obj/machinery/light/small{
- dir = 1
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cWs" = (
/obj/structure/cable{
+ d1 = 2;
d2 = 4;
- icon_state = "0-4"
+ icon_state = "2-4"
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/structure/rack,
+/obj/item/circuitboard/communications{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cWt" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"cWv" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/item/circuitboard/card,
+/obj/item/circuitboard/crew{
+ pixel_x = 3;
+ pixel_y = -3
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cWw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/storage/tech)
+"iYC" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/disposal,
+/obj/machinery/light,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"iYE" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkred"
+ },
+/area/security/podbay)
+"iYJ" = (
+/obj/machinery/camera{
+ c_tag = "Shooting Range East";
+ dir = 8;
+ network = list("SS13","Security")
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 4;
+ icon_state = "red"
},
-/area/toxins/explab)
-"cWx" = (
+/area/security/range)
+"iZd" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "SKPP"
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cWy" = (
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/bridge/checkpoint/south)
+"iZf" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/toxins/xenobiology)
-"cWz" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "darkred"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cWA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/security/permabrig)
+"iZi" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/machinery/light{
dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cWB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/bridge/checkpoint/south)
+"iZo" = (
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/closet/crate,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport)
+"iZp" = (
+/obj/machinery/flasher{
+ id = "gulagshuttleflasher";
+ pixel_x = 25
},
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/light{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cWC" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cWD" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno1";
- name = "Creature Cell #1";
- opacity = 0
+/turf/simulated/shuttle/floor,
+/area/shuttle/siberia)
+"iZq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10;
+ initialize_directions = 10
},
-/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"cWE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/wall/r_wall,
+/area/tcommsat/chamber)
+"iZu" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "green"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/crew_quarters/courtroom)
+"iZE" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno1";
- name = "Creature Cell #1";
- opacity = 0
+/area/medical/reception)
+"iZG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door/window/brigdoor{
+/obj/structure/disposalpipe/segment{
dir = 2;
- name = "Creature Pen";
- req_access_txt = "47"
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/toxins/xenobiology)
-"cWF" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno2";
- name = "Creature Cell #4";
- opacity = 0
- },
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- name = "Creature Pen";
- req_access_txt = "47"
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/toxins/xenobiology)
-"cWG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "white"
},
+/area/medical/research/nhallway)
+"iZQ" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"jao" = (
/obj/structure/cable{
- d1 = 1;
d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno3";
- name = "Creature Cell #3";
- opacity = 0
+ icon_state = "0-4"
},
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- name = "Creature Pen";
- req_access_txt = "47"
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "chapel"
},
-/area/toxins/xenobiology)
-"cWH" = (
+/area/chapel/main)
+"jaz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cWI" = (
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitepurple"
- },
-/area/toxins/xenobiology)
-"cWJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ dir = 1;
+ icon_state = "red"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/security/securehallway)
+"jaN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurple"
+/turf/simulated/floor/wood,
+/area/library/abandoned)
+"jaP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/toxins/xenobiology)
-"cWK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
+/area/crew_quarters/sleep)
+"jaQ" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- on = 1
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple"
- },
-/area/toxins/xenobiology)
-"cWL" = (
-/obj/machinery/camera{
- c_tag = "Research Lobby";
- dir = 1;
- network = list("Research","SS13")
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurple"
+/area/hallway/secondary/exit)
+"jba" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cWM" = (
-/obj/structure/table/reinforced,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23
+/obj/structure/rack,
+/obj/item/circuitboard/aicore{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/item/stock_parts/matter_bin{
+/obj/item/circuitboard/aiupload,
+/obj/item/circuitboard/borgupload{
pixel_x = 3;
- pixel_y = 3
+ pixel_y = -3
},
-/obj/item/stock_parts/matter_bin,
-/obj/item/stock_parts/micro_laser,
-/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"cWN" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/area/storage/tech)
+"jbb" = (
+/obj/structure/grille,
/turf/simulated/floor/plating,
-/area/hydroponics)
-"cWQ" = (
-/obj/machinery/r_n_d/destructive_analyzer,
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"cWR" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"cWS" = (
-/obj/machinery/ai_status_display{
- pixel_x = 32
- },
-/obj/machinery/r_n_d/protolathe,
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"cWT" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/sign/deathsposal{
- pixel_x = -32
- },
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cWU" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/item/storage/bag/bio,
-/obj/item/storage/bag/bio,
-/obj/item/storage/bag/bio,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cWV" = (
+/area/maintenance/fsmaint)
+"jbf" = (
/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cWW" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/ai_status_display{
- pixel_y = -32
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cWX" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/toxins/lab)
-"cWY" = (
-/obj/effect/landmark/start{
- name = "Scientist"
+ icon_state = "purple"
},
+/area/quartermaster/miningdock)
+"jby" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"jbH" = (
+/obj/structure/bookcase,
+/obj/item/book/manual/security_space_law,
+/obj/item/book/manual/sop_command,
+/obj/item/book/manual/sop_engineering,
+/obj/item/book/manual/sop_general,
+/obj/item/book/manual/sop_legal,
+/obj/item/book/manual/sop_medical,
+/obj/item/book/manual/sop_science,
+/obj/item/book/manual/sop_security,
+/obj/item/book/manual/sop_service,
+/obj/item/book/manual/sop_supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "darkred"
},
-/area/toxins/lab)
-"cWZ" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/security/warden)
+"jbO" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/teleporter)
+"jbQ" = (
+/obj/structure/closet/wardrobe/white,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/area/toxins/lab)
-"cXa" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/slime_scanner,
-/obj/item/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = -29
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+/area/medical/ward)
+"jco" = (
+/obj/structure/cable,
+/obj/machinery/power/solar_control{
+ id = "starboardsolar";
+ name = "Aft Starboard Solar Control"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cXb" = (
-/obj/structure/closet/emcloset,
-/obj/item/radio/intercom{
+/obj/machinery/alarm{
dir = 1;
- name = "Station Intercom (General)";
- pixel_y = -29
+ pixel_y = -25
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cXc" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
+"jcR" = (
+/obj/machinery/light/small,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
})
-"cXd" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/camera{
- c_tag = "Central Hallway South";
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "orangecorner"
+"jcU" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
-/area/hallway/primary/aft)
-"cXe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/medical/reception)
+"jdn" = (
+/obj/structure/rack,
+/obj/item/roller,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"jdp" = (
+/obj/machinery/computer/med_data,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/sleeper)
-"cXf" = (
-/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whiteblue";
tag = "icon-whiteblue (WEST)"
},
/area/medical/reception)
-"cXg" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/reception)
-"cXh" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/reception)
-"cXi" = (
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/reception)
-"cXj" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+"jdI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/reception)
-"cXk" = (
-/obj/machinery/door/firedoor,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/door/window/eastright{
- name = "Medbey Reception";
- req_access_txt = "5"
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "darkred"
+ },
+/area/security/prison/cell_block/A)
+"jdN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/area/medical/sleeper)
-"cXl" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "yellowfull"
},
-/area/medical/medbay)
-"cXm" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
+/area/engine/engineering)
+"jdU" = (
+/obj/machinery/light/small{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/sleeper)
-"cXo" = (
-/obj/structure/chair/comfy/teal{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Interrogation Room";
+ dir = 8;
+ network = list("SS13","Security")
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/button/windowtint{
+ id = "Interrogation";
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ icon_state = "darkred"
},
-/area/medical/reception)
-"cXp" = (
-/obj/machinery/smartfridge/medbay,
-/obj/machinery/door/window/eastright{
- name = "Chemistry Desk";
- req_access_txt = "33"
+/area/security/interrogation)
+"jeh" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "Chemistry2";
- name = "Chemistry Privacy Shutter"
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/chemistry)
-"cXq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/biostorage)
-"cXr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 1;
+ icon_state = "red"
},
-/area/medical/sleeper)
-"cXs" = (
-/obj/machinery/chem_master,
-/obj/effect/decal/warning_stripes/northwest,
+/area/security/customs)
+"jem" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"jeA" = (
+/obj/effect/landmark{
+ name = "JoinLate"
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"jeC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/engine,
-/area/medical/chemistry)
-"cXt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+/obj/machinery/newscaster{
+ pixel_y = -28
},
-/area/medical/cryo)
-"cXu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/area/security/range)
+"jfj" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 9;
+ icon_state = "darkblue"
},
-/area/medical/cryo)
-"cXv" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/hologram/holopad,
+/area/tcommsat/chamber)
+"jfk" = (
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
+ },
+/area/toxins/explab)
+"jfp" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/medical/cryo)
-"cXw" = (
-/turf/simulated/floor/carpet,
-/area/lawoffice)
-"cXx" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d1 = 1;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "1-8"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "First Surgery Window";
- name = "Surgery Shutters"
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/medical/surgery1)
-"cXz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/wood,
+/area/security/hos)
+"jfE" = (
+/obj/structure/bed,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/obj/structure/curtain/open,
+/obj/item/bedsheet/medical{
+ level = 1.4
},
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 5;
icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ tag = "icon-whitehall (WEST)"
},
/area/medical/ward)
-"cXA" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 32
+"jgf" = (
+/obj/machinery/chem_master,
+/obj/effect/decal/warning_stripes/northeast,
+/obj/structure/disposalpipe/segment,
+/obj/structure/reagent_dispensers/fueltank/chem{
+ pixel_x = 33
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"cXB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/obj/machinery/door_control{
+ id = "Chemistry1";
+ name = "Chem Hallway Desk Shutters";
+ pixel_x = 25;
+ pixel_y = 23
},
-/area/medical/medbay)
-"cXD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/closet/crate,
-/obj/item/retractor,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cXF" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
},
-/obj/machinery/vending/wallmed{
- pixel_y = 30
+/turf/simulated/floor/engine,
+/area/medical/chemistry)
+"jgl" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/grille,
+/turf/space,
+/area/space/nearstation)
+"jhc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Mech Bay";
+ req_access_txt = "29"
},
-/turf/simulated/floor/plasteel{
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"jhm" = (
+/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- icon_state = "neutralcorner"
+ external_pressure_bound = 100;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
},
-/area/bridge/vip)
-"cXG" = (
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "dark"
},
-/area/medical/ward)
-"cXH" = (
+/area/toxins/explab)
+"jhv" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
- },
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
+ pixel_y = -22
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/ward)
-"cXI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+ icon_state = "dark"
},
-/obj/structure/disposalpipe/segment{
+/area/hydroponics)
+"jhQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
+ },
+/area/medical/paramedic)
+"jig" = (
+/obj/machinery/power/apc{
dir = 8;
- icon_state = "neutralfull"
+ name = "west bump";
+ pixel_x = -26
},
-/area/crew_quarters/sleep)
-"cXK" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/medical/medbay)
-"cXL" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"cXM" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/radio/intercom{
- pixel_y = -28
+/area/hallway/primary/central/nw)
+"jik" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/crew_quarters/fitness)
-"cXN" = (
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Rec Room Aft";
+/obj/structure/window/reinforced{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+/turf/simulated/floor/grass,
+/area/medical/medbay)
+"jiq" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/item/radio/intercom{
+ pixel_y = -30
},
-/area/crew_quarters/fitness)
-"cXO" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "darkblue"
},
-/area/crew_quarters/fitness)
-"cXP" = (
-/obj/structure/table/wood,
-/obj/machinery/recharger{
- pixel_y = 3
+/area/medical/morgue)
+"jiD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "escape"
- },
-/area/crew_quarters/fitness)
-"cXQ" = (
-/obj/structure/table/wood,
-/obj/item/camera,
-/obj/item/radio/intercom{
- pixel_x = 30;
- pixel_y = -30
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "escape"
+/area/hallway/primary/port)
+"jiQ" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/crew_quarters/fitness)
-"cXR" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green,
-/turf/simulated/floor/wood,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cXS" = (
-/turf/simulated/floor/plasteel{
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 15";
dir = 8;
- icon_state = "purple"
- },
-/area/maintenance/xenozoo)
-"cXT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/effect/decal/cleanable/blood/xeno,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/gambling_den)
-"cXU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/gambling_den)
-"cXV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"cXW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ network = list("SS13","MiniSat")
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cXX" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/turf/space,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
})
-"cXY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+"jiS" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "eslock";
+ name = "Escape Shuttle Lockdown"
},
-/area/maintenance/gambling_den)
-"cXZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"cYa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- name = "Gambling Den"
- },
-/obj/structure/barricade/wooden,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"cYb" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 26
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/biostorage)
-"cYc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"cYd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/airlock/glass{
+ name = "Chapel"
},
-/obj/effect/landmark{
- name = "blobstart"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"cYe" = (
+/area/chapel/main)
+"jiV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"cYf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/starboard{
name = "Engineering Maintenance"
})
-"cYg" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/hardsuit/medical,
-/obj/item/clothing/mask/gas,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/window/westleft{
- dir = 2;
- name = "Emergency Hardsuits";
- req_access_txt = "40"
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+"jjb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/medical/biostorage)
-"cYh" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/effect/landmark/start{
+ name = "Virologist"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/closet/wardrobe/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/crew_quarters/locker)
-"cYi" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/area/medical/virology)
+"jjc" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/structure/disposaloutlet,
+/obj/structure/closet/secure_closet/hos,
+/obj/item/megaphone,
+/obj/item/reagent_containers/food/drinks/flask/barflask,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/toxins/xenobiology)
-"cYj" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/light,
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cYk" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cYl" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cYm" = (
-/obj/structure/table/reinforced,
-/obj/item/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stock_parts/scanning_module,
-/obj/item/stock_parts/capacitor,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/manipulator,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"cYn" = (
-/obj/machinery/computer/rdconsole/core,
-/obj/effect/decal/warning_stripes/southwest,
+/area/security/hos)
+"jjA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"cYq" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/effect/landmark/start{
- name = "Scientist"
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
-/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"cYr" = (
-/obj/machinery/r_n_d/circuit_imprinter,
-/obj/item/reagent_containers/glass/beaker/sulphuric,
-/obj/effect/decal/warning_stripes/southeast,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"cYw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
+/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "pipe-c"
},
-/area/toxins/lab)
-"cYx" = (
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHWEST)"
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"jjC" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/toxins/explab)
+"jjD" = (
+/obj/machinery/sparker{
+ id = "testigniter";
+ name = "Test Igniter";
+ pixel_x = -25
},
-/area/toxins/lab)
-"cYy" = (
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"jjT" = (
+/obj/machinery/dna_scannernew,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ dir = 1;
+ icon_state = "whitepurple"
},
-/area/toxins/lab)
-"cYB" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Research Division Access";
- req_access_txt = "47"
+/area/medical/genetics)
+"jjY" = (
+/obj/effect/decal/cleanable/blood/xeno,
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"jkc" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 9;
+ level = 2
},
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cYC" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/toxins/xenobiology)
+"jkl" = (
+/obj/machinery/computer/crew,
+/obj/machinery/camera{
+ c_tag = "Brig Medbay";
+ dir = 4;
+ network = list("SS13","Security")
+ },
+/obj/machinery/door_control{
+ id = "SecMedPriv";
+ name = "Brig Medbay Privacy Shutters Control";
+ pixel_x = -24;
+ req_access_txt = "63"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "orangecorner"
+ dir = 8;
+ icon_state = "whitered"
},
-/area/hallway/primary/aft)
-"cYD" = (
-/obj/structure/disposalpipe/segment{
+/area/security/medbay)
+"jku" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/greengrid,
+/area/security/nuke_storage)
+"jkE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/recharge_station,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/reception)
-"cYG" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"jkJ" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/vending/cigarette,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"jkT" = (
+/obj/structure/chair/office/light{
dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHEAST)"
+/obj/effect/landmark/start{
+ name = "Brig Physician"
},
-/area/medical/reception)
-"cYJ" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ icon_state = "whiteredfull"
},
-/area/medical/sleeper)
-"cYK" = (
-/obj/structure/chair{
+/area/security/medbay)
+"jlj" = (
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkblue"
+ },
+/area/tcommsat/chamber)
+"jlk" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
dir = 8
},
+/obj/item/tank/emergency_oxygen,
+/obj/item/clothing/mask/breath,
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 9;
icon_state = "darkblue"
},
-/area/medical/surgery1)
-"cYL" = (
-/obj/machinery/disposal,
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/turret_protected/ai)
+"jll" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/structure/disposalpipe/trunk{
- dir = 4
+/turf/simulated/wall,
+/area/security/processing)
+"jlz" = (
+/obj/machinery/door/morgue{
+ name = "Dungeon";
+ req_access_txt = "63"
},
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/engine,
-/area/medical/chemistry)
-"cYM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/processing)
+"jlH" = (
+/obj/machinery/door/airlock/security{
+ name = "Evidence Storage";
+ req_access_txt = "1"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/junction{
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"jlK" = (
+/turf/space,
+/area/space/nearstation)
+"jlL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/office/light{
dir = 4;
- tag = "icon-pipe-j1 (EAST)"
+ pixel_y = 3
},
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteyellow"
- },
-/area/medical/chemistry)
-"cYN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
+ icon_state = "purplefull"
},
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"jme" = (
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"jmj" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"jmo" = (
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/area/medical/sleeper)
-"cYP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/crew_quarters/hor)
+"jmK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 26
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteyellow"
- },
-/area/medical/chemistry)
-"cYQ" = (
-/obj/machinery/disposal,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "yellow"
},
-/area/medical/cryo)
-"cYR" = (
+/area/maintenance/electrical)
+"jmL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/window/reinforced{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/structure/window/reinforced{
+/area/medical/research/shallway)
+"jmN" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/genericbush,
-/turf/simulated/floor/grass,
-/area/medical/cryo)
-"cYS" = (
-/obj/machinery/atmospherics/unary/cold_sink/freezer{
- dir = 1
- },
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ dir = 4;
+ icon_state = "red"
},
-/area/medical/cryo)
-"cYT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/prison/cell_block/A)
+"jmR" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/medical/chemistry)
-"cYU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/turf/simulated/floor/plating,
+/area/security/checkpoint)
+"jnn" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/sleeper)
-"cYW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/medbay)
-"cYX" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+ icon_state = "pipe-c"
},
-/area/medical/ward)
-"cZa" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
+/obj/machinery/door/poddoor{
density = 0;
- dir = 8;
icon_state = "open";
- id_tag = "lawyer";
- name = "Internal Affairs Privacy Shutters";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
opacity = 0
},
/turf/simulated/floor/plating,
-/area/lawoffice)
-"cZb" = (
-/obj/structure/table,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/effect/decal/warning_stripes/eastsouthwest,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/flashlight,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/electrical)
-"cZc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/clothing/accessory/stethoscope,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cZd" = (
-/obj/structure/table,
-/obj/item/tank/emergency_oxygen/nitrogen{
- pixel_x = 6;
- pixel_y = -2
- },
-/obj/item/tank/emergency_oxygen/nitrogen{
- pixel_x = 6;
- pixel_y = 4
- },
-/obj/item/tank/emergency_oxygen/nitrogen{
- pixel_x = 6;
- pixel_y = 10
+/area/security/processing)
+"jnr" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = -24
},
-/obj/item/tank/emergency_oxygen/plasma{
- pixel_x = -6;
- pixel_y = -2
+/obj/machinery/newscaster{
+ pixel_x = 32
},
-/obj/item/tank/emergency_oxygen/plasma{
- pixel_x = -6;
- pixel_y = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/item/tank/emergency_oxygen/plasma{
- pixel_x = -6;
- pixel_y = 10
+/area/chapel/main)
+"jnU" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/security/permabrig)
+"jnW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/cable{
@@ -75155,619 +73292,729 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/biostorage)
-"cZe" = (
-/obj/machinery/light,
-/obj/machinery/vending/wallmed{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+/area/medical/sleeper)
+"jnX" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"jnZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/medical/ward)
-"cZf" = (
-/obj/machinery/mech_bay_recharge_port,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "redcorner"
},
-/area/maintenance/electrical)
-"cZg" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/mech_bay_recharge_floor,
-/area/maintenance/electrical)
-"cZh" = (
-/obj/machinery/computer/mech_bay_power_console,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/security/range)
+"job" = (
+/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/electrical)
-"cZi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cZj" = (
-/obj/machinery/pipedispenser,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/effect/decal/warning_stripes/eastsouthwest,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/electrical)
-"cZk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Gambling Den"
+ icon_state = "1-2"
},
-/obj/structure/barricade/wooden,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/maintenance/gambling_den)
-"cZl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- name = "Gambling Den"
+/area/medical/research/nhallway)
+"joq" = (
+/obj/structure/table,
+/obj/item/clothing/under/color/orange/prison,
+/obj/item/clothing/shoes/orange,
+/obj/item/wrench,
+/turf/simulated/floor/plating,
+/area/maintenance/storage{
+ name = "Perma Maintenance"
+ })
+"jot" = (
+/obj/structure/rack,
+/obj/machinery/camera{
+ c_tag = "Gateway Access";
+ dir = 4
},
-/obj/structure/barricade/wooden,
-/obj/structure/disposalpipe/segment,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/bruise_pack/advanced,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/ointment/advanced,
+/obj/item/reagent_containers/glass/bottle/charcoal,
+/obj/item/reagent_containers/glass/bottle/morphine,
+/obj/item/reagent_containers/syringe,
+/obj/item/storage/pill_bottle/painkillers,
+/obj/item/reagent_containers/food/pill/patch/styptic,
+/obj/item/reagent_containers/food/pill/patch/silver_sulf,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/maintenance/gambling_den)
-"cZn" = (
+/area/gateway)
+"joA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cZo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"cZp" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/light,
-/obj/item/storage/firstaid/regular{
- pixel_x = 4;
- pixel_y = 4
+/area/security/permabrig)
+"joM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 2
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/storage/firstaid/regular,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/hydroponics)
+"joW" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/sign/poster/official/science{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
},
-/area/medical/biostorage)
-"cZq" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "purple"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/area/maintenance/xenozoo)
-"cZr" = (
-/obj/structure/disposalpipe/segment,
+/area/medical/research{
+ name = "Research Division"
+ })
+"jpa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Research Division Access";
- req_access_txt = "47"
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
/area/medical/research{
name = "Research Division"
})
-"cZs" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/table/reinforced,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/effect/decal/warning_stripes/southeast,
+"jqb" = (
+/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/stock_parts/cell/high,
-/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"cZt" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/lattice,
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"cZu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 1;
icon_state = "whitepurplecorner"
},
/area/medical/research{
name = "Research Division"
})
-"cZv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/folder,
-/obj/item/pen,
-/obj/machinery/door/window/westleft,
-/obj/machinery/door/window/eastleft{
- name = "Research Lab Desk";
- req_access_txt = "7"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"cZw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
+"jqd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 6
},
-/obj/machinery/light{
- dir = 8
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/disposal,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/security/permabrig)
+"jqi" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple"
+ dir = 1;
+ icon_state = "red"
},
-/area/toxins/misc_lab)
-"cZy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/security/range)
+"jqj" = (
+/obj/structure/bed,
+/obj/structure/curtain/open,
+/obj/item/bedsheet/medical{
+ level = 1.4
},
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHEAST)"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cZz" = (
+/area/medical/ward)
+"jqk" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
+/turf/simulated/floor/plating,
+/area/assembly/showroom)
+"jqn" = (
+/obj/structure/bed,
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- icon_state = "neutralfull"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/toxins/lab)
-"cZA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/item/radio/intercom{
+ pixel_x = 30
+ },
+/obj/machinery/flasher{
+ id = "Perma2";
+ pixel_x = 24;
+ pixel_y = -12
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ dir = 5;
+ icon_state = "darkred"
},
-/area/toxins/lab)
-"cZB" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/area/security/permabrig)
+"jqp" = (
+/obj/machinery/vending/snack,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
},
-/obj/machinery/hologram/holopad{
- pixel_x = -16
+/area/security/lobby)
+"jqE" = (
+/obj/machinery/porta_turret,
+/obj/machinery/ai_status_display{
+ pixel_x = -32
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/turret_protected/ai)
+"jqY" = (
+/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ dir = 10;
+ icon_state = "darkblue"
},
-/area/toxins/lab)
-"cZC" = (
-/obj/structure/table/reinforced,
-/obj/machinery/camera{
- c_tag = "Xenobio East";
- dir = 8;
- network = list("Research","SS13")
+/area/turret_protected/ai)
+"jrc" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
-/obj/machinery/requests_console{
- department = "Xenobiology";
- departmentType = 2;
- name = "Xenobiology Requests Console";
- pixel_x = 30
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/reagentgrinder,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cZD" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- base_state = "left";
+/area/toxins/explab)
+"jrh" = (
+/obj/machinery/vending/shoedispenser,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/locker)
+"jrm" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
+ },
+/area/medical/reception)
+"jrq" = (
+/obj/machinery/firealarm{
dir = 1;
- icon_state = "left";
- name = "Medical Reception";
- req_access_txt = "5"
+ pixel_y = -24
},
-/obj/machinery/door/firedoor,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 7
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
},
-/obj/item/pen,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/area/turret_protected/ai)
+"jru" = (
+/obj/machinery/computer/cloning,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHWEST)"
+ },
+/area/medical/genetics_cloning)
+"jrw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 1;
+ name = "Труба дыхательной смеси"
+ },
+/obj/machinery/light{
+ dir = 8
},
+/obj/machinery/meter,
/turf/simulated/floor/plasteel{
- icon_state = "bluefull"
+ dir = 1;
+ icon_state = "dark"
},
-/area/medical/reception)
-"cZE" = (
+/area/atmos)
+"jry" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 1
},
-/area/medical/reception)
-"cZF" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = "MedbayFoyerPort";
- name = "Medbay Entrance";
- req_access_txt = "5"
+/area/security/brigstaff)
+"jrD" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/door/firedoor,
-/obj/effect/mapping_helpers/airlock/unres{
+/obj/item/radio/intercom{
+ pixel_y = 28
+ },
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
+"jrG" = (
+/obj/structure/chair{
dir = 4
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"jrJ" = (
+/obj/structure/closet/secure_closet/reagents,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera{
+ c_tag = "Medbey Chemistry";
+ dir = 6;
+ network = list("Medical","SS13")
},
/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whiteyellow"
+ },
+/area/medical/chemistry)
+"jrP" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ name = "Труба фильтрации"
},
-/area/medical/sleeper)
-"cZG" = (
-/obj/machinery/camera{
- c_tag = "Research Entrance";
+/obj/machinery/meter,
+/turf/simulated/floor/plasteel{
dir = 8;
- network = list("Research","SS13")
+ icon_state = "vault"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/area/atmos)
+"jrU" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Chemist"
},
-/turf/simulated/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"cZH" = (
-/obj/machinery/vending/medical,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/sleeper)
-"cZI" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- dir = 8;
- name = "Chemistry Desk";
- req_access_txt = "33"
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/engine,
+/area/medical/chemistry)
+"jsa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"jst" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 5;
+ name = "Труба дыхательной смеси"
},
-/obj/machinery/door/poddoor/shutters/preopen{
+/turf/simulated/floor/plasteel{
dir = 8;
- id_tag = "Chemistry2";
- name = "Chemistry Privacy Shutter"
+ icon_state = "arrival"
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/area/atmos)
+"jsw" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 8
},
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"jsz" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"jsJ" = (
+/turf/simulated/wall/r_wall,
/area/medical/chemistry)
-"cZK" = (
-/obj/structure/cable{
+"jsU" = (
+/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"jtd" = (
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/binary/valve/digital/open{
+ desc = "Позволяет отключить подачу дыхательной смеси на станцию, не отключая саму закачку газа. (Например, если требуется подать только смесь из оранжевых труб)";
+ dir = 4;
+ name = "Подача дыхательной смеси на станцию"
},
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"jtg" = (
/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/medical/cryo)
-"cZL" = (
-/obj/effect/decal/warning_stripes/east,
/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4"
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "Warden";
+ name = "Warden Privacy Shutters"
},
+/turf/simulated/floor/plating,
+/area/security/warden)
+"jti" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "caution"
},
-/turf/simulated/floor/engine,
-/area/medical/chemistry)
-"cZM" = (
-/obj/structure/sign/greencross{
- pixel_x = 32
+/area/atmos)
+"jtr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/wall,
-/area/medical/cryo)
-"cZN" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "First Surgery Window";
- name = "Surgery Shutters"
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"jtt" = (
+/obj/structure/chair{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/medical/surgery1)
-"cZP" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "First Surgery Theatre";
- name = "Surgery Shutters"
+/obj/machinery/light,
+/obj/item/radio/intercom{
+ pixel_y = -28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
},
+/area/security/checkpoint)
+"jty" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/medical/surgery1)
-"cZQ" = (
-/obj/structure/chair/comfy/teal{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "caution"
+ },
+/area/atmos)
+"jtE" = (
+/obj/structure/rack{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ layer = 2.9
},
-/area/medical/medbay)
-"cZR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/hardsuit/medical,
+/obj/item/clothing/mask/gas,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "blue"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/hydroponics)
-"cZS" = (
-/obj/machinery/light{
- dir = 4
+/obj/machinery/door/window/westleft{
+ dir = 2;
+ name = "Emergency Hardsuits";
+ req_access_txt = "40"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 9;
icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ tag = "icon-whiteblue (NORTHWEST)"
},
-/area/medical/medbay)
-"cZT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/medical/biostorage)
+"jtI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"cZU" = (
-/obj/structure/filingcabinet/chestdrawer,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "redcorner"
},
-/area/medical/ward)
-"cZV" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 7
+/area/security/brigstaff)
+"jtS" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"jub" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 1;
+ name = "Труба дыхательной смеси"
},
-/obj/item/pen{
- pixel_x = 4;
- pixel_y = 4
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"juc" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = 32
},
/obj/machinery/camera{
- c_tag = "Medbay Staff Room";
- network = list("SS13","Medical")
+ c_tag = "Atmospherics South";
+ network = list("SS13","Engineering")
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "caution"
+ },
+/area/atmos)
+"juf" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26;
+ pixel_y = -32
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"jun" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/lawoffice)
+"juR" = (
+/obj/structure/table/wood,
+/obj/item/storage/bible,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/chapel/main)
+"juW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"jvy" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno5";
+ name = "Creature Cell #5";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"jvC" = (
+/obj/structure/table/wood/poker,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/area/medical/ward)
-"cZW" = (
-/obj/machinery/computer/med_data,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"jvK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ dir = 1
},
-/area/medical/ward)
-"cZX" = (
-/obj/machinery/computer/crew,
-/obj/machinery/light_switch{
- pixel_x = 26
+/area/security/securehallway)
+"jwd" = (
+/obj/structure/table,
+/obj/item/assembly/igniter,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"jwe" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/portable_atmospherics/pump,
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"jwn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/vip)
+"jww" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
},
-/area/medical/ward)
-"daa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"jwA" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen{
+ anchored = 1
+ },
+/turf/simulated/floor/engine/n2,
+/area/atmos)
+"jwE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck Door"
},
-/area/medical/ward)
-"dab" = (
-/obj/machinery/light{
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"jwN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
+ external_pressure_bound = 100;
on = 1
},
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
+ },
+/area/engine/engineering)
+"jwR" = (
/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/light,
/obj/item/radio/intercom{
- pixel_y = 24
+ pixel_y = -28
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
- icon_state = "yellow"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/maintenance/electrical)
-"dac" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"jwW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/maintenance/electrical)
-"dae" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/cleanable/cobweb,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"daf" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Checkpoint";
+ req_access_txt = "1"
},
-/area/maintenance/gambling_den)
-"dag" = (
-/obj/structure/table/wood,
-/obj/machinery/cell_charger,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dah" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/security/checkpoint)
+"jxh" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/structure/table/wood,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/storage/toolbox/electrical,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dai" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/hos)
+"jxo" = (
/obj/structure/table/wood,
/obj/item/stack/rods{
amount = 8
@@ -75783,99 +74030,123 @@
},
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
-"daj" = (
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 32
+"jxu" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ name = "Труба дыхательной смеси"
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"jxv" = (
+/obj/structure/table/reinforced,
+/obj/machinery/kitchen_machine/microwave,
+/obj/structure/sign/poster/official/help_others{
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "redyellowfull"
},
-/area/maintenance/gambling_den)
-"dak" = (
+/area/engine/break_room)
+"jxB" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkred"
},
-/area/hallway/primary/central/se)
-"dal" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/permabrig)
+"jxN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/turf/simulated/floor/plating,
-/area/civilian/pet_store)
-"dam" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/ward)
+"jxO" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/light/small,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "darkblue"
},
-/area/maintenance/gambling_den)
-"dan" = (
-/obj/machinery/light/small{
+/area/medical/morgue)
+"jxQ" = (
+/obj/structure/window/reinforced{
dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dao" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/light{
+ dir = 1;
+ pixel_y = -7
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dar" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/construction/hallway)
+"jxS" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"jxT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/atmos)
+"jxW" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"das" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/office)
+"jya" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/hallway/primary/central/north)
+"jyk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dat" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
initialize_directions = 11
},
@@ -75885,556 +74156,534 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 8;
+ icon_state = "blue"
},
-/area/medical/reception)
-"dav" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/area/hydroponics)
+"jyo" = (
+/obj/machinery/door/airlock/shuttle{
+ aiControlDisabled = 1;
+ hackProof = 1;
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/shuttle/floor4,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"jyy" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
},
+/obj/machinery/hydroponics/constructable,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/hydroponics)
+"jyC" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/mineral/stacking_machine{
+ input_dir = 2;
+ stack_amt = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/window/reinforced{
dir = 1;
- icon_state = "whitepurplecorner"
+ layer = 2.9
},
-/area/medical/research{
- name = "Research Division"
- })
-"daw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"jyF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 1;
+ icon_state = "left";
+ name = "Medical Reception";
+ req_access_txt = "5"
+ },
+/obj/machinery/door/firedoor,
+/obj/item/phone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/spray/cleaner,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "bluefull"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dax" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/reception)
+"jyM" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/atmos)
+"jyU" = (
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/chem_heater,
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/engine,
+/area/toxins/misc_lab)
+"jzn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
- },
-/area/medical/reception)
-"day" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "dark"
},
+/area/hydroponics)
+"jzw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ dir = 5;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (SOUTHWEST)"
},
-/area/medical/research{
- name = "Research Division"
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
})
-"daz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/item/radio/intercom{
- pixel_y = 24
+"jzz" = (
+/obj/structure/closet,
+/obj/structure/window/reinforced,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"daB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "dark"
},
-/obj/structure/sign/nosmoking_2{
- pixel_y = 32
+/area/security/evidence)
+"jzY" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/medical/research{
- name = "Research Division"
- })
-"daC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
},
-/obj/machinery/ai_status_display{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"daD" = (
-/obj/structure/grille,
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/light{
- dir = 8
+ icon_state = "white"
},
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"daE" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/medical/virology)
+"jAa" = (
+/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"daF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Secure Technical Storage";
+ dir = 8
},
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/tech)
+"jAi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/mineral_door/wood,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
+ icon_state = "grimy"
},
-/area/medical/research{
- name = "Research Division"
- })
-"daG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+/area/library)
+"jAl" = (
+/obj/machinery/light,
+/obj/machinery/computer/cryopod{
+ pixel_y = -32
},
-/area/medical/research{
- name = "Research Division"
- })
-"daH" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research/glass{
- name = "Research and Development";
- req_access_txt = "47"
+/obj/machinery/camera{
+ c_tag = "Cryodorms Aft";
+ dir = 1
},
-/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"daI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/landmark{
+ name = "JoinLateCryo"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/toxins/lab)
-"daJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ icon_state = "freezerfloor"
},
-/obj/structure/disposalpipe/segment,
+/area/crew_quarters/sleep)
+"jAn" = (
+/obj/machinery/computer/mech_bay_power_console,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/toxins/lab)
-"daK" = (
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/toy/figure/scientist,
+/area/maintenance/electrical)
+"jAs" = (
+/obj/structure/sink{
+ level = 3;
+ pixel_y = 30
+ },
+/obj/item/reagent_containers/glass/bucket,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ icon_state = "dark"
},
-/area/toxins/lab)
-"daL" = (
+/area/hydroponics)
+"jAt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/table,
-/obj/item/disk/tech_disk{
- pixel_x = -6
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/item/disk/tech_disk{
- pixel_x = 6
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/item/disk/tech_disk{
- pixel_y = 6
+/area/medical/medbay2)
+"jAB" = (
+/obj/structure/plasticflaps/mining,
+/obj/machinery/conveyor/west{
+ id = "QMLoad2"
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"jAF" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
},
-/area/toxins/lab)
-"daM" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/toxins/lab)
-"daN" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
+/area/hydroponics)
+"jAL" = (
+/obj/structure/bed/roller,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/mob/living/carbon/human/monkey,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ dir = 5;
+ icon_state = "whitegreencorner"
},
-/area/hallway/primary/aft)
-"daO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "orangecorner"
+/area/medical/virology)
+"jBm" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/item/radio/intercom{
+ pixel_x = 32
},
-/area/hallway/primary/aft)
-"daQ" = (
-/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+ icon_state = "dark"
},
-/area/medical/reception)
-"daR" = (
+/area/security/securearmoury)
+"jBw" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 26
- },
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"jBI" = (
+/obj/machinery/smartfridge,
+/obj/machinery/door/window/eastleft{
+ dir = 8;
+ name = "Hydroponics Desk";
+ req_access_txt = "35"
},
+/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
- },
-/area/maintenance/electrical)
-"daS" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"daT" = (
-/obj/structure/chair/office/light{
- dir = 1
+ icon_state = "dark"
},
-/obj/effect/landmark/start{
- name = "Medical Doctor"
+/area/hydroponics)
+"jBX" = (
+/obj/structure/closet/wardrobe/black,
+/obj/machinery/requests_console{
+ department = "Locker Room";
+ name = "Locker Room Requests Console";
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "neutralcorner"
},
-/area/medical/reception)
-"daU" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/light_switch{
- pixel_x = 24;
- pixel_y = 24
+/area/crew_quarters/locker)
+"jCn" = (
+/obj/machinery/light/small{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHEAST)"
+ dir = 8;
+ icon_state = "greenblue"
},
-/area/medical/reception)
-"daV" = (
+/area/crew_quarters/serviceyard)
+"jCz" = (
/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/obj/item/folder/white{
- pixel_y = 3
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -32
},
+/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "red"
},
-/area/medical/sleeper)
-"daY" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/area/security/checkpoint)
+"jCC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/sleeper)
-"daZ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/sign/examroom,
-/turf/simulated/floor/plating,
-/area/medical/sleeper)
-"dba" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ dir = 1
},
-/area/medical/sleeper)
-"dbb" = (
+/area/security/reception)
+"jCG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/junction{
- dir = 1;
- tag = "icon-pipe-j1 (EAST)"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/sleeper)
-"dbc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "green"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/crew_quarters/serviceyard)
+"jCH" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
+/obj/structure/cable,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "red"
},
-/area/medical/sleeper)
-"dbd" = (
+/area/security/brig)
+"jCJ" = (
+/obj/machinery/kitchen_machine/oven,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/medical/reception)
-"dbe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dbf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/crew_quarters/kitchen)
+"jCM" = (
+/obj/machinery/autolathe/security{
+ hacked = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/shuttle/administration)
+"jCN" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ locked = 1;
+ name = "MiniSat Maintenance";
+ req_access_txt = "75"
},
+/turf/simulated/floor/plating,
+/area/turret_protected/aisat_interior)
+"jCT" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/multitool,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/medical/medbay)
-"dbh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"jCX" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "neutralcorner"
},
-/area/medical/medbay)
-"dbi" = (
-/obj/structure/chair/comfy/teal{
+/area/hallway/primary/central/nw)
+"jDk" = (
+/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ dir = 4;
+ icon_state = "red"
},
-/area/medical/medbay)
-"dbj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/crew_quarters/serviceyard)
+"jDw" = (
+/obj/structure/closet/l3closet/security,
+/obj/effect/decal/warning_stripes/red,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/disposalpipe/segment{
+/area/security/securearmoury)
+"jDz" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"jDQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/landmark{
+ name = "JoinLateCyborg"
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "darkblue"
+ },
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"jDW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/medbay)
-"dbk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 4;
+ icon_state = "browncorner"
},
-/area/medical/medbay)
-"dbl" = (
-/obj/machinery/suit_storage_unit/standard_unit,
+/area/hallway/primary/fore)
+"jEw" = (
+/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/vending/wallmed{
- pixel_x = 26
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/ai_monitored/storage/eva)
-"dbm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/safe/floor,
-/obj/item/reagent_containers/food/drinks/bottle/vodka,
-/obj/item/reagent_containers/food/drinks/bottle/vodka,
-/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,
-/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,
-/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,
-/obj/item/reagent_containers/food/drinks/bottle/gin,
-/obj/item/reagent_containers/food/drinks/bottle/patron,
-/obj/item/reagent_containers/food/drinks/bottle/patron,
-/obj/item/reagent_containers/food/drinks/bottle/cognac,
-/obj/item/reagent_containers/food/drinks/bottle/tequila,
-/obj/item/reagent_containers/food/drinks/bottle/tequila,
-/obj/item/reagent_containers/food/drinks/bottle/patron,
-/turf/simulated/floor/wood,
-/area/maintenance/fsmaint)
-"dbn" = (
-/obj/structure/closet/wardrobe/medic_white,
-/obj/item/clothing/head/surgery/blue,
-/obj/item/clothing/head/surgery/blue,
-/obj/item/clothing/head/surgery/green,
-/obj/item/clothing/head/surgery/green,
-/obj/item/clothing/head/surgery/purple,
-/obj/item/clothing/head/surgery/purple,
-/obj/item/clothing/suit/storage/fr_jacket,
-/obj/item/clothing/suit/storage/fr_jacket,
-/obj/item/clothing/suit/storage/fr_jacket,
-/obj/item/clothing/under/rank/medical/blue,
-/obj/item/clothing/under/rank/medical/green,
-/obj/item/clothing/under/rank/medical/purple,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 4
},
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/turf/simulated/floor/plasteel,
+/area/quartermaster/office)
+"jEA" = (
+/obj/machinery/biogenerator,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/item/reagent_containers/glass/bucket,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"jEJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/ward)
-"dbo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/wall,
-/area/medical/medbay3)
-"dbp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dbq" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dbr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light/small{
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "brown"
+ },
+/area/quartermaster/office)
+"jES" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dbs" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/quartermaster/office)
+"jFc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"jFg" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"jFi" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteyellow"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/medical/chemistry)
-"dbu" = (
+/area/medical/medbay2)
+"jFn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -76442,216 +74691,148 @@
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "2-8"
},
+/obj/structure/table/glass,
+/obj/item/folder/white,
+/obj/item/pen/red,
+/obj/item/paper_bin,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/chemistry)
-"dbv" = (
-/turf/simulated/wall/r_wall,
-/area/medical/ward)
-"dbw" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
+ dir = 4;
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (EAST)"
},
-/obj/structure/chair/comfy/brown{
+/area/medical/virology)
+"jFA" = (
+/obj/machinery/atmospherics/trinary/filter{
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/lawoffice)
-"dbz" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dbA" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 7
- },
-/obj/item/pen{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dbD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/toxins/explab)
+"jFS" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/remains/human,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dbE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/quartermaster/office)
+"jGi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 9
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/maintenance/gambling_den)
-"dbF" = (
-/obj/structure/cable{
+/area/crew_quarters/fitness)
+"jGo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/power/apc{
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/light,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"jGz" = (
+/obj/machinery/door/airlock/shuttle{
+ aiControlDisabled = 1;
+ hackProof = 1;
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Hatch"
+ },
+/obj/docking_port/stationary{
dir = 4;
- name = "east bump";
- pixel_x = 24
+ dwidth = 11;
+ height = 18;
+ id = "emergency_home";
+ name = "emergency evac bay";
+ width = 29
},
-/obj/machinery/light{
+/obj/docking_port/mobile/emergency{
+ dwidth = 11;
+ height = 18;
+ width = 29
+ },
+/turf/simulated/floor/plasteel,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"jGF" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Chief Medical Officer's Office";
- dir = 8;
- network = list("Medical","SS13")
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/plasteel,
-/area/medical/cmo)
-"dbG" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/maintenance/gambling_den)
-"dbH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/atmos)
+"jGR" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/maintenance/gambling_den)
-"dbI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/decal/cleanable/blood/xeno,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/gambling_den)
-"dbJ" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/sign/poster/contraband/random{
- pixel_x = 32
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dbN" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dbO" = (
-/obj/machinery/light{
- dir = 8
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "neutralfull"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dbP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/quartermaster/office)
+"jGZ" = (
+/obj/machinery/computer/crew,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"dbQ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"dbR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+ icon_state = "darkblue"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/area/bridge)
+"jHw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"dbS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"dbU" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/westleft{
- name = "Research Lab Desk";
- req_access_txt = "7"
+ icon_state = "dark"
},
-/obj/machinery/door/window/eastleft,
-/obj/item/folder,
-/obj/item/pen,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- icon_state = "shutter0";
- id_tag = "researchdesk2";
- name = "Research Desk Shutters";
- opacity = 0
+/area/maintenance/gambling_den)
+"jHx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/decal/warning_stripes/yellow,
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -76662,86 +74843,117 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"dbV" = (
-/obj/structure/disposalpipe/segment{
+/area/toxins/xenobiology)
+"jHC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/insulated{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"jHF" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"dbW" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"dbX" = (
-/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "neutralfull"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dbZ" = (
-/obj/item/radio/intercom{
- pixel_y = 23
+/area/quartermaster/office)
+"jHH" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/chem_dispenser,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
},
/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"dca" = (
-/obj/structure/disposalpipe/segment{
+/area/toxins/misc_lab)
+"jHJ" = (
+/obj/machinery/computer/prisoner{
+ req_access = null;
+ req_access_txt = "2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/prisonershuttle)
+"jHV" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "red"
+ },
+/area/security/lobby)
+"jIc" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"jIl" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery";
+ location = "Chapel"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/toxins/lab)
-"dcb" = (
+/area/chapel/main)
+"jIn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+ icon_state = "1-2"
},
/obj/effect/landmark/start{
- name = "Scientist"
+ name = "Medical Doctor"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/toxins/lab)
-"dcc" = (
-/obj/structure/chair/office/light{
+/area/medical/medbay2)
+"jIo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/structure/cable{
@@ -76749,118 +74961,155 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
- },
-/area/toxins/lab)
-"dcd" = (
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/obj/structure/sign/fire,
-/turf/simulated/wall/r_wall/coated,
-/area/toxins/test_chamber)
-"dce" = (
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/hallway/primary/aft)
-"dcg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"jIv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "darkblue"
},
-/area/medical/reception)
-"dch" = (
-/obj/structure/chair/office/light{
- dir = 8
+/area/bridge)
+"jIx" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/processing)
+"jIF" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Chemistry1";
+ name = "Chemistry Privacy Shutter"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/medical/chemistry)
+"jIN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Medical Doctor"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/light/small{
+ dir = 1
},
-/area/medical/reception)
-"dci" = (
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"jIR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/medical/sleeper)
-"dcj" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
},
+/area/security/prisonershuttle)
+"jIV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/turf/simulated/wall,
+/area/maintenance/gambling_den)
+"jJj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 10;
+ icon_state = "darkredfull"
},
-/area/medical/reception)
-"dck" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/area/security/warden)
+"jJl" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/status_display{
+ pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/library)
+"jJn" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"jJq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/sleeper)
-"dcl" = (
-/obj/machinery/computer/med_data,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whitepurplecorner"
},
-/area/medical/reception)
-"dcm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/toxins/explab)
+"jJr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining{
+ name = "Mining Dock";
+ req_access_txt = "48"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/cable{
@@ -76868,305 +75117,386 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"jJs" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Research Division Access";
+ req_access_txt = "47"
+ },
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel,
+/area/medical/research/nhallway)
+"jJM" = (
+/obj/structure/sink{
dir = 1;
- icon_state = "pipe-c"
+ layer = 5
},
+/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/sleeper)
-"dcn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "cmo"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"jJN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/medbay)
-"dcq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"jJO" = (
+/obj/machinery/computer/prisoner,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 1;
+ icon_state = "darkred"
},
-/area/medical/medbay)
-"dcr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/bridge)
+"jJU" = (
+/obj/machinery/door/airlock/external{
+ name = "Toxins Test Chamber"
},
+/turf/simulated/floor/plating/airless,
+/area/toxins/test_area)
+"jJV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining{
+ name = "Mining Dock";
+ req_access_txt = "48"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"jJW" = (
+/obj/machinery/light{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 8;
+ icon_state = "whitegreencorner"
},
-/area/medical/sleeper)
-"dcs" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/area/medical/virology)
+"jKl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/hologram/holopad,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"jKV" = (
+/obj/effect/decal/warning_stripes/arrow,
+/obj/structure/disposaloutlet,
+/obj/structure/window/plasmareinforced{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/area/medical/reception)
-"dct" = (
+/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"jKW" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "4-8"
},
+/turf/simulated/floor/plating,
+/area/security/customs)
+"jKY" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/mining_voucher,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "dark"
},
-/area/medical/medbay)
-"dcu" = (
+/area/bridge)
+"jLc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/landmark/start{
- name = "Medical Doctor"
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay)
-"dcv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/medical/medbay)
-"dcw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/fitness)
+"jLp" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/portable_atmospherics/pump,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "arrival"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/crew_quarters/locker)
+"jLs" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"jLD" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/security/checkpoint)
+"jMi" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/pen/blue,
+/obj/item/pen/red,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/library)
+"jMm" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/ids,
+/obj/item/storage/box/PDAs,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"jMn" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"jMs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/radiation,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "white"
},
-/area/medical/medbay)
-"dcy" = (
-/obj/structure/chair/office/light,
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"jMx" = (
+/obj/machinery/light{
dir = 1;
on = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "red"
},
-/area/medical/ward)
-"dcz" = (
-/obj/structure/rack,
-/obj/item/taperecorder,
+/area/security/permahallway)
+"jMC" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f5"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"jMH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/blood/xeno,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/maintenance/gambling_den)
+"jMT" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "escape"
+ },
+/area/crew_quarters/fitness)
+"jNa" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"jNE" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"dcA" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "lawyer";
- name = "Internal Affairs Privacy Shutters";
- opacity = 0
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/plating,
-/area/lawoffice)
-"dcB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/light/small{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dcC" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/chapel/office)
+"jNM" = (
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Locker Room North"
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
+/area/crew_quarters/locker)
+"jOc" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dcD" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/sunnybush,
-/obj/structure/window/reinforced{
+/area/maintenance/asmaint2)
+"jOd" = (
+/obj/structure/shuttle/engine/propulsion/burst{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f9"
},
-/turf/simulated/floor/grass,
-/area/medical/medbay)
-"dcE" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+/area/shuttle/pod_4)
+"jOe" = (
+/obj/machinery/vending/snack,
+/turf/simulated/floor/wood,
+/area/maintenance/fsmaint)
+"jOq" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/machinery/status_display{
+ pixel_y = 32
},
-/obj/item/storage/firstaid/brute{
- pixel_x = 4;
- pixel_y = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/item/storage/firstaid/brute{
- pixel_x = 2;
- pixel_y = 2
+/area/bridge)
+"jOB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/storage/firstaid/brute,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_y = -32
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
},
/turf/simulated/floor/plasteel{
icon_state = "whiteblue";
tag = "icon-whiteblue"
},
-/area/medical/biostorage)
-"dcF" = (
+/area/medical/sleeper)
+"jOE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
+/area/bridge/vip)
+"jPa" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
+ dir = 1;
+ icon_state = "darkyellow"
+ },
+/area/bridge)
+"jPw" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "red"
+ },
+/area/security/customs)
+"jPB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/maintenance/electrical)
-"dcG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -77175,604 +75505,727 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dcH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/bridge/vip)
+"jPK" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dcI" = (
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/maintenance/electrical)
-"dcJ" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/camera{
- c_tag = "Cargo Office NorthWest";
- dir = 4
+/area/security/securearmoury)
+"jPU" = (
+/obj/structure/chair/e_chair{
+ dir = 1
},
-/obj/machinery/photocopier,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"dcK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/light,
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/obj/machinery/camera{
- c_tag = "Port Hallway Middle";
- dir = 1
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/item/radio/intercom{
+ pixel_y = -30
+ },
+/turf/simulated/floor/engine,
+/area/security/execution)
+"jQa" = (
+/obj/machinery/computer/monitor,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 5;
+ icon_state = "darkyellow"
},
-/area/hallway/primary/port/east)
-"dcL" = (
-/obj/machinery/camera{
- c_tag = "Brig South Hallway";
- network = list("SS13","Security");
- pixel_x = -9
+/area/bridge)
+"jQn" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/razor,
+/obj/machinery/light_switch{
+ pixel_x = -24
},
-/obj/machinery/hologram/holopad,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin2)
+"jQr" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ dir = 4;
+ icon_state = "purple"
},
-/area/security/prison/cell_block/A)
-"dcM" = (
-/obj/machinery/light/small{
- dir = 8
+/area/quartermaster/miningdock)
+"jQW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dcN" = (
+/area/security/permabrig)
+"jRg" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- on = 1
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"dcO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/medbay)
+"jRq" = (
+/obj/structure/table,
+/obj/item/folder/yellow{
+ pixel_x = 2;
+ pixel_y = 2
},
-/obj/structure/chair/stool,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/item/pen/multi,
+/obj/item/paper_bin/nanotrasen,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dcP" = (
+/area/magistrateoffice)
+"jRu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/bridge/vip)
+"jRH" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Robotics Maintenance";
+ req_access_txt = "29"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"dcQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/maintenance/asmaint2)
+"jRL" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
},
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"dcR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/chapel/main)
+"jSb" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"jSg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/chair/wood,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/maintenance/gambling_den)
-"dcS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/chair/wood,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dcT" = (
-/obj/structure/chair/wood,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/medbay)
+"jSh" = (
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/virology)
+"jSs" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 100;
+ on = 1
},
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"dcU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/camera{
+ c_tag = "Teleporter";
+ dir = 1
},
-/obj/structure/table/wood/poker,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = -24
+ },
+/obj/effect/decal/warning_stripes/southeastcorner,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"jSu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"dcV" = (
+/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+ dir = 4
},
-/obj/structure/table/wood/poker,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dcW" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/turf/simulated/floor/plasteel{
dir = 1;
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dcX" = (
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/bridge/vip)
+"jSU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/maintenance/gambling_den)
-"dcY" = (
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"dcZ" = (
-/obj/machinery/vending/plasmaresearch,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whitepurple"
+/obj/effect/landmark{
+ name = "lightsout"
},
-/area/toxins/misc_lab)
-"dda" = (
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/chem_dispenser,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/sign/nosmoking_2{
- pixel_y = 32
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/engine,
-/area/toxins/misc_lab)
-"ddb" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/flashlight,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"ddc" = (
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/chem_heater,
-/obj/structure/window/plasmareinforced{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/camera{
- c_tag = "Chemical Toxins Lab";
- network = list("Research","SS13")
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/turf/simulated/floor/engine,
-/area/toxins/misc_lab)
-"ddd" = (
+/area/medical/medbay3)
+"jSV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/gambling_den)
-"dde" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/medical/research{
name = "Research Division"
})
-"ddf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+"jTa" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
},
-/obj/effect/decal/cleanable/dirt,
+/area/turret_protected/aisat)
+"jTh" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"ddg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
+/area/security/customs)
+"jTt" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"ddh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
- },
+/area/security/hos)
+"jTx" = (
/obj/structure/rack,
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/item/tank/emergency_oxygen/engi,
/turf/simulated/floor/plating,
/area/maintenance/starboard{
name = "Engineering Maintenance"
})
-"ddi" = (
-/turf/simulated/wall/r_wall,
-/area/toxins/explab)
-"ddj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/firealarm{
+"jTz" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"jTD" = (
+/obj/machinery/atmospherics/binary/volume_pump/on{
+ desc = "Выкачивает углекислый газ и токсины со станции и отправляет на фильтрацию";
dir = 1;
- pixel_y = -24
+ name = "Из скрабберов в фильтрацию"
},
-/obj/machinery/light,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "caution"
+ },
+/area/atmos)
+"jTF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/disposal,
-/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"ddk" = (
/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 5;
+ icon_state = "whitegreencorner"
},
-/area/crew_quarters/locker)
-"ddl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/virology)
+"jTV" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/firealarm{
+ pixel_y = -26
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (SOUTHWEST)"
+ },
+/area/medical/genetics)
+"jTZ" = (
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- icon_state = "neutralcorner"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/hallway/primary/central/sw)
-"ddm" = (
-/obj/machinery/light,
-/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/sw)
-"ddn" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/toxins/mixing)
+"jUs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"jUu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/disposal,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/sw)
-"ddo" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"ddp" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/sign/nosmoking_2{
- pixel_y = 32
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"jUE" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"ddq" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/alarm{
- pixel_y = 24
+/obj/machinery/power/terminal{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"ddr" = (
-/obj/machinery/camera{
- c_tag = "Research and Development";
- dir = 8;
- network = list("Research","SS13")
+/obj/effect/landmark{
+ name = "blobstart"
},
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Research Request Console";
- pixel_x = 30
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
+/turf/simulated/floor/plating,
+/area/maintenance/portsolar)
+"jUM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ dir = 1
+ },
+/area/security/processing)
+"jUO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/toxins/lab)
-"dds" = (
-/turf/simulated/wall,
-/area/toxins/explab)
-"ddu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "darkbluecorners"
+ },
+/area/bridge)
+"jUR" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/sheet/metal/fifty{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/wrench,
+/obj/item/grenade/chem_grenade/metalfoam,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ai_monitored/storage/eva)
+"jVb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"ddv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ dir = 8;
+ icon_state = "whitegreencorner"
+ },
+/area/medical/virology)
+"jVd" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"jVg" = (
+/obj/structure/chair{
+ dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
-"ddw" = (
-/obj/structure/table,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/processing)
+"jVx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/medbay)
-"ddx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/chair{
- dir = 8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
+ dir = 4;
icon_state = "whitepurplecorner"
},
/area/medical/research{
name = "Research Division"
})
-"ddy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+"jVz" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/wall/r_wall,
+/area/engine/break_room)
+"jVF" = (
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = 26
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain/bedroom)
+"jVL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ dir = 1;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (NORTH)"
},
-/area/medical/research{
- name = "Research Division"
- })
-"ddz" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/area/toxins/misc_lab)
+"jWl" = (
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "ramptop";
+ tag = "icon-stage_stairs"
},
-/area/medical/research{
- name = "Research Division"
- })
-"ddA" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/reception)
+"jWq" = (
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder{
+ pixel_x = -1;
+ pixel_y = 9
},
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ dir = 9;
+ icon_state = "whiteyellow"
},
-/area/medical/research{
- name = "Research Division"
- })
-"ddB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/chemistry)
+"jWA" = (
+/obj/structure/table/glass,
+/obj/item/stack/packageWrap,
+/obj/item/reagent_scanner/adv,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/box/pillbottles{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 26
},
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ dir = 1;
+ icon_state = "whiteyellow"
},
-/area/medical/research{
- name = "Research Division"
- })
-"ddC" = (
+/area/medical/chemistry)
+"jWC" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Virology";
+ name = "Virology Shutters"
},
/turf/simulated/floor/plating,
-/area/toxins/lab)
-"ddD" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/virology)
+"jWD" = (
+/turf/simulated/wall,
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"jWI" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"ddE" = (
+/turf/simulated/floor/plating,
+/area/security/processing)
+"jXd" = (
+/obj/structure/chair,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/security/processing)
+"jXe" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/firedoor,
/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/folder/blue,
+/obj/item/pen,
+/obj/machinery/door/window/brigdoor/southright{
+ dir = 8;
+ name = "Security Desk";
+ req_access_txt = "19"
},
-/obj/machinery/status_display{
- pixel_y = -32
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "SKPP"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "eslock";
+ name = "Escape Shuttle Lockdown"
},
-/obj/item/storage/toolbox/mechanical,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"ddF" = (
-/obj/structure/table/reinforced,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -6;
- pixel_y = -30
+/area/bridge/checkpoint/south)
+"jXk" = (
+/obj/structure/chair,
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/obj/item/folder/white,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker,
-/obj/item/reagent_containers/glass/beaker,
-/obj/item/reagent_containers/dropper,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/vending/wallmed{
- pixel_x = 6;
- pixel_y = -30
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/processing)
+"jXD" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/closet/medical_wall{
+ pixel_x = -32
},
+/obj/structure/closet/crate,
+/obj/item/storage/belt/utility,
+/obj/item/storage/belt/utility,
+/obj/item/storage/belt/utility,
+/obj/item/storage/belt/utility,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/multitool,
+/obj/item/multitool,
+/obj/item/multitool,
+/obj/item/multitool,
/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"ddG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/gateway)
+"jXE" = (
+/obj/structure/dresser,
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/heads/hop)
+"jXH" = (
+/obj/machinery/vending/cola,
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ dir = 4;
+ icon_state = "red"
},
-/area/toxins/lab)
-"ddH" = (
+/area/security/lobby)
+"jXW" = (
+/obj/structure/transit_tube{
+ icon_state = "D-SW";
+ tag = "icon-D-SW"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/space,
+/area/space/nearstation)
+"jYe" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/serviceyard)
+"jYQ" = (
/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/light,
-/obj/machinery/door_control{
- id = "researchdesk2";
- name = "Secondary Research Shutters";
- pixel_x = 8;
- pixel_y = -26
+/obj/machinery/camera{
+ c_tag = "Xenobio East";
+ dir = 8;
+ network = list("Research","SS13")
},
-/obj/machinery/door_control{
- id = "researchdesk1";
- name = "Primary Research Shutters";
- pixel_x = -8;
- pixel_y = -26
+/obj/machinery/requests_console{
+ department = "Xenobiology";
+ departmentType = 2;
+ name = "Xenobiology Requests Console";
+ pixel_x = 30
},
-/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/reagentgrinder,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/toxins/lab)
-"ddI" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/area/toxins/xenobiology)
+"jZb" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/item/pen,
+/area/library/abandoned)
+"jZj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "neutral"
},
-/area/security/processing)
-"ddJ" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+/area/toxins/mixing)
+"jZz" = (
+/obj/machinery/camera{
+ c_tag = "Library South";
+ dir = 1
},
-/area/hallway/primary/aft)
-"ddK" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/library)
+"jZA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/medical/reception)
-"ddL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"jZI" = (
+/obj/structure/lattice,
+/turf/space,
+/area/engine/engineering)
+"jZL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light{
+ dir = 8
},
/obj/structure/cable{
d1 = 4;
@@ -77780,191 +76233,134 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/sleeper)
-"ddM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ dir = 8;
+ icon_state = "darkblue"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/turret_protected/aisat_interior)
+"jZY" = (
+/obj/structure/chair,
+/obj/item/radio/intercom{
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/sleeper)
-"ddN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/filingcabinet/chestdrawer,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ dir = 1;
+ icon_state = "red"
},
+/area/security/processing)
+"kas" = (
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ dir = 4;
+ icon_state = "red"
},
-/area/medical/reception)
-"ddO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/security/brigstaff)
+"kay" = (
+/obj/structure/chair/wood{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"kaB" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/machinery/vending/medical,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/item/storage/box/beanbag,
+/obj/item/storage/box/beanbag{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/item/radio/intercom{
- pixel_x = 28;
- pixel_y = -28
+/obj/item/storage/box/tranquilizer{
+ pixel_x = -6;
+ pixel_y = 6
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHEAST)"
- },
-/area/medical/reception)
-"ddP" = (
-/obj/structure/window/reinforced{
- dir = 4
+ icon_state = "dark"
},
-/obj/machinery/door/firedoor,
+/area/security/securearmoury)
+"kaE" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/engine/break_room)
+"kaJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- on = 1
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/item/storage/belt/medical,
-/obj/item/storage/belt/medical,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
- },
-/area/medical/sleeper)
-"ddQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 1;
+ icon_state = "darkred"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/security/permabrig)
+"kaL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/sleeper)
-"ddR" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/maintenance/electrical)
-"ddU" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "brig_detprivacy";
- name = "Detective Privacy Shutters";
- opacity = 0
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
-"ddV" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/sign/examroom,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/medical/sleeper)
-"ddW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/sleeper)
-"ddX" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+ icon_state = "dark"
},
+/area/crew_quarters/courtroom)
+"kaX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"kbT" = (
+/obj/structure/chair,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 5;
+ icon_state = "red"
},
-/area/medical/sleeper)
-"ddY" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/area/security/processing)
+"kbW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
-/area/medical/sleeper)
-"ddZ" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/toy/figure/md,
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
- },
-/area/medical/reception)
-"dea" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/medbay)
+"kcc" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+/obj/machinery/status_display{
+ pixel_x = -32
},
-/area/medical/medbay)
-"deb" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- id_tag = "MedbayFoyer";
- name = "Medical Supplies";
- req_access_txt = "5"
+/obj/machinery/computer/monitor{
+ name = "Grid Power Monitoring Computer"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "caution"
},
+/area/atmos)
+"kci" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -77975,431 +76371,381 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/hologram/holopad,
+/obj/effect/landmark/start{
+ name = "Life Support Specialist"
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/biostorage)
-"dec" = (
+/area/atmos)
+"kcq" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Medbay Maintenance";
- req_access_txt = "5"
- },
-/turf/simulated/floor/plasteel,
-/area/medical/ward)
-"ded" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = -32
+ icon_state = "0-8"
},
-/obj/machinery/light,
+/turf/simulated/floor/plating,
+/area/storage/tech)
+"kdd" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ dir = 1
},
-/area/medical/medbay)
-"dee" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/processing)
+"kdl" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j2"
},
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/area/security/lobby)
-"def" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/research/restroom)
+"kdO" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/medbay)
-"deg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 5;
+ icon_state = "darkred"
},
-/obj/structure/chair/comfy/teal{
- dir = 4
+/area/security/permabrig)
+"kdP" = (
+/obj/item/radio/intercom{
+ pixel_y = 23
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"keb" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/medbay)
-"dej" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ id_tag = "hopprivacy";
+ name = "Head of Personal Privacy Shutters"
},
-/area/medical/medbay3)
-"dek" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/item/roller,
-/obj/item/reagent_containers/iv_bag,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"del" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/light/small{
+/area/crew_quarters/heads/hop)
+"kee" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dem" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/area/maintenance/electrical)
-"den" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 5
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/carpet,
-/area/civilian/pet_store)
-"deo" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dep" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/carpet,
-/area/civilian/pet_store)
-"deq" = (
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "darkbluecorners"
},
-/area/maintenance/electrical)
-"der" = (
+/area/chapel/main)
+"ker" = (
+/obj/effect/decal/warning_stripes/northeast,
/obj/effect/decal/cleanable/dirt,
-/obj/item/radio/intercom{
- pixel_x = 28
- },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "yellow"
},
/area/maintenance/electrical)
-"des" = (
-/obj/machinery/computer/arcade/battle,
+"kew" = (
+/obj/machinery/camera{
+ c_tag = "East-South Brig Hallway";
+ network = list("SS13","Security")
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
},
-/area/security/permabrig)
-"det" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/space_heater,
+/area/security/securehallway)
+"keE" = (
+/obj/structure/table,
+/obj/item/multitool,
+/turf/simulated/floor/plating,
+/area/maintenance/storage{
+ name = "Perma Maintenance"
+ })
+"keL" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/decal/warning_stripes/southwestcorner,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"keY" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/recharge_station,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"kfc" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/storage{
+ name = "Perma Maintenance"
+ })
+"kfh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dev" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/obj/structure/chair/office/dark{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dew" = (
-/obj/machinery/door/airlock/external,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dez" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"deA" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/bridge)
+"kfi" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 4
+ icon_state = "1-2"
},
-/obj/structure/window/reinforced{
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"deB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/bridge)
+"kfn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/gambling_den)
-"deC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/permabrig)
+"kfr" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "engineering_west_airlock";
+ name = "exterior access button";
+ pixel_x = 20;
+ pixel_y = 20;
+ req_access_txt = "10;13"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
+ d1 = 1;
d2 = 4;
- icon_state = "0-4"
+ icon_state = "1-4"
},
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"kfS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"deD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+ icon_state = "2-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"deE" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-4"
},
-/obj/structure/cable,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
+/area/security/reception)
+"kfT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/blood/xeno,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/maintenance/gambling_den)
+"kfX" = (
/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+ dir = 8
+ },
+/obj/structure/lattice,
+/obj/structure/lattice,
+/obj/machinery/light/small{
+ dir = 4
},
+/turf/space,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"kgz" = (
+/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"deF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood/poker,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"kgB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"deG" = (
-/turf/simulated/wall,
-/area/quartermaster/delivery)
-"deH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/area/maintenance/xenozoo)
+"khe" = (
+/obj/machinery/computer/operating,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
dir = 4;
- on = 1
+ icon_state = "darkblue"
},
+/area/medical/surgery2)
+"khf" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"deK" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"deL" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/engine,
-/area/toxins/misc_lab)
-"deM" = (
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/chem_master,
-/obj/structure/window/plasmareinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/engine,
-/area/toxins/misc_lab)
-"deN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/wall/r_wall,
-/area/toxins/explab)
-"deO" = (
-/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/door/airlock/maintenance{
- req_one_access_txt = "12;47"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"deP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/wall/r_wall,
-/area/toxins/explab)
-"deQ" = (
+/area/maintenance/asmaint2)
+"khy" = (
/obj/structure/table/reinforced,
-/obj/item/wrench,
-/obj/item/crowbar,
-/obj/item/clothing/mask/gas,
-/obj/machinery/newscaster{
- pixel_x = -32
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"deR" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
+/area/turret_protected/ai)
+"khz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/toxins/explab)
-"deS" = (
-/obj/machinery/atmospherics/trinary/filter{
- dir = 8
+/area/maintenance/gambling_den)
+"khT" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"khY" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/blue,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/ai)
+"kiG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
dir = 1;
- icon_state = "whitepurplecorner"
+ pixel_y = -22
},
-/area/toxins/explab)
-"deT" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
+/obj/machinery/camera{
+ c_tag = "Blueshield's Office";
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
+/obj/machinery/disposal,
+/turf/simulated/floor/wood,
+/area/blueshield)
+"kji" = (
+/obj/structure/table/reinforced,
+/obj/item/radio,
+/obj/item/t_scanner,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/toxins/explab)
-"deU" = (
+/area/turret_protected/ai)
+"kjk" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
+ },
+/area/medical/cryo)
+"kjn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ icon_state = "1-2"
},
+/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurple"
+ icon_state = "red"
},
-/area/toxins/explab)
-"deV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/area/security/checkpoint2)
+"kjs" = (
+/obj/machinery/light{
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -78407,1083 +76753,1047 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+ icon_state = "grimy"
},
+/area/security/hos)
+"kjF" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/effect/decal/warning_stripes/northeastcorner,
+/turf/simulated/floor/plasteel,
/area/toxins/explab)
-"deW" = (
+"kjS" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/item/multitool,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"kjT" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"kkd" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/ne)
+"kkj" = (
+/obj/machinery/disposal,
+/obj/machinery/alarm{
dir = 4;
- icon_state = "whitepurplecorner"
+ pixel_x = -24
},
-/area/toxins/misc_lab)
-"deX" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/radio/intercom{
- pixel_y = 24
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"deZ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/carpet,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"dfe" = (
-/turf/simulated/wall,
-/area/medical/research{
- name = "Research Division"
- })
-"dff" = (
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/hor)
-"dfg" = (
-/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
+ },
+/area/medical/surgery2)
+"kko" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/hor)
-"dfh" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/hor)
-"dfi" = (
-/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/toxins/xenobiology)
+"kku" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/crew_quarters/hor)
-"dfj" = (
-/obj/effect/spawner/window/reinforced,
+/area/maintenance/asmaint2)
+"kkK" = (
+/turf/simulated/floor/greengrid,
+/area/security/nuke_storage)
+"kkV" = (
+/obj/effect/decal/cleanable/blood/xeno,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"klb" = (
+/obj/structure/grille,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"klj" = (
+/turf/simulated/wall,
+/area/hallway/primary/central/ne)
+"kln" = (
+/obj/structure/closet/crate,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/mining)
+"klo" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/toxins/explab)
+"klr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/hor)
-"dfk" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 2;
+/area/assembly/robotics)
+"klv" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/lattice,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/space,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"klw" = (
+/turf/simulated/floor/engine/n20,
+/area/atmos)
+"klx" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "engineering_west_outer";
+ locked = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"klC" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics N2O Tank";
+ network = list("SS13","Engineering")
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+/turf/simulated/floor/engine/n20,
+/area/atmos)
+"klF" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ id_tag = "n2o_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ layer = 2.4;
+ name = "n2o vent";
+ on = 1;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0
+ },
+/turf/simulated/floor/engine/n20,
+/area/atmos)
+"klL" = (
+/obj/machinery/shower{
+ pixel_y = 22
+ },
+/obj/structure/curtain/open/shower,
+/obj/item/soap/deluxe,
+/obj/item/bikehorn/rubberducky,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/hor)
-"dfl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dfm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+/area/crew_quarters/captain/bedroom)
+"klO" = (
+/obj/machinery/atmospherics/binary/pump{
+ desc = "Подаёт оксид азота для смешивания с другими газами";
+ dir = 4;
+ name = "Оксид азота (NO2) в смеситель";
+ target_pressure = 101
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 1;
+ name = "Труба фильтрации"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ dir = 9;
+ icon_state = "escape"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dfn" = (
-/turf/simulated/wall,
-/area/assembly/chargebay)
-"dfo" = (
-/turf/simulated/wall/r_wall,
-/area/assembly/chargebay)
-"dfp" = (
-/obj/effect/spawner/window/reinforced,
+/area/atmos)
+"kma" = (
+/obj/machinery/camera{
+ c_tag = "Aft Starboard Solars"
+ },
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plating,
-/area/assembly/chargebay)
-"dfq" = (
+/area/maintenance/starboardsolar)
+"kmh" = (
+/obj/effect/decal/warning_stripes/northeastcorner,
+/obj/machinery/light/small,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkred"
+ },
+/area/security/podbay)
+"kml" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
initialize_directions = 11
},
-/obj/structure/disposalpipe/segment,
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/reception)
-"dfr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = -32
- },
+"kmA" = (
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/sleeper)
-"dfs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/atmos)
+"kmC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Mech Bay";
- req_access_txt = "29"
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck Door"
},
/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dft" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry/additional)
-"dfu" = (
-/turf/simulated/wall/r_wall,
-/area/hallway/secondary/entry/eastarrival)
-"dfv" = (
-/turf/simulated/wall,
-/area/medical/paramedic)
-"dfw" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
- },
-/area/medical/sleeper)
-"dfy" = (
-/turf/simulated/wall,
-/area/medical/genetics_cloning)
-"dfz" = (
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
- },
-/area/medical/sleeper)
-"dfA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/crew_quarters/fitness)
+"kmD" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба содержит газ для обработки и после возвращает его обратно в трубу смешивания";
+ name = "Труба обработки"
},
+/obj/machinery/meter,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/secondary/entry/westarrival)
-"dfB" = (
-/turf/simulated/wall,
-/area/hallway/secondary/entry/westarrival)
-"dfC" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/atmos)
+"kmJ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"kmL" = (
+/obj/machinery/atmospherics/unary/tank/air,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"kmU" = (
+/obj/structure/transit_tube/station{
+ dir = 8;
+ tag = "icon-closed (EAST)"
},
-/area/medical/medbay3)
-"dfD" = (
-/turf/simulated/wall,
-/area/medical/cmo)
-"dfE" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/structure/transit_tube_pod,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ pixel_x = -6
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/courtroom)
-"dfG" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/medical/biostorage)
-"dfI" = (
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "yellow"
+ icon_state = "4-8"
},
-/area/maintenance/electrical)
-"dfJ" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "yellowcorner"
+ icon_state = "darkblue"
},
-/area/maintenance/electrical)
-"dfK" = (
-/obj/effect/spawner/random_spawners/wall_rusted_maybe,
-/turf/simulated/wall,
-/area/maintenance/fsmaint)
-"dfL" = (
+/area/construction/hallway)
+"kna" = (
+/turf/simulated/floor/greengrid{
+ temperature = 80
+ },
+/area/toxins/xenobiology)
+"knb" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"dfM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"knS" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/maintenance/electrical)
+"knU" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dfN" = (
-/obj/effect/decal/cleanable/blood,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"kov" = (
+/obj/machinery/pipedispenser,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/gambling_den)
-"dfO" = (
+/area/maintenance/electrical)
+"kow" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/north)
+"kox" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dfP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair/wood{
- dir = 8
- },
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/maintenance/gambling_den)
-"dfQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"koy" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/gambling_den)
-"dfS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 9;
+ icon_state = "whitepurple"
},
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"dfT" = (
+/area/toxins/explab)
+"koA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Research Director's Office";
+ req_access = null;
+ req_access_txt = "30"
},
-/area/maintenance/gambling_den)
-"dfU" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"koH" = (
+/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dfV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dfX" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTH)"
- },
-/area/toxins/misc_lab)
-"dfY" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
- },
+/area/maintenance/fsmaint)
+"koK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTH)"
+ dir = 5;
+ icon_state = "brown"
},
-/area/toxins/explab)
-"dfZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small{
+/area/quartermaster/delivery)
+"kpn" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitepurple"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/toxins/explab)
-"dga" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"dgb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ dir = 1;
+ icon_state = "red"
},
-/area/toxins/explab)
-"dgc" = (
+/area/security/checkpoint)
+"kpq" = (
+/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/toxins/explab)
-"dgd" = (
+/area/atmos)
+"kpr" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ dir = 5;
+ icon_state = "blue"
},
-/area/toxins/explab)
-"dge" = (
+/area/bridge/checkpoint/south)
+"kps" = (
+/obj/effect/decal/warning_stripes/southwest,
+/obj/structure/window/plasmareinforced{
+ dir = 8
+ },
+/obj/structure/window/plasmareinforced,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/turf/simulated/floor/engine,
+/area/toxins/misc_lab)
+"kpF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/toxins/explab)
-"dgf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/toxins/explab)
-"dgg" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/area/toxins/explab)
-"dgh" = (
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/junction{
dir = 1;
- on = 1
+ tag = "icon-pipe-j1 (EAST)"
},
-/obj/structure/closet/bombcloset,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"dgi" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/suit/radiation,
-/obj/item/clothing/head/radiation,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"dgj" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
+/area/medical/medbay2)
+"kpL" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/hologram/holopad,
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"dgk" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/atmos)
+"kpR" = (
+/obj/structure/rack,
+/obj/item/crowbar/red,
+/obj/item/wrench,
+/obj/item/tank/emergency_oxygen/engi,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 5
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/stack/tape_roll,
/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"dgl" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/storage/secure)
+"kpT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"kpV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
+/area/turret_protected/aisat)
+"kpW" = (
+/obj/structure/table,
+/obj/item/storage/lockbox/mindshield,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"kqm" = (
+/obj/structure/grille,
+/obj/structure/window/full/shuttle,
+/turf/space,
+/turf/simulated/floor/plating,
+/area/shuttle/escape{
+ parallax_movedir = 2
})
-"dgo" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 1;
- icon_state = "left";
- name = "Medical Reception";
- req_access_txt = "5"
+"kqK" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/obj/effect/landmark/start{
+ name = "Captain"
},
+/turf/simulated/floor/carpet,
+/area/crew_quarters/captain)
+"kqN" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/door_control{
- desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyerPort";
- name = "Medbay Doors Control";
- normaldoorcontrol = 1;
- req_access_txt = null
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "bluefull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/reception)
-"dgq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dgr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Break Room Maintenance";
- req_access_txt = "47"
+/area/medical/virology)
+"krc" = (
+/obj/machinery/vending/autodrobe,
+/obj/machinery/firealarm{
+ pixel_y = -32
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dgs" = (
-/obj/structure/table/reinforced,
-/obj/item/paicard,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
+/obj/machinery/light_switch{
+ pixel_x = -22;
+ pixel_y = 9
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dgt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "bar"
},
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/photocopier,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dgu" = (
-/obj/effect/spawner/window/reinforced,
+/area/clownoffice)
+"krh" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/door/airlock/public/glass{
+ name = "Courtroom";
+ req_access_txt = "63"
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/hor)
-"dgv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ dir = 0;
+ icon_state = "green"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dgw" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+/area/crew_quarters/courtroom)
+"kri" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"krC" = (
+/obj/machinery/atmospherics/trinary/filter{
+ desc = "Отфильтровывает азот из трубы и отправляет его в камеру хранения";
+ dir = 1;
+ filter_type = 2;
+ name = "Фильтр Азота (N2)";
+ on = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/hallway/primary/aft)
-"dgx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ dir = 6;
+ icon_state = "red"
},
-/area/medical/sleeper)
-"dgy" = (
+/area/atmos)
+"krI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/sleeper)
-"dgz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/radio/intercom{
- pixel_x = 30
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/area/medical/sleeper)
-"dgA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/medbay3)
-"dgC" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/aft)
-"dgE" = (
+/area/medical/chemistry)
+"krK" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/processing)
+"krM" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dgF" = (
-/obj/machinery/computer/crew,
-/obj/machinery/light{
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/security/processing)
+"krN" = (
+/obj/machinery/mech_bay_recharge_port{
dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plating,
+/area/assembly/chargebay)
+"krY" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/sign/nosmoking_1,
+/turf/simulated/floor/plating,
+/area/medical/genetics_cloning)
+"ksr" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/storage/box/rxglasses,
+/obj/item/storage/belt/medical,
+/obj/item/clothing/glasses/hud/health,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/paramedic)
-"dgG" = (
-/obj/machinery/computer/med_data,
+/obj/item/clothing/glasses/hud/health,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteblue";
tag = "icon-whiteblue (NORTH)"
},
-/area/medical/paramedic)
-"dgH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/medical/biostorage)
+"kss" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/storage/box/rxglasses,
+/obj/item/storage/belt/medical,
+/obj/item/clothing/glasses/hud/health,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
+/obj/item/clothing/glasses/hud/health,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
+ },
+/area/medical/biostorage)
+"ksN" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Xeno Containment 4";
+ network = list("Research","SS13")
},
-/area/medical/paramedic)
-"dgI" = (
-/obj/structure/chair/comfy/teal,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ icon_state = "dark"
},
-/area/medical/reception)
-"dgL" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = "CloningDoor";
- name = "Genetics Cloning";
- req_one_access_txt = "5;9"
+/area/toxins/xenobiology)
+"ktf" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/door/firedoor,
-/obj/effect/mapping_helpers/airlock/unres,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"ktg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/genetics_cloning)
-"dgN" = (
-/obj/structure/chair{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/light{
- dir = 4
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"kti" = (
+/obj/machinery/hydroponics/constructable{
+ desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays.";
+ name = "Prison hydroponics tray";
+ using_irrigation = 1
+ },
+/obj/item/seeds/orange,
+/obj/item/seeds/orange,
+/obj/item/seeds/orange,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/cable{
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/courtroom)
-"dgO" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/area/security/permabrig)
+"ktl" = (
+/obj/machinery/atmospherics/unary/outlet_injector/on{
+ dir = 8;
+ frequency = 1441;
+ id = "n2_in"
},
-/obj/machinery/door/poddoor/shutters/preopen{
+/turf/simulated/floor/engine/n2,
+/area/atmos)
+"ktI" = (
+/obj/structure/disposalpipe/segment{
dir = 8;
- id_tag = "Chemistry2";
- name = "Chemistry Privacy Shutter"
+ icon_state = "pipe-c"
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
},
-/turf/simulated/floor/plating,
-/area/medical/chemistry)
-"dgP" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/poster/official/random{
- pixel_x = -32
+/area/security/brig)
+"ktJ" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cabin4)
+"ktO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/area/medical/sleeper)
-"dgQ" = (
-/obj/machinery/door/firedoor,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1
},
-/area/medical/sleeper)
-"dgR" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow,
+/area/security/reception)
+"ktZ" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ dir = 9;
+ icon_state = "yellow"
},
-/area/medical/sleeper)
-"dgS" = (
-/obj/structure/closet/secure_closet/medical3,
+/area/engine/hardsuitstorage)
+"kud" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/decal/warning_stripes/yellow,
/obj/item/radio/intercom{
- pixel_y = 26
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+ pixel_y = -28
},
-/obj/item/storage/box/bodybags,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/medical/surgery1)
-"dgT" = (
-/obj/machinery/power/apc{
+/area/crew_quarters/fitness)
+"kul" = (
+/obj/structure/disposalpipe/segment{
dir = 4;
- name = "east bump";
- pixel_x = 24
+ icon_state = "pipe-c"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/camera{
+ c_tag = "Сosmination room";
+ dir = 5;
+ network = list("Research","SS13")
},
-/obj/structure/table/glass,
-/obj/item/reagent_containers/spray/cleaner,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/paramedic)
-"dgU" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/bottle/ether{
- pixel_x = 1;
- pixel_y = 8
+ dir = 8;
+ icon_state = "darkblue"
},
-/obj/item/reagent_containers/syringe{
- pixel_x = -1;
- pixel_y = -1
+/area/chapel/main)
+"kuz" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/surgery1)
-"dgV" = (
-/obj/structure/table/glass,
-/obj/item/storage/toolbox/surgery{
- pixel_x = -1;
- pixel_y = 2
+ dir = 8;
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/central/west)
+"kva" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/medical/surgery1)
-"dgW" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "neutralfull"
},
-/area/medical/medbay3)
-"dgX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/hallway/primary/central/west)
+"kvB" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"kwk" = (
+/turf/simulated/wall,
+/area/engine/gravitygenerator)
+"kwl" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/area/medical/medbay)
+"kwq" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/item/clothing/glasses/hud/hydroponic,
+/obj/item/clothing/glasses/hud/hydroponic,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay3)
-"dgY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+/area/hydroponics)
+"kwr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/medbay3)
-"dha" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "CMO Shutters";
- name = "CMO Privacy Shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "white"
},
-/turf/simulated/floor/plating,
-/area/medical/cmo)
-"dhb" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/firealarm{
- pixel_y = 24
+/area/medical/biostorage)
+"kwN" = (
+/obj/structure/computerframe,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/maintenance/xenozoo)
+"kxq" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/flashbangs{
+ pixel_x = 5;
+ pixel_y = 5
},
-/turf/simulated/floor/plasteel,
-/area/medical/cmo)
-"dhc" = (
-/obj/structure/table/glass,
-/obj/item/folder/white,
-/obj/item/flashlight/pen,
-/obj/item/clothing/accessory/stethoscope,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+/obj/item/storage/box/flashbangs,
+/obj/machinery/door/poddoor/shutters{
+ id_tag = "ShootRange";
+ name = "Shooting Range Shutters"
},
-/area/medical/cmo)
-"dhd" = (
-/obj/structure/table/glass,
-/obj/item/storage/firstaid/regular,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
- },
-/area/medical/cmo)
-"dhg" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dhh" = (
+/area/security/range)
+"kxu" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/wall,
+/area/atmos)
+"kxD" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/security/checkpoint)
+"kxK" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dhi" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Maintenance";
- req_access_txt = "12;24"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dhj" = (
-/obj/machinery/power/terminal,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"kxN" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "yellow"
- },
-/area/maintenance/electrical)
-"dhk" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light_switch{
- pixel_y = -25
+ icon_state = "1-4"
},
-/obj/machinery/light,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/effect/decal/remains/human,
/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dhm" = (
+/area/maintenance/gambling_den)
+"kxQ" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -79494,7029 +77804,7212 @@
d2 = 4;
icon_state = "2-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dhn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno5";
+ name = "Creature Cell #5";
+ opacity = 0
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Creature Pen";
+ req_access_txt = "47"
},
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "yellow"
+ icon_state = "dark"
},
-/area/maintenance/electrical)
-"dho" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light,
+/area/toxins/xenobiology)
+"kxT" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dhp" = (
-/obj/machinery/power/terminal,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/aienter)
+"kyv" = (
+/obj/machinery/light{
+ dir = 8
},
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "yellow"
+ dir = 10;
+ icon_state = "blue"
},
-/area/maintenance/electrical)
-"dhq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
+/area/bridge/checkpoint/south)
+"kyw" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dhr" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- tag = "icon-swall12"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkred"
},
-/area/shuttle/pod_3)
-"dhs" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 8
+/area/security/interrogation)
+"kyJ" = (
+/obj/structure/chair/comfy/teal{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/shuttle/pod_3)
-"dht" = (
-/obj/docking_port/mobile/pod{
- dir = 4;
- id = "pod3";
- name = "escape pod 3"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/obj/machinery/door/airlock/shuttle{
- id_tag = "s_docking_airlock";
- name = "Escape Pod Hatch"
+/area/medical/medbay)
+"kyY" = (
+/obj/structure/grille,
+/turf/simulated/wall/r_wall,
+/area/space/nearstation)
+"kzc" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/pod_3)
-"dhu" = (
-/obj/machinery/light/small{
- dir = 8
+/area/security/brig)
+"kze" = (
+/obj/machinery/vending/snack,
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
},
-/obj/structure/sign/poster/contraband/random{
- pixel_x = -32
+/area/engine/break_room)
+"kzg" = (
+/obj/machinery/mineral/labor_claim_console{
+ pixel_x = 30;
+ pixel_y = 30
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/area/maintenance/gambling_den)
-"dhv" = (
-/obj/structure/table/wood/poker,
+/area/shuttle/siberia)
+"kzh" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/ids,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1;
+ icon_state = "blue"
},
-/area/maintenance/gambling_den)
-"dhw" = (
-/obj/structure/chair/wood{
- dir = 4
+/area/bridge/checkpoint/south)
+"kzj" = (
+/obj/structure/bed,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/machinery/light,
+/obj/item/bedsheet/yellow,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cabin4)
+"kzx" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/multitool,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/radio/intercom{
+ pixel_y = 21
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitepurple"
},
+/area/toxins/misc_lab)
+"kzy" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"dhx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair/wood{
- dir = 8
+/area/maintenance/fsmaint)
+"kzG" = (
+/obj/machinery/vending/chinese,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/medbay3)
+"kzP" = (
+/obj/structure/chair,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/main)
+"kzU" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "SecMedPriv"
},
/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dhy" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"dhz" = (
+/area/security/medbay)
+"kzW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
},
+/obj/effect/decal/cleanable/cobweb2,
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10;
+ initialize_directions = 10
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"kAe" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 7;
+ icon_state = "yellow"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/engine/hardsuitstorage)
+"kAm" = (
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Brig Medical Bay";
+ req_one_access_txt = "63"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/toxins/misc_lab)
-"dhA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/airlock/research{
- name = "Chemical Toxins";
- req_access_txt = "47"
- },
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"dhB" = (
-/obj/structure/closet/secure_closet/research_reagents,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/security/medbay)
+"kAF" = (
+/turf/simulated/wall/r_wall,
+/area/engine/break_room)
+"kAV" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/camera/emp_proof{
+ c_tag = "Singularity NorthEast";
dir = 8;
- icon_state = "whitepurple"
+ network = list("SS13","Singularity","Engineering")
},
-/area/toxins/misc_lab)
-"dhC" = (
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"kAW" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
},
+/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/gambling_den)
-"dhG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/turf/simulated/floor/plating,
+/area/maintenance/portsolar)
+"kAY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/atmos)
+"kBe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "green"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/hydroponics)
+"kBs" = (
+/obj/machinery/camera{
+ c_tag = "HoS Bedroom";
+ network = list("SS13","Security")
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/item/ammo_box/a357{
+ pixel_x = -9;
+ pixel_y = 9
},
-/area/toxins/explab)
-"dhH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/item/ammo_box/a357{
+ pixel_x = -4;
+ pixel_y = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/item/ammo_box/a357,
+/obj/item/clothing/accessory/holster,
+/obj/structure/safe{
+ known_by = list("hos")
},
+/obj/item/gun/projectile/revolver/mateba,
+/turf/simulated/floor/wood,
+/area/security/hos)
+"kBu" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/atmos)
+"kBv" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"kBM" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_x = -32
},
+/obj/item/storage/briefcase,
+/obj/item/cane,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cabin4)
+"kBY" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "solar_xeno_airlock";
+ name = "interior access button";
+ pixel_x = 25;
+ pixel_y = -25;
+ req_access_txt = "10;13"
+ },
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
+"kCn" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the horrors within the test chamber.";
+ name = "Research Monitor";
+ network = list("TestChamber")
+ },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "whitepurple"
},
-/area/toxins/explab)
-"dhI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/binary/pump{
- dir = 1
+/area/toxins/misc_lab)
+"kCr" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Kitchen";
+ req_access_txt = "28"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "Kitchen Hall Windows";
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
+/area/crew_quarters/kitchen)
+"kCD" = (
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTH)"
+ icon_state = "darkredcorners"
},
-/area/toxins/misc_lab)
-"dhJ" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/area/security/podbay)
+"kCE" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dhK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/disposal,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26;
+ pixel_y = 32
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"kCF" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/beakers,
+/obj/item/storage/box/syringes,
+/obj/item/extinguisher/mini,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"kCV" = (
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = -22
},
-/area/toxins/explab)
-"dhL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"kCW" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
dir = 4
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- tag = "icon-pipe-j1 (EAST)"
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "RnDChem";
+ name = "Biohazard Shutter";
+ opacity = 0
},
-/area/toxins/explab)
-"dhM" = (
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"kDa" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"kDr" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"kDH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/toxins/explab)
-"dhN" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+ icon_state = "dark";
+ temperature = 80
},
-/obj/structure/displaycase/labcage,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dhO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/area/toxins/xenobiology)
+"kDP" = (
+/obj/machinery/firealarm{
+ pixel_y = -26
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dhP" = (
-/obj/structure/table,
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/wood,
+/area/security/hos)
+"kDR" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"kEg" = (
+/obj/structure/closet/l3closet/scientist,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/folder/blue{
- pixel_x = 5
- },
-/obj/item/folder/red{
- pixel_x = -6
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dhQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "whitepurplecorner"
},
-/area/toxins/explab)
-"dhR" = (
+/area/medical/research/nhallway)
+"kEj" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/safe/floor,
+/obj/item/paper{
+ desc = "Мятый лист бумаги. От одного вида на него у вас начинается головокружение.";
+ info = "
ПОМОГИТЕ МНЕ
ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ";
+ name = "Странные записи"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"kEp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/medical/psych)
+"kEz" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitegreencorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/virology)
+"kEH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/structure/table/reinforced,
-/obj/item/taperecorder,
-/obj/item/stack/sheet/mineral/plasma,
-/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple"
+ icon_state = "white"
},
-/area/toxins/explab)
-"dhS" = (
+/area/security/medbay)
+"kEM" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/hydroponics)
+"kFe" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research/glass{
- name = "Xenobiology Lab";
- req_access_txt = "47"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"dhT" = (
-/obj/structure/disposalpipe/segment{
+/area/maintenance/maintcentral)
+"kFz" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"kFQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/hologram/holopad,
-/obj/structure/chair/office/light,
-/obj/effect/landmark/start{
- name = "Scientist"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/toxins/explab)
-"dhU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/hydroponics)
+"kFR" = (
+/obj/effect/landmark{
+ name = "lightsout"
},
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/folder/white,
-/obj/item/pen,
-/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "neutralcorner"
},
-/area/toxins/explab)
-"dhV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/hallway/primary/central/west)
+"kGf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics";
+ req_access_txt = "35"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"dhW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dia" = (
+/area/hydroponics)
+"kGl" = (
+/obj/structure/table/reinforced,
+/obj/item/plant_analyzer,
+/obj/item/plant_analyzer,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/storage/tech)
+"kGp" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
},
/area/medical/research{
name = "Research Division"
})
-"die" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dif" = (
+"kGG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/southwest,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/chapel/office)
+"kGQ" = (
+/obj/structure/table/reinforced,
+/obj/item/aiModule/reset,
+/obj/item/flash,
+/obj/item/flash,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/requests_console{
+ department = "Tech Storage";
+ name = "Tech Storage Requests Console";
+ pixel_y = 32
},
/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dig" = (
+/area/storage/tech)
+"kGW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/kitchen)
+"kHa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Research Director's Office";
- req_access = null;
- req_access_txt = "30"
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/crew_quarters/kitchen)
+"kHo" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/cable{
- d1 = 2;
+/obj/structure/cable/yellow{
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dih" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/light,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"kHz" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/securehallway)
+"kHF" = (
+/obj/structure/chair/office/light{
+ dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
-"dii" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dik" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/toxins/misc_lab)
+"kHS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/assembly/chargebay)
-"dil" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/light{
- dir = 8
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"kIa" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ dir = 4;
+ icon_state = "green"
},
-/area/medical/medbay3)
-"dim" = (
-/obj/structure/table,
-/obj/machinery/light{
+/area/hydroponics)
+"kIb" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permahallway)
+"kId" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "blue"
+ },
+/area/bridge/checkpoint/south)
+"kIA" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/landmark/start{
+ name = "Chef"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = 28
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/obj/machinery/alarm{
+/area/crew_quarters/kitchen)
+"kJm" = (
+/obj/structure/disposalpipe/segment{
dir = 4;
- pixel_x = -23
+ icon_state = "pipe-c"
},
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/obj/item/stock_parts/cell/high,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"din" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dio" = (
-/obj/machinery/computer/mech_bay_power_console,
-/turf/simulated/floor/bluegrid,
-/area/assembly/chargebay)
-"dip" = (
-/turf/simulated/floor/mech_bay_recharge_floor,
-/area/assembly/chargebay)
-"diq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/kitchen)
+"kJr" = (
+/obj/structure/chair/wood{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"kJs" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/window/reinforced,
+/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dir" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
+/area/hallway/secondary/exit)
+"kJu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dis" = (
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"kJB" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/structure/plasticflaps{
+ opacity = 1
},
-/obj/effect/decal/warning_stripes/northeast,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dit" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/light{
- dir = 4
+/area/storage/primary)
+"kJV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/structure/sign/nosmoking_2{
- pixel_x = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/computer/cryopod/robot{
- pixel_y = 28
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"diu" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/camera{
- c_tag = "Mech Bay External";
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/medical/paramedic)
+"kJY" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastright{
dir = 8;
- initialize_directions = 11
+ name = "Chemistry Desk";
+ req_access_txt = "33"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- icon_state = "neutralcorner"
+ id_tag = "Chemistry2";
+ name = "Chemistry Privacy Shutter"
},
-/area/hallway/primary/aft)
-"div" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/recharge_station,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"diw" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/chemistry)
+"kKd" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "neutralcorner"
},
-/area/hallway/primary/aft)
-"dix" = (
-/obj/machinery/chem_dispenser,
-/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/door_control{
- id = "Chemistry2";
- name = "Chem Medbey Desk Shutters";
- pixel_x = -18;
- pixel_y = -24
- },
+/area/hallway/primary/fore)
+"kKi" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/obj/structure/reagent_dispensers/fueltank/chem{
- pixel_y = -32
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"kKx" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"kKB" = (
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/engine,
-/area/medical/chemistry)
-"diy" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"kKR" = (
+/obj/machinery/light/small,
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway South 2";
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/medical/paramedic)
-"diz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/hallway/primary/central/south)
+"kKZ" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 24;
+ pixel_y = 28
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 1;
+ icon_state = "red"
},
-/area/medical/paramedic)
-"diA" = (
-/obj/machinery/clonepod/biomass,
-/obj/structure/window/reinforced{
+/area/security/main)
+"kLd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/light{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/medical/genetics_cloning)
-"diB" = (
-/obj/machinery/computer/cloning,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+/area/library)
+"kLx" = (
+/obj/machinery/field/generator{
+ anchored = 1;
+ state = 2
},
-/area/medical/genetics_cloning)
-"diD" = (
-/obj/machinery/dna_scannernew,
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"kLF" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/area/medical/genetics_cloning)
-"diE" = (
-/obj/machinery/atmospherics/unary/cryo_cell,
-/turf/simulated/floor/plasteel{
+/area/medical/medbay)
+"kLP" = (
+/turf/simulated/wall,
+/area/atmos)
+"kLY" = (
+/obj/machinery/door/window/southright{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/medical/genetics_cloning)
-"diF" = (
-/obj/machinery/light{
- dir = 1
+ name = "Toxins Launcher";
+ req_access_txt = "7"
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/door/window/southright{
+ name = "Toxins Launcher";
+ req_access_txt = "7"
},
-/obj/machinery/door/window/eastright{
- dir = 2;
- icon_state = "left";
- name = "Cryo Tank Storage";
- req_one_access_txt = "5;32"
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"kLZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/canister/oxygen{
- name = "Canister: \[O2] (CRYO)"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ icon_state = "pipe-j2s";
+ name = "Kitchen Junction";
+ sortType = 20
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHEAST)"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/fore)
+"kMl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/genetics_cloning)
-"diG" = (
-/obj/machinery/bodyscanner,
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/surgery1)
-"diH" = (
-/obj/machinery/chem_heater,
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/light,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -28
- },
-/obj/structure/cable,
-/turf/simulated/floor/engine,
-/area/medical/chemistry)
-"diI" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
- },
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 8;
+ icon_state = "whiteyellow"
},
-/area/medical/medbay2)
-"diJ" = (
-/turf/simulated/wall,
-/area/medical/psych)
-"diK" = (
+/area/medical/chemistry)
+"kMm" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/surgery1)
-"diL" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+ icon_state = "white"
},
-/area/medical/surgery1)
-"diN" = (
+/area/medical/chemistry)
+"kMn" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/reinforced,
+/obj/item/folder/yellow,
+/obj/item/gps/mining,
+/obj/item/gps/mining,
+/obj/item/gps/mining,
+/obj/item/gps/mining,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ dir = 6;
+ icon_state = "brown"
},
-/area/medical/cmo)
-"diO" = (
+/area/quartermaster/miningdock)
+"kMz" = (
+/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"diQ" = (
-/obj/machinery/power/smes,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/effect/decal/warning_stripes/eastnorthwest,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research/restroom)
+"kMC" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/item/clothing/head/kitty,
+/obj/item/clothing/under/maid,
+/obj/item/clothing/suit/browntrenchcoat,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin3)
+"kMK" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/storage/box/bodybags,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/maintenance/electrical)
-"diR" = (
+/area/medical/surgery2)
+"kNe" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/wall,
-/area/maintenance/electrical)
-"diS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"kNh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/security/permabrig)
+"kNj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/electrical)
-"diT" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/computer/monitor{
- name = "Backup Power Monitoring Console"
+/area/maintenance/gambling_den)
+"kNl" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/cable,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plating,
+/area/quartermaster/miningdock)
+"kNt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/maintenance/electrical)
-"diU" = (
-/obj/machinery/power/smes,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/effect/decal/warning_stripes/eastnorthwest,
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/maintenance/electrical)
-"diV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark{
- name = "blobstart"
+/obj/machinery/light/small{
+ dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"diW" = (
-/obj/structure/rack,
-/obj/item/weldingtool,
-/obj/item/clothing/head/welding,
-/obj/item/assembly/voice,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"diX" = (
-/obj/item/radio/intercom{
- pixel_y = 25
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"kNv" = (
+/obj/structure/dresser,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cabin4)
+"kNI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/chair/comfy/shuttle{
- dir = 4
+/mob/living/carbon/human/monkey,
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 4;
+ frequency = 1443;
+ icon_state = "on";
+ id = "air_in";
+ on = 1
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/pod_3)
-"diY" = (
-/obj/structure/chair/wood{
- dir = 4
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"kNO" = (
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 11";
+ network = list("SS13","MiniSat")
},
+/turf/space,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"kNU" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+ icon_state = "wood-broken3";
+ tag = "icon-wood-broken3"
},
-/area/maintenance/gambling_den)
-"diZ" = (
-/obj/effect/decal/cleanable/vomit,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"kOu" = (
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate_sit)
+"kOD" = (
+/obj/structure/bed,
+/obj/item/bedsheet/orange,
+/turf/simulated/floor/carpet,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"kOF" = (
+/obj/effect/decal/warning_stripes/southeast,
/obj/effect/landmark{
- name = "blobstart"
+ name = "xeno_spawn";
+ pixel_x = -1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/gambling_den)
-"dja" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair/wood{
- dir = 8
+ dir = 4;
+ icon_state = "darkblue"
},
+/area/medical/morgue)
+"kOV" = (
+/obj/structure/chair/comfy/red,
/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"djb" = (
-/obj/machinery/light{
- dir = 8
+/area/library)
+"kPn" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
},
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"djc" = (
+/area/turret_protected/ai)
+"kPy" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"kPC" = (
+/obj/item/shard{
+ icon_state = "medium";
+ pixel_x = 9;
+ pixel_y = -9
},
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"kPF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"djd" = (
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitepurple"
+/area/maintenance/fsmaint)
+"kPH" = (
+/obj/structure/rack,
+/obj/item/extinguisher,
+/obj/item/clothing/mask/gas,
+/obj/item/grenade/chem_grenade/firefighting,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/area/toxins/explab)
-"djf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
},
+/area/toxins/mixing)
+"kQx" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"djg" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTH)"
+ icon_state = "darkred"
},
-/area/toxins/misc_lab)
-"dji" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/binary/valve{
+/area/security/podbay)
+"kQD" = (
+/obj/structure/bookcase,
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken3";
+ tag = "icon-wood-broken3"
+ },
+/area/maintenance/fsmaint)
+"kQE" = (
+/obj/machinery/suit_storage_unit/cmo,
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/cmo)
+"kQU" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurple"
+ },
+/area/medical/research/restroom)
+"kQV" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/aft)
+"kQW" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Toxin Mixing";
- network = list("Research","SS13")
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ icon_state = "darkred"
},
-/area/toxins/mixing)
-"djj" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/security/podbay)
+"kRl" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light{
dir = 1;
on = 1
},
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/locker/locker_toilet)
+"kRz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/toxins/explab)
-"djk" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/bridge/vip)
+"kRB" = (
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "s_docking_airlock";
+ name = "Labor Shuttle Airlock"
},
-/obj/machinery/light/small,
-/obj/structure/closet/bombcloset,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitepurple"
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor,
+/area/shuttle/siberia)
+"kRE" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/area/toxins/explab)
-"djl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cabin4)
+"kRM" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/chair/office/light{
dir = 4
},
-/turf/simulated/wall/r_wall,
-/area/toxins/explab)
-"djm" = (
-/turf/simulated/floor/plasteel{
+/obj/machinery/light{
dir = 1;
- icon_state = "whitepurplecorner"
+ on = 1
},
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
-"djn" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+"kRP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
dir = 1;
- initialize_directions = 11
+ pixel_y = -25
},
-/obj/structure/table,
-/obj/item/stack/medical/bruise_pack,
-/obj/item/stack/medical/ointment,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"djo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"djp" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"djq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/security/lobby)
+"kSt" = (
+/obj/structure/window/reinforced,
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
},
-/obj/effect/decal/warning_stripes/southeast,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/fitness)
+"kSH" = (
+/obj/structure/computerframe,
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"djr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/yellow,
+/area/maintenance/xenozoo)
+"kSR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"djs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/white,
-/obj/item/clothing/gloves/color/white,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science,
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"djt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/book/manual/experimentor,
-/obj/item/healthanalyzer,
-/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"dju" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/computer/rdconsole/experiment,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"djv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/sign/securearea,
-/turf/simulated/wall,
-/area/toxins/explab)
-"djw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"djx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/toxins/lab)
+"kSU" = (
+/obj/structure/table/glass,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 7
},
-/obj/structure/table/reinforced,
-/obj/machinery/light,
-/obj/item/paper_bin,
/obj/item/pen,
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"djy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/radiation,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"djF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
+/area/medical/paramedic)
+"kSW" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ dir = 8;
+ icon_state = "purple"
},
-/area/medical/research{
- name = "Research Division"
- })
-"djJ" = (
+/area/maintenance/xenozoo)
+"kTg" = (
+/obj/item/radio/intercom{
+ pixel_y = -32
+ },
+/obj/machinery/portable_atmospherics/canister/sleeping_agent,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"kTh" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ dir = 6;
+ icon_state = "darkred"
},
-/area/medical/research{
- name = "Research Division"
- })
-"djL" = (
+/area/security/permabrig)
+"kTl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
+/obj/structure/rack{
dir = 8;
- icon_state = "whitepurplecorner"
+ layer = 2.9
},
-/area/medical/research{
- name = "Research Division"
- })
-"djM" = (
-/obj/structure/disposalpipe/junction{
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"kTm" = (
+/obj/structure/table/reinforced,
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ name = "south bump Important Area";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Medbay Exam Room South";
dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ network = list("SS13","Medical");
+ pixel_x = 30
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/medical/sleeper)
+"kTq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/research{
- name = "Research Division"
- })
-"djN" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/area/hallway/primary/central/sw)
+"kTu" = (
+/obj/structure/closet/wardrobe/coroner,
+/obj/item/reagent_containers/glass/bottle/reagent/formaldehyde,
+/obj/item/reagent_containers/dropper,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
+ dir = 5;
+ icon_state = "darkblue"
},
-/area/hallway/secondary/entry/commercial)
-"djO" = (
+/area/medical/morgue)
+"kTD" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"kUb" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/effect/landmark/start{
- name = "Cyborg"
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"djP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/landmark/start{
- name = "Cyborg"
+/turf/simulated/shuttle/plating,
+/area/shuttle/mining)
+"kUr" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"kUz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/assembly/chargebay)
-"djQ" = (
-/turf/simulated/floor/bluegrid,
-/area/assembly/chargebay)
-"djR" = (
-/obj/machinery/mech_bay_recharge_port{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating,
-/area/assembly/chargebay)
-"djS" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"djT" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/cryopod/robot,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"djU" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/aft)
-"djV" = (
-/obj/structure/chair/office/light{
- dir = 4
+/area/hallway/primary/central/south)
+"kUB" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall7";
+ tag = "icon-swall7"
},
-/obj/effect/landmark/start{
- name = "Paramedic"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"kUR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"kVo" = (
+/turf/simulated/wall,
+/area/engine/engineering)
+"kVs" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/paramedic)
-"djW" = (
-/obj/structure/table/glass,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 7
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/pen,
/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+ pixel_y = 26
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/medical/paramedic)
-"djX" = (
-/obj/structure/window/reinforced{
+/area/medical/ward)
+"kVz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/shower{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "purplefull"
},
-/area/medical/genetics_cloning)
-"djY" = (
+/area/medical/research/nhallway)
+"kVH" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/structure/window/reinforced,
+/obj/effect/decal/warning_stripes/red,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/genetics_cloning)
-"djZ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+ icon_state = "dark"
},
+/area/security/podbay)
+"kVJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/genetics_cloning)
-"dka" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/landmark/start{
- name = "Geneticist"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"kVR" = (
+/obj/machinery/hologram/holopad,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
},
-/obj/machinery/hologram/holopad,
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"kWc" = (
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "dark"
},
-/area/medical/genetics_cloning)
-"dkb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/atmos)
+"kWh" = (
+/obj/structure/transit_tube{
+ icon_state = "D-NE";
+ tag = "icon-D-NE"
},
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
+/obj/structure/window/reinforced{
+ dir = 1
},
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"kWn" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/genetics_cloning)
-"dkd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/maintenance/xenozoo)
+"kWt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
+/area/chapel/office)
+"kWR" = (
+/obj/structure/ore_box,
+/obj/machinery/light/small{
+ dir = 4
},
+/turf/simulated/shuttle/floor,
+/area/shuttle/mining)
+"kWY" = (
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"kXF" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "redcorner"
},
-/area/medical/genetics_cloning)
-"dke" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/security/processing)
+"kXP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Research Division Access";
+ req_access_txt = "47"
},
+/obj/effect/decal/warning_stripes/south,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel,
+/area/medical/research/nhallway)
+"kXY" = (
+/obj/structure/transit_tube{
+ icon_state = "D-NW";
+ tag = "icon-D-NW"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
},
+/turf/space,
+/area/space/nearstation)
+"kYh" = (
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/medical/surgery1)
-"dkg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"kYq" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/library)
+"kYC" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "redcorner"
},
-/area/medical/medbay2)
-"dkh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/area/hallway/primary/starboard/east)
+"kYM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/radio/beacon,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"kYQ" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "neutralcorner"
},
-/area/medical/medbay)
-"dkj" = (
-/obj/machinery/optable,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/crew_quarters/sleep)
+"kZh" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"kZr" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"kZv" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
},
+/turf/simulated/floor/plating,
+/area/bridge)
+"kZD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "whitehall"
},
-/obj/structure/cable{
+/area/toxins/xenobiology)
+"kZJ" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/landmark{
- name = "revenantspawn"
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/light,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"kZL" = (
+/obj/structure/table/wood,
+/obj/machinery/status_display{
+ pixel_y = 32
},
+/obj/item/storage/fancy/candle_box/full,
+/obj/item/storage/fancy/candle_box/full,
+/obj/item/storage/fancy/candle_box/full,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/surgery1)
-"dkk" = (
-/obj/machinery/computer/operating,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/chapel/main)
+"kZQ" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/structure/closet/secure_closet,
+/obj/item/storage/secure/briefcase,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "blue"
},
+/area/bridge/checkpoint/south)
+"kZU" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
- },
-/area/medical/surgery1)
-"dkl" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "CMO Shutters";
- name = "CMO Privacy Shutters"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/plating,
-/area/medical/cmo)
-"dkm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/girder,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"lap" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dkn" = (
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dko" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/hallway/secondary/exit)
+"laz" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dkp" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/chair/office/light{
- dir = 4
+ icon_state = "0-2"
},
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/turf/simulated/floor/engine,
-/area/toxins/misc_lab)
-"dkq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/xeno,
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"dkr" = (
-/obj/structure/chair/wood{
- dir = 4
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "SecMedPriv"
},
/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dks" = (
-/obj/effect/landmark{
- name = "revenantspawn"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/gambling_den)
-"dkt" = (
+/area/security/medbay)
+"laB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dku" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/maintenance/gambling_den)
-"dkv" = (
-/obj/structure/table/wood,
-/obj/machinery/light{
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"laF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 9;
+ icon_state = "whitepurple"
},
-/area/maintenance/gambling_den)
-"dkw" = (
-/obj/machinery/sparker{
- id = "testigniter";
- name = "Test Igniter";
- pixel_x = -25
+/area/toxins/xenobiology)
+"lbf" = (
+/obj/structure/chair/comfy/teal{
+ dir = 8
},
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"dkx" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/machinery/disposal,
+/area/medical/medbay)
+"lbj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/light,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"dky" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"dkz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = -30
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
},
+/area/security/range)
+"lbp" = (
+/obj/structure/closet/secure_closet/brigdoc,
+/obj/item/storage/belt/medical,
+/obj/item/storage/pill_bottle,
+/obj/item/storage/pill_bottle/patch_pack,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+ dir = 8;
+ icon_state = "whitered"
},
-/area/toxins/misc_lab)
-"dkB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/area/security/medbay)
+"lbz" = (
+/obj/structure/table/reinforced,
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/item/clothing/mask/gas,
+/obj/machinery/camera{
+ c_tag = "Research Outpost Temporary Storage";
+ network = list("Research Outpost")
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 28
},
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"lbE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"lbP" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/toxins/misc_lab)
-"dkC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/toxins/explab)
-"dkD" = (
+/area/medical/virology)
+"lch" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
/obj/machinery/door/firedoor,
-/obj/machinery/door_control{
- id = "experimentor";
- name = "Experimentor Control";
- pixel_x = -26
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "experimentor";
- name = "Experimentor Blast Door";
- opacity = 0
+/obj/item/folder/white{
+ pixel_y = 3
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 10;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/toxins/explab)
-"dkE" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/toxins/explab)
-"dkF" = (
-/obj/machinery/status_display,
-/turf/simulated/wall/r_wall,
-/area/toxins/explab)
-"dkG" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "experimentor";
- name = "Experimentor Blast Door";
- opacity = 0
+/area/medical/sleeper)
+"lcj" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/obj/machinery/light{
+ dir = 1;
+ layer = 1;
+ on = 1
},
-/turf/simulated/floor/plating,
-/area/toxins/explab)
-"dkH" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "experimentor";
- name = "Experimentor Blast Door";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
+/area/medical/cryo)
+"lcG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random_spawners/grille_maybe,
/turf/simulated/floor/plating,
-/area/toxins/explab)
-"dkI" = (
-/turf/simulated/wall/r_wall,
-/area/toxins/mixing)
-"dkJ" = (
-/obj/structure/sign/fire,
-/turf/simulated/wall/r_wall,
-/area/toxins/mixing)
-"dkK" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 8
+/area/maintenance/asmaint2)
+"lde" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/med_data/laptop,
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"ldq" = (
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "s_docking_airlock";
+ name = "Labor Shuttle Airlock";
+ req_access_txt = "2"
},
-/obj/structure/window/plasmareinforced,
-/obj/structure/window/plasmareinforced{
- dir = 1
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"dkM" = (
-/obj/structure/sign/biohazard,
-/turf/simulated/wall/r_wall,
-/area/toxins/mixing)
-"dkP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/shuttle/siberia)
+"ldB" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/glasses/welding,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"ldC" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+/turf/simulated/floor/plating,
+/area/crew_quarters/fitness)
+"ldN" = (
+/obj/structure/grille,
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"ldR" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dkQ" = (
/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "0-4"
},
-/obj/structure/disposalpipe/sortjunction{
+/turf/simulated/floor/plating,
+/area/security/prison/cell_block/A)
+"ldS" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
dir = 4;
- name = "RD Junction";
- sortType = 13
+ icon_state = "whiteredfull"
},
-/obj/structure/table/reinforced,
-/obj/item/aicard,
-/obj/item/circuitboard/aicore,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dkR" = (
-/obj/machinery/hologram/holopad,
+/area/security/medbay)
+"ldV" = (
+/obj/structure/chair/comfy/shuttle,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/crew_quarters/hor)
-"dkS" = (
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"leo" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/chair/office/light,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/door/airlock/maintenance{
+ req_one_access_txt = "12;47"
},
-/area/crew_quarters/hor)
-"dkT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair/office/light,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+/turf/simulated/floor/plasteel,
+/area/maintenance/asmaint2)
+"lev" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
},
-/area/crew_quarters/hor)
-"dkU" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/reagent_containers/glass/beaker,
+/obj/item/reagent_containers/dropper,
+/obj/machinery/newscaster{
+ pixel_x = 32
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"lfc" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/hor)
-"dkV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
+/area/security/processing)
+"lfd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
icon_state = "whitepurplecorner"
},
/area/medical/research{
name = "Research Division"
})
-"dkW" = (
+"lfh" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
})
-"dkX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+"lfv" = (
+/obj/structure/table/glass,
+/obj/machinery/newscaster{
+ pixel_x = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/radio/intercom{
+ pixel_y = 28
},
-/obj/machinery/hologram/holopad,
+/obj/item/paper_bin,
+/obj/item/pen/red,
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry/commercial)
-"dkY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 1;
+ icon_state = "whitegreencorner"
},
-/obj/structure/chair/office/light{
- dir = 1
+/area/medical/virology)
+"lfA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/landmark/start{
- name = "Paramedic"
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/landmark{
+ name = "Marauder Entry"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "dark"
+ },
+/area/bridge)
+"lga" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "Perma11";
+ name = "Prison 1";
+ req_access_txt = "2";
+ security_level = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaCellsLockdown";
+ name = "Perma Cells Lockdown"
},
-/area/medical/paramedic)
-"dkZ" = (
-/obj/item/trash/chips,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"dla" = (
/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"lgh" = (
+/obj/structure/chair/comfy/brown{
dir = 8;
- icon_state = "neutralfull"
+ layer = 4
},
-/area/assembly/chargebay)
-"dlb" = (
-/obj/machinery/hologram/holopad,
/obj/effect/landmark/start{
- name = "Roboticist"
+ name = "Civilian"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
},
-/area/assembly/chargebay)
-"dlc" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/bridge/vip)
+"lgH" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "Perma21";
+ name = "Prison 2";
+ req_access_txt = "2";
+ security_level = 1
},
-/area/quartermaster/office)
-"dld" = (
-/obj/structure/chair{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "2-8"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaCellsLockdown";
+ name = "Perma Cells Lockdown"
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/medical/surgery1)
-"dle" = (
-/obj/item/twohanded/required/kirbyplants,
+/area/security/permabrig)
+"lgN" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-2"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteyellow"
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/area/medical/chemistry)
-"dlf" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "SecPilotPriv"
},
-/area/medical/paramedic)
-"dlg" = (
-/obj/machinery/door/window/brigdoor,
-/obj/item/radio/intercom{
- pixel_x = -32
+/turf/simulated/floor/plating,
+/area/security/podbay)
+"lgS" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "SecPilotPriv"
},
+/turf/simulated/floor/plating,
+/area/security/podbay)
+"lhe" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 9;
+ icon_state = "darkred"
},
-/area/medical/genetics_cloning)
-"dlh" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/area/security/warden)
+"lhf" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/machinery/requests_console{
+ department = "Warden";
+ departmentType = 7;
+ name = "Warden's Requests Console";
+ pixel_x = 29;
+ pixel_y = 25
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 5;
+ icon_state = "darkred"
},
-/area/medical/sleeper)
-"dli" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/warden)
+"lhk" = (
+/obj/effect/spawner/random_spawners/grille_maybe,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"lho" = (
+/obj/structure/lattice,
+/turf/simulated/wall,
+/area/chapel/main)
+"lhr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark{
+ name = "blobstart"
},
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "dark"
},
-/area/medical/genetics_cloning)
-"dlj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/chapel/office)
+"lhs" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
-/obj/structure/closet/crate/freezer,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -28
+/obj/structure/mirror{
+ pixel_x = -32
},
-/obj/structure/cable,
-/obj/item/reagent_containers/food/snacks/meat,
-/obj/item/reagent_containers/food/snacks/meat,
-/obj/item/reagent_containers/food/snacks/meat,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel,
+/area/medical/virology)
+"lhu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "grimy"
},
-/area/medical/genetics_cloning)
-"dlk" = (
-/obj/machinery/iv_drip{
- pixel_x = -8
+/area/library)
+"lhC" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "SecPilotPriv"
},
+/turf/simulated/floor/plating,
+/area/security/podbay)
+"lhQ" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
icon_state = "2-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/obj/machinery/light{
- dir = 4
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "SecPilotPriv"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
+/turf/simulated/floor/plating,
+/area/security/podbay)
+"lhR" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
-/area/medical/surgery1)
-"dll" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -28
},
-/obj/machinery/door/airlock/public/glass{
- name = "Courtroom";
- req_access_txt = "63"
+/obj/machinery/camera{
+ c_tag = "Brig Warden's Office";
+ dir = 4;
+ network = list("SS13","Security")
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ dir = 8;
+ icon_state = "darkred"
},
-/area/crew_quarters/courtroom)
-"dlm" = (
-/obj/item/radio/intercom{
- pixel_x = 32
+/area/security/warden)
+"lhS" = (
+/turf/simulated/wall/r_wall,
+/area/security/securearmoury)
+"lia" = (
+/obj/structure/lattice,
+/turf/simulated/wall/r_wall,
+/area/security/podbay)
+"lin" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
+/obj/structure/lattice,
+/obj/structure/lattice,
/obj/machinery/camera{
- c_tag = "Medbay Cloning";
+ c_tag = "AI Satellite Exterior 16";
dir = 8;
- network = list("Medical","SS13")
+ network = list("SS13","MiniSat")
},
+/turf/space,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"liE" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "neutralcorner"
},
-/area/medical/genetics_cloning)
-"dln" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/maintenance/engrooms)
+"liV" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "bluecorner"
},
+/area/hallway/primary/central/south)
+"liZ" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/courtroom)
-"dlp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "ai2";
+ name = "Turret Shutters"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"ljm" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteyellow"
- },
-/area/medical/chemistry)
-"dlq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- on = 1
+ icon_state = "vault"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+/area/engine/gravitygenerator)
+"ljn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/chair/office/dark{
+ dir = 8
},
-/area/medical/genetics_cloning)
-"dlr" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/surgery1)
-"dls" = (
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "darkblue"
},
-/area/medical/surgery1)
-"dlt" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/clothing/glasses/meson{
- pixel_x = -5;
- pixel_y = 9
+/area/turret_protected/ai)
+"ljp" = (
+/obj/structure/chair,
+/obj/effect/landmark/start{
+ name = "Civilian"
},
-/obj/item/clothing/glasses/meson{
- pixel_x = -3;
- pixel_y = 6
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/obj/item/clothing/glasses/meson{
- pixel_y = 3
+/area/medical/research{
+ name = "Research Division"
+ })
+"ljs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/item/clothing/glasses/meson{
- pixel_x = 3
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/item/clothing/glasses/meson{
- pixel_x = 7;
- pixel_y = -3
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/rack,
+/area/chapel/office)
+"ljF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"ljP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 6;
+ icon_state = "red"
},
-/area/engine/hardsuitstorage)
-"dlu" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/security/prisonershuttle)
+"lkn" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"lko" = (
+/obj/machinery/dye_generator,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "barber"
},
-/area/medical/medbay3)
-"dlv" = (
+/area/civilian/barber)
+"lkA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sink{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/maintenance/fsmaint)
+"lkC" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/medical/medbay3)
-"dly" = (
-/obj/machinery/light{
- dir = 8
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23
+/area/engine/gravitygenerator)
+"lkN" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/structure/bed/dogbed{
- name = "kitty basket"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "ai2";
+ name = "Turret Shutters"
},
-/mob/living/simple_animal/pet/cat/Runtime,
-/turf/simulated/floor/plasteel,
-/area/medical/cmo)
-"dlz" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"llt" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/security_space_law,
+/obj/item/book/manual/sop_legal{
+ pixel_x = 2;
+ pixel_y = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/area/medical/cmo)
-"dlA" = (
-/obj/structure/chair/office/light,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ dir = 4;
+ icon_state = "red"
},
-/area/medical/cmo)
-"dlB" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/area/security/reception)
+"llx" = (
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
+ dir = 1
},
-/area/maintenance/electrical)
-"dlC" = (
-/obj/machinery/light/small{
+/area/security/range)
+"llF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/vending/artvend,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "escape"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/fitness)
-"dlE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/chapel/main)
+"llL" = (
+/obj/structure/window/reinforced,
+/obj/structure/lattice,
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/turf/space,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
})
-"dlF" = (
+"llN" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dlG" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/maintenance/electrical)
-"dlH" = (
-/obj/machinery/pipedispenser,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/area/maintenance/electrical)
-"dlI" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "2-8"
},
-/obj/effect/decal/cleanable/blood,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/maintenance/gambling_den)
-"dlJ" = (
+/area/security/lobby)
+"lmd" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/kitchen)
+"lme" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"dlK" = (
-/obj/structure/table/wood,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dlL" = (
-/turf/simulated/wall/r_wall/coated,
-/area/toxins/test_chamber)
-"dlM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dlN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/toxins/explab)
-"dlO" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/toxins/explab)
-"dlP" = (
+/area/security/permabrig)
+"lmj" = (
+/obj/machinery/r_n_d/circuit_imprinter,
+/obj/item/reagent_containers/glass/beaker/sulphuric,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "whitepurple"
},
-/area/toxins/explab)
-"dlQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/assembly/robotics)
+"lmz" = (
+/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/toxins/explab)
-"dlR" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research/glass{
- name = "Toxin Mixing";
- req_access_txt = "47"
+/area/crew_quarters/kitchen)
+"lmG" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "ai2";
+ name = "Turret Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"lmV" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/engine/n20,
+/area/atmos)
+"lnn" = (
+/obj/structure/grille,
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"lnt" = (
+/obj/item/twohanded/required/kirbyplants,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 10;
+ icon_state = "whiteyellow"
},
-/area/toxins/mixing)
-"dlT" = (
+/area/medical/chemistry)
+"lnB" = (
+/turf/simulated/wall,
+/area/crew_quarters/mrchangs)
+"lnH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/crew_quarters/locker)
+"lnW" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Research Director's Office";
- req_access = null;
- req_access_txt = "30"
+/obj/structure/table/reinforced,
+/obj/item/flashlight{
+ pixel_y = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/item/wirecutters{
+ pixel_y = 18
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dlU" = (
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/atmospherics/unary/portables_connector{
- layer = 2
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 4;
+ icon_state = "darkred"
},
-/area/toxins/mixing)
-"dlV" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+/area/security/processing)
+"lof" = (
+/obj/item/paper_bin,
+/obj/item/lighter/zippo{
+ name = "Ash Generator 3000"
+ },
+/obj/structure/table,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteyellow"
+ },
+/area/medical/chemistry)
+"lol" = (
+/obj/machinery/portable_atmospherics/canister/sleeping_agent{
+ anchored = 1
+ },
+/turf/simulated/floor/engine/n20,
+/area/atmos)
+"lor" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dlW" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 1;
- icon_state = "left";
- name = "Medical Reception";
- req_access_txt = "5"
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteyellow"
},
-/obj/machinery/door/firedoor,
-/obj/item/phone{
- pixel_x = -4;
- pixel_y = 4
+/area/medical/chemistry)
+"lot" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/item/reagent_containers/spray/cleaner,
/obj/machinery/door/poddoor{
density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
+ icon_state = "pdoor0";
+ id_tag = "xeno3";
+ name = "Creature Cell #3";
opacity = 0
},
-/turf/simulated/floor/plasteel{
- icon_state = "bluefull"
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"lov" = (
+/turf/simulated/wall,
+/area/crew_quarters/cabin4)
+"lox" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"loD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/medical/reception)
-"dlY" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/north,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/toxins/mixing)
-"dlZ" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/storage/toolbox/mechanical,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"loO" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/toxins/mixing)
-"dma" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "rdprivacy";
+ name = "Research Director Office Shutters";
+ opacity = 0
},
+/turf/simulated/floor/plating,
/area/crew_quarters/hor)
-"dmb" = (
+"loS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/table/reinforced,
-/obj/machinery/door_control{
- id = "rdprivacy";
- name = "Privacy Shutters";
- pixel_x = -6;
- pixel_y = -2
+ icon_state = "1-2"
},
-/obj/item/clothing/head/cone{
- desc = "Старый дорожный конус. Говорят он увеличивает интеллект носителя.";
- name = "Символ Разумизма";
- pixel_x = 3;
- pixel_y = 7
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/crew_quarters/hor)
-"dmc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/reinforced,
-/obj/item/stamp/rd,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/area/crew_quarters/hor)
-"dmd" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 6
+/turf/simulated/floor/wood,
+/area/ntrep)
+"loT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Head of Personnel"
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"loV" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/cleanable/cobweb2,
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ icon_state = "grimy"
},
-/area/toxins/mixing)
-"dme" = (
+/area/library/abandoned)
+"loZ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"lpd" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/checkpoint)
+"lpm" = (
+/turf/simulated/wall/r_wall/coated,
+/area/toxins/test_chamber)
+"lpp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "grimy"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dmf" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/landmark/start{
- name = "Cyborg"
+/area/security/detectives_office)
+"lpu" = (
+/obj/machinery/computer/general_air_control/large_tank_control{
+ frequency = 1441;
+ input_tag = "n2o_in";
+ name = "Nitrous Oxide Supply Control";
+ output_tag = "n2o_out";
+ sensors = list("n2o_sensor" = "Tank")
},
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dmh" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 1;
+ name = "Труба фильтрации"
},
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
+/obj/structure/window/reinforced{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "escape"
},
-/area/hallway/primary/aft)
-"dmi" = (
-/turf/simulated/wall,
-/area/medical/genetics)
-"dmj" = (
+/area/atmos)
+"lpv" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA"
+ },
+/turf/simulated/wall/r_wall,
+/area/engine/gravitygenerator)
+"lpx" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
- },
-/area/medical/surgery1)
-"dmk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/paramedic)
-"dml" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = "GeneticsDoor";
- name = "Genetics";
- req_access_txt = "9"
+/obj/machinery/door/airlock/command/glass{
+ name = "Customs Desk";
+ req_access_txt = "19"
},
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel,
+/area/bridge/checkpoint/south)
+"lpC" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Xeno Containment 5";
+ network = list("Research","SS13")
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/genetics)
-"dmm" = (
-/obj/item/paper_bin,
-/obj/item/lighter/zippo{
- name = "Ash Generator 3000"
+/area/toxins/xenobiology)
+"lpH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/table,
-/turf/simulated/floor/plasteel{
- icon_state = "whiteyellow"
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck Door"
},
-/area/medical/chemistry)
-"dmn" = (
-/obj/machinery/alarm{
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"lpO" = (
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
dir = 8;
- pixel_x = 25
+ name = "Труба смешивания"
},
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"lpT" = (
+/obj/machinery/camera{
+ c_tag = "Gravity Generation Access";
+ dir = 4;
+ network = list("Engineering","SS13");
+ pixel_y = -22
},
-/area/medical/paramedic)
-"dmo" = (
-/obj/structure/table/glass,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 7
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 4
},
-/obj/item/pen,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/structure/closet/walllocker/emerglocker/north,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"lqe" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
- },
-/area/medical/genetics_cloning)
-"dmp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
+ dir = 10;
+ icon_state = "red"
},
+/area/security/brigstaff)
+"lql" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/storage/bible,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"lqn" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/medbay2)
-"dmq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dms" = (
-/turf/simulated/wall/r_wall,
-/area/medical/surgery1)
-"dmt" = (
-/obj/structure/closet/secure_closet/medical2,
-/obj/machinery/light_switch{
- pixel_x = 8;
- pixel_y = -25
- },
-/obj/machinery/holosign_switch{
- id = "surgery1";
- pixel_x = -6;
- pixel_y = -25
- },
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -24
+ icon_state = "grimy"
},
-/turf/simulated/floor/plasteel{
+/area/crew_quarters/heads/hop)
+"lqA" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/binary/valve/digital{
+ desc = "Открывает газу путь к нагревателям, холодильникам и фильтрам";
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/surgery1)
-"dmu" = (
-/obj/structure/table/glass,
-/obj/item/defibrillator/loaded{
- pixel_y = 5
+ name = "Газ на обработку"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"lqF" = (
+/obj/machinery/light{
+ dir = 1
},
-/area/medical/surgery1)
-"dmv" = (
-/obj/structure/chair{
+/obj/structure/window/reinforced{
dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
- },
-/area/medical/surgery1)
-"dmw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door/window/eastright{
+ dir = 2;
+ icon_state = "left";
+ name = "Cryo Tank Storage";
+ req_one_access_txt = "5;32"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/portable_atmospherics/canister/oxygen{
+ name = "Canister: \[O2] (CRYO)"
},
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 5;
icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
- },
-/area/medical/medbay3)
-"dmx" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ tag = "icon-whiteblue (NORTHEAST)"
},
-/obj/structure/disposalpipe/segment{
+/area/medical/genetics_cloning)
+"lqG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "CMO Shutters";
- name = "CMO Privacy Shutters"
- },
-/turf/simulated/floor/plating,
-/area/medical/cmo)
-"dmy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "green"
- },
-/area/hydroponics)
-"dmz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Briefing Room";
+ req_access_txt = "63"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ dir = 1
},
+/area/security/main)
+"lqP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/table/glass,
-/obj/item/paper_bin,
-/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ icon_state = "white"
},
-/area/medical/cmo)
-"dmA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/medbay2)
+"lqY" = (
+/obj/structure/table/reinforced,
+/obj/item/toy/figure/clown{
+ pixel_x = 5;
+ pixel_y = 1
},
-/obj/machinery/door_control{
- id = "CMO Shutters";
- name = "CMO Privacy Shutters Control";
- pixel_x = 26;
- pixel_y = 7
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/door_control{
- id = "Biohazard_medi";
- name = "Medbey Lockdown";
- pixel_x = 26;
- pixel_y = -9
+/turf/simulated/floor/plasteel{
+ icon_state = "bar"
+ },
+/area/clownoffice)
+"lrb" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/manifold/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ dir = 1;
+ name = "Труба на фильтрацию"
},
-/obj/structure/table/glass,
-/obj/item/phone,
/turf/simulated/floor/plasteel,
-/area/medical/cmo)
-"dmC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall/r_wall,
-/area/maintenance/fsmaint)
-"dmD" = (
+/area/atmos)
+"lrf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "cautioncorner"
+ },
+/area/hallway/primary/starboard/east)
+"lrz" = (
+/obj/effect/decal/warning_stripes/southeastcorner,
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ dir = 4;
+ name = "Труба на фильтрацию"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"lrN" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ dir = 4;
+ name = "Труба на фильтрацию"
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"lrR" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ dir = 4;
+ name = "Труба на фильтрацию"
+ },
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"lsc" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"lsh" = (
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
-"dmE" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northeast,
-/obj/structure/table,
+"lsz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"lsH" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/item/stamp/hos,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "1-4"
},
-/obj/item/analyzer,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/electrical)
-"dmF" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dmG" = (
-/obj/machinery/atmospherics/binary/valve,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dmH" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
- },
-/area/maintenance/electrical)
-"dmI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/security/hos)
+"lsQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/radio/beacon,
+/obj/effect/landmark{
+ name = "lightsout"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dmJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
dir = 8;
- initialize_directions = 11
+ icon_state = "neutralfull"
+ },
+/area/bridge/vip)
+"lsT" = (
+/turf/simulated/wall,
+/area/engine/break_room)
+"lsV" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/main)
+"ltq" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkred"
+ },
+/area/security/permabrig)
+"ltu" = (
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ dir = 9;
+ name = "Труба на фильтрацию"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "vault"
},
-/area/hallway/secondary/entry/louge)
-"dmK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/atmos)
+"lua" = (
+/obj/machinery/vending/medical,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHWEST)"
},
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dmL" = (
-/obj/effect/decal/warning_stripes/northwest,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dmM" = (
-/obj/structure/chair/wood,
+/area/medical/medbay)
+"luw" = (
+/obj/effect/decal/cleanable/cobweb2,
+/obj/structure/table/reinforced,
+/obj/item/radio/electropack,
+/obj/item/assembly/signaler,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/security/processing)
+"luG" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
+ },
+/area/medical/ward)
+"luQ" = (
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dmN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/hallway/primary/central/north)
+"lvb" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/area/shuttle/siberia)
+"lvh" = (
+/obj/machinery/power/tesla_coil{
+ anchored = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dmO" = (
-/obj/structure/cable{
- d1 = 4;
+/obj/structure/cable/yellow{
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "0-8"
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"lvo" = (
+/obj/structure/chair/wood/wings{
+ dir = 8;
+ tag = "icon-wooden_chair_wings (WEST)"
},
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dmP" = (
-/obj/structure/cable,
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken6";
+ tag = "icon-wood-broken6"
+ },
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"lvs" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/turf/simulated/floor/plasteel{
+ icon_state = "purple"
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dmQ" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/maintenance/xenozoo)
+"lvv" = (
+/obj/structure/chair/office/light{
dir = 8
},
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"dmR" = (
-/obj/machinery/firealarm{
- dir = 4;
+/obj/machinery/door_control{
+ id = "psychoffice";
+ name = "Privacy Shutters Control";
pixel_x = 28
},
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHEAST)"
+/obj/machinery/light_switch{
+ pixel_x = 37;
+ pixel_y = 1
},
-/area/toxins/misc_lab)
-"dmS" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/hand_labeler,
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"dmT" = (
+/obj/effect/landmark/start{
+ name = "Psychiatrist"
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"lvI" = (
/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/item/tape/random{
- pixel_x = 3;
- pixel_y = -3
+/obj/item/folder/red,
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/item/taperecorder,
-/obj/item/clothing/glasses/science,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkred"
+ },
+/area/security/warden)
+"lvO" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
},
-/obj/structure/cable,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple"
+ dir = 8;
+ icon_state = "red"
},
-/area/toxins/misc_lab)
-"dmU" = (
+/area/security/brig)
+"lvT" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Подаёт азот из атмосферки в систему охлаждения реактора, таким образом запитывая её хладагентом";
+ dir = 1;
+ name = "Труба подачи азота в реактор"
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
+ },
+/area/atmos)
+"lvU" = (
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/smartfridge/medbay,
+/obj/machinery/chem_master,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitepurple"
+ icon_state = "dark"
},
-/area/toxins/misc_lab)
-"dmV" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/mask/gas,
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"dmW" = (
-/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/chem_heater,
-/obj/structure/window/plasmareinforced{
- dir = 8
+/area/hydroponics)
+"lwk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/engine,
-/area/toxins/misc_lab)
-"dmX" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/structure/chair/office/light{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
},
-/obj/machinery/light,
-/turf/simulated/floor/engine,
-/area/toxins/misc_lab)
-"dna" = (
+/area/security/securehallway)
+"lwy" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+/area/lawoffice)
+"lwz" = (
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "green"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dnb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/hydroponics)
+"lwP" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/wall/r_wall/coated,
+/area/toxins/storage)
+"lwR" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/structure/window/reinforced{
+ dir = 1
},
+/turf/space,
+/area/space/nearstation)
+"lxh" = (
+/obj/machinery/light/small,
+/obj/structure/closet/bombcloset,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 6;
+ icon_state = "whitepurple"
},
/area/toxins/explab)
-"dnc" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
- },
+"lxD" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/toxins/explab)
-"dnd" = (
-/mob/living/simple_animal/pet/dog/pug,
+/area/maintenance/xenozoo)
+"lxQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/cardboard,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "caution"
},
-/area/toxins/explab)
-"dne" = (
-/obj/effect/landmark{
- name = "revenantspawn"
+/area/engine/break_room)
+"lxZ" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/candle_box,
+/obj/item/storage/fancy/candle_box,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/toxins/explab)
-"dnf" = (
-/obj/machinery/r_n_d/experimentor,
+/area/library)
+"lyd" = (
+/obj/machinery/cryopod,
+/obj/item/radio/intercom{
+ pixel_x = 26;
+ pixel_y = 28
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "freezerfloor"
},
-/area/toxins/explab)
-"dng" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/crew_quarters/sleep)
+"lyi" = (
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/toxins/explab)
-"dnh" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+ dir = 10;
+ icon_state = "brown"
},
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+/area/quartermaster/office)
+"lyk" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating/airless,
+/area/toxins/test_area)
+"lyo" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"lyA" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -28
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/camera{
+ c_tag = "South Medbey Hallway";
+ dir = 1;
+ network = list("Medical","SS13")
},
-/area/toxins/explab)
-"dni" = (
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/atmospherics/unary/portables_connector{
+/obj/structure/chair/comfy/teal{
dir = 8
},
-/obj/machinery/firealarm{
- pixel_y = 26
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/medbay3)
+"lyD" = (
+/obj/machinery/computer/secure_data,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/item/radio/intercom{
+ pixel_x = 30;
+ pixel_y = -30
+ },
+/obj/machinery/light_switch{
+ pixel_y = -56
},
-/area/toxins/mixing)
-"dnj" = (
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 6;
+ icon_state = "darkred"
},
-/area/toxins/mixing)
-"dnk" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/area/security/warden)
+"lyE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/disposal,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dnm" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 10
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Mr. Chang's"
},
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"lyM" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/toxins/mixing)
-"dnn" = (
-/obj/machinery/ai_status_display{
- pixel_x = 32
+/obj/structure/table,
+/obj/random/plushie,
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"lyU" = (
+/obj/structure/table/reinforced,
+/obj/item/radio{
+ pixel_x = -4;
+ pixel_y = 5
},
-/obj/machinery/computer/card/minor/rd,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dno" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/item/radio{
+ pixel_x = 4;
+ pixel_y = 5
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+/obj/item/radio{
+ pixel_x = -4
+ },
+/obj/item/radio{
+ pixel_x = 4
+ },
+/obj/machinery/light{
+ dir = 1
},
-/area/crew_quarters/hor)
-"dnp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/area/security/customs)
+"lzg" = (
+/obj/structure/table,
+/obj/machinery/camera{
+ c_tag = "Research Director's Office";
+ dir = 8;
+ network = list("Research","SS13")
+ },
+/obj/machinery/firealarm{
dir = 4;
- initialize_directions = 11
+ pixel_x = 24
},
-/obj/machinery/computer/aifixer,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/item/cartridge/signal/toxins{
+ pixel_x = -6
+ },
+/obj/item/cartridge/signal/toxins{
+ pixel_x = 6
+ },
+/obj/item/cartridge/signal/toxins{
+ pixel_y = 6
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/lighter/zippo/rd,
+/turf/simulated/floor/plasteel,
/area/crew_quarters/hor)
-"dnq" = (
+"lzm" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair/office/light{
- dir = 1;
- pixel_y = 3
- },
-/obj/effect/landmark/start{
- name = "Research Director"
- },
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "barber"
},
-/area/crew_quarters/hor)
-"dns" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/civilian/barber)
+"lzy" = (
+/obj/structure/table/wood,
+/obj/item/deck/cards,
+/obj/item/deck/cards{
+ pixel_y = 6
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/library)
+"lzH" = (
/turf/simulated/floor/plating,
-/area/crew_quarters/hor)
-"dnt" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/maintenance/abandonedbar)
+"lzN" = (
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "neutralcorner"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dnv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/crew_quarters/locker)
+"lzW" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "yellow"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/engine/break_room)
+"lAc" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellow"
+ },
+/area/engine/break_room)
+"lAr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/secondary/entry/commercial)
-"dnw" = (
-/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/assembly/chargebay)
-"dnx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dny" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/assembly/chargebay)
-"dnz" = (
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dnB" = (
-/obj/machinery/door/poddoor/shutters{
- id_tag = "roboticsshutters";
- name = "Mech Bay Shutters"
+/area/hallway/primary/central/south)
+"lAy" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/door_control{
- id = "roboticsshutters";
- name = "Mech Bay Door Control";
- pixel_y = 24;
- req_access_txt = "29"
+/area/crew_quarters/fitness)
+"lAA" = (
+/obj/structure/chair{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dnC" = (
+/obj/effect/landmark/start{
+ name = "Civilian"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "brown"
+ },
+/area/quartermaster/office)
+"lAB" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/brig)
+"lAD" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/structure/chair/wood,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"lAO" = (
+/obj/structure/disposalpipe/segment{
dir = 8;
- initialize_directions = 11
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"dnD" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"dnE" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "purplecorner"
+ icon_state = "white"
},
-/area/hallway/primary/aft)
-"dnF" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Mech Bay";
- req_access_txt = "29"
+/area/medical/ward)
+"lAU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dnG" = (
-/obj/machinery/computer/scan_consolenew,
-/obj/machinery/light{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "darkred"
},
+/area/security/evidence)
+"lAV" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/yellow,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
+ icon_state = "caution"
},
-/area/medical/genetics)
-"dnH" = (
-/obj/effect/decal/cleanable/dirt,
+/area/atmos)
+"lAZ" = (
+/obj/structure/closet,
+/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/gambling_den)
-"dnI" = (
+/area/security/evidence)
+"lBh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/smartfridge/medbay,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whiteyellow"
- },
-/area/medical/chemistry)
-"dnJ" = (
-/obj/machinery/camera{
- c_tag = "Paramedic's Office";
- dir = 1;
- network = list("Medical","SS13")
- },
-/obj/item/radio/intercom{
- pixel_y = -32
+ icon_state = "white"
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
+/area/medical/research/shallway)
+"lBo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/light_switch{
- pixel_x = -24
+/obj/effect/landmark/start{
+ name = "Scientist"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/paramedic)
-"dnK" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/table/glass,
-/obj/item/storage/box/disks{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/storage/box/disks,
-/obj/machinery/door_control{
- id = "Genetics";
- name = "Genetic Privacy Shutters Control";
- pixel_y = 26
- },
-/turf/simulated/floor/plasteel{
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"lBD" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/pen,
+/obj/machinery/door/window/westright{
dir = 1;
- icon_state = "whitepurple"
- },
-/area/medical/genetics)
-"dnL" = (
-/obj/structure/table/glass,
-/obj/item/storage/box/syringes,
-/obj/item/storage/box/beakers{
- pixel_x = 4;
- pixel_y = 4
+ name = "Front Desk";
+ req_access_txt = "37"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
+ icon_state = "grimy"
},
-/area/medical/genetics)
-"dnN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/library)
+"lCa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/chair/office/dark{
+ dir = 1
},
-/area/medical/genetics)
-"dnO" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-22";
- tag = "icon-plant-22"
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whiteyellow"
- },
-/area/medical/chemistry)
-"dnP" = (
-/obj/item/trash/popcorn,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"dnQ" = (
-/obj/structure/chair/office/light,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/genetics_cloning)
-"dnR" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/medical/medbay2)
-"dnS" = (
+/turf/simulated/floor/carpet,
+/area/chapel/office)
+"lCu" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "darkred"
},
-/area/medical/chemistry)
-"dnV" = (
-/obj/structure/closet/secure_closet/miner,
-/obj/effect/decal/warning_stripes/yellow,
+/area/security/interrogation)
+"lCK" = (
+/obj/machinery/light,
+/obj/machinery/vending/artvend,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "purple"
- },
-/area/quartermaster/miningdock)
-"dnW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ icon_state = "brown"
},
+/area/quartermaster/office)
+"lCN" = (
+/obj/machinery/vending/cart,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "brown"
},
/area/quartermaster/office)
-"doa" = (
-/obj/item/hand_labeler,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/machinery/light_switch{
- pixel_x = 24
+"lCV" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 3
},
-/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
- },
-/area/medical/genetics)
-"dob" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ icon_state = "brown"
},
-/obj/item/radio/intercom{
- pixel_x = -32
+/area/quartermaster/office)
+"lDo" = (
+/obj/machinery/status_display{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/medbay2)
-"dod" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "CMO Shutters";
- name = "CMO Privacy Shutters"
+ dir = 10;
+ icon_state = "vault"
},
-/turf/simulated/floor/plating,
-/area/medical/cmo)
-"doe" = (
-/obj/structure/table/glass,
-/obj/item/clipboard,
-/obj/item/toy/figure/cmo,
+/area/assembly/showroom)
+"lDs" = (
+/obj/structure/bookcase,
+/turf/simulated/floor/wood,
+/area/library)
+"lDu" = (
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/medical/cmo)
-"dof" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/toxins/xenobiology)
+"lDx" = (
+/obj/machinery/computer/merch,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "brown"
+ },
+/area/quartermaster/office)
+"lDA" = (
+/obj/machinery/field/generator{
+ anchored = 1;
+ state = 2
+ },
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"lEd" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"lEe" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 4;
+ icon_state = "green"
},
-/area/medical/medbay3)
-"dog" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/hallway/secondary/exit)
+"lEk" = (
+/turf/simulated/wall/r_wall,
+/area/civilian/barber)
+"lER" = (
+/turf/simulated/floor/engine{
+ name = "Holodeck Projector Floor"
},
+/area/holodeck/alphadeck)
+"lFf" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/engine/mechanic_workshop/hangar)
+"lFj" = (
+/obj/structure/table/reinforced,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
+/obj/item/paper/deltainfo,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ dir = 10;
+ icon_state = "brown"
},
-/area/medical/cmo)
-"doh" = (
-/obj/structure/chair/office/light{
+/area/quartermaster/miningdock)
+"lFu" = (
+/obj/structure/chair,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/plasteel{
dir = 1
},
-/obj/effect/landmark/start{
- name = "Chief Medical Officer"
+/area/security/processing)
+"lFw" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ name = "Creature Pen"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Creature Pen"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ icon_state = "dark"
},
-/area/medical/cmo)
-"doi" = (
-/obj/machinery/ai_status_display{
- pixel_x = 32
+/area/maintenance/xenozoo)
+"lFG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/computer/card/minor/cmo,
-/turf/simulated/floor/plasteel,
-/area/medical/cmo)
-"dok" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dol" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/secondary/exit)
+"lFP" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xenosecure";
+ name = "Secure Creature Cell";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced/plasma,
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"lGd" = (
+/obj/machinery/firealarm{
dir = 8;
- icon_state = "cmo"
+ pixel_x = -24
},
-/area/medical/cmo)
-"dom" = (
-/obj/effect/decal/warning_stripes/northeast,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 5;
+ dir = 8;
icon_state = "yellow"
},
/area/maintenance/electrical)
-"don" = (
-/obj/machinery/door/airlock{
- name = "Magistrate's Office";
- req_access_txt = "74"
- },
+"lGo" = (
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "purplefull"
},
-/area/magistrateoffice)
-"doo" = (
-/obj/machinery/atmospherics/binary/pump{
+/area/toxins/xenobiology)
+"lGv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/southwestcorner,
-/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
},
-/area/maintenance/electrical)
-"dop" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"lGD" = (
+/obj/structure/table/reinforced,
+/obj/item/gps,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"lGJ" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/effect/decal/warning_stripes/northeastcorner,
-/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/maintenance/electrical)
-"dor" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/area/medical/ward)
+"lGN" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "rampbottom";
+ tag = "icon-stage_stairs"
},
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+/area/medical/research{
+ name = "Research Division"
+ })
+"lGO" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dos" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dot" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/decal/cleanable/cobweb2,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dou" = (
-/obj/structure/table/wood,
-/obj/machinery/light/small{
+/obj/structure/disposaloutlet{
dir = 8
},
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = -32
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/gambling_den)
-"dow" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"dox" = (
-/obj/machinery/light_switch{
- pixel_x = 26
- },
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/chem_dispenser,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/engine,
-/area/toxins/misc_lab)
-"doy" = (
-/obj/machinery/light_switch{
- pixel_x = -24;
- pixel_y = 24
+/area/toxins/xenobiology)
+"lGR" = (
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"lGZ" = (
+/obj/machinery/light{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/east,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"doA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark{
- name = "blobstart"
- },
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 8
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"doB" = (
-/obj/machinery/light,
-/obj/effect/decal/cleanable/dirt,
+/obj/item/flag/med,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/toxins/explab)
-"doC" = (
-/obj/item/clothing/accessory/stethoscope,
-/obj/item/clothing/accessory/stethoscope{
- pixel_y = 6
- },
-/obj/item/clothing/accessory/stethoscope{
- pixel_y = 3
- },
-/obj/item/flashlight/pen{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/flashlight/pen,
-/obj/item/flashlight/pen{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/area/medical/cmo)
+"lHc" = (
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 4
},
-/obj/structure/table/reinforced,
-/obj/machinery/light{
+/obj/effect/decal/warning_stripes/yellow/partial{
dir = 4
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"lHd" = (
+/obj/structure/table,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_x = -28
},
-/turf/simulated/floor/plasteel{
- icon_state = "bluefull"
+/obj/item/reagent_containers/food/snacks/grown/poppy/geranium,
+/obj/item/reagent_containers/food/snacks/grown/poppy/lily{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/food/snacks/grown/poppy{
+ pixel_x = -4;
+ pixel_y = 6
},
-/area/medical/reception)
-"doD" = (
-/obj/machinery/light,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/toxins/explab)
-"doE" = (
-/turf/simulated/wall,
-/area/medical/reception)
-"doF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
+/area/chapel/office)
+"lHe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "grimy"
},
-/area/medical/genetics_cloning)
-"doH" = (
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/vending/plasmaresearch,
+/area/library)
+"lHk" = (
+/obj/structure/table/reinforced,
+/obj/item/stock_parts/cell/high,
+/obj/machinery/cell_charger,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 4;
+ icon_state = "vault"
},
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"lHA" = (
+/obj/machinery/air_sensor{
+ frequency = 1222;
+ id_tag = "burn_sensor"
+ },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/turf/simulated/floor/engine/insulated/vacuum,
/area/toxins/mixing)
-"doJ" = (
+"lHR" = (
/obj/structure/table/reinforced,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Research Director's Desk";
- departmentType = 7;
- name = "Research Director Requests Console";
- pixel_x = -30;
- pixel_y = -2
- },
-/obj/item/clipboard,
-/obj/item/toy/figure/rd,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"doK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/computer/mecha,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"doL" = (
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/item/healthanalyzer,
+/obj/item/healthanalyzer,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/crew_quarters/hor)
-"doM" = (
+/area/storage/tech)
+"lHT" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurple"
- },
-/area/crew_quarters/hor)
-"doN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "1-2"
},
-/area/crew_quarters/hor)
-"doP" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "purplefull"
},
-/area/medical/research{
- name = "Research Division"
- })
-"doQ" = (
-/obj/machinery/light/small,
-/obj/machinery/camera{
- c_tag = "Xeno Containment 1";
- dir = 1;
- network = list("Research","SS13")
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/toxins/mixing)
+"lIo" = (
+/obj/item/radio/intercom{
+ pixel_y = -29
},
-/area/toxins/xenobiology)
-"doR" = (
-/obj/machinery/door/poddoor/shutters{
- id_tag = "roboticsshutters";
- name = "Mech Bay Shutters"
+/obj/structure/chair/sofa/left{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"doS" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"doT" = (
-/obj/machinery/status_display{
- pixel_x = -32
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/landmark/start{
- name = "Cyborg"
+/area/hallway/primary/central/west)
+"lIC" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"doU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/medbay2)
+"lIH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/recharge_station,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"doV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Cyborg"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"doW" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/landmark/start{
- name = "Cyborg"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whitepurplecorner"
},
-/area/assembly/chargebay)
-"doX" = (
-/obj/machinery/mech_bay_recharge_port{
- dir = 8
+/area/medical/research{
+ name = "Research Division"
+ })
+"lIJ" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating,
-/area/assembly/chargebay)
-"doY" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/obj/structure/table,
+/obj/item/storage/firstaid/regular,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
},
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 6;
+ icon_state = "brown"
},
-/area/hallway/primary/aft)
-"doZ" = (
+/area/quartermaster/miningdock)
+"lIZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/primary/aft)
-"dpa" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- name = "Genetics Junction";
- sortType = 23
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "purplecorner"
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/hallway/primary/aft)
-"dpb" = (
-/obj/machinery/light_switch{
- pixel_x = 24;
- pixel_y = -22
+/turf/simulated/floor/plating,
+/area/security/brig)
+"lJn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dpc" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Mech Bay";
- req_access_txt = "29"
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"lJs" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dpd" = (
-/obj/structure/chair/office/light{
- dir = 1
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/alarm{
- pixel_y = 57
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = 28
},
-/obj/effect/landmark/start{
- name = "Geneticist"
+/obj/structure/table/reinforced,
+/obj/item/radio,
+/obj/item/crowbar,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "blue"
},
+/area/bridge/checkpoint/south)
+"lJv" = (
+/obj/structure/bookcase,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 10;
+ icon_state = "darkblue"
},
-/area/medical/genetics)
-"dpe" = (
+/area/chapel/main)
+"lJE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/genetics)
-"dpf" = (
-/obj/structure/closet/paramedic,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"lJF" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/closet/wardrobe/miner,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"lJK" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/emcloset,
+/obj/machinery/vending/wallmed{
+ pixel_y = 30
},
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"lJR" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f5"
},
-/area/medical/paramedic)
-"dpg" = (
+/area/shuttle/mining)
+"lJZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/structure/table/wood,
+/obj/item/folder/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
+/area/assembly/showroom)
+"lKm" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/chemistry)
+"lKn" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/shuttle/plating,
+/area/shuttle/siberia)
+"lKE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/paramedic)
-"dph" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/nw)
+"lKG" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/turf/simulated/shuttle/plating,
+/area/shuttle/mining)
+"lKU" = (
+/obj/structure/sign/chemistry,
+/turf/simulated/wall/r_wall,
+/area/medical/chemistry)
+"lKX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/genetics)
-"dpi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/genetics)
-"dpj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/bridge)
+"lLb" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "dark"
},
-/area/medical/genetics)
-"dpk" = (
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 7
+/area/bridge)
+"lLm" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f6"
},
-/obj/item/pen,
-/obj/structure/table/glass,
-/obj/item/radio/intercom{
- pixel_x = 28
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"lLn" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/medical/genetics)
-"dpm" = (
-/obj/machinery/atmospherics/unary/tank/air{
- dir = 4
+/area/medical/medbay2)
+"lLz" = (
+/obj/structure/table,
+/obj/item/camera,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plating,
-/area/medical/genetics_cloning)
-"dpn" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal{
- dir = 4
+/area/crew_quarters/locker)
+"lLU" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plating,
-/area/medical/genetics_cloning)
-"dpo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "SecMedPriv"
},
/turf/simulated/floor/plating,
-/area/medical/genetics_cloning)
-"dpp" = (
+/area/security/medbay)
+"lLV" = (
/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/medical/genetics_cloning)
-"dpq" = (
+/area/medical/chemistry)
+"lLX" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "0-4"
},
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/starboard)
+"lMd" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/tank/emergency_oxygen/engi/empty,
+/obj/item/tank/emergency_oxygen/engi/empty,
+/obj/item/reagent_containers/iv_bag/blood/AMinus,
+/obj/item/reagent_containers/iv_bag/blood/APlus,
+/obj/item/reagent_containers/iv_bag/blood/BMinus,
+/obj/item/reagent_containers/iv_bag/blood/BPlus,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/blood/OPlus,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/machinery/iv_drip,
+/obj/item/reagent_containers/iv_bag/salglu,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/obj/structure/rack{
+/turf/simulated/floor/plasteel{
dir = 8;
- layer = 2.9
- },
-/obj/item/camera{
- pixel_x = 3;
- pixel_y = -4
+ icon_state = "whitered"
},
-/obj/item/taperecorder{
- pixel_x = -4;
- pixel_y = 2
+/area/security/medbay)
+"lMi" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/item/camera_film,
-/obj/item/camera_film,
-/obj/item/camera_film,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "red"
},
-/area/magistrateoffice)
-"dpr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/security/main)
+"lMj" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"lMk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "red"
},
-/area/medical/medbay2)
-"dps" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/security/lobby)
+"lMn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/firealarm{
- pixel_y = 26
+/obj/structure/chair,
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/area/medical/ward)
-"dpt" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- layer = 2
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "red"
},
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/light{
+/area/security/processing)
+"lMr" = (
+/obj/machinery/flasher/portable,
+/obj/machinery/alarm{
dir = 1;
- on = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dpu" = (
-/obj/structure/closet/secure_closet/medical2,
-/obj/machinery/light_switch{
- pixel_x = 8;
- pixel_y = 26
+ pixel_y = -24
},
-/obj/machinery/holosign_switch{
- id = "surgery2";
- pixel_x = -6;
- pixel_y = 26
+/obj/item/wrench,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
},
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -24
+/area/security/processing)
+"lMu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 0;
+ icon_state = "green"
},
-/area/medical/surgery2)
-"dpv" = (
-/obj/structure/table/glass,
-/obj/item/defibrillator/loaded{
- pixel_y = 5
+/area/crew_quarters/courtroom)
+"lMW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/medical/surgery2)
-"dpw" = (
+/area/medical/cmo)
+"lNc" = (
/obj/structure/table/glass,
-/obj/item/storage/box/gloves{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/masks,
-/obj/item/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
- name = "Surgery Cleaner"
- },
-/obj/machinery/camera{
- c_tag = "Second Surgery Room";
- network = list("Medical","SS13");
- pixel_x = -5
+/obj/item/storage/box/bodybags,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
+ dir = 10;
icon_state = "whiteblue";
tag = "icon-whitehall (WEST)"
},
-/area/medical/surgery2)
-"dpx" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag/blood/AMinus,
-/obj/item/reagent_containers/iv_bag/blood/APlus,
-/obj/item/reagent_containers/iv_bag/blood/BMinus,
-/obj/item/reagent_containers/iv_bag/blood/BPlus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/reagent_containers/iv_bag/salglu,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/medical/genetics_cloning)
+"lNg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door_control{
- id = "Second Surgery Theatre";
- name = "Theatre Window Shutters Control";
- pixel_x = 6;
- pixel_y = 26
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door_control{
- id = "Second Surgery Window";
- name = "Surgery Window Shutters Control";
- pixel_x = -6;
- pixel_y = 26
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/obj/item/reagent_containers/iv_bag/salglu,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 1;
+ icon_state = "redcorner"
},
-/area/medical/surgery2)
-"dpA" = (
-/obj/structure/chair{
- dir = 8
+/area/security/armoury)
+"lNp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger{
+ pixel_y = 2
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = -28
},
-/area/medical/surgery2)
-"dpC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/security/customs)
+"lNt" = (
+/obj/structure/toilet{
+ dir = 1
},
-/turf/simulated/floor/wood,
-/area/civilian/pet_store)
-"dpD" = (
-/obj/effect/spawner/lootdrop/trade_sol/minerals,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"dpF" = (
-/obj/structure/table/glass,
-/obj/machinery/vending/wallmed{
- layer = 3.3;
- name = "Emergency NanoMed";
- pixel_y = -32
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
},
-/obj/machinery/newscaster{
- pixel_x = -32
+/area/maintenance/fsmaint)
+"lNw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/photocopier/faxmachine/longrange{
- department = "Chief Medical Officer's Office"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/radio/intercom{
+ pixel_x = 28
},
/turf/simulated/floor/plasteel,
-/area/medical/cmo)
-"dpG" = (
+/area/crew_quarters/locker/locker_toilet)
+"lNC" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ icon_state = "purplefull"
},
-/area/medical/cmo)
-"dpH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light_switch{
+/area/toxins/mixing)
+"lNM" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/item/radio/intercom{
pixel_x = 26;
- pixel_y = -26
+ pixel_y = 28
},
-/obj/machinery/keycard_auth{
- pixel_x = 38;
- pixel_y = -26
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cabin4)
+"lNV" = (
+/obj/structure/closet/lasertag/blue,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/fitness)
+"lOi" = (
+/obj/structure/chair,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"lOt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ icon_state = "dark"
},
-/area/medical/cmo)
-"dpI" = (
-/obj/machinery/computer/crew,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Medical Officer's Desk";
- departmentType = 5;
- name = "Chief Medical Officer Requests Console";
- pixel_x = 30
+/area/bridge)
+"lOu" = (
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Temporal Cell";
+ dir = 1;
+ network = list("SS13","Security")
},
-/turf/simulated/floor/plasteel,
-/area/medical/cmo)
-"dpL" = (
-/obj/effect/decal/warning_stripes/southwest,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dpM" = (
-/obj/machinery/atmospherics/binary/valve,
-/obj/effect/decal/warning_stripes/south,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dpN" = (
-/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "yellow"
+ icon_state = "red"
+ },
+/area/security/processing)
+"lOz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/chair/office/dark{
+ dir = 4
},
-/area/maintenance/electrical)
-"dpO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dpP" = (
-/obj/machinery/light/small,
-/obj/machinery/camera{
- c_tag = "Xeno Containment 2";
- dir = 1;
- network = list("Research","SS13")
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/toxins/xenobiology)
-"dpQ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light,
-/obj/machinery/newscaster{
- pixel_y = -32
+/area/bridge)
+"lOG" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
},
-/obj/item/radio/intercom{
- dir = 0;
- pixel_x = -28;
- pixel_y = -28
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/photocopier/faxmachine/longrange{
- department = "Research Director's Office"
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26;
+ pixel_y = 32
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dpR" = (
-/obj/structure/chair/wood{
- dir = 1
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dpX" = (
-/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
+ },
+/area/medical/cryo)
+"lOI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/structure/table,
+/obj/item/storage/box/donkpockets{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/virology)
+"lPb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dpZ" = (
-/obj/machinery/light/small,
-/obj/machinery/camera{
- c_tag = "Xeno Containment 3";
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"lPf" = (
+/obj/structure/table,
+/obj/item/storage/box/handcuffs,
+/obj/machinery/light/spot{
dir = 1;
- network = list("Research","SS13")
+ tag = "icon-tube1 (NORTH)"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/area/toxins/xenobiology)
-"dqa" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+/area/shuttle/administration)
+"lPv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/toxins/mixing)
-"dqb" = (
-/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 0;
+ icon_state = "red"
},
-/area/toxins/mixing)
-"dqc" = (
-/obj/machinery/light,
-/obj/machinery/status_display{
- pixel_x = 32
+/area/security/customs)
+"lPH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"lPJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/camera{
+ c_tag = "Prison Solitary Confinement 2";
+ dir = 6;
+ network = list("Prison","SS13")
},
-/obj/machinery/computer/robotics,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/keycard_auth{
- pixel_y = -24
+/obj/machinery/flasher{
+ desc = "A floor-mounted flashbulb device.";
+ id = "permacell1";
+ layer = 5;
+ pixel_y = 24;
+ range = 3
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dqd" = (
-/obj/structure/table,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 7
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"lPW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/item/pen{
- pixel_x = 4;
- pixel_y = 4
+/area/library/abandoned)
+"lQm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/table,
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/item/restraints/handcuffs/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "whitegreen";
+ tag = "icon-whitehall (WEST)"
},
-/area/maintenance/electrical)
-"dqe" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/area/medical/virology)
+"lQG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dqf" = (
-/turf/simulated/wall,
-/area/crew_quarters/hor)
-"dqh" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/crew_quarters/hor)
-"dqi" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHWEST)"
- },
-/area/medical/genetics)
-"dqj" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 8
+/area/maintenance/fore{
+ name = "Hangar Maintenance"
+ })
+"lQL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dqk" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dql" = (
-/turf/simulated/wall,
-/area/assembly/robotics)
-"dqn" = (
-/obj/structure/sign/science,
-/turf/simulated/wall,
-/area/assembly/robotics)
-"dqo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dqp" = (
-/turf/simulated/wall/r_wall,
-/area/assembly/robotics)
-"dqq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Research West Hallway";
- network = list("Research","SS13")
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dqr" = (
+/area/bridge)
+"lQT" = (
+/obj/effect/decal/cleanable/blood/xeno,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/genetics)
-"dqs" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/maintenance/xenozoo)
+"lQU" = (
+/obj/machinery/power/apc{
dir = 4;
- on = 1
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ name = "east bump";
+ pixel_x = 24
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/genetics)
-"dqt" = (
-/obj/effect/decal/warning_stripes/northeastsouth,
-/obj/vehicle/ambulance{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
+ d2 = 8;
+ icon_state = "0-8"
},
+/obj/structure/table/glass,
+/obj/item/reagent_containers/spray/cleaner,
/turf/simulated/floor/plasteel{
+ dir = 4;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
/area/medical/paramedic)
-"dqu" = (
+"lRh" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/magistrateoffice)
-"dqv" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/light{
dir = 1;
- on = 1
+ icon_state = "rampbottom";
+ tag = "icon-stage_stairs"
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+/area/medical/reception)
+"lRk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/medical/surgery2)
-"dqw" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/light{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
- },
-/area/medical/genetics)
-"dqx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/crew_quarters/chief)
+"lRu" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
+/turf/simulated/floor/carpet,
+/area/ntrep)
+"lRC" = (
+/obj/machinery/bodyscanner,
+/obj/machinery/light/spot,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"lRT" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "dark"
},
-/area/medical/genetics)
-"dqy" = (
-/obj/machinery/vending/medical,
+/area/maintenance/xenozoo)
+"lSr" = (
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ dir = 10;
+ icon_state = "darkred"
},
-/area/medical/genetics)
-"dqz" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
+/area/security/securearmoury)
+"lSx" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
/obj/machinery/light{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whiteyellow"
- },
-/area/medical/chemistry)
-"dqA" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plating,
-/area/medical/genetics_cloning)
-"dqB" = (
-/obj/item/radio/intercom{
- pixel_y = -32
+ dir = 4;
+ icon_state = "whitegreencorner"
},
-/obj/machinery/space_heater,
-/turf/simulated/floor/plating,
-/area/medical/genetics_cloning)
-"dqC" = (
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/area/medical/virology)
+"lSA" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/turret_protected/ai)
-"dqD" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
},
-/obj/item/storage/firstaid/fire{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/storage/firstaid/fire{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/storage/firstaid/fire,
-/obj/machinery/camera{
- c_tag = "Medbay Storage";
- dir = 1;
- network = list("SS13","Medical")
+/obj/structure/window/reinforced,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/item/storage/box/flashbangs,
+/obj/item/storage/box/flashbangs{
+ pixel_x = 3;
+ pixel_y = -3
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
- },
-/area/medical/biostorage)
-"dqE" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway West 3";
- dir = 8
+ icon_state = "dark"
},
+/area/security/securearmoury)
+"lSG" = (
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "darkblue"
},
-/area/hallway/primary/central/west)
-"dqF" = (
+/area/bridge)
+"lSJ" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "0-2"
},
-/area/medical/medbay2)
-"dqH" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Virology";
+ name = "Virology Shutters"
},
-/area/medical/surgery2)
-"dqI" = (
+/turf/simulated/floor/plating,
+/area/medical/virology/lab)
+"lSM" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
- },
-/area/medical/surgery2)
-"dqJ" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/medical/surgery2)
-"dqK" = (
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"lTb" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/assembly/showroom)
+"lTh" = (
+/obj/structure/closet,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/medical/surgery2)
-"dqL" = (
-/obj/machinery/light{
- dir = 4
+/area/security/evidence)
+"lTm" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+ dir = 1
},
-/turf/simulated/floor/plasteel{
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ icon_state = "pipe-c"
},
-/area/medical/medbay3)
-"dqN" = (
-/obj/machinery/computer/prisoner{
- req_access = null;
- req_access_txt = "2"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkredcorners"
+ },
+/area/security/prison/cell_block/A)
+"lTn" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "Warden";
+ name = "Warden Privacy Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"lTt" = (
+/obj/structure/chair/office/dark{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "cult";
tag = "icon-cult"
},
-/area/magistrateoffice)
-"dqO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/lawoffice)
+"lTF" = (
+/obj/machinery/field/generator{
+ anchored = 1
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"lTH" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/red,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/door/airlock/command{
- name = "CMO's Office";
- req_access_txt = "40"
+/area/security/permabrig)
+"lTJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bluecorner"
},
+/area/hallway/primary/aft)
+"lTM" = (
/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/medical/cmo)
-"dqP" = (
-/obj/effect/spawner/window/reinforced,
+/area/medical/cryo)
+"lTQ" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/medical/cmo)
-"dqQ" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/camera/emp_proof{
- c_tag = "Singularity SouthEast";
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- network = list("SS13","Singularity","Engineering")
+ initialize_directions = 11
},
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"dqR" = (
-/turf/simulated/wall/r_wall,
-/area/medical/cmo)
-"dqS" = (
-/obj/structure/rack{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
dir = 8;
- layer = 2.9
+ icon_state = "neutralfull"
},
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/area/hallway/primary/central/se)
+"lTT" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dqT" = (
+/obj/machinery/computer/mob_healer_terminal,
/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/electrical)
-"dqU" = (
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"lUg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dqV" = (
-/obj/structure/table,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/storage/toolbox/mechanical,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/electrical)
-"dqW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
+/area/security/permabrig)
+"lUo" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dqX" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ id_tag = "viro_lab_airlock_control";
+ name = "Virology Lab Access Console";
+ pixel_x = 6;
+ pixel_y = 24;
+ req_one_access_txt = "39";
+ tag_exterior_door = "viro_lab_airlock_exterior";
+ tag_interior_door = "viro_lab_airlock_interior"
},
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/camera{
+ c_tag = "Virology Short Hall";
+ dir = 10;
+ network = list("Medical","SS13")
},
-/area/maintenance/electrical)
-"dqY" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/portable_atmospherics/canister,
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dqZ" = (
-/obj/structure/table/wood,
-/obj/machinery/light/small,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/maintenance/gambling_den)
-"dra" = (
-/obj/structure/chair/wood{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"drb" = (
-/obj/structure/table/wood/poker,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"drc" = (
-/obj/structure/table/wood/poker,
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/maintenance/gambling_den)
-"drd" = (
-/obj/structure/table/wood/poker,
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"dre" = (
-/obj/structure/table/wood/poker,
+/turf/simulated/floor/plasteel,
+/area/medical/virology)
+"lUL" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/gambling_den)
-"drf" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dri" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 10
+ dir = 4;
+ icon_state = "red"
},
+/area/security/brig)
+"lUP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurple"
- },
-/area/toxins/misc_lab)
-"dro" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/toxins/explab)
-"drp" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"drq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dru" = (
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/atmospherics/pipe/simple/insulated,
-/obj/structure/extinguisher_cabinet{
- pixel_y = -30
- },
-/obj/machinery/vending/wallmed{
- pixel_x = 26
- },
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- icon_state = "neutralcorner"
+ initialize_directions = 11
},
-/area/toxins/mixing)
-"drv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/bridge)
+"lUS" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Research Director's Quarters";
- req_access = null;
- req_access_txt = "30"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"drz" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
-/area/crew_quarters/hor)
-"drA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/toxins/xenobiology)
+"lUZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplecorner"
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/crew_quarters/hor)
-"drB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+/area/medical/ward)
+"lVa" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
},
-/area/crew_quarters/hor)
-"drC" = (
-/obj/structure/dresser,
-/obj/machinery/vending/wallmed{
- pixel_x = 26
+/obj/item/flashlight,
+/obj/item/gps,
+/obj/item/radio{
+ pixel_y = 6
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 26
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/crew_quarters/hor)
-"drD" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/area/security/podbay)
+"lVd" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"drE" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"drF" = (
-/obj/machinery/light{
+/area/crew_quarters/locker)
+"lVe" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24;
- pixel_y = -4
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"drG" = (
-/obj/effect/spawner/window/reinforced,
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/warning_stripes/east,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"lVo" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "Genetics";
- name = "Genetics Privacy Shutters"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/medical/genetics)
-"drH" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple"
- },
-/area/medical/genetics)
-"drI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_x = -32
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+/area/bridge)
+"lVO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/medical/research{
- name = "Research Division"
- })
-"drK" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "dark"
},
-/area/hallway/primary/aft)
-"drL" = (
+/area/turret_protected/aisat)
+"lVP" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/science{
- pixel_x = -32;
- pixel_y = 32
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "purplecorner"
- },
-/area/hallway/primary/aft)
-"drM" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/storage/firstaid/toxin{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/storage/firstaid/toxin{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/storage/firstaid/toxin,
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/area/medical/biostorage)
-"drN" = (
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"lWa" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"drO" = (
-/obj/structure/chair/office/light,
-/obj/effect/landmark/start{
- name = "Geneticist"
+/area/medical/medbay)
+"lWf" = (
+/obj/machinery/computer/secure_data,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/podbay)
+"lWh" = (
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_x = 32
+ },
+/obj/machinery/computer/security{
+ network = list("SS13","Research Outpost","Mining Outpost","Telecomms")
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkred"
},
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"lWj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/genetics)
-"drP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"lWl" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"lWu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/medical/genetics)
-"drQ" = (
+/area/medical/medbay)
+"lXa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitehall"
},
-/area/medical/genetics)
-"drR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/area/toxins/xenobiology)
+"lXr" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"lXs" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ req_access_txt = "19"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
},
-/area/medical/genetics)
-"drT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
-/obj/machinery/door/window/southright{
- dir = 1;
- name = "Primate Pen";
- req_access_txt = "9"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/grown/bananapeel,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "vault"
},
-/area/medical/genetics)
-"drU" = (
+/area/bridge)
+"lXQ" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"lYc" = (
/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/mob/living/carbon/human/monkey,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/genetics)
-"drV" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/grown/banana{
- pixel_x = 7;
- pixel_y = 3
+/area/security/podbay)
+"lYj" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Armory";
+ req_access_txt = "3";
+ security_level = 1
},
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/obj/item/reagent_containers/food/snacks/grown/banana{
- pixel_x = -6;
- pixel_y = 3
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/genetics)
-"drW" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/medical/chemistry)
-"drX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/smartfridge/medbay,
-/obj/machinery/door/window/eastright{
- base_state = "left";
- desc = "You have the public fridge, pal, lube off.";
- dir = 2;
- icon_state = "left";
- name = "Anti-Theft Shield";
- req_access_txt = "5"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/medical/chemistry)
-"drZ" = (
-/obj/machinery/door/airlock/medical/glass{
- name = "Patients Room"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "ArmoryLock";
+ name = "Armory Lockdown";
+ opacity = 0
},
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/ward)
-"dsa" = (
-/obj/machinery/light{
+/area/security/warden)
+"lYu" = (
+/obj/effect/decal/warning_stripes/southeastcorner,
+/obj/machinery/light/small{
dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Medbay Examination Centre";
- network = list("Medical","SS13")
- },
-/obj/machinery/alarm{
- pixel_y = 24
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = 28
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/medical/sleeper)
-"dsb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 9;
+ icon_state = "darkred"
},
+/area/security/podbay)
+"lZa" = (
/obj/machinery/camera{
- c_tag = "Medbay South Central Hall";
- dir = 4;
- network = list("Medical","SS13")
- },
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -24
+ c_tag = "Central Ring Hallway East 5";
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/medbay2)
-"dsd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 4;
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/central/ne)
+"lZb" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
+/area/medical/surgery1)
+"lZk" = (
+/obj/structure/chair/wood,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "chapel"
},
-/area/medical/surgery2)
-"dse" = (
-/obj/machinery/computer/operating,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/chapel/main)
+"lZw" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkred"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/security/podbay)
+"lZy" = (
+/turf/simulated/wall,
+/area/bridge/checkpoint/north)
+"lZA" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkblue"
+ icon_state = "neutralcorner"
},
-/area/medical/surgery2)
-"dsf" = (
-/obj/machinery/optable,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hallway/primary/aft)
+"lZU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/wood,
+/area/library)
+"mad" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/flashlight,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"mak" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/security/hos)
+"mal" = (
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "wall3"
+ },
+/area/toxins/test_area)
+"man" = (
+/obj/machinery/newscaster{
+ pixel_x = -28
},
+/turf/simulated/floor/wood,
+/area/ntrep)
+"mav" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/effect/landmark{
- name = "revenantspawn"
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "robotics_solar_inner";
+ locked = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "13"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
},
-/area/medical/surgery2)
-"dsg" = (
-/obj/machinery/iv_drip{
- pixel_x = -8
+/turf/simulated/floor/plating,
+/area/maintenance/portsolar)
+"maB" = (
+/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Brig Hangar";
+ network = list("SS13","Security")
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkred"
},
+/area/security/podbay)
+"maX" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "SecPilotPriv"
},
-/obj/machinery/light{
- dir = 4
+/turf/simulated/floor/plating,
+/area/security/podbay)
+"mbc" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/lattice,
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"mbs" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger{
+ pixel_y = 3
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "escape"
},
-/area/medical/surgery2)
-"dsh" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/crew_quarters/fitness)
+"mbF" = (
+/obj/structure/chair/office/dark{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/library/abandoned)
+"mbJ" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHEAST)"
},
+/area/medical/sleeper)
+"mbM" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/cigarettes/cigpack_robust,
+/obj/item/lighter,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Second Surgery Theatre";
- name = "Surgery Shutters"
- },
-/turf/simulated/floor/plating,
-/area/medical/surgery2)
-"dsi" = (
+/turf/simulated/floor/engine,
+/area/security/execution)
+"mbR" = (
+/obj/effect/decal/remains/human,
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "purple"
},
+/area/maintenance/xenozoo)
+"mbT" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"mbY" = (
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 6;
+ icon_state = "darkred"
},
-/area/medical/medbay3)
-"dsj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/security/securearmoury)
+"mcd" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"mcf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dsk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkbluecorners"
},
-/obj/structure/rack{
+/area/medical/morgue)
+"mck" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
dir = 8;
- layer = 2.9
+ icon_state = "neutralfull"
},
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/area/ai_monitored/storage/eva)
+"mcm" = (
+/obj/machinery/atmospherics/trinary/filter{
+ desc = "Отфильтровывает оксид азота из трубы и отправляет его в камеру хранения.";
+ filter_type = 4;
+ name = "Оксида Азота (NO2)";
+ on = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dsl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "escape"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/atmos)
+"mcs" = (
+/obj/structure/chair/office/dark,
+/obj/machinery/newscaster{
+ pixel_x = -32
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dsm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/area/crew_quarters/cabin1)
+"mcy" = (
+/obj/machinery/door/airlock/command/glass{
+ name = "Escape Shuttle Cockpit";
+ req_access_txt = "19"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dsq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/closet,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dsr" = (
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"mcz" = (
+/obj/machinery/bluespace_beacon,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"mcD" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 26
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"mcI" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport)
+"mcQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
+/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
name = "2maintenance loot spawner"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dss" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/random_spawners/grille_maybe,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dst" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"dsu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+"mcY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dsv" = (
-/obj/structure/closet/secure_closet/RD,
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dsw" = (
-/turf/simulated/wall/r_wall/coated,
-/area/crew_quarters/hor)
-"dsx" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 1
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/obj/structure/window/plasmareinforced{
- dir = 8
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/obj/structure/window/plasmareinforced{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 4
+/obj/structure/window/reinforced,
+/obj/machinery/light{
+ pixel_y = 6
+ },
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"mdb" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"dsy" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 8
+/area/maintenance/gambling_den)
+"mdc" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/structure/window/plasmareinforced{
- dir = 4
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"dsD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/unary/cold_sink/freezer{
+ current_temperature = 80;
+ on = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/crew_quarters/hor)
-"dsE" = (
+/area/toxins/server)
+"mdd" = (
+/obj/machinery/vending/cola,
+/turf/simulated/floor/plasteel,
+/area/bridge/vip)
+"mde" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellowcorner"
+ },
+/area/maintenance/electrical)
+"mdx" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/vending/wallmed{
+ pixel_x = 26
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"mdB" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/security/permabrig)
+"mdH" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
},
/obj/effect/landmark/start{
- name = "Research Director"
+ name = "Warden"
},
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ dir = 10;
+ icon_state = "darkredfull"
},
-/area/crew_quarters/hor)
-"dsF" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/area/security/warden)
+"meo" = (
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/obj/machinery/light{
dir = 1;
on = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/turf/simulated/floor/mech_bay_recharge_floor,
+/area/security/securearmoury)
+"meq" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 1;
+ name = "Труба смешивания"
},
-/area/crew_quarters/hor)
-"dsG" = (
-/obj/machinery/light{
- dir = 4
+/obj/machinery/meter,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"meO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ name = "Труба на фильтрацию"
},
-/obj/structure/bed,
-/obj/item/bedsheet/rd,
-/obj/machinery/status_display{
- pixel_x = 32
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "caution"
},
+/area/atmos)
+"meR" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
- },
-/area/crew_quarters/hor)
-"dsH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research/glass{
- name = "Robotics Lab";
- req_access_txt = "29"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"mfd" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "red"
},
-/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
-"dsI" = (
-/turf/simulated/wall,
-/area/hallway/secondary/entry/eastarrival)
-"dsJ" = (
-/obj/structure/table/reinforced,
-/obj/item/book/manual/sop_science,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
+/area/security/permahallway)
+"mfo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/item/storage/belt/utility,
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = 28
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -24
+/area/security/processing)
+"mft" = (
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
},
+/area/bridge)
+"mfv" = (
+/obj/effect/spawner/random_spawners/blood_maybe,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"mfz" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/assembly/robotics)
-"dsK" = (
-/obj/structure/table/reinforced,
-/obj/item/crowbar,
-/obj/item/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
+/area/medical/sleeper)
+"mfF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/item/healthanalyzer,
-/obj/item/healthanalyzer,
-/obj/item/healthanalyzer,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "darkred"
},
-/area/assembly/robotics)
-"dsL" = (
+/area/security/podbay)
+"mfJ" = (
/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/stock_parts/cell/high/plus{
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/item/stock_parts/cell/high/plus{
- pixel_x = 5;
- pixel_y = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/assembly/robotics)
-"dsM" = (
-/obj/machinery/disposal,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/item/paper_bin,
+/obj/structure/sign/poster/official/do_not_question{
+ pixel_y = -32
},
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHWEST)"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"mfL" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/assembly/robotics)
-"dsN" = (
-/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/firealarm{
- pixel_y = -26
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
- },
-/area/medical/genetics)
-"dsO" = (
-/obj/machinery/computer/scan_consolenew,
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ dir = 4
},
-/area/medical/genetics)
-"dsP" = (
-/obj/machinery/dna_scannernew,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/disposal,
+/turf/simulated/floor/engine,
+/area/medical/chemistry)
+"mgb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
- },
-/area/medical/genetics)
-"dsQ" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
- },
-/area/medical/genetics)
-"dsR" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple"
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A33";
+ location = "A32"
},
-/area/medical/genetics)
-"dsT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/genetics)
-"dsU" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/area/hallway/primary/central/se)
+"mgc" = (
+/obj/structure/table,
+/turf/simulated/floor/plasteel{
dir = 8;
- on = 1
+ icon_state = "neutralfull"
},
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"mge" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/genetics)
-"dsV" = (
-/obj/structure/sink{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/genetics)
-"dsW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+/area/bridge)
+"mgu" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/sleeper)
-"dsX" = (
-/obj/machinery/bodyscanner{
dir = 4
},
-/obj/machinery/light_switch{
- pixel_x = -23
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"mgP" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/camera{
+ c_tag = "Escape Shuttle Command Point";
+ dir = 6
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+/obj/structure/closet/emcloset,
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/area/medical/morgue)
-"dsY" = (
-/obj/machinery/optable,
-/obj/machinery/status_display{
- layer = 4;
- pixel_y = 32
+/turf/simulated/floor/plasteel,
+/area/bridge/checkpoint/south)
+"mhg" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Подаёт азот из атмосферки в систему охлаждения реактора, таким образом запитывая её хладагентом";
+ dir = 9;
+ name = "Труба подачи азота в реактор"
},
-/obj/machinery/light/small{
+/turf/space,
+/area/space/nearstation)
+"mhi" = (
+/obj/effect/mapping_helpers/airlock/unres{
dir = 1
},
-/obj/item/autopsy_scanner,
-/obj/item/scalpel,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
- },
-/area/medical/morgue)
-"dsZ" = (
-/obj/item/storage/box/monkeycubes,
-/obj/item/storage/box/monkeycubes/stokcubes,
-/obj/item/storage/box/monkeycubes/neaeracubes,
-/obj/item/storage/box/monkeycubes/wolpincubes,
-/obj/item/storage/box/monkeycubes/farwacubes,
-/obj/structure/table,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/genetics)
-"dtb" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Courtroom";
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Cell Block";
req_access_txt = "63"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "green"
- },
-/area/crew_quarters/courtroom)
-"dtc" = (
-/obj/structure/table/glass,
-/obj/item/storage/box/bodybags,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/genetics_cloning)
-"dtd" = (
-/turf/simulated/shuttle/wall{
- dir = 8;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate_sit)
-"dte" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
+ dir = 4;
+ icon_state = "darkred"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/security/prison/cell_block/A)
+"mhs" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"dtf" = (
-/obj/structure/closet/wardrobe/coroner,
-/obj/item/reagent_containers/glass/bottle/reagent/formaldehyde,
-/obj/item/reagent_containers/dropper,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/medical/morgue)
-"dtg" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/structure/window/reinforced,
+/obj/machinery/light{
dir = 1;
on = 1
},
+/turf/simulated/floor/grass,
+/area/medical/medbay)
+"mhB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
+ dir = 1;
+ icon_state = "escape"
},
-/area/medical/surgery2)
-"dth" = (
+/area/bridge/checkpoint/south)
+"mhC" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/medical/surgery2)
-"dti" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno6";
+ name = "Creature Cell #6";
+ opacity = 0
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Creature Pen";
+ req_access_txt = "47"
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/medical/surgery2)
-"dtk" = (
-/obj/structure/chair{
+/area/toxins/xenobiology)
+"mhI" = (
+/obj/structure/window/reinforced{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/medical/morgue)
+"mhL" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/aft)
+"mhS" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"mhU" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/engine/gravitygenerator)
+"mhX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkblue"
- },
-/area/medical/surgery2)
-"dtm" = (
-/obj/machinery/vending/coffee,
-/obj/structure/sign/poster/official/random{
- pixel_y = -32
+ icon_state = "neutralfull"
},
+/area/hallway/primary/central/north)
+"mid" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 4;
+ icon_state = "browncorner"
},
-/area/medical/ward)
-"dtn" = (
-/obj/machinery/light{
- dir = 8
+/area/hallway/primary/central/north)
+"mim" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ name = "Cell Door";
+ req_access_txt = "150"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/effect/decal/warning_stripes/east,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/shuttle/syndicate_sit)
+"miq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/area/medical/cmo)
-"dto" = (
-/obj/structure/sign/science{
- icon_state = "xenobio2"
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/turf/simulated/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
-"dtp" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ dir = 4;
+ icon_state = "whiteredfull"
},
-/area/medical/cmo)
-"dtq" = (
-/obj/structure/bed,
-/obj/item/bedsheet/cmo,
-/obj/machinery/light{
+/area/security/medbay)
+"miw" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/aft)
+"miK" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/status_display{
- pixel_x = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/landmark/start{
- name = "Chief Medical Officer"
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"miO" = (
+/obj/structure/filingcabinet,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/cmo)
-"dtr" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 8;
- icon_state = "open";
- id_tag = "magistrate";
- name = "Magistrate Privacy Shutters";
- opacity = 0
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/magistrateoffice)
-"dtt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/library)
+"mjf" = (
+/obj/structure/sign/directions/evac{
+ pixel_y = -8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/sign/directions/medical{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dtu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/sign/directions/security{
+ dir = 4;
+ pixel_y = 8
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/wall,
+/area/quartermaster/office)
+"mjk" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitegreencorner"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dtv" = (
+/area/medical/virology)
+"mjr" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dtw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"mjs" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dty" = (
-/obj/machinery/atmospherics/pipe/manifold4w/visible,
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
- },
-/area/maintenance/electrical)
-"dtz" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+ icon_state = "dark"
},
+/area/bridge)
+"mjx" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "escape"
},
-/area/maintenance/electrical)
-"dtA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/bridge/checkpoint/south)
+"mjE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dtB" = (
-/obj/machinery/atmospherics/binary/pump{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"mjG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/maintenance/electrical)
-"dtC" = (
+/turf/simulated/wall/r_wall,
+/area/tcommsat/chamber)
+"mjW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
- name = "Aft Starboard Solar Access";
- req_access_txt = "10"
+ name = "Tech Storage";
+ req_access_txt = "23"
},
-/obj/structure/sign/electricshock{
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/maintenance/starboardsolar)
-"dtD" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/engine/break_room)
+"mka" = (
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"mkb" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/energy/laser/practice{
+ pixel_y = -10
},
-/obj/machinery/power/terminal{
- dir = 1
+/obj/item/gun/energy/laser/practice{
+ pixel_y = 10
},
-/obj/effect/landmark{
- name = "blobstart"
+/obj/item/gun/energy/laser/practice,
+/obj/machinery/door/poddoor/shutters{
+ id_tag = "ShootRange";
+ name = "Shooting Range Shutters"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboardsolar)
-"dtE" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dtF" = (
+/area/security/range)
+"mkc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/radio/intercom{
- pixel_y = 28
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/atmospherics/unary/vent_pump{
- external_pressure_bound = 100;
- on = 1
+/area/medical/research/nhallway)
+"mkf" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/masks{
+ pixel_x = 6;
+ pixel_y = 2
},
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"dtG" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/item/storage/box/gloves,
+/obj/machinery/light_switch{
+ pixel_x = -24
},
-/obj/machinery/power/smes,
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "whitered"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"dtH" = (
-/obj/effect/spawner/window/reinforced,
+/area/security/medbay)
+"mkg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
-"dtI" = (
-/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"dtJ" = (
-/obj/machinery/light/small,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -32
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dtK" = (
-/obj/structure/table/wood,
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"dtL" = (
-/obj/machinery/light/small,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -32
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/obj/machinery/vending/boozeomat,
+/area/medical/sleeper)
+"mkh" = (
+/obj/structure/bookcase/manuals/engineering,
/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dtN" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1
+/area/maintenance/fsmaint)
+"mkj" = (
+/obj/effect/landmark{
+ name = "revenantspawn"
},
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whitegreen";
+ tag = "icon-whitehall (WEST)"
},
-/area/assembly/robotics)
-"dtP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/area/medical/virology)
+"mkm" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
+/obj/machinery/shieldwallgen{
+ req_access = list(47)
+ },
+/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dtR" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 8
+/area/toxins/xenobiology)
+"mkF" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
-/obj/structure/window/plasmareinforced{
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"mkL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/window/plasmareinforced,
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"dtS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/toxins/explab)
+"mkM" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/camera{
- c_tag = "Research Hallway";
- network = list("Research","SS13")
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/item/radio/intercom{
- pixel_y = 24
+/obj/effect/decal/warning_stripes/south,
+/obj/item/radio/beacon,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"mkS" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/wall,
+/area/maintenance/asmaint2)
+"mla" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "whitegreencorner"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dtT" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/area/medical/virology/lab)
+"mle" = (
+/obj/machinery/door/airlock/external{
+ hackProof = 1;
+ id_tag = "emergency_home";
+ name = "Escape Airlock"
},
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/security/checkpoint)
+"mlh" = (
+/turf/simulated/wall/r_wall/rust,
+/area/toxins/mixing)
+"mll" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "neutral"
},
-/area/medical/research{
- name = "Research Division"
+/area/shuttle/escape{
+ parallax_movedir = 2
})
-"dtU" = (
+"mlo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dtV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"mlB" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/structure/chair/stool,
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"mlG" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/west)
+"mlL" = (
+/obj/machinery/door/airlock/external{
+ name = "Labor Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/turf/simulated/shuttle/floor{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "dark"
},
+/area/shuttle/siberia)
+"mlM" = (
+/obj/structure/table,
+/obj/item/flashlight/seclite,
+/obj/item/restraints/handcuffs,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
+ },
+/area/security/processing)
+"mlW" = (
+/obj/structure/table,
+/obj/item/storage/box/gloves,
+/obj/item/storage/box/bodybags,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/toxins/mixing)
-"dtY" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
+ },
+/area/chapel/office)
+"mlX" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
},
-/area/crew_quarters/hor)
-"dtZ" = (
-/obj/structure/cable,
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/extinguisher_cabinet{
- pixel_y = -30
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
},
-/obj/item/twohanded/required/kirbyplants,
+/area/security/processing)
+"mml" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ dir = 0;
+ icon_state = "red"
},
-/area/crew_quarters/hor)
-"dua" = (
+/area/security/permahallway)
+"mmo" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/hor)
-"dub" = (
-/obj/structure/table/wood,
-/obj/machinery/newscaster{
- pixel_y = -32
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"mmA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"mmE" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/obj/item/flashlight/lamp,
-/obj/item/paper/monitorkey,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/crew_quarters/hor)
-"duc" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/area/security/permabrig)
+"mmK" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Cell Block";
+ req_access_txt = "63"
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"dud" = (
-/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"duf" = (
-/obj/structure/table/reinforced,
-/obj/item/book/manual/robotics_cyborgs{
- pixel_x = -1;
- pixel_y = 2
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/item/clipboard,
-/obj/item/toy/figure/roboticist,
-/obj/machinery/door_control{
- id = "RoboDesk";
- name = "Robotics Desc Privacy Shutters Control";
- pixel_x = 24;
- pixel_y = 24
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
- },
-/area/assembly/robotics)
-"duh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "darkred"
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/area/security/prison/cell_block/A)
+"mmQ" = (
+/obj/structure/morgue,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple"
+ icon_state = "dark"
},
-/area/medical/genetics)
-"dui" = (
-/obj/machinery/mecha_part_fabricator,
-/obj/effect/decal/warning_stripes/yellow,
+/area/chapel/office)
+"mmU" = (
+/obj/structure/dresser,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/assembly/robotics)
-"duj" = (
+/area/library)
+"mmZ" = (
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/wall/r_wall,
+/area/toxins/storage)
+"mnh" = (
/obj/structure/table/reinforced,
-/obj/item/clothing/glasses/hud/diagnostic{
- pixel_x = 2;
- pixel_y = 5
+/obj/item/folder,
+/obj/item/pen,
+/obj/machinery/door/window/westleft,
+/obj/machinery/door/window/eastleft{
+ name = "Research Lab Desk";
+ req_access_txt = "7"
},
-/obj/item/clothing/glasses/hud/diagnostic{
- pixel_x = 2;
- pixel_y = 5
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/clothing/glasses/hud/diagnostic{
- pixel_x = 2;
- pixel_y = 5
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"mnN" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
+ dir = 1
},
-/obj/item/clothing/glasses/welding,
-/obj/item/clothing/glasses/welding,
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/camera{
+ c_tag = "EVA West"
},
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"mnO" = (
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = 24
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/machinery/firealarm{
+ pixel_y = 26
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
+ },
+/area/chapel/office)
+"mnQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkredcorners"
+ },
+/area/security/permabrig)
+"mnR" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 30;
+ pixel_y = 30
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/specops)
+"mob" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/assembly/robotics)
-"duk" = (
-/turf/simulated/wall,
-/area/medical/morgue)
-"dul" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Research Director's Quarters";
+ req_access = null;
+ req_access_txt = "30"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"mof" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 9;
icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/surgery2)
-"dum" = (
-/obj/machinery/door/airlock/medical{
- name = "Morgue";
- req_one_access_txt = "6;5"
+ tag = "icon-whiteblue (NORTHWEST)"
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/medical/cryo)
+"mog" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/morgue)
-"dun" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall,
-/area/medical/morgue)
-"duo" = (
+/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/conveyor_switch/oneway{
- id = "QMLoad"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"mop" = (
+/obj/structure/table,
+/obj/item/storage/belt/utility,
+/obj/item/extinguisher,
+/obj/item/secbot_assembly{
+ created_name = "Officer Podsky";
+ desc = "Ты не узнаешь ценность чего-либо, пока не потеряешь это...";
+ name = "Обломки офицера Подски";
+ pixel_y = 21
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"dup" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+ icon_state = "dark"
},
+/area/security/podbay)
+"mov" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/sleeper)
-"duq" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/obj/item/soap{
- pixel_y = 11
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHEAST)"
+ icon_state = "purplefull"
},
-/area/medical/genetics_cloning)
-"dur" = (
-/obj/structure/closet/secure_closet/medical3,
+/area/toxins/xenobiology)
+"moG" = (
+/turf/simulated/wall,
+/area/maintenance/fpmaint2)
+"moU" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/sit,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate_sit)
+"moW" = (
+/obj/structure/sign/science,
+/turf/simulated/wall,
+/area/hallway/primary/central/sw)
+"moX" = (
+/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
- pixel_y = -30
+ dir = 1;
+ pixel_y = -28
},
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/storage/box/bodybags,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "dark"
},
-/area/medical/surgery2)
-"dus" = (
-/obj/structure/table/glass,
+/area/library)
+"mpg" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/item/reagent_containers/glass/bottle/ether{
- pixel_x = 1;
- pixel_y = 1
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/item/reagent_containers/syringe{
- pixel_x = -1;
- pixel_y = 11
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/crew_quarters/fitness)
+"mpn" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/cans/beer,
+/obj/item/reagent_containers/food/drinks/cans/beer,
+/obj/item/pizzabox,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "dark"
},
-/area/medical/surgery2)
-"dut" = (
-/obj/structure/table/glass,
+/area/construction/hallway)
+"mpA" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/storage/toolbox/surgery{
- pixel_x = -1;
- pixel_y = 2
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ dir = 8;
+ icon_state = "yellow"
},
-/area/medical/surgery2)
-"duu" = (
-/obj/machinery/bodyscanner,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/engine/break_room)
+"mpI" = (
+/turf/space,
+/turf/simulated/wall/r_wall,
+/area/security/medbay)
+"mpW" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/medical/surgery2)
-"duv" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Second Surgery Theatre";
- name = "Surgery Shutters"
+ icon_state = "red"
},
-/turf/simulated/floor/plating,
-/area/medical/surgery2)
-"duw" = (
-/obj/structure/chair{
+/area/security/brig)
+"mqj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
-/obj/item/radio/intercom{
- pixel_x = 29
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+ dir = 1;
+ icon_state = "red"
},
-/area/medical/surgery2)
-"dux" = (
+/area/security/processing)
+"mqp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door_control{
+ desc = "A remote control switch for the brig foyer.";
+ id = "BrigLeft";
+ name = "Left Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = -6;
+ pixel_y = 7;
+ req_access_txt = null
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "BrigLeft";
+ name = "Left Doors Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -6;
+ pixel_y = -2;
+ specialfunctions = 4
},
-/area/medical/medbay3)
-"duy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/door_control{
+ desc = "A remote control switch for the brig foyer.";
+ id = "BrigRight";
+ name = "Right Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = 6;
+ pixel_y = 7;
+ req_access_txt = null
},
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"duz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "BrigRight";
+ name = "Right Doors Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 6;
+ pixel_y = -2;
+ specialfunctions = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+/obj/machinery/flasher_button{
+ id = "brigkpp";
+ name = "Flasher Control";
+ pixel_x = -17;
+ pixel_y = 2
},
-/area/medical/medbay3)
-"duA" = (
-/obj/machinery/suit_storage_unit/cmo,
-/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1
},
-/area/medical/cmo)
-"duB" = (
-/obj/structure/table/glass,
-/obj/machinery/newscaster{
- pixel_y = -32
+/area/security/reception)
+"mqz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/computer/med_data/laptop,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/cmo)
-"duC" = (
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = -28
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/machinery/camera{
- c_tag = "Chief Medical Officer's Quarters";
- dir = 1;
- network = list("Medical","SS13")
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/medical/cmo)
-"duD" = (
-/obj/structure/disposalpipe/segment{
+/area/security/permahallway)
+"mqB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"mqV" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 8;
- icon_state = "1-8";
- tag = ""
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/magistrateoffice)
-"duE" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- name = "Medbay Junction";
- sortType = 9
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutral"
},
-/area/hallway/primary/central/se)
-"duF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/area/crew_quarters/courtroom)
+"mqW" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"duG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Briefing";
+ name = "Briefing Room Shutters"
},
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"duH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/area/security/main)
+"mqY" = (
+/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"duJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"duL" = (
-/turf/simulated/wall/r_wall,
-/area/civilian/pet_store)
-"duM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/engine/hardsuitstorage)
+"mrf" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/area/chapel/main)
+"mrx" = (
+/obj/structure/table,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"duN" = (
+/area/medical/medbay)
+"mrA" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/computer/pandemic,
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"mrG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"duO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -86525,3960 +85018,3712 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"duP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ icon_state = "1-2"
},
-/obj/machinery/camera{
- c_tag = "Engine Room South";
+/turf/simulated/floor/plasteel{
dir = 1;
- network = list("Engineering","SS13")
+ icon_state = "red"
},
-/obj/effect/decal/warning_stripes/south,
-/obj/structure/window/reinforced{
+/area/security/checkpoint)
+"mrH" = (
+/obj/machinery/light{
dir = 8
},
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
-"duT" = (
-/obj/structure/table/wood/poker,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/maintenance/gambling_den)
-"duY" = (
-/turf/simulated/floor/engine/insulated/vacuum,
-/area/toxins/mixing)
-"duZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- name = "Robotics Maintenance";
- req_access_txt = "29"
- },
+"mrN" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 9;
+ icon_state = "darkred"
},
-/area/assembly/robotics)
-"dvc" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dvd" = (
-/obj/machinery/door/poddoor{
- id_tag = "ToxinsVenting";
- name = "Toxins Venting Bay Door";
- use_power = 0
+/area/security/podbay)
+"mrV" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/simulated/floor/engine/insulated/vacuum,
-/area/toxins/mixing)
-"dvf" = (
-/turf/simulated/wall/r_wall/coated,
-/area/toxins/mixing)
-"dvg" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/hor)
-"dvh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/construction/hallway)
+"msG" = (
+/obj/structure/window/reinforced,
+/obj/structure/chair/comfy/black{
+ dir = 8
},
-/obj/item/radio/intercom{
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"msV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- pixel_x = -28
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
+/area/crew_quarters/courtroom)
+"mth" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
})
-"dvi" = (
+"mto" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dvj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/engine/break_room)
+"mtz" = (
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder{
+ pixel_x = -1;
+ pixel_y = 9
+ },
+/obj/item/radio/intercom{
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door_control{
+ id = "Chemistry";
+ name = "Chem Privacy Shutters Control";
+ pixel_x = -23;
+ pixel_y = -9
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whiteyellow"
+ },
+/area/medical/chemistry)
+"mtK" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 1;
+ name = "Труба дыхательной смеси"
+ },
+/turf/simulated/floor/plating,
+/area/atmos)
+"mtL" = (
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre";
+ req_access_txt = "45"
+ },
+/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+/obj/machinery/holosign/surgery{
+ id = "surgery2"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dvk" = (
-/obj/effect/decal/warning_stripes/southeastcorner,
-/obj/structure/chair/office/light{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/landmark/start{
- name = "Roboticist"
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHWEST)"
+ icon_state = "white"
},
-/area/assembly/robotics)
-"dvl" = (
-/obj/effect/decal/warning_stripes/south,
+/area/medical/surgery2)
+"mtX" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
+ dir = 9;
+ icon_state = "red"
},
-/area/assembly/robotics)
-"dvm" = (
-/obj/effect/decal/warning_stripes/southwestcorner,
+/area/security/range)
+"muf" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/barricade/wooden,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"muo" = (
+/obj/structure/table/reinforced,
+/obj/item/analyzer,
+/obj/item/assembly/signaler,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/turret_protected/ai)
+"muD" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = 30
+ },
+/turf/simulated/shuttle/floor4,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"muF" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/assembly/robotics)
-"dvo" = (
-/obj/effect/decal/warning_stripes/yellow/partial,
-/mob/living/simple_animal/pet/dog/corgi/borgi,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/area/hallway/primary/central/south)
+"muH" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 1;
+ name = "Труба фильтрации"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plating,
+/area/atmos)
+"muK" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Virology";
+ name = "Virology Shutters"
},
-/obj/structure/disposalpipe/segment{
+/turf/simulated/floor/plating,
+/area/medical/virology/lab)
+"muM" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/color/black,
+/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
-"dvr" = (
-/obj/structure/chair/office/light{
+/area/atmos)
+"muS" = (
+/obj/structure/transit_tube{
+ icon_state = "S-NE";
+ tag = "icon-S-NE"
+ },
+/obj/structure/window/reinforced{
dir = 4
},
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/construction/hallway)
+"muV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/landmark/start{
- name = "Roboticist"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple"
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"mvp" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/assembly/robotics)
-"dvs" = (
-/obj/structure/morgue,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/effect/landmark{
- name = "revenantspawn"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "Virology";
+ name = "Virology Shutters"
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+/turf/simulated/floor/plating,
+/area/medical/virology/lab)
+"mvI" = (
+/obj/machinery/door_timer/cell_1{
+ dir = 1;
+ pixel_y = 0
},
-/area/medical/morgue)
-"dvt" = (
-/obj/effect/decal/warning_stripes/north,
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkblue"
+ icon_state = "darkred"
},
-/area/medical/morgue)
-"dvu" = (
-/obj/structure/morgue,
-/obj/effect/decal/warning_stripes/north,
+/area/security/prison/cell_block/A)
+"mwa" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark{
- name = "revenantspawn"
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/morgue)
-"dvv" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+/area/crew_quarters/fitness)
+"mwd" = (
+/obj/structure/sign/botany{
+ pixel_x = -32
},
-/area/medical/morgue)
-"dvw" = (
+/obj/machinery/plantgenes,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/morgue)
-"dvx" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
+/area/hydroponics)
+"mwf" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/effect/landmark/start{
+ name = "Cyborg"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/medical/morgue)
-"dvy" = (
-/obj/structure/window/reinforced{
- dir = 8
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"mwg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+ icon_state = "darkred"
},
-/area/medical/morgue)
-"dvz" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/security/evidence)
+"mwh" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"mwp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door_control{
+ id = "xeno5";
+ name = "Containment Control";
+ req_access_txt = "55"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkbluecorners"
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/medical/morgue)
-"dvA" = (
-/obj/structure/filingcabinet/chestdrawer/autopsy,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"mwq" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/morgue)
-"dvB" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/cryo)
-"dvC" = (
-/obj/structure/closet/secure_closet/magistrate,
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/magistrateoffice)
-"dvE" = (
-/obj/machinery/light{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "darkbluecorners"
},
-/area/medical/medbay2)
-"dvH" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "Second Surgery Theatre";
- name = "Surgery Shutters"
+/area/medical/morgue)
+"mwu" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
},
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/medical/surgery2)
-"dvJ" = (
-/turf/simulated/wall/r_wall,
-/area/medical/surgery2)
-"dvK" = (
-/obj/machinery/door/firedoor,
+/obj/machinery/light,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"mwA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/vip)
+"mwB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay3)
-"dvL" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
- },
-/area/medical/medbay3)
-"dvM" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal{
- dir = 4
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/warning_stripes/south,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Maintenance";
- req_access_txt = "12;24"
+/area/hallway/primary/central/north)
+"mwH" = (
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 8";
+ dir = 6;
+ network = list("SS13","MiniSat")
},
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dvN" = (
-/obj/effect/spawner/window/reinforced,
+/turf/space,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"mwW" = (
/obj/structure/cable{
+ d1 = 2;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "2-8"
},
-/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
-"dvO" = (
-/obj/structure/chair/comfy/lime{
- dir = 4
+/obj/effect/landmark{
+ name = "blobstart"
},
-/obj/machinery/light{
- on = 1
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 8
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -29
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/effect/landmark/start{
- name = "Psychiatrist"
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"mxb" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"dvP" = (
-/obj/structure/table/wood,
-/obj/item/phone{
- pixel_x = -3;
- pixel_y = 3
+/obj/machinery/power/apc{
+ cell_type = 25000;
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ shock_proof = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/item/storage/briefcase,
/turf/simulated/floor/wood,
-/area/medical/psych)
-"dvQ" = (
+/area/ntrep)
+"mxe" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/port)
+"mxv" = (
/obj/structure/table,
-/obj/item/folder/yellow{
- pixel_x = 2;
- pixel_y = 2
+/obj/item/storage/briefcase{
+ pixel_x = 4;
+ pixel_y = 4
},
-/obj/item/pen/multi,
-/obj/item/paper_bin/nanotrasen,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/magistrateoffice)
-"dvR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/crew_quarters/locker)
+"mxx" = (
+/obj/structure/chair/office/dark{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dvS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dvT" = (
-/obj/structure/table/wood,
+/area/library/abandoned)
+"mxH" = (
+/obj/item/radio/intercom{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/north)
+"mxM" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
- },
-/obj/item/stack/wrapping_paper,
-/obj/item/reagent_containers/food/snacks/grown/wheat,
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
+ pixel_x = -28
},
-/turf/simulated/floor/wood,
-/area/civilian/pet_store)
-"dvU" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"dvY" = (
-/obj/machinery/atmospherics/unary/cold_sink/freezer{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
},
-/obj/effect/decal/warning_stripes/eastsouthwest,
-/obj/structure/extinguisher_cabinet{
- pixel_y = -30
+/area/security/prisonershuttle)
+"mxT" = (
+/obj/machinery/smartfridge/secure/extract,
+/obj/machinery/light_switch{
+ pixel_x = -26
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dwc" = (
+/area/toxins/xenobiology)
+"mxV" = (
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway North 3"
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/toxins/mixing)
-"dwd" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 1
+/area/hallway/primary/central/north)
+"mxZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/window/plasmareinforced{
- dir = 8
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Creature Pen";
+ req_access_txt = "47"
},
-/obj/structure/window/plasmareinforced{
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"mya" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/window/plasmareinforced,
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"dwf" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/clothing/head/hardhat/red,
-/obj/item/clothing/mask/gas,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "CMO Shutters";
+ name = "CMO Privacy Shutters"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/turf/simulated/floor/plating,
+/area/medical/cmo)
+"myh" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet,
+/area/civilian/pet_store)
+"myq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/toxins/mixing)
-"dwg" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northeastsouth,
-/obj/machinery/newscaster{
- pixel_y = -32
+/area/hallway/primary/central/north)
+"myH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dwh" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "QMLoad"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/barricade/wooden,
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/library/abandoned)
+"myO" = (
+/obj/item/radio/intercom{
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "brown"
+ icon_state = "browncorner"
},
-/area/quartermaster/storage)
-"dwi" = (
-/turf/simulated/wall/r_wall,
-/area/toxins/server)
-"dwj" = (
+/area/hallway/primary/central/north)
+"myQ" = (
/obj/machinery/alarm{
dir = 4;
- pixel_x = -22
+ pixel_x = -24
},
-/obj/machinery/computer/message_monitor,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
+"myZ" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/toxins/server)
-"dwk" = (
+/area/security/securearmoury)
+"mzf" = (
+/obj/effect/decal/warning_stripes/southeast,
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/toxins/server)
-"dwl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/morgue)
+"mzj" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/atmospherics/unary/cold_sink/freezer{
- current_temperature = 80;
- on = 1
+/area/shuttle/trade/sol)
+"mzl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "whitegreen"
},
-/area/toxins/server)
-"dwm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/medbay3)
+"mzo" = (
+/obj/item/radio/intercom{
+ pixel_y = -30
+ },
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "red"
+ },
+/area/security/brig)
+"mzI" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/toxins/server)
-"dwn" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"dwo" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/item/folder,
-/obj/machinery/door/window/westleft{
- name = "Robotics Desk";
- req_access_txt = "29"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/door/window/eastleft,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "RoboDesk";
- name = "Robotics Privacy Shutter"
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/structure/showcase{
+ layer = 5
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
-"dwp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/tcommsat/chamber)
+"mzT" = (
+/obj/machinery/door/airlock/command/glass{
+ name = "Escape Shuttle Cockpit";
+ req_access_txt = "19"
},
-/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/storage)
-"dwq" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"mzW" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Briefing Room";
+ req_access_txt = "63"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurple"
+ icon_state = "red"
},
-/area/assembly/robotics)
-"dwr" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/area/security/main)
+"mzX" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurplecorner"
- },
-/area/assembly/robotics)
-"dws" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/glass{
- amount = 50;
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/segment,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50;
- pixel_x = -4;
- pixel_y = 4
+ icon_state = "darkblue"
},
-/obj/item/stack/sheet/plasteel{
- amount = 15
+/area/construction/hallway)
+"mzZ" = (
+/obj/structure/sign/science{
+ icon_state = "doors"
},
-/obj/item/stack/sheet/metal{
- amount = 50
+/turf/simulated/wall,
+/area/toxins/xenobiology)
+"mAa" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door_control{
+ id = "xeno2";
+ name = "Containment Control";
+ req_access_txt = "55"
},
-/obj/item/stack/sheet/metal{
- amount = 50
+/obj/structure/window/reinforced{
+ dir = 8
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"mAd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/barricade/wooden,
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"mAl" = (
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/assembly/robotics)
-"dwt" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/engine/hardsuitstorage)
+"mAn" = (
+/obj/machinery/computer/camera_advanced/xenobio,
+/obj/machinery/status_display{
+ pixel_x = 32
},
-/obj/effect/landmark{
- name = "lightsout"
+/turf/simulated/floor/greengrid,
+/area/toxins/xenobiology)
+"mAq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/aft)
-"dwu" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11
+ icon_state = "browncorner"
},
-/obj/machinery/camera{
- c_tag = "Morgue External";
- dir = 8
+/area/hallway/primary/central/north)
+"mAr" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/area/hallway/primary/aft)
-"dwv" = (
-/obj/structure/morgue,
-/obj/effect/decal/warning_stripes/southwest,
-/obj/effect/landmark{
- name = "revenantspawn"
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"mAs" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
},
-/area/medical/morgue)
-"dww" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway North 1"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/medical/morgue)
-"dwx" = (
-/obj/structure/morgue,
-/obj/effect/decal/warning_stripes/south,
+/area/hallway/primary/central/north)
+"mAE" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/landmark{
- name = "revenantspawn"
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"mAF" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/north)
+"mAN" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/area/medical/morgue)
-"dwy" = (
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating,
+/area/security/prison/cell_block/A)
+"mAO" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/newscaster{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "whitepurple"
},
-/area/medical/morgue)
-"dwz" = (
-/obj/structure/morgue,
-/obj/effect/decal/warning_stripes/south,
-/obj/effect/landmark{
- name = "revenantspawn"
+/area/toxins/lab)
+"mAV" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
+/turf/simulated/floor/plating,
+/area/security/prison/cell_block/A)
+"mAZ" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "yellow"
},
-/area/medical/morgue)
-"dwA" = (
-/obj/structure/window/reinforced{
- dir = 8
+/area/engine/hardsuitstorage)
+"mBa" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/chair/stool,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/structure/window/reinforced,
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_y = 7
+/obj/effect/landmark/start{
+ name = "Chemist"
},
-/obj/item/pen,
/obj/structure/disposalpipe/segment,
-/obj/item/reagent_containers/spray/cleaner,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
- },
-/area/medical/morgue)
-"dwB" = (
-/obj/machinery/door/window/eastright{
- dir = 2;
- name = "Coroner";
- req_one_access_txt = "5;4"
+/turf/simulated/floor/engine,
+/area/medical/chemistry)
+"mBc" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -26
},
-/area/medical/morgue)
-"dwC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"mBj" = (
+/turf/simulated/floor/carpet,
+/area/maintenance/abandonedbar)
+"mBm" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/coffee,
/turf/simulated/floor/plasteel{
- dir = 8;
+ dir = 4;
icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ tag = "icon-whitehall (WEST)"
},
-/area/medical/medbay3)
-"dwD" = (
+/area/medical/medbay)
+"mBo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
initialize_directions = 11
},
-/obj/machinery/light{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/medbay2)
-"dwE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "neutralfull"
},
+/area/crew_quarters/fitness)
+"mBE" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating/airless,
+/area/toxins/test_area)
+"mBF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay2)
-"dwF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay2)
-"dwG" = (
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "dark"
},
-/area/medical/medbay3)
-"dwH" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/area/security/interrogation)
+"mBL" = (
+/obj/structure/table,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/obj/machinery/light,
+/area/security/processing)
+"mBR" = (
+/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
+ dir = 8;
+ icon_state = "darkred"
},
-/area/magistrateoffice)
-"dwI" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/area/security/warden)
+"mBV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/magistrateoffice)
-"dwJ" = (
-/obj/machinery/light/spot{
dir = 1;
- tag = "icon-tube1 (NORTH)"
+ icon_state = "whitepurple"
},
-/obj/effect/spawner/lootdrop/trade_sol/donksoft,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"dwK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/toxins/explab)
+"mCg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "dark"
},
-/area/medical/medbay3)
-"dwL" = (
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"dwN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/courtroom)
+"mCj" = (
+/obj/structure/chair{
+ dir = 8
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
-/area/hallway/primary/central/south)
-"dwO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/bookcase,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dwP" = (
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 4;
icon_state = "red"
},
-/area/maintenance/fsmaint)
-"dwR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/vending/clothing,
-/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
-"dwS" = (
-/obj/machinery/atmospherics/binary/valve,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "yellow"
- },
-/area/maintenance/electrical)
-"dwT" = (
-/obj/structure/bookcase/manuals/engineering,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dwV" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/sign/poster/contraband/rebels_unite{
- pixel_y = 32
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dwW" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood{
- icon_state = "wood-broken6";
- tag = "icon-wood-broken6"
+/area/security/processing)
+"mCs" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/maintenance/fsmaint)
-"dwX" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/wood,
-/area/maintenance/fsmaint)
-"dwY" = (
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "yellow"
- },
-/area/maintenance/electrical)
-"dwZ" = (
-/turf/simulated/floor/wood{
- icon_state = "wood-broken5";
- tag = "icon-wood-broken5"
+ icon_state = "white"
},
-/area/maintenance/fsmaint)
-"dxa" = (
-/obj/machinery/vending/snack,
-/turf/simulated/floor/wood,
-/area/maintenance/fsmaint)
-"dxb" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/area/medical/cryo)
+"mCB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/radio/intercom{
- pixel_x = -26;
- pixel_y = 26
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dxc" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dxd" = (
-/obj/structure/table/reinforced,
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/item/clothing/mask/gas,
-/obj/machinery/camera{
- c_tag = "Research Outpost Temporary Storage";
- network = list("Research Outpost")
+/obj/machinery/door/airlock/maintenance{
+ req_one_access_txt = "12;39"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 28
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dxe" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dxf" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"mCD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dxg" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/alarm{
+/turf/simulated/floor/plasteel{
dir = 8;
- pixel_x = 25
- },
-/obj/machinery/newscaster{
- pixel_y = 32
+ icon_state = "neutralcorner"
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dxh" = (
-/turf/simulated/wall/rust,
-/area/toxins/mixing)
-"dxj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/toxins/mixing)
-"dxk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/area/hallway/primary/aft)
+"mCK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"dxl" = (
-/obj/structure/table/reinforced,
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the test chamber.";
+/turf/simulated/floor/plasteel{
dir = 4;
- layer = 4;
- name = "Test Chamber Telescreen";
- network = list("Toxins")
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dxn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar/atrium)
-"dxo" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/wall/r_wall/coated,
-/area/toxins/storage)
-"dxp" = (
-/obj/item/grenade/clusterbuster/honk,
-/turf/simulated/floor/plating,
-/area/toxins/storage)
-"dxr" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ icon_state = "red"
},
-/obj/machinery/power/apc{
+/area/security/securehallway)
+"mCW" = (
+/turf/simulated/floor/plasteel{
dir = 1;
- name = "north bump";
- pixel_y = 24
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/obj/machinery/camera{
- c_tag = "Experimentation Lab Office";
- network = list("Research","SS13")
+/area/medical/medbay)
+"mDc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/telepad_cargo,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"dxs" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ icon_state = "2-4"
},
-/obj/machinery/power/apc{
+/turf/simulated/floor/plasteel{
dir = 8;
- name = "west bump";
- pixel_x = -24
+ icon_state = "neutralfull"
},
-/obj/machinery/computer/rdservercontrol,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/teleporter)
+"mDe" = (
+/turf/simulated/wall/r_wall,
+/area/engine/hardsuitstorage)
+"mDi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/toxins/server)
-"dxt" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/machinery/flasher{
+ desc = "A floor-mounted flashbulb device.";
+ id = "brigkpp";
+ layer = 5;
+ pixel_y = 55;
+ range = 3
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
+ },
+/area/security/brig)
+"mDj" = (
+/obj/structure/sign/science,
+/turf/simulated/wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"mDw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
dir = 4;
- on = 1
+ name = "Труба фильтрации"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Подаёт азот из атмосферки в систему охлаждения реактора, таким образом запитывая её хладагентом";
+ dir = 1;
+ name = "Труба подачи азота в реактор"
},
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "dark"
},
-/area/toxins/server)
-"dxu" = (
+/area/atmos)
+"mDD" = (
+/obj/structure/chair/office/dark,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/library/abandoned)
+"mDI" = (
+/obj/machinery/door/airlock/medical{
+ name = "Psych Office";
+ req_access_txt = "64"
+ },
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28;
- pixel_y = -28
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/toxins/server)
-"dxv" = (
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"mDK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/door/airlock/command{
- name = "Server Room";
- req_access = null;
- req_access_txt = "30"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/toxins/server)
-"dxw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hallway/primary/starboard/east)
+"mDL" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ dir = 1;
+ icon_state = "darkred"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dxx" = (
+/area/security/interrogation)
+"mDN" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ icon_state = "2-4"
},
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dxy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/area/security/prison/cell_block/A)
+"mDP" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"mDY" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- initialize_directions = 11
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dxz" = (
-/obj/structure/filingcabinet/chestdrawer,
+/area/hallway/primary/central/west)
+"mEt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
+ },
+/area/medical/medbay)
+"mEu" = (
+/obj/machinery/firealarm{
dir = 4;
- icon_state = "whitepurple"
+ pixel_x = 26
},
-/area/assembly/robotics)
-"dxA" = (
-/obj/structure/sign/greencross,
-/turf/simulated/wall/r_wall,
-/area/medical/cmo)
-"dxB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkred"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/security/interrogation)
+"mEE" = (
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research/glass{
- name = "Robotics Lab";
- req_access_txt = "29"
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
},
+/area/medical/research/shallway)
+"mEG" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
-"dxF" = (
-/obj/structure/disposalpipe/junction{
- dir = 1
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
+ dir = 4;
initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/primary/aft)
-"dxG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/gateway)
+"mEK" = (
+/obj/machinery/vending/cigarette/free,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/medical/morgue)
-"dxI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/security/brigstaff)
+"mEL" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitegreencorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/medical/virology)
+"mFb" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/ward)
+"mFd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/morgue)
-"dxJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
+/area/security/permabrig)
+"mFk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 4;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/medical/morgue)
-"dxK" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkredcorners"
+ },
+/area/security/podbay)
+"mFH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark";
+ temperature = 80
},
+/area/toxins/xenobiology)
+"mFN" = (
+/turf/simulated/wall,
+/area/maintenance/fsmaint)
+"mGq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
- },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/medical/morgue)
-"dxL" = (
-/obj/effect/landmark/start{
- name = "Coroner"
+/area/medical/medbay)
+"mGs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/engine/engineering)
+"mGt" = (
+/obj/structure/table/glass,
+/obj/item/storage/toolbox/surgery{
+ pixel_x = -1;
+ pixel_y = 2
},
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/morgue)
-"dxM" = (
-/obj/structure/table,
-/obj/item/clothing/suit/storage/hazardvest,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/gloves/color/black,
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
- },
-/area/maintenance/electrical)
-"dxN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/area/medical/surgery1)
+"mGx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/camera{
+ c_tag = "Minisat Hallway North";
+ network = list("Minisat","SS13")
},
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 9;
icon_state = "darkblue"
},
-/area/medical/morgue)
-"dxP" = (
+/area/turret_protected/aisat_interior)
+"mGL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dxQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/research/nhallway)
+"mHd" = (
+/turf/simulated/floor/engine/insulated/vacuum,
+/area/atmos)
+"mHl" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/crew_quarters/courtroom)
+"mHs" = (
+/obj/structure/chair{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/checkpoint)
+"mHJ" = (
+/obj/machinery/computer/aiupload,
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_y = -21
},
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
+"mHX" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
- },
-/area/medical/morgue)
-"dxR" = (
-/obj/machinery/door/airlock/medical{
- name = "Morgue";
- req_access_txt = "6"
+ icon_state = "whitepurplecorner"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/research/nhallway)
+"mIg" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "rdprivacy";
+ name = "Research Director Office Shutters";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating,
+/area/crew_quarters/hor)
+"mIh" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Gas Mix Tank";
+ network = list("SS13","Engineering")
},
-/obj/machinery/door/firedoor,
+/turf/simulated/floor/engine/insulated/vacuum,
+/area/atmos)
+"mIk" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/morgue)
-"dxS" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/area/security/main)
+"mIO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"mIQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "yellow"
},
-/area/medical/medbay2)
-"dxT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/storage/primary)
+"mIR" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "SecPilotPriv"
},
+/turf/simulated/floor/plating,
+/area/security/podbay)
+"mIV" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/machinery/hologram/holopad,
-/obj/structure/disposalpipe/junction{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- tag = "icon-pipe-j1 (EAST)"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ initialize_directions = 11
},
-/area/medical/medbay2)
-"dxV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/central/north)
-"dxX" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
+/area/crew_quarters/fitness)
+"mIY" = (
+/obj/structure/rack,
+/obj/item/taperecorder,
+/obj/item/storage/briefcase,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-8"
},
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"mIZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "purplefull"
},
-/area/medical/medbay3)
-"dxZ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/hallway/primary/aft)
+"mJu" = (
+/obj/machinery/atmospherics/unary/outlet_injector/on{
+ dir = 4;
+ frequency = 1441;
+ id = "mix_in"
},
+/turf/simulated/floor/engine/insulated/vacuum,
+/area/atmos)
+"mJv" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/library/abandoned)
+"mJH" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "yellow"
},
-/area/medical/medbay3)
-"dya" = (
-/obj/machinery/light{
+/area/storage/primary)
+"mJJ" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
+ },
+/area/hallway/primary/aft)
+"mJK" = (
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (SOUTHWEST)"
+ },
+/area/medical/sleeper)
+"mJO" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/genetics_cloning)
+"mJU" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood,
+/area/library/abandoned)
+"mJY" = (
+/obj/structure/grille,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
+/turf/simulated/wall/r_wall,
+/area/atmos)
+"mKb" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"dyb" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dyc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dyd" = (
-/obj/structure/table/wood,
-/obj/item/clothing/head/ushanka,
+/area/medical/medbay2)
+"mKg" = (
/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellow"
+ },
+/area/storage/primary)
+"mKr" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 1;
+ name = "Труба дыхательной смеси"
+ },
+/obj/machinery/atmospherics/binary/pump{
+ desc = "Отправляет смесь из трубы в хранилище для неё";
dir = 8;
- icon_state = "red"
+ name = "Смесь в хранилище";
+ on = 1
},
-/area/maintenance/fsmaint)
-"dye" = (
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ dir = 9;
+ icon_state = "green"
},
-/area/maintenance/fsmaint)
-"dyf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 8
+/area/atmos)
+"mKu" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "yellow"
},
-/obj/machinery/vending/autodrobe,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dyg" = (
-/obj/machinery/light/small{
- dir = 8
+/area/storage/primary)
+"mKv" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 4;
+ name = "Труба смешивания"
},
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 1;
+ name = "Труба фильтрации"
},
-/area/maintenance/fsmaint)
-"dyk" = (
-/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "caution"
},
-/area/maintenance/fsmaint)
-"dym" = (
+/area/atmos)
+"mKN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/light/small{
- dir = 8
- },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dyn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/maintenance/asmaint2)
+"mKO" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/belt/utility,
+/obj/item/wrench,
+/obj/item/crowbar,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/atmos)
+"mKZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ icon_state = "purplefull"
},
-/area/hallway/secondary/entry)
-"dyo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/research/nhallway)
+"mLo" = (
+/obj/item/reagent_containers/glass/bucket,
+/obj/structure/sink{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "darkred"
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -28
+/area/security/processing)
+"mLx" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/maintenance/gambling_den)
+"mLE" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/secondary/entry)
-"dyp" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dyq" = (
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/light/small{
+/area/hallway/primary/central/nw)
+"mLI" = (
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"mLJ" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/chair{
dir = 1
},
-/obj/item/radio/intercom{
- pixel_y = 24
- },
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dyr" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
+/obj/structure/disposalpipe/junction,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ dir = 0;
+ icon_state = "green"
},
-/area/toxins/mixing)
-"dys" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
+/area/hallway/secondary/exit)
+"mLS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"mMd" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ icon_state = "neutralcorner"
},
-/area/toxins/mixing)
-"dyt" = (
-/obj/machinery/atmospherics/trinary/filter{
+/area/hallway/primary/central/nw)
+"mMf" = (
+/obj/structure/chair{
dir = 8
},
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/toxins/mixing)
-"dyu" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
- },
-/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = -4
+ icon_state = "white"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+/area/medical/research/nhallway)
+"mMg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/area/toxins/mixing)
-"dyv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/light/small{
- dir = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/camera{
- c_tag = "Research Toxins Maintance Access";
- network = list("Research","SS13")
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dyw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/toxins/mixing)
-"dyx" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/light/small{
- dir = 1
+ icon_state = "neutralcorner"
},
-/obj/item/clipboard,
-/obj/item/toy/figure/scientist,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/area/crew_quarters/locker)
+"mMi" = (
+/obj/machinery/computer/security{
+ network = list("SS13","Mining Outpost")
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "neutral"
- },
-/area/toxins/mixing)
-"dyy" = (
-/obj/machinery/driver_button{
- id_tag = "toxinsdriver";
- pixel_x = -26
+ dir = 10;
+ icon_state = "darkred"
},
-/obj/structure/chair/office/dark{
- dir = 8
+/area/security/warden)
+"mMo" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dyB" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/toxins/storage)
+"mMq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ req_access_txt = "19"
},
-/area/toxins/mixing)
-"dyC" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 8
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
},
-/obj/structure/window/plasmareinforced,
-/obj/structure/window/plasmareinforced{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
},
-/turf/simulated/floor/plating,
-/area/toxins/storage)
-"dyD" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced,
-/obj/structure/window/plasmareinforced{
- dir = 1
+/area/bridge)
+"mMr" = (
+/obj/structure/table,
+/obj/machinery/light,
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/item/clothing/mask/gas,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
},
-/turf/simulated/floor/plating,
-/area/toxins/storage)
-"dyE" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"mMz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/window/plasmareinforced,
-/obj/structure/window/plasmareinforced{
- dir = 1
+/obj/effect/landmark/start{
+ name = "Cyborg"
},
-/turf/simulated/floor/plating,
-/area/toxins/storage)
-"dyF" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/wall/r_wall,
-/area/toxins/storage)
-"dyG" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/bombcloset,
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"mME" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "cargodelivery";
+ name = "deliver conveyor";
+ pixel_x = -10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/effect/decal/warning_stripes/arrow,
+/obj/effect/decal/warning_stripes/yellow/partial,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/delivery)
+"mMH" = (
+/obj/structure/sign/poster/official/work_for_a_future{
+ pixel_x = 32
},
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"mMQ" = (
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "neutral"
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/bridge)
+"mNe" = (
+/obj/machinery/door/airlock/command{
+ name = "Head of Security";
+ req_access_txt = "58"
},
-/area/toxins/mixing)
-"dyH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
},
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dyI" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/toxins/server)
-"dyJ" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Server Room";
- req_access_txt = "30"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/toxins/server)
-"dyK" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/wood,
+/area/security/hos)
+"mNi" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/floor/plating,
-/area/toxins/server)
-"dyL" = (
+/area/shuttle/administration)
+"mNo" = (
+/obj/machinery/portable_atmospherics/canister/sleeping_agent,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"mNq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/wood,
+/obj/item/storage/pill_bottle/dice,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "grimy"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dyM" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple"
+/area/library)
+"mNA" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
},
-/area/assembly/robotics)
-"dyO" = (
-/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
-"dyP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=1";
- location = "Robotics"
+/area/atmos)
+"mNY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/plasticflaps{
- opacity = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
-"dyQ" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/assembly/robotics)
-"dyR" = (
-/obj/effect/decal/warning_stripes/northwestcorner,
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "purplefull"
},
-/area/assembly/robotics)
-"dyT" = (
-/obj/machinery/computer/rdconsole/robotics,
-/obj/machinery/requests_console{
- department = "Robotics";
- departmentType = 2;
- name = "Robotics Requests Console";
- pixel_x = 30
+/area/medical/research/nhallway)
+"mOb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/assembly/robotics)
-"dyU" = (
-/obj/structure/morgue,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/effect/landmark{
- name = "revenantspawn"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/radio/intercom{
- pixel_x = -28
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkblue"
+ icon_state = "neutralfull"
},
-/area/medical/morgue)
-"dyV" = (
-/obj/effect/decal/cleanable/blood/xeno,
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"dyX" = (
-/obj/effect/decal/warning_stripes/northeast,
+/area/hallway/primary/central/sw)
+"mOq" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "0-2"
},
-/area/medical/morgue)
-"dyY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/morgue)
-"dyZ" = (
-/obj/structure/morgue,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/effect/landmark{
- name = "revenantspawn"
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "HoSPriv";
+ name = "HoS Office Privacy Shutters"
},
-/area/medical/morgue)
-"dza" = (
-/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"dzb" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/security/hos)
+"mOw" = (
+/obj/machinery/photocopier,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
},
-/area/medical/morgue)
-"dzc" = (
-/obj/structure/morgue,
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/landmark{
- name = "revenantspawn"
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/wood,
+/area/ntrep)
+"mPs" = (
+/obj/machinery/power/rad_collector{
+ anchored = 1
},
-/area/medical/morgue)
-"dzd" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/medical/morgue)
-"dze" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = "MedbayFoyerPort";
- name = "Medbay Entrance";
- req_access_txt = "5"
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/door/firedoor,
-/obj/effect/mapping_helpers/airlock/unres{
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"mPC" = (
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 27
},
+/obj/structure/table/reinforced,
+/obj/item/t_scanner,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "dark"
},
-/area/medical/sleeper)
-"dzf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/engine/hardsuitstorage)
+"mPE" = (
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"mPJ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
},
-/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/bridge)
+"mPK" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
+ dir = 1;
+ icon_state = "yellowcorner"
},
-/area/hallway/primary/central/south)
-"dzh" = (
+/area/hallway/primary/port/west)
+"mPL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- name = "Chemistry Junction";
- sortType = 11
- },
-/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
+ dir = 9
},
-/area/hallway/primary/central/south)
-"dzi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dzj" = (
-/obj/machinery/newscaster{
- pixel_y = -32
- },
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/britcup,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/medbay3)
-"dzk" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = -32
+ icon_state = "darkredcorners"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/evidence)
+"mQn" = (
+/obj/machinery/vending/medical,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/area/medical/medbay3)
-"dzl" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-22";
- tag = "icon-plant-22"
+/obj/item/radio/intercom{
+ pixel_x = 28;
+ pixel_y = -28
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
+ dir = 6;
icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ tag = "icon-whiteblue (SOUTHEAST)"
},
-/area/medical/medbay3)
-"dzm" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 27
+/area/medical/reception)
+"mQp" = (
+/obj/effect/landmark/start{
+ name = "Station Engineer"
},
-/obj/structure/cable,
-/obj/structure/sign/poster/official/random{
- pixel_y = -32
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"dzn" = (
+/area/engine/engineering)
+"mQI" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 1
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"mQL" = (
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 2;
+ height = 18;
+ id = "skipjack_sw";
+ name = "southwest of SS13";
+ width = 19
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dzo" = (
-/obj/machinery/vending/sovietsoda,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dzp" = (
-/obj/structure/table/wood,
-/obj/item/clothing/under/soviet,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+/turf/space,
+/area/space)
+"mQO" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/maintenance/fsmaint)
-"dzq" = (
-/obj/structure/sign/poster/contraband/communist_state{
- pixel_x = 33
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno1";
+ name = "Creature Cell #1";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dzr" = (
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+/area/toxins/xenobiology)
+"mRg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/area/maintenance/fsmaint)
-"dzs" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/carpet,
-/area/maintenance/fsmaint)
-"dzt" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/grown/redbeet{
- pixel_y = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/turf/simulated/floor/carpet,
-/area/maintenance/fsmaint)
-"dzu" = (
-/obj/structure/table/wood,
-/obj/item/book/manual{
- attack_verb = list("nationalized","equalized","collectivized");
- damtype = "burn";
- desc = "A book, that descripe path to building communism. Still actual in 26XX. It has bear sketch on cover";
- force = 5;
- name = "Communist party manifesto"
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/area/maintenance/fsmaint)
-"dzv" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry/louge)
-"dzw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dzx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/securehallway)
+"mRi" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dzy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/airlock/research{
- name = "Toxin Test Firing Range";
- req_access_txt = "47"
- },
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dzz" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/item/radio/beacon,
-/obj/effect/landmark{
- name = "blobstart"
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dzA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/area/toxins/mixing)
-"dzB" = (
+/obj/structure/table/wood,
+/obj/item/paper/deltainfo,
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"mRE" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"mRF" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 9
},
-/obj/machinery/door/airlock/research{
- name = "Toxin Mixing";
- req_access_txt = "47"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dzC" = (
+/area/crew_quarters/locker)
+"mRH" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/checkpoint)
+"mRJ" = (
+/obj/machinery/computer/crew,
+/obj/machinery/ai_status_display{
+ pixel_x = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+ dir = 9;
+ icon_state = "blue"
},
-/area/toxins/mixing)
-"dzD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/bridge/checkpoint/south)
+"mSc" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
+/turf/simulated/floor/plating,
+/area/security/armoury)
+"mSh" = (
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/power/apc{
+ cell_type = 5000;
dir = 4;
- icon_state = "neutral"
- },
-/area/toxins/mixing)
-"dzE" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -32;
- pixel_y = -32
+ name = "east bump";
+ pixel_x = 24
},
-/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/doppler_array{
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dzH" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 5
+/area/medical/research/shallway)
+"mSn" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dzI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dzJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/computer/area_atmos,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dzK" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/portable_atmospherics/pump,
-/obj/machinery/alarm{
- pixel_y = 22
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellow"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dzL" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+/area/hallway/primary/port/west)
+"mSo" = (
+/obj/structure/closet/firecloset,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"mSE" = (
+/obj/structure/table/wood,
+/obj/machinery/status_display{
+ pixel_y = 32
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/portable_atmospherics/pump,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dzM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/chapel/main)
+"mSG" = (
+/obj/structure/transit_tube{
+ icon_state = "W-SE";
+ tag = "icon-W-SE"
},
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+/turf/space,
+/area/space/nearstation)
+"mSR" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/toxins/mixing)
-"dzN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plating,
+/area/crew_quarters/sleep)
+"mTh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Toxins Storage";
- req_access_txt = "8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dzO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dzP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- external_pressure_bound = 140;
- external_pressure_bound_default = 140;
- name = "server vent";
- on = 1;
- pressure_checks = 0
+ icon_state = "4-8"
},
-/turf/simulated/floor/bluegrid{
- icon_state = "gcircuit";
- name = "Mainframe Floor";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/area/toxins/server)
-"dzQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/bluegrid{
- icon_state = "dark";
- name = "Mainframe Floor";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/area/crew_quarters/locker)
+"mTu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/toxins/server)
-"dzR" = (
-/obj/structure/window/reinforced,
-/obj/structure/rack,
-/obj/item/tank/jetpack/carbondioxide{
- pixel_x = -4;
+/obj/structure/chair/office/light{
+ dir = 1;
pixel_y = 3
},
-/obj/item/tank/jetpack/carbondioxide,
-/obj/item/tank/jetpack/carbondioxide{
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/machinery/door/window/southright{
- dir = 4;
- name = "EVA Equipment"
+/obj/effect/landmark/start{
+ name = "Research Director"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/ai_monitored/storage/eva)
-"dzS" = (
-/obj/structure/table,
-/obj/machinery/camera{
- c_tag = "Research Director's Office";
- dir = 8;
- network = list("Research","SS13")
+ icon_state = "whitepurplecorner"
},
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+/area/crew_quarters/hor)
+"mTB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/cartridge/signal/toxins{
- pixel_x = -6
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/cartridge/signal/toxins{
- pixel_x = 6
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/obj/item/cartridge/signal/toxins{
- pixel_y = 6
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"mTD" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "blue"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dzT" = (
+/area/bridge/checkpoint/south)
+"mTO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "2-4"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dzU" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/area/medical/sleeper)
+"mTP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Prisoner Processing";
+ req_access_txt = "63"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"dzV" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 8
+ dir = 4;
+ icon_state = "red"
},
-/obj/item/stack/sheet/plasteel{
- amount = 10
+/area/security/processing)
+"mUc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/item/stack/cable_coil,
-/obj/item/multitool{
- pixel_x = 3
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (NORTHEAST)"
},
-/obj/item/flash,
-/obj/item/flash,
-/obj/item/flash,
-/obj/item/flash,
-/obj/item/flash,
-/obj/item/flash,
-/obj/structure/sign/poster/random{
- pixel_x = -32
+/area/medical/virology)
+"mUg" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/item/clothing/suit/fire/firefighter,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno2";
+ name = "Creature Cell #4";
+ opacity = 0
},
-/area/assembly/robotics)
-"dzW" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"mUi" = (
+/obj/machinery/photocopier,
+/obj/machinery/newscaster{
+ pixel_x = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"mUu" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"mUz" = (
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "grimy"
+ },
+/area/bridge)
+"mUF" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/wall/r_wall,
+/area/toxins/explab)
+"mUQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/assembly/robotics)
-"dzX" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "red"
},
-/area/assembly/robotics)
-"dzY" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/surgery{
- pixel_y = 2
+/area/security/brigstaff)
+"mUS" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/structure/sink{
- dir = 1
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/status_display{
- pixel_y = -32
+/area/bridge)
+"mUT" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"mUY" = (
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"mVH" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/area/assembly/robotics)
-"dzZ" = (
-/obj/machinery/optable{
- name = "Robotics Operating Table"
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"mVO" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/machinery/light,
-/obj/item/radio/intercom{
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/library)
+"mVY" = (
+/obj/machinery/light{
dir = 1;
- pixel_y = -28
+ on = 1
},
+/obj/structure/chair/comfy/shuttle,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ dir = 1;
+ icon_state = "bot"
},
-/area/assembly/robotics)
-"dAa" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/robot_parts/robot_suit,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
-"dAb" = (
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"mWo" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/assembly/robotics)
-"dAc" = (
-/obj/structure/morgue,
/obj/effect/decal/warning_stripes/southwest,
-/obj/effect/landmark{
- name = "revenantspawn"
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"mWC" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
+/area/toxins/mixing)
+"mWM" = (
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "yellow"
},
-/area/medical/morgue)
-"dAf" = (
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -28
+/area/maintenance/electrical)
+"mWP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"mWR" = (
+/obj/machinery/dna_scannernew,
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/medical/morgue)
-"dAg" = (
+/area/medical/genetics_cloning)
+"mWV" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "Singularity";
+ layer = 2.7;
+ name = "Singularity Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"mWY" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "0-8"
},
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "HoSPriv";
+ name = "HoS Office Privacy Shutters"
},
-/obj/machinery/disposal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/medical/cmo)
-"dAi" = (
-/obj/structure/morgue,
-/obj/effect/decal/warning_stripes/south,
-/obj/effect/landmark{
- name = "revenantspawn"
+/turf/simulated/floor/plating,
+/area/security/hos)
+"mXt" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"mXF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/medical/morgue)
-"dAj" = (
-/obj/effect/decal/warning_stripes/south,
/obj/machinery/light/small,
-/obj/structure/sign/poster/official/random{
- pixel_y = -32
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"mYd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ tag = "icon-pipe-j1 (EAST)"
},
-/area/medical/morgue)
-"dAk" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/medical/morgue)
-"dAl" = (
-/obj/structure/sink{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"mYf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ req_access_txt = "19"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 8;
+ icon_state = "vault"
},
-/area/medical/sleeper)
-"dAm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
+/area/bridge)
+"mYk" = (
+/obj/effect/landmark{
+ name = "revenantspawn"
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "dark"
},
-/area/medical/medbay2)
-"dAn" = (
+/area/maintenance/gambling_den)
+"mYv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/wall,
+/area/crew_quarters/fitness)
+"mYA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 6;
+ icon_state = "darkblue"
},
-/area/medical/genetics_cloning)
-"dAo" = (
+/area/turret_protected/ai)
+"mYX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/medical/morgue)
-"dAp" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/wall/r_wall,
-/area/medical/chemistry)
-"dAq" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/medical/ward)
-"dAr" = (
-/obj/structure/table/wood,
-/obj/machinery/light,
-/obj/structure/sign/poster/official/random{
- pixel_y = -32
+/area/ai_monitored/storage/eva)
+"mZc" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/item/toy/plushie/orange_cat{
- pixel_x = 3;
- pixel_y = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/civilian/pet_store)
-"dAs" = (
-/obj/structure/bed,
-/obj/structure/curtain/open,
-/obj/item/bedsheet/medical{
- level = 1.4
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"mZk" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/ward)
-"dAt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/bridge/checkpoint/south)
+"mZA" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/medbay3)
-"dAu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/toxins/explab)
+"mZI" = (
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xenosecure";
+ name = "Secure Creature Cell";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced/plasma,
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"mZK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 4;
+ icon_state = "red"
},
-/area/medical/biostorage)
-"dAv" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/area/security/reception)
+"mZM" = (
+/obj/structure/table/reinforced,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/item/stock_parts/matter_bin{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/micro_laser,
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"nab" = (
+/obj/structure/sign/barber{
+ pixel_x = -21;
+ pixel_y = 32
},
-/area/medical/biostorage)
-"dAy" = (
-/obj/effect/decal/cleanable/dirt,
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dAz" = (
-/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/maintenance/fsmaint)
-"dAA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/obj/structure/rack{
+/area/bridge/vip)
+"naf" = (
+/obj/effect/decal/cleanable/vomit,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"nai" = (
+/obj/structure/chair/comfy/shuttle,
+/obj/machinery/light/spot{
dir = 8;
- layer = 2.9
+ tag = "icon-tube1 (WEST)"
},
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = -30
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dAB" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/barricade/wooden,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 1;
+ icon_state = "bot"
},
-/area/maintenance/fsmaint)
-"dAC" = (
-/obj/structure/bookcase,
-/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"nak" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/maintenance/fsmaint)
-"dAE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/whiskey{
- pixel_x = -2;
- pixel_y = 13
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ icon_state = "pipe-j2s";
+ name = "Captain Office";
+ sortType = 18
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dAF" = (
-/obj/structure/sign/poster/contraband/missing_gloves{
- pixel_x = 32
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dAG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hallway/primary/central/ne)
+"nan" = (
+/obj/structure/reagent_dispensers/oil,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurple"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/area/assembly/robotics)
+"naq" = (
+/obj/effect/landmark/start{
+ name = "Scientist"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dAH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/secondary/entry/louge)
-"dAI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/toxins/lab)
+"naC" = (
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "sw_maint_airlock";
+ pixel_y = 25;
+ tag_airpump = "sw_maint_pump";
+ tag_chamber_sensor = "sw_maint_sensor";
+ tag_exterior_door = "sw_maint_outer";
+ tag_interior_door = "sw_maint_inner"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/obj/machinery/airlock_sensor{
+ id_tag = "sw_maint_sensor";
+ pixel_y = 33
},
-/obj/effect/decal/warning_stripes/southeastcorner,
-/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dAJ" = (
-/obj/structure/sign/vacuum{
- pixel_y = -32
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "sw_maint_pump"
},
-/obj/machinery/light,
-/obj/effect/decal/warning_stripes/southeast,
-/obj/structure/closet/bombcloset,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dAK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"naD" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"naE" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -28
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin3)
+"naI" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/l3closet/scientist,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dAL" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"naQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dAM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dAN" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "darkred"
+ },
+/area/security/prison/cell_block/A)
+"naR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/southwest,
-/obj/item/radio/intercom{
- pixel_y = -28
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dAO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/wall/r_wall,
-/area/toxins/mixing)
-"dAP" = (
+/area/toxins/lab)
+"nbb" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "HoSPriv";
+ name = "HoS Office Privacy Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/security/hos)
+"nbr" = (
+/obj/item/grenade/clusterbuster/honk,
+/turf/simulated/floor/plating,
+/area/toxins/storage)
+"nbx" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/southeast,
-/obj/structure/closet/walllocker/emerglocker/north{
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dAQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ icon_state = "white"
},
-/area/toxins/mixing)
-"dAR" = (
-/obj/structure/rack,
-/obj/item/extinguisher,
-/obj/item/clothing/mask/gas,
-/obj/item/grenade/chem_grenade/firefighting,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/light/small,
+/area/medical/research/shallway)
+"nbA" = (
+/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "neutral"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/toxins/mixing)
-"dAU" = (
-/obj/effect/decal/warning_stripes/arrow,
-/obj/structure/disposaloutlet,
-/obj/structure/window/plasmareinforced{
- dir = 1
+/area/medical/reception)
+"nbP" = (
+/obj/structure/urinal{
+ pixel_y = 28
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"nbT" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"dAV" = (
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"ncb" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
dir = 8;
- on = 1
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/south,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dAW" = (
+/area/hallway/primary/central/se)
+"ncC" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/lobby)
+"ncP" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/light{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/vending/wallmed{
- pixel_x = 26
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dAX" = (
-/obj/structure/chair/stool,
/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dAY" = (
-/turf/simulated/wall,
-/area/hallway/secondary/entry/louge)
-"dAZ" = (
-/obj/machinery/vending/cigarette,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+/area/maintenance/fpmaint2)
+"ncZ" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/area/quartermaster/storage)
-"dBa" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/bombcloset,
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/sw)
+"ndm" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ dir = 8;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner (WEST)"
},
-/area/toxins/mixing)
-"dBb" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/light/small,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "neutral"
+/area/medical/reception)
+"ndo" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"ndq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/toxins/mixing)
-"dBc" = (
-/obj/machinery/camera{
- c_tag = "Research Toxins Storage Room";
- dir = 4;
- network = list("Research","SS13");
- pixel_y = -22
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"ndu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/portable_atmospherics/scrubber/huge,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dBd" = (
-/obj/machinery/r_n_d/server/core,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/bluegrid{
- icon_state = "gcircuit";
- name = "Mainframe Floor";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
},
-/area/toxins/server)
-"dBe" = (
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/manifold/hidden,
-/turf/simulated/floor/bluegrid{
- icon_state = "dark";
- name = "Mainframe Floor";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/toxins/server)
-"dBf" = (
-/obj/machinery/r_n_d/server/robotics,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"ndJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/bluegrid{
- icon_state = "gcircuit";
- name = "Mainframe Floor";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/toxins/server)
-"dBg" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/sign/poster/random{
- pixel_x = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"ndK" = (
+/obj/machinery/sleeper/upgraded{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"ndS" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central/ne)
-"dBh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/research{
- name = "Research Break Room";
- req_access_txt = "47"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"dBi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+"ndY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 5
},
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dBj" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"nee" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/obj/item/pen,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/hallway/primary/aft)
-"dBk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/disposalpipe/junction{
+/obj/structure/window/reinforced{
dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ layer = 2.9
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/sleeper)
-"dBl" = (
-/obj/structure/table,
-/obj/item/storage/box/bodybags{
- pixel_x = 8
- },
-/obj/item/storage/box/bodybags{
- pixel_x = 8;
- pixel_y = 4
+ icon_state = "carpet"
},
-/obj/item/storage/box/masks{
- pixel_x = -6
+/area/crew_quarters/courtroom)
+"neD" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ dir = 4;
+ name = "Труба на фильтрацию"
},
-/obj/item/storage/box/masks{
- pixel_x = -6;
- pixel_y = 4
+/obj/machinery/camera{
+ c_tag = "Atmospherics Distribution";
+ dir = 8;
+ network = list("SS13","Engineering")
},
-/obj/item/storage/box/patch_packs{
- pixel_x = -7;
- pixel_y = 8
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "caution"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/atmos)
+"neN" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
},
-/obj/item/storage/box/patch_packs{
- pixel_x = 8;
- pixel_y = 8
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 26
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHEAST)"
+ dir = 1;
+ icon_state = "bot"
},
-/area/medical/biostorage)
-"dBm" = (
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"neW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+ icon_state = "1-2"
},
-/obj/machinery/door/airlock/maintenance{
- name = "Medbay Maintenance";
- req_access_txt = "5"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/asmaint)
-"dBn" = (
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"nfa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/greencross,
-/turf/simulated/wall,
-/area/medical/medbay3)
-"dBo" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Virology";
- req_access_txt = "39"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
},
-/area/medical/medbay3)
-"dBp" = (
-/obj/structure/table/wood,
-/obj/machinery/recharger{
- pixel_y = 3
+/area/medical/sleeper)
+"nfb" = (
+/obj/machinery/computer/secure_data,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkred"
},
-/turf/simulated/floor/carpet,
-/area/maintenance/fsmaint)
-"dBq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/area/bridge)
+"nfd" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dBr" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/maintenance/fsmaint)
-"dBs" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/vodka{
- pixel_x = 5;
- pixel_y = 15
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
- pixel_x = -8;
- pixel_y = -6
+/area/chapel/main)
+"nfm" = (
+/obj/machinery/light/small,
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = -32
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dBt" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
- pixel_x = 11;
- pixel_y = 13
- },
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
- pixel_x = -4
+/area/maintenance/gambling_den)
+"nft" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/simulated/floor/carpet,
-/area/maintenance/fsmaint)
-"dBu" = (
-/obj/structure/table/wood,
-/obj/item/picket_sign,
-/turf/simulated/floor/carpet,
-/area/maintenance/fsmaint)
-"dBv" = (
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 8
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
},
-/obj/structure/table/wood,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 7
+/area/crew_quarters/fitness)
+"nfv" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/item/pen{
- pixel_x = 4;
- pixel_y = 4
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/maintenance/fsmaint)
-"dBw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dBx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dBy" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dBz" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"nfN" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/turf/simulated/floor/plating,
+/area/security/customs)
+"nfO" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
},
-/obj/machinery/portable_atmospherics/scrubber/huge,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/camera{
- c_tag = "Toxins Gas Storage";
- dir = 8;
- network = list("Research","SS13")
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dBA" = (
-/turf/simulated/wall,
-/area/toxins/mixing)
-"dBB" = (
-/obj/machinery/door/window/southright{
+/turf/simulated/floor/plasteel{
dir = 1;
- name = "Toxins Launcher";
- req_access_txt = "7"
+ icon_state = "whitepurple"
},
-/obj/machinery/door/window/southright{
- name = "Toxins Launcher";
- req_access_txt = "7"
+/area/medical/research/nhallway)
+"nfX" = (
+/obj/machinery/alarm{
+ pixel_y = 23
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"dBC" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dBD" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
-"dBE" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"nfZ" = (
+/obj/machinery/door/airlock/public/glass{
+ id_tag = "Perma12"
},
-/area/hallway/secondary/entry/additional)
-"dBF" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-4"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaCellsLockdown";
+ name = "Perma Cells Lockdown"
},
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "dark"
},
-/area/engine/controlroom)
-"dBG" = (
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/plating,
-/area/maintenance/storage{
- name = "Perma Maintenance"
- })
-"dBH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/permabrig)
+"ngy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkblue"
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"dBI" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
+/area/turret_protected/ai)
+"nhd" = (
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "s_docking_airlock"
},
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/radio/intercom{
- pixel_x = 28
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/shuttle/arrival/station)
+"nhs" = (
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave{
+ pixel_x = -1;
+ pixel_y = 7
},
-/turf/simulated/floor/wood,
-/area/civilian/pet_store)
-"dBJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1
},
+/area/security/brigstaff)
+"nhC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"dBK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
+/area/crew_quarters/fitness)
+"nhD" = (
+/turf/simulated/wall,
+/area/maintenance/maintcentral)
+"nhJ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
+/turf/simulated/wall,
/area/maintenance/starboard{
name = "Engineering Maintenance"
})
-"dBL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dBM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"nhY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dBN" = (
-/obj/item/multitool,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkredcorners"
},
-/turf/simulated/floor/plating,
-/area/maintenance/storage{
- name = "Perma Maintenance"
- })
-"dBO" = (
-/obj/machinery/r_n_d/circuit_imprinter,
-/obj/item/reagent_containers/glass/beaker/sulphuric,
+/area/security/securearmoury)
+"nig" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/assembly/robotics)
-"dBP" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/door/airlock/maintenance{
+ name = "Break Room Maintenance";
+ req_access_txt = "47"
},
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"niq" = (
+/obj/machinery/computer/rdservercontrol,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/hallway/primary/aft)
-"dBQ" = (
+/area/toxins/server)
+"niu" = (
+/obj/machinery/light_switch{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/library)
+"nix" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "SKPP"
},
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "eslock";
+ name = "Escape Shuttle Lockdown"
+ },
+/turf/simulated/floor/plating,
+/area/bridge/checkpoint/south)
+"niI" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "redcorner"
},
+/area/security/processing)
+"nji" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/wood,
+/obj/item/paicard,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
-/area/hallway/primary/aft)
-"dBR" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"dBS" = (
-/obj/machinery/door/airlock/medical{
- name = "Morgue";
- req_access_txt = "6"
+/area/library)
+"njj" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/mug/hos,
+/obj/item/spacepod_key{
+ id = 100000
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/firealarm{
+ pixel_y = -26
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/obj/item/paper/safe_code{
+ owner = "hos"
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/obj/structure/sign/poster/secret/yug0{
+ pixel_x = 32
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/lighter/zippo/hos,
+/turf/simulated/floor/wood,
+/area/security/hos)
+"njk" = (
+/obj/machinery/vending/security,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1
},
-/area/medical/morgue)
-"dBT" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/grown/redbeet,
-/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+/area/security/customs)
+"njq" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/hologram/holopad,
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
},
-/area/maintenance/fsmaint)
-"dBU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/cryo)
+"njv" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/light,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"njy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
-"dBV" = (
+"njF" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dBX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/area/medical/cryo)
+"njG" = (
+/obj/machinery/door_control{
+ id = "paramedic";
+ name = "Garage Door Control";
+ pixel_y = 24;
+ req_access_txt = "66"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id_tag = "paramedic";
+ name = "Paramedic Garage"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dBZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/medical/paramedic)
+"njM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/effect/spawner/random_spawners/oil_maybe,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dCa" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dCb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/maintenance/fpmaint2)
+"njP" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
},
-/obj/structure/girder,
+/area/medical/research{
+ name = "Research Division"
+ })
+"nkf" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dCc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
-/obj/effect/decal/cleanable/dirt,
+/area/engine/engineering)
+"nkm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dCd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Customs";
+ req_access_txt = "63"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dCe" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dCg" = (
+/area/security/customs)
+"nkv" = (
+/obj/structure/chair,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 6
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dCh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light/small{
- dir = 1
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
+ dir = 9;
+ icon_state = "red"
},
-/area/medical/medbay3)
-"dCi" = (
+/area/security/checkpoint)
+"nkH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreen"
- },
-/area/medical/medbay3)
-"dCj" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light/small{
- dir = 1
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/medical/medbay3)
-"dCm" = (
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"nkJ" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/paper_bin,
+/obj/item/pen,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/light/small{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dCn" = (
-/obj/structure/closet/wardrobe/white,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
},
+/area/toxins/mixing)
+"nkN" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner (WEST)"
},
-/area/medical/ward)
-"dCo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/medical/medbay)
+"nlf" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/structure/table,
+/obj/machinery/smartfridge/disks,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dCp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/hydroponics)
+"nlk" = (
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dCr" = (
-/obj/structure/barricade/wooden,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dCt" = (
-/obj/structure/table/wood,
-/obj/item/toy/russian_revolver,
-/turf/simulated/floor/carpet,
-/area/maintenance/fsmaint)
-"dCu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/stool,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dCv" = (
-/turf/simulated/floor/carpet,
-/area/maintenance/fsmaint)
-"dCx" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/camera{
+ armor = list("melee" = 50, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 100, "bio" = 0, "rad" = 0, "fire" = 90, "acid" = 50);
+ c_tag = "Research Toxins Test Chamber West";
+ dir = 4;
+ network = list("Toxins","Research","SS13")
},
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/light,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"dCy" = (
-/obj/structure/table,
-/obj/item/clothing/under/color/orange/prison,
-/obj/item/clothing/shoes/orange,
-/turf/simulated/floor/plating,
-/area/maintenance/storage{
- name = "Perma Maintenance"
- })
-"dCz" = (
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"nlq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/storage{
- name = "Perma Maintenance"
- })
-"dCA" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plating,
-/area/maintenance/storage{
- name = "Perma Maintenance"
- })
-"dCB" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating/airless,
-/area/toxins/mixing)
-"dCC" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating/airless,
-/area/toxins/mixing)
-"dCD" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor{
- id_tag = "toxinsdriver";
- name = "disposal bay door";
- protected = 0
- },
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"dCE" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"dCF" = (
-/obj/machinery/mass_driver{
- dir = 8;
- id_tag = "toxinsdriver"
+/area/maintenance/fsmaint)
+"nlu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"dCG" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dCH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
},
-/obj/structure/rack,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dCK" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dCL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dCM" = (
-/obj/machinery/portable_atmospherics/canister/sleeping_agent,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dCO" = (
-/obj/machinery/vending/coffee,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dCP" = (
-/obj/machinery/vending/cigarette/free,
-/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dCQ" = (
-/obj/structure/sign/science{
- pixel_y = 32
+/area/bridge/vip)
+"nlC" = (
+/obj/machinery/photocopier,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain/bedroom)
+"nlE" = (
+/obj/effect/landmark{
+ name = "JoinLate"
},
-/obj/machinery/camera{
- c_tag = "Research Break Room";
- network = list("Research","SS13")
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
},
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"nlF" = (
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHWEST)"
+ icon_state = "grimy"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dCR" = (
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = 28
+/area/crew_quarters/bar)
+"nlJ" = (
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"nlK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
+ dir = 4;
+ icon_state = "yellowcorner"
},
-/area/medical/research{
- name = "Research Division"
+/area/hallway/primary/port/west)
+"nlR" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
})
-"dCS" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+"nmf" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/assembly/showroom)
+"nml" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"nmp" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -90487,1747 +88732,1835 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dCT" = (
-/obj/machinery/recharge_station,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/medical/research/shallway)
+"nmy" = (
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"dCV" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11
+ icon_state = "cmo"
},
+/area/medical/cmo)
+"nmX" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dCW" = (
+/obj/machinery/computer/security{
+ network = list("SS13","Mining Outpost")
+ },
+/turf/simulated/floor/wood,
+/area/security/hos)
+"nnt" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"nnx" = (
+/obj/machinery/cell_charger,
+/obj/structure/table,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
+/area/shuttle/administration)
+"nnB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dCX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"nnI" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"dCY" = (
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "green"
},
-/area/quartermaster/storage)
-"dCZ" = (
-/obj/structure/table/reinforced,
-/obj/item/mmi,
-/obj/item/mmi,
-/obj/item/mmi,
-/obj/item/mmi/robotic_brain,
-/obj/item/robotanalyzer,
-/obj/machinery/status_display{
- pixel_x = -32
+/area/hallway/secondary/exit)
+"nnM" = (
+/obj/machinery/biogenerator,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/camera{
- c_tag = "Robotics Lab";
- dir = 4
+/area/hydroponics)
+"nnT" = (
+/obj/machinery/particle_accelerator/control_box,
+/obj/structure/cable/yellow,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"noj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple"
+ icon_state = "neutralcorner"
},
-/area/assembly/robotics)
-"dDa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hallway/primary/central/south)
+"nol" = (
+/obj/machinery/light,
+/obj/structure/chair{
+ dir = 1
},
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"dDb" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/crew_quarters/fitness)
+"nom" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/landmark{
+ name = "JoinLateCyborg"
+ },
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"nop" = (
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Rec Room Aft";
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "neutral"
},
-/area/hallway/primary/aft)
-"dDc" = (
+/area/crew_quarters/fitness)
+"nos" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
},
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"nou" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/door/airlock/public/glass{
+ name = "Courtroom";
+ req_access_txt = "63"
},
-/area/hallway/primary/aft)
-"dDd" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/aft)
-"dDe" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/landmark/start{
- name = "Cargo Technician"
+/area/crew_quarters/courtroom)
+"noI" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/quartermaster/storage)
-"dDf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/library)
+"npg" = (
+/obj/structure/table/reinforced,
+/obj/item/folder,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/area/maintenance/xenozoo)
+"nph" = (
+/obj/machinery/computer/secure_data,
+/obj/machinery/door_control{
+ id = "representative";
+ name = "Privacy Shutters Control";
+ pixel_x = -4;
+ pixel_y = 24;
+ req_access_txt = "73"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dDh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door_control{
+ id = "ntrepofficedoor";
+ name = "Office Door";
+ normaldoorcontrol = 1;
+ pixel_x = 6;
+ pixel_y = 24;
+ req_access_txt = "73"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dDi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/wood,
+/area/ntrep)
+"npH" = (
+/obj/machinery/atmospherics/unary/tank/air{
dir = 4
},
-/obj/structure/girder,
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
-"dDj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+"npN" = (
+/obj/machinery/computer/brigcells,
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
+/area/security/reception)
+"npP" = (
/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dDl" = (
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/area/bridge/vip)
+"npS" = (
+/obj/machinery/light{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dDm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/computer/prisoner{
+ req_access = null;
+ req_access_txt = "2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/hos)
+"npT" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dDn" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"nqB" = (
+/obj/structure/table/reinforced,
+/obj/item/folder,
+/obj/item/pen,
+/obj/item/reagent_containers/food/snacks/grown/apple,
+/obj/machinery/door/window/eastleft{
+ dir = 8;
+ name = "Hydroponics Desk";
+ req_access_txt = "35"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/aft)
-"dDp" = (
+/area/hydroponics)
+"nqE" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/hologram/holopad,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j1 (WEST)"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dDq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dDr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/medical/reception)
+"nqG" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A16";
+ location = "A15"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dDs" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/north)
+"nqH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dDt" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_one_access_txt = "12;39"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/north)
+"nqI" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
+/area/engine/hardsuitstorage)
+"nqL" = (
+/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+ id_tag = "engstorage";
+ name = "Secure Storage Blast Doors"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dDu" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"nqM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A13";
+ location = "A12"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "neutralfull"
},
-/area/medical/medbay3)
-"dDv" = (
+/area/hallway/primary/central/north)
+"nrd" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno4";
+ name = "Creature Cell #4";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"nrg" = (
+/obj/machinery/flasher_button{
+ id = "gulagshuttleflasher";
+ name = "Flash Control";
+ pixel_y = -26;
+ req_access_txt = "1"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
+/area/shuttle/siberia)
+"nrr" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/crew_quarters/courtroom)
+"nrz" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "1-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/effect/landmark{
+ name = "lightsout"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/junction{
dir = 1;
- on = 1
+ icon_state = "pipe-y"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay3)
-"dDw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/area/hallway/primary/central/north)
+"nrB" = (
+/obj/machinery/status_display{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/area/medical/medbay3)
-"dDy" = (
+/area/medical/research/nhallway)
+"nrF" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"nrJ" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "0-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dDz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Briefing";
+ name = "Briefing Room Shutters"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dDB" = (
+/area/security/main)
+"nsi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"dDC" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/sign/poster/contraband/power_people{
- pixel_y = 32
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"nsl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "showroomfloor"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Gateway Access";
+ req_access_txt = "62"
},
-/area/maintenance/fsmaint)
-"dDD" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"nso" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/storage/firstaid/o2{
- pixel_x = 4;
- pixel_y = 4
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/storage/firstaid/o2{
- pixel_x = 2;
- pixel_y = 2
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/storage/firstaid/o2,
-/obj/machinery/light_switch{
- pixel_y = -25
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/biostorage)
-"dDE" = (
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"nsw" = (
+/obj/effect/decal/warning_stripes/northeastcorner,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"nsA" = (
/obj/structure/table,
-/obj/item/storage/box/pillbottles{
- pixel_x = 8
- },
-/obj/item/storage/box/pillbottles{
- pixel_x = 8;
- pixel_y = 4
- },
-/obj/item/storage/box/syringes{
- pixel_x = -6
- },
-/obj/item/storage/box/syringes{
- pixel_x = -6;
- pixel_y = 4
- },
-/obj/item/storage/box/autoinjectors{
- pixel_x = 8;
- pixel_y = 8
- },
-/obj/item/storage/box/autoinjectors{
- pixel_x = -6;
- pixel_y = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/biostorage)
-"dDF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/shower{
- dir = 4;
- tag = "icon-shower (EAST)"
- },
-/obj/structure/curtain/open/shower,
+/obj/item/folder/white,
+/obj/item/gps,
/turf/simulated/floor/plasteel{
- icon_state = "showroomfloor"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/area/maintenance/fsmaint)
-"dDG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sink{
+/area/medical/research{
+ name = "Research Division"
+ })
+"nsP" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/light/small{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "showroomfloor"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"nsR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/area/maintenance/fsmaint)
-"dDH" = (
-/obj/structure/toilet{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/plasteel{
- icon_state = "showroomfloor"
- },
-/area/maintenance/fsmaint)
-"dDI" = (
-/turf/simulated/floor/wood{
- icon_state = "wood-broken6";
- tag = "icon-wood-broken6"
- },
-/area/maintenance/fsmaint)
-"dDJ" = (
-/obj/machinery/vending/tool,
-/turf/simulated/floor/wood,
-/area/maintenance/fsmaint)
-"dDK" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/wood,
-/area/maintenance/fsmaint)
-"dDL" = (
-/turf/simulated/floor/wood,
-/area/maintenance/fsmaint)
-"dDM" = (
-/obj/machinery/light/small,
-/obj/structure/sign/poster/contraband/communist_state{
- pixel_y = -32
+ dir = 0;
+ icon_state = "red"
},
-/turf/simulated/floor/wood{
- icon_state = "wood-broken";
- tag = "icon-wood-broken"
+/area/security/range)
+"nsS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/maintenance/fsmaint)
-"dDN" = (
-/obj/machinery/vending/cigarette/free,
-/obj/structure/cable{
+/area/toxins/lab)
+"nsT" = (
+/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/security/detectives_office)
-"dDO" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/maintenance/fsmaint)
-"dDP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/fore)
-"dDQ" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dDR" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dDS" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dDT" = (
-/turf/simulated/wall/r_wall/rust,
-/area/toxins/mixing)
-"dDU" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"nsU" = (
+/obj/structure/closet/emcloset,
/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"nte" = (
+/turf/simulated/wall,
/area/maintenance/asmaint2)
-"dDV" = (
-/obj/structure/cable{
+"nth" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/engine/engineering)
+"ntj" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dDW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dDZ" = (
+/area/maintenance/electrical)
+"ntt" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/lobby)
+"ntG" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A38";
+ location = "A37"
},
-/obj/effect/decal/cleanable/vomit,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dEa" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dEb" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHWEST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"dEc" = (
-/obj/machinery/vending/cigarette,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/quartermaster/office)
-"dEf" = (
-/obj/effect/decal/warning_stripes/eastnorthwest,
-/obj/structure/chair/comfy/purp,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplefull"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dEg" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/hallway/primary/central/north)
+"ntK" = (
+/obj/structure/sign/securearea{
+ pixel_x = -32
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dEh" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/area/hallway/primary/central/east)
+"ntS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atm{
+ pixel_x = -28;
+ pixel_y = -30
},
-/obj/machinery/alarm{
+/turf/simulated/floor/plasteel{
dir = 8;
- pixel_x = 24
+ icon_state = "purplecorner"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple"
+/area/hallway/primary/aft)
+"ntV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dEi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dEj" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"dEk" = (
-/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/storage)
-"dEl" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"dEm" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"dEn" = (
-/obj/effect/decal/warning_stripes/northeastcorner,
+/area/hallway/primary/central/se)
+"nud" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 4
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 4;
+ icon_state = "darkred"
},
-/area/assembly/robotics)
-"dEo" = (
-/turf/simulated/wall,
-/area/maintenance/asmaint)
-"dEp" = (
-/turf/simulated/wall/rust,
-/area/maintenance/asmaint)
-"dEq" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"dEr" = (
+/area/security/execution)
+"nuj" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
-/obj/machinery/camera{
- c_tag = "Virology Maintance Access";
- dir = 4;
- network = list("Medical","SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "darkblue"
},
-/area/medical/medbay3)
-"dEs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/radio/intercom{
- pixel_x = 28
+/area/turret_protected/aisat_interior)
+"nuE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/medical/medbay3)
-"dEt" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/carpet,
-/area/maintenance/fsmaint)
-"dEu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dEv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 0;
+ icon_state = "green"
},
-/area/crew_quarters/kitchen)
-"dEw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel{
+/area/crew_quarters/courtroom)
+"nuG" = (
+/obj/machinery/light{
dir = 1;
- icon_state = "neutralcorner"
+ on = 1
},
-/area/hallway/primary/central/north)
-"dEx" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
+/obj/effect/decal/cleanable/dirt,
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"dEz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/recharge_station,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dEA" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "sw_maint2_outer";
- locked = 1;
- name = "West Maintenance External Access";
- req_access = null
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellow"
},
-/obj/effect/decal/warning_stripes/west,
+/area/maintenance/electrical)
+"nuU" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dEB" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 4;
- frequency = 1379;
- id_tag = "sw_maint2_pump"
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "sw_maint2_airlock";
- pixel_y = 25;
- tag_airpump = "sw_maint2_pump";
- tag_chamber_sensor = "sw_maint2_sensor";
- tag_exterior_door = "sw_maint2_outer";
- tag_interior_door = "sw_maint2_inner"
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/obj/machinery/airlock_sensor{
- id_tag = "sw_maint2_sensor";
- pixel_y = 33
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/item/radio,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
},
-/obj/effect/decal/warning_stripes/yellow,
+/area/security/checkpoint)
+"nve" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dED" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dEE" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "sw_maint2_inner";
- locked = 1;
- name = "West Maintenance External Access";
- req_access = null;
- req_access_txt = "10;13"
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating,
+/area/crew_quarters/fitness)
+"nvg" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/regular,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"nvk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dEF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "sw_maint2_airlock";
- name = "interior access button";
- pixel_x = -24;
- pixel_y = 24
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/hallway/primary/central/north)
+"nvA" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/chapel/main)
+"nvS" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dEG" = (
+/area/security/podbay)
+"nvU" = (
+/obj/structure/bookcase,
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"nvV" = (
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "red"
+ },
+/area/security/brig)
+"nwf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/library/abandoned)
+"nwh" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dEH" = (
+/area/crew_quarters/fitness)
+"nwn" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dEI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dEK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/north)
-"dEL" = (
-/obj/structure/table,
-/obj/item/storage/box/donkpockets,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"dEO" = (
-/obj/effect/decal/warning_stripes/northwest,
-/obj/structure/chair/comfy/purp{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"dEP" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/structure/table/glass,
-/obj/effect/decal/warning_stripes/northwestcorner,
-/obj/item/reagent_containers/food/snacks/sliceable/braincake,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Quartermaster Junction";
+ sortType = 3
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplefull"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dEQ" = (
+/area/hallway/primary/central/north)
+"nwz" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"dER" = (
-/obj/machinery/camera{
- c_tag = "Experimention Lab";
- dir = 1;
- network = list("Research","SS13")
+ dir = 4;
+ icon_state = "chapel"
},
+/area/chapel/main)
+"nwH" = (
+/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "darkblue"
},
-/area/toxins/explab)
-"dES" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/area/medical/morgue)
+"nwK" = (
+/obj/item/radio/intercom{
+ pixel_x = 28
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dET" = (
-/obj/machinery/alarm{
+/turf/simulated/floor/plasteel{
dir = 4;
- pixel_x = -22
- },
-/obj/machinery/light{
- dir = 8
+ icon_state = "neutralcorner"
},
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = 28
+/area/hallway/primary/central/north)
+"nxa" = (
+/obj/structure/chair/comfy/teal{
+ dir = 1
},
-/obj/structure/table/reinforced,
-/obj/item/radio,
-/obj/item/crowbar,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "blue"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/bridge/checkpoint/south)
-"dEU" = (
+/area/medical/reception)
+"nxr" = (
/obj/structure/table/reinforced,
-/obj/item/storage/box/ids,
-/turf/simulated/floor/plasteel{
+/obj/item/clipboard,
+/obj/item/toy/figure/borg,
+/obj/machinery/alarm{
dir = 1;
- icon_state = "blue"
+ pixel_y = -24
},
-/area/bridge/checkpoint/south)
-"dEV" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32;
+/turf/simulated/floor/bluegrid,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"nxE" = (
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 1";
+ name = "Cell 1 Locker"
+ },
+/obj/structure/sign/poster/official/random{
pixel_y = 32
},
-/obj/machinery/camera{
- c_tag = "Command Departure Checkpoint"
+/obj/machinery/newscaster{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "blue"
+ icon_state = "bcarpet05"
},
-/area/bridge/checkpoint/south)
-"dEW" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+/area/security/prison/cell_block/A)
+"nxK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/structure/closet/secure_closet,
-/obj/item/storage/secure/briefcase,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "blue"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/fitness)
+"nxM" = (
+/obj/structure/bed,
+/obj/item/bedsheet/red,
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/area/bridge/checkpoint/south)
-"dEY" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "escape"
+ dir = 4;
+ icon_state = "redcorner"
},
-/area/bridge/checkpoint/south)
-"dEZ" = (
+/area/security/prison/cell_block/A)
+"nyi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "escape"
+ dir = 4
},
-/area/bridge/checkpoint/south)
-"dFa" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "escape"
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
-/area/bridge/checkpoint/south)
-"dFb" = (
-/obj/item/paper_bin,
-/obj/structure/table,
-/obj/item/pen,
+/area/library/abandoned)
+"nyp" = (
/obj/machinery/newscaster{
- pixel_x = 32
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/alarm{
- pixel_y = 22
+ pixel_y = -32
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/south)
-"dFc" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
+/area/bridge/vip)
+"nyX" = (
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"nze" = (
+/obj/structure/closet/lasertag/red,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/medical/medbay3)
-"dFd" = (
+/area/crew_quarters/fitness)
+"nzg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/medbay3)
-"dFe" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
+/area/security/lobby)
+"nzh" = (
+/obj/effect/decal/warning_stripes/southwestcorner,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"nzk" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/medical/medbay3)
-"dFf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
dir = 8;
- initialize_directions = 11
+ id = "execution"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "execution"
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "execution"
},
-/area/hallway/primary/central/north)
-"dFg" = (
-/turf/simulated/wall,
-/area/library/abandoned)
-"dFh" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/barricade/wooden,
/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dFi" = (
-/obj/structure/barricade/wooden,
-/obj/machinery/door/airlock/maintenance,
+/area/security/execution)
+"nzz" = (
+/obj/structure/closet/lawcloset,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/clothing/under/rank/internalaffairs,
+/obj/item/clothing/under/rank/internalaffairs,
+/obj/item/clothing/suit/storage/internalaffairs,
+/obj/item/clothing/suit/storage/internalaffairs,
+/obj/item/clothing/accessory/lawyers_badge,
+/obj/item/clothing/accessory/lawyers_badge,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/library/abandoned)
-"dFj" = (
+/area/lawoffice)
+"nzN" = (
+/obj/effect/decal/warning_stripes/east,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/barricade/wooden,
-/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "white"
},
-/area/library/abandoned)
-"dFk" = (
-/turf/simulated/wall/rust,
-/area/library/abandoned)
-"dFl" = (
-/obj/effect/spawner/random_spawners/blood_maybe,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dFm" = (
-/turf/simulated/wall/r_wall,
-/area/toxins/storage)
-"dFn" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/assembly/robotics)
+"nzR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dFp" = (
-/obj/effect/decal/warning_stripes/southwest,
-/obj/structure/chair/comfy/purp{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplefull"
+ dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
-"dFq" = (
-/obj/effect/decal/warning_stripes/southeast,
-/obj/structure/table/glass,
-/obj/item/scalpel{
- pixel_y = 8
+/area/security/brig)
+"nzZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"dFr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/central/west)
+"nAl" = (
+/obj/machinery/vending/autodrobe,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/locker)
+"nAw" = (
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 3";
+ name = "Cell 3 Locker"
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
},
-/area/medical/research{
- name = "Research Division"
- })
-"dFs" = (
-/obj/structure/closet/secure_closet/scientist,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple"
+ dir = 9;
+ icon_state = "red"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dFt" = (
-/obj/structure/cable{
+/area/security/prison/cell_block/A)
+"nAz" = (
+/obj/structure/cable/yellow{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark{
- name = "blobstart"
+ d2 = 4;
+ icon_state = "1-4"
},
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dFu" = (
-/obj/machinery/computer/med_data,
-/obj/machinery/status_display{
- pixel_x = -32
+/area/engine/engineering)
+"nAA" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "blue"
+/obj/machinery/light{
+ dir = 1
},
-/area/bridge/checkpoint/south)
-"dFv" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/flasher{
+ id = "Cell 3";
+ pixel_y = 28
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "red"
},
-/area/bridge/checkpoint/south)
-"dFw" = (
-/obj/effect/decal/warning_stripes/north,
+/area/security/prison/cell_block/A)
+"nAL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/visible,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/assembly/robotics)
-"dFx" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "KPPN";
- name = "North Checkpoint Bolts";
- normaldoorcontrol = 1;
- pixel_x = -6;
- pixel_y = 7;
- req_access_txt = "19";
- specialfunctions = 4
+/area/medical/cryo)
+"nAT" = (
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "engineering_west_airlock";
+ name = "interior access button";
+ pixel_x = -20;
+ pixel_y = -20;
+ req_access_txt = "10;13"
},
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "KPPS";
- name = "South Checkpoint Bolts";
- normaldoorcontrol = 1;
- pixel_x = 6;
- pixel_y = 7;
- req_access_txt = "19";
- specialfunctions = 4
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door_control{
- id = "eslock";
- name = "Privacy Shuttes Control";
- pixel_x = 6;
- pixel_y = -2;
- req_access_txt = "19"
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
-/obj/machinery/door_control{
- id = "SKPP";
- name = "Privacy Shuttes Control";
- pixel_x = -6;
- pixel_y = -2;
- req_access_txt = "19"
+/area/engine/engineering)
+"nBl" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/disposaloutlet,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/toxins/xenobiology)
+"nBu" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "blue"
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
-/area/bridge/checkpoint/south)
-"dFy" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/machine{
- pixel_x = 4;
- pixel_y = 4
+/area/medical/research{
+ name = "Research Division"
+ })
+"nBy" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 32
},
-/obj/item/storage/firstaid/machine{
- pixel_x = 2;
- pixel_y = 2
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/item/storage/firstaid/machine,
+/area/maintenance/gambling_den)
+"nBI" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/assembly/robotics)
-"dFz" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
},
-/area/bridge/checkpoint/south)
-"dFA" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/crew_quarters/fitness)
+"nBK" = (
+/obj/machinery/optable,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate)
+"nBR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/chief)
+"nCm" = (
+/obj/structure/rack,
+/obj/item/tank/oxygen,
+/obj/item/radio,
+/obj/machinery/firealarm{
dir = 1;
- on = 1
+ pixel_y = -24
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"nCp" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/bridge/checkpoint/south)
-"dFB" = (
-/obj/structure/chair{
- dir = 8
+/area/hallway/primary/central/se)
+"nCH" = (
+/obj/structure/chair/stool/bar,
+/obj/effect/landmark/start{
+ name = "Civilian"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"nCX" = (
+/obj/structure/bed,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/obj/machinery/newscaster{
+ pixel_x = 27;
+ pixel_y = 33
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/security/prison/cell_block/A)
+"nCY" = (
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/prisonershuttle)
+"nDc" = (
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 5";
+ name = "Cell 5 Locker"
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/prison/cell_block/A)
+"nDf" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/sheet/glass{
+ amount = 10
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/south)
-"dFC" = (
-/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/bridge/checkpoint/south)
-"dFD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/medical/virology)
-"dFE" = (
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"nDj" = (
+/obj/structure/closet/emcloset,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/medical/research/nhallway)
+"nDm" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ pixel_y = 36
+ },
+/obj/machinery/flasher{
+ id = "Cell 5";
+ pixel_y = 28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/prison/cell_block/A)
+"nDy" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Storage";
+ req_access_txt = "63"
+ },
+/obj/machinery/door/firedoor,
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 1
},
-/area/medical/surgery1)
-"dFF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/biohazard,
-/turf/simulated/wall/r_wall,
-/area/medical/virology)
-"dFG" = (
-/turf/simulated/wall/r_wall,
-/area/medical/virology)
-"dFH" = (
-/obj/effect/spawner/window/reinforced,
+/area/security/permahallway)
+"nDK" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door/poddoor/shutters/preopen{
+/turf/simulated/floor/plasteel{
dir = 1;
- id_tag = "Virology";
- name = "Virology Shutters"
+ icon_state = "chapel"
},
-/turf/simulated/floor/plating,
-/area/medical/virology)
-"dFI" = (
-/obj/effect/spawner/window/reinforced,
+/area/chapel/main)
+"nDV" = (
+/obj/machinery/gravity_generator/main/station,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/engine/gravitygenerator)
+"nEb" = (
+/obj/machinery/chem_heater,
+/obj/effect/decal/warning_stripes/southwest,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door/poddoor/shutters/preopen{
+/turf/simulated/floor/engine,
+/area/medical/chemistry)
+"nEj" = (
+/obj/machinery/door_timer/cell_3{
dir = 1;
- id_tag = "Virology";
- name = "Virology Shutters"
+ pixel_y = 0
},
-/turf/simulated/floor/plating,
-/area/medical/virology)
-"dFJ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/camera{
+ c_tag = "Brig Cells";
+ network = list("SS13","Security")
},
-/obj/machinery/door/poddoor/shutters/preopen{
+/turf/simulated/floor/plasteel{
dir = 1;
- id_tag = "Virology";
- name = "Virology Shutters"
+ icon_state = "darkred"
+ },
+/area/security/prison/cell_block/A)
+"nEB" = (
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/main)
+"nEP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/plating,
-/area/medical/virology)
-"dFK" = (
-/obj/structure/table/wood,
-/obj/effect/decal/cleanable/cobweb,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dFL" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/pen,
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dFM" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/library/abandoned)
-"dFN" = (
+/area/turret_protected/aisat_interior)
+"nFe" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
/area/library/abandoned)
-"dFO" = (
+"nFf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"nFA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
+ },
+/area/engine/gravitygenerator)
+"nFB" = (
+/obj/structure/chair/comfy/brown,
+/obj/effect/landmark/start{
+ name = "Librarian"
},
-/area/library/abandoned)
-"dFP" = (
-/obj/structure/table/wood,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/library/abandoned)
-"dFQ" = (
-/obj/structure/chair/office/dark,
+/area/library)
+"nFC" = (
+/obj/structure/table/wood,
+/obj/machinery/light/small,
+/obj/machinery/computer/security/wooden_tv,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/library/abandoned)
-"dFR" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/chair/office/dark,
+/area/crew_quarters/captain/bedroom)
+"nFL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dFS" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/cleanable/cobweb2,
+/obj/structure/bed,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1
},
-/area/library/abandoned)
-"dFT" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
+/area/security/prison/cell_block/A)
+"nGa" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/area/medical/research{
- name = "Research Division"
- })
-"dFU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/light/small,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = -1;
+ pixel_y = -6
+ },
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = -1;
+ pixel_y = -3
+ },
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = -1
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/central/north)
-"dFV" = (
-/turf/simulated/wall,
-/area/hallway/primary/central/nw)
-"dFW" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/security/securearmoury)
+"nGg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dFX" = (
-/obj/effect/landmark{
- name = "blobstart"
+/area/maintenance/asmaint)
+"nGj" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "sw_maint_inner";
+ locked = 1;
+ name = "West Maintenance External Access";
+ req_access = null;
+ req_access_txt = "10;13"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
})
-"dFZ" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitepurple"
+"nGl" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/item/pen,
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
},
-/area/medical/research{
- name = "Research Division"
- })
-"dGa" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d1 = 2;
d2 = 4;
- icon_state = "0-4"
+ icon_state = "2-4"
},
-/obj/machinery/door/poddoor/shutters/preopen{
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin2)
+"nGq" = (
+/obj/structure/table,
+/obj/item/storage/fancy/donut_box,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plasteel{
dir = 8;
- id_tag = "Second Surgery Window";
- name = "Surgery Shutters"
+ icon_state = "red"
},
-/turf/simulated/floor/plating,
-/area/medical/surgery2)
-"dGb" = (
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+/area/security/processing)
+"nGr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/engine/gravitygenerator)
+"nGy" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay2)
+"nGC" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"nGI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/chapel/main)
+"nGM" = (
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (NORTHWEST)"
+ },
+/area/toxins/lab)
+"nGQ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ tag = "icon-whitepurple (SOUTHWEST)"
+ },
+/area/toxins/lab)
+"nGY" = (
+/obj/structure/particle_accelerator/particle_emitter/right{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"nHp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"nHu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"dGc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
-"dGd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/main)
+"nHz" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/security/main)
+"nHQ" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 1
},
+/obj/machinery/portable_atmospherics/canister,
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/toxins/mixing)
+"nIa" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = -5;
+ pixel_y = 5
},
+/obj/item/storage/belt/utility,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"nIm" = (
+/obj/machinery/light,
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"dGe" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/central/north)
+"nIo" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"nIr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitepurple"
+ icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dGh" = (
+/area/medical/biostorage)
+"nIv" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/power/apc{
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- name = "west bump";
- pixel_x = -24
+ id_tag = "Virology";
+ name = "Virology Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/medical/virology/lab)
+"nIw" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Botanist"
},
-/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "bluefull"
+ icon_state = "dark"
},
-/area/bridge/checkpoint/south)
-"dGi" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/hydroponics)
+"nIB" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "brown"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"nIG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"nIS" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table,
+/obj/item/disk/tech_disk{
+ pixel_x = -6
+ },
+/obj/item/disk/tech_disk{
+ pixel_x = 6
+ },
+/obj/item/disk/tech_disk{
+ pixel_y = 6
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (SOUTHWEST)"
+ },
+/area/toxins/lab)
+"nJf" = (
+/obj/machinery/power/treadmill{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "red"
},
-/area/bridge/checkpoint/south)
-"dGj" = (
+/area/security/prison/cell_block/A)
+"nJm" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1
},
-/area/bridge/checkpoint/south)
-"dGk" = (
+/area/security/processing)
+"nJr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/chair/office/light{
- dir = 4
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteredfull"
},
+/area/security/medbay)
+"nJv" = (
+/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "bluefull"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/bridge/checkpoint/south)
-"dGl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/maintenance/electrical)
+"nJx" = (
+/obj/structure/chair{
+ dir = 1
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced,
-/obj/item/folder/blue,
-/obj/item/pen,
-/obj/machinery/door/window/brigdoor/southright{
- dir = 8;
- name = "Security Desk";
- req_access_txt = "19"
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "SKPP"
+/area/security/processing)
+"nJD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/airlock/public/glass{
+ id_tag = "KPPS"
},
/obj/machinery/door/poddoor/preopen{
id_tag = "eslock";
@@ -92235,786 +90568,814 @@
},
/turf/simulated/floor/plasteel,
/area/bridge/checkpoint/south)
-"dGm" = (
-/obj/effect/decal/warning_stripes/yellow,
+"nJR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/south)
-"dGn" = (
-/obj/structure/closet/wardrobe/robotics_black,
-/obj/item/radio/headset/headset_sci{
- pixel_x = -3
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/structure/closet/walllocker/emerglocker{
- pixel_y = -32
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ id = "Interrogation";
+ name = "Private Room";
+ req_access_txt = "63"
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitepurple"
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"nJZ" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/area/assembly/robotics)
-"dGo" = (
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "whitepurple"
},
-/area/bridge/checkpoint/south)
-"dGp" = (
-/obj/structure/chair{
- dir = 8
+/area/medical/research{
+ name = "Research Division"
+ })
+"nKc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/landmark/start{
- name = "Civilian"
+/obj/structure/chair{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/south)
-"dGq" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "solar_xeno_airlock";
- name = "interior access button";
- pixel_x = 25;
- pixel_y = -25;
- req_access_txt = "10;13"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating,
-/area/maintenance/starboardsolar)
-"dGr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/interrogation)
+"nKe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "solar_xeno_inner";
- locked = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "13"
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Prison Solitary Confinement 1";
+ dir = 6;
+ network = list("Prison","SS13")
},
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/starboardsolar)
-"dGs" = (
+/area/security/permabrig)
+"nKi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 8;
- frequency = 1379;
- id_tag = "solar_xeno_pump"
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "solar_xeno_airlock";
- pixel_y = 25;
- req_access_txt = "13";
- tag_airpump = "solar_xeno_pump";
- tag_chamber_sensor = "solar_xeno_sensor";
- tag_exterior_door = "solar_xeno_outer";
- tag_interior_door = "solar_xeno_inner"
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/medical/cmo)
+"nKl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/machinery/airlock_sensor{
- id_tag = "solar_xeno_sensor";
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/maintenance/starboardsolar)
-"dGt" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/area/security/permabrig)
+"nKr" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
/area/medical/virology)
-"dGu" = (
+"nKG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreen"
+ icon_state = "1-2"
},
-/area/medical/virology)
-"dGv" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+ icon_state = "purplefull"
},
-/area/medical/virology)
-"dGw" = (
-/turf/simulated/wall,
-/area/medical/virology)
-"dGx" = (
-/obj/structure/table/glass,
-/obj/machinery/newscaster{
- pixel_x = -32
+/area/medical/research/nhallway)
+"nKW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/item/radio/intercom{
- pixel_y = 28
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/paper_bin,
-/obj/item/pen/red,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dGy" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop,
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+ dir = 8;
+ icon_state = "green"
},
+/area/crew_quarters/courtroom)
+"nLe" = (
+/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
+ dir = 6;
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (SOUTHEAST)"
},
/area/medical/virology)
-"dGz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/filingcabinet/chestdrawer,
+"nLj" = (
+/obj/structure/table/wood,
+/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+ icon_state = "dark"
},
-/area/medical/virology)
-"dGA" = (
-/obj/machinery/light/small{
- dir = 4
+/area/maintenance/gambling_den)
+"nLE" = (
+/obj/structure/table,
+/obj/item/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 1;
+ pixel_y = 2
},
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
+/obj/item/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 8;
+ pixel_y = 9
},
-/obj/machinery/disposal,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/trunk{
- dir = 2
+/obj/item/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = -6;
+ pixel_y = 9
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+/obj/machinery/camera{
+ c_tag = "Medbay Cryo Room";
+ dir = 1;
+ network = list("SS13","Medical")
},
-/area/medical/virology)
-"dGB" = (
-/obj/structure/table/wood,
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dGC" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/obj/item/radio/intercom{
+ pixel_y = -26
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 26
},
-/area/library/abandoned)
-"dGD" = (
+/obj/structure/cable,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 6;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/library/abandoned)
-"dGE" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/medical/cryo)
+"nLI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/library/abandoned)
-"dGF" = (
-/obj/structure/chair/office/dark{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "darkred"
},
-/area/library/abandoned)
-"dGG" = (
-/obj/structure/table/wood,
-/obj/item/paicard,
-/turf/simulated/floor/plasteel{
- icon_state = "carpet"
+/area/security/permabrig)
+"nLY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/area/library/abandoned)
-"dGH" = (
-/obj/structure/table/wood,
-/obj/item/storage/pill_bottle/dice,
/turf/simulated/floor/plasteel{
- icon_state = "carpet"
+ icon_state = "darkred"
},
-/area/library/abandoned)
-"dGI" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/area/security/permabrig)
+"nMi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_state = "rampbottom";
+ tag = "icon-stage_stairs"
},
-/area/library/abandoned)
-"dGK" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
+/area/medical/research{
+ name = "Research Division"
+ })
+"nMs" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dGL" = (
-/obj/machinery/atmospherics/trinary/filter{
- dir = 8
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dGM" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dGN" = (
-/turf/simulated/floor/carpet,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"dGO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/light,
-/obj/item/radio/intercom{
- pixel_y = -28
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/grass,
+/area/medical/cryo)
+"nMw" = (
+/obj/machinery/light{
+ dir = 8
},
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dGP" = (
-/obj/machinery/computer/crew,
-/obj/machinery/ai_status_display{
- pixel_x = -32
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "blue"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/bridge/checkpoint/south)
-"dGQ" = (
+/area/medical/medbay)
+"nMC" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/closet/bombcloset,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"nMD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/bridge/checkpoint/south)
-"dGR" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+ icon_state = "white"
},
+/area/medical/sleeper)
+"nMG" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/portable_atmospherics/canister/sleeping_agent,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/bridge/checkpoint/south)
-"dGS" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/security/permahallway)
+"nNj" = (
+/obj/structure/closet/firecloset,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/sw)
+"nNm" = (
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Escape Shuttle Infirmary"
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "blue"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/bridge/checkpoint/south)
-"dGT" = (
-/obj/structure/closet/secure_closet/roboticist,
-/obj/item/radio/headset/headset_sci{
- pixel_x = -3
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"nNp" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/obj/machinery/light,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
+/area/shuttle/administration)
+"nNu" = (
+/turf/space,
+/turf/simulated/wall/r_wall,
+/area/security/processing)
+"nNy" = (
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
- },
-/area/assembly/robotics)
-"dGU" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
- on = 1
+ icon_state = "neutral"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/crew_quarters/fitness)
+"nNJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/area/bridge/checkpoint/south)
-"dGV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dGW" = (
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"nNL" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dGX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "solar_xeno_outer";
- locked = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/maintenance/starboardsolar)
-"dGY" = (
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_x = -32
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Brig HoS Office";
+ sortType = 7
},
-/obj/structure/table,
-/obj/machinery/kitchen_machine/microwave{
- pixel_x = -1;
- pixel_y = 7
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/securehallway)
+"nNN" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"nOg" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple"
+ icon_state = "neutralfull"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dGZ" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/area/engine/break_room)
+"nOn" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/science{
+ pixel_x = 32;
+ pixel_y = 32
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"dHa" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/aft)
+"nOr" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door/airlock/medical{
- autoclose = 0;
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "viro_lab_airlock_interior";
- locked = 1;
- name = "Virology Lab Internal Airlock";
- req_access_txt = "39"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"nOs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "viro_lab_airlock_control";
- name = "Virology Lab Access Button";
- pixel_y = -24;
- req_access_txt = "39"
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
+"nOK" = (
+/obj/machinery/power/solar{
+ name = "Aft Starboard Solar Panel"
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dHb" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/embedded_controller/radio/airlock/access_controller{
- id_tag = "viro_lab_airlock_control";
- name = "Virology Lab Access Console";
- pixel_x = 6;
- pixel_y = 24;
- req_one_access_txt = "39";
- tag_exterior_door = "viro_lab_airlock_exterior";
- tag_interior_door = "viro_lab_airlock_interior"
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
},
-/obj/machinery/camera{
- c_tag = "Virology Short Hall";
- dir = 10;
- network = list("Medical","SS13")
+/area/solar/port)
+"nOR" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dHc" = (
+/area/library/abandoned)
+"nOT" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cabin4)
+"nPr" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/vodka{
+ desc = "Кто это тут к нам колёса катит?";
+ name = "Старая бутылка водки"
},
-/obj/machinery/light/small{
- dir = 1
+/obj/machinery/light{
+ dir = 4
},
-/obj/structure/sign/vacuum{
- pixel_y = -32
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dHd" = (
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"nPA" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dHe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Virology";
- req_access_txt = "39"
+/area/hallway/primary/central/ne)
+"nPN" = (
+/obj/structure/table/wood,
+/obj/item/taperecorder,
+/turf/simulated/floor/plasteel{
+ icon_state = "bcarpet05"
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dHf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/blueshield)
+"nPX" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"nPZ" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"nQl" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "SecPilotPriv"
},
+/turf/simulated/floor/plating,
+/area/security/podbay)
+"nQo" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
+ dir = 8;
+ icon_state = "darkred"
},
-/area/medical/virology)
-"dHg" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/area/security/podbay)
+"nQt" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/fire,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "yellow"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/engine/engineering)
+"nQv" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"nQy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/virology)
-"dHh" = (
+/area/crew_quarters/courtroom)
+"nQB" = (
+/obj/structure/table/reinforced,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+ dir = 7;
+ icon_state = "yellow"
},
-/area/medical/virology)
-"dHi" = (
+/area/engine/engineering)
+"nQC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"nQG" = (
/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "ai1";
+ name = "Turret Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/turret_protected/aisat_interior)
+"nQR" = (
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/wood,
+/area/library)
+"nQS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/medical/virology)
-"dHj" = (
-/obj/structure/table/glass,
-/obj/item/clipboard,
-/obj/item/toy/figure/virologist,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
-/area/medical/virology)
-"dHk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/research/shallway)
+"nQZ" = (
+/obj/structure/chair{
dir = 4
},
-/obj/structure/grille,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/fitness)
+"nRi" = (
+/obj/structure/rack,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/item/wrench,
+/obj/item/crowbar,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
})
-"dHl" = (
+"nRp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/virology)
-"dHm" = (
-/obj/machinery/camera{
- c_tag = "Virology Office";
- dir = 8;
- network = list("Medical","SS13")
+ dir = 1
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/vending/wallmed{
- pixel_x = 26
+/area/security/range)
+"nRt" = (
+/obj/machinery/light/small{
+ dir = 8
},
+/turf/simulated/floor/engine/insulated/vacuum,
+/area/atmos)
+"nRC" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+ icon_state = "neutralcorner"
},
-/area/medical/virology)
-"dHn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/area/crew_quarters/locker)
+"nRQ" = (
+/obj/machinery/computer/general_air_control/large_tank_control{
+ frequency = 1441;
+ input_tag = "mix_in";
+ name = "Gas Mix Tank Control";
+ output_tag = "mix_out";
+ sensors = list("mix_sensor" = "Tank")
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 8;
+ name = "Труба дыхательной смеси"
},
-/area/maintenance/gambling_den)
-"dHo" = (
-/obj/structure/table/glass,
-/obj/item/flashlight/lamp,
-/obj/machinery/newscaster{
- pixel_y = 32
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "green"
},
+/area/atmos)
+"nRT" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "red"
},
-/area/medical/virology)
-"dHp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/security/brig)
+"nRY" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
},
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
-/obj/effect/landmark/start{
- name = "Virologist"
+/area/security/customs)
+"nSd" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 4;
+ name = "Труба дыхательной смеси"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 1;
+ name = "Труба фильтрации"
},
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"nSf" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "vault"
},
-/area/medical/virology)
-"dHq" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
+/area/storage/tech)
+"nSl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/machinery/computer/med_data/laptop,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "bcarpet05"
},
-/area/medical/virology)
-"dHr" = (
-/obj/machinery/light/small{
- dir = 8
+/area/medical/ward)
+"nSr" = (
+/obj/structure/table/wood,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "escape"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dHs" = (
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+/area/crew_quarters/fitness)
+"nSs" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/library/abandoned)
-"dHt" = (
-/obj/structure/bookcase,
-/obj/effect/decal/cleanable/cobweb2,
-/turf/simulated/floor/wood,
-/area/library/abandoned)
-"dHu" = (
-/obj/structure/table/wood,
-/obj/item/deck/cards,
-/obj/item/deck/cards{
- pixel_y = 6
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
+/area/toxins/explab)
+"nSt" = (
+/obj/structure/table/reinforced,
+/obj/item/weldingtool,
+/obj/item/clothing/head/welding,
/turf/simulated/floor/plasteel{
- icon_state = "carpet"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/library/abandoned)
-"dHv" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/folder/red,
+/area/atmos)
+"nSx" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "carpet"
+ icon_state = "grimy"
},
-/area/library/abandoned)
-"dHw" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/area/security/vacantoffice)
+"nSA" = (
+/obj/structure/table,
+/obj/item/paicard,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dHx" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/area/crew_quarters/locker)
+"nSW" = (
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor{
+ id_tag = "toxinsdriver";
+ name = "disposal bay door";
+ protected = 0
},
/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"nSZ" = (
+/turf/simulated/wall/r_wall,
+/area/security/evidence)
+"nTk" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
/area/maintenance/fsmaint2{
name = "Tourist Area Maintenance"
})
-"dHy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+"nTm" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "yellow"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dHz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/engine/hardsuitstorage)
+"nTo" = (
+/obj/structure/table/reinforced,
+/obj/item/t_scanner,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/atmos)
+"nTz" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/machinery/status_display{
+ pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Engineering Storage 1";
+ dir = 1;
+ network = list("Engineering","SS13")
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dHA" = (
+/area/engine/hardsuitstorage)
+"nTD" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A19";
+ location = "A18"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/mob/living/simple_animal/bot/secbot/beepsky{
+ name = "Officer Beepsky 2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dHB" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dHC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/hallway/primary/port/west)
+"nTJ" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -93022,832 +91383,865 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dHE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
+/area/medical/medbay2)
+"nTN" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 1
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 8
+ },
+/obj/structure/window/plasmareinforced{
dir = 4
},
+/obj/structure/window/plasmareinforced,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dHG" = (
+/area/toxins/mixing)
+"nTV" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"nTY" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "0-8"
},
+/turf/simulated/floor/plating,
+/area/medical/virology)
+"nUq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 9
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dHH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "green"
},
+/area/hydroponics)
+"nUs" = (
+/obj/machinery/ai_slipper,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/turret_protected/aisat_interior)
+"nUw" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedbar)
+"nUy" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+/obj/structure/closet/emcloset,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dHI" = (
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"nUJ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/disposalpipe/segment{
+/area/storage/tech)
+"nUP" = (
+/obj/effect/decal/warning_stripes/northwestcorner,
+/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dHJ" = (
+/area/engine/hardsuitstorage)
+"nVA" = (
+/obj/machinery/computer/HolodeckControl,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"nVJ" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dHL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/maintenance/fpmaint2)
+"nVL" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/area/storage/primary)
+"nVR" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ name = "south bump Important Area";
+ pixel_y = -24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
},
+/area/bridge)
+"nWl" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/pen/multi/fountain,
+/obj/item/stamp/rep,
+/obj/item/lighter/zippo/nt_rep,
+/turf/simulated/floor/carpet,
+/area/ntrep)
+"nWB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dHM" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/hydroponics)
+"nWI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "escape"
+ },
+/area/bridge/checkpoint/south)
+"nWK" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
},
+/area/construction/hallway)
+"nWY" = (
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dHN" = (
-/obj/machinery/light{
+/area/maintenance/xenozoo)
+"nXe" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
dir = 8
},
-/obj/item/twohanded/required/kirbyplants,
+/obj/item/taperecorder,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "blue"
+ icon_state = "grimy"
},
-/area/bridge/checkpoint/south)
-"dHO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/bridge)
+"nXm" = (
+/obj/structure/chair/office/dark{
+ dir = 4
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "blue"
+ icon_state = "dark"
},
-/area/bridge/checkpoint/south)
-"dHP" = (
-/obj/machinery/photocopier,
+/area/hydroponics)
+"nXs" = (
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "blue"
+ dir = 1
},
-/area/bridge/checkpoint/south)
-"dHQ" = (
-/obj/machinery/newscaster{
- pixel_x = 32
+/area/security/securehallway)
+"nXz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/filingcabinet/security,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "blue"
+ icon_state = "grimy"
},
-/area/bridge/checkpoint/south)
-"dHR" = (
-/obj/structure/table/reinforced,
-/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"
+/area/security/hos)
+"nXE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/clothing/mask/breath/medical,
-/obj/item/tank/anesthetic,
-/obj/item/storage/box/gloves{
- pixel_x = 4;
- pixel_y = 4
+/obj/structure/chair/comfy/black{
+ dir = 1
},
-/obj/item/storage/box/masks,
-/obj/item/storage/box/bodybags{
- pixel_x = -4;
- pixel_y = -4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/machinery/newscaster{
- pixel_y = -28
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitepurple"
+/turf/simulated/floor/carpet,
+/area/bridge)
+"nXK" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/goldenplaque{
+ desc = "ЦК награждает клоуна Шляпку как первого заключённого брига после перестройки. Он был задержан по статьям 100 104 и 309. Так держать.";
+ name = "Награда за первое нарушение в новом бриге";
+ pixel_y = 32
},
-/area/assembly/robotics)
-"dHS" = (
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "escape"
+ dir = 1;
+ icon_state = "red"
},
-/area/bridge/checkpoint/south)
-"dHT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/security/processing)
+"nYi" = (
+/obj/structure/table/reinforced,
+/obj/item/seeds/lime,
+/obj/item/seeds/watermelon,
+/obj/item/seeds/grape,
+/obj/item/reagent_containers/food/snacks/grown/wheat,
+/obj/item/reagent_containers/food/snacks/grown/watermelon,
+/obj/item/reagent_containers/food/snacks/grown/banana,
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Hydroponics Desk";
+ req_access_txt = "35";
+ tag = "icon-right"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "escape"
+ icon_state = "dark"
},
-/area/bridge/checkpoint/south)
-"dHU" = (
-/obj/structure/disposalpipe/junction{
- dir = 1
+/area/hydroponics)
+"nYp" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = -30
},
/turf/simulated/floor/plasteel{
- icon_state = "escape"
+ icon_state = "darkblue"
},
-/area/bridge/checkpoint/south)
-"dHV" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/area/bridge)
+"nYC" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "rdprivacy";
+ name = "Research Director Office Shutters";
+ opacity = 0
},
-/obj/machinery/disposal,
-/obj/machinery/light{
- dir = 4
+/turf/simulated/floor/plating,
+/area/crew_quarters/hor)
+"nYK" = (
+/obj/machinery/light/small,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+/obj/structure/cable,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/south)
-"dHW" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f6"
+/area/hallway/primary/central/north)
+"nYW" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dHX" = (
-/obj/machinery/door/airlock/engineering{
- name = "Electrical Maintenance";
- req_access_txt = "11"
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hallway/primary/central/north)
+"nYY" = (
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_y = -32
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dHY" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f10"
+/area/hallway/primary/central/north)
+"nZi" = (
+/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dHZ" = (
-/obj/structure/chair/office/dark{
- dir = 4
+/area/medical/research/nhallway)
+"nZz" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light/small,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/starboardsolar)
-"dIa" = (
-/obj/structure/cable,
-/obj/machinery/power/solar_control{
- id = "starboardsolar";
- name = "Aft Starboard Solar Control"
+/area/bridge)
+"nZM" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 4;
+ pixel_y = -32
},
-/obj/machinery/alarm{
+/obj/structure/closet/l3closet/virology,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/camera{
+ c_tag = "Virology Airlock";
dir = 1;
- pixel_y = -25
- },
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating,
-/area/maintenance/starboardsolar)
-"dIb" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/light/small{
- dir = 1
+ network = list("Medical","SS13")
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dIc" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/plasteel,
/area/medical/virology)
-"dId" = (
+"oag" = (
+/obj/machinery/light/small,
/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dIe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ pixel_y = -24
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hallway/primary/central/north)
+"oah" = (
+/obj/effect/landmark{
+ name = "Observer-Start"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "neutral"
},
-/area/medical/virology)
-"dIg" = (
-/obj/machinery/light{
- dir = 8
+/area/hallway/primary/central/north)
+"oak" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 4
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"oan" = (
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 58;
+ pixel_y = 30
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "neutral"
+ icon_state = "darkredcorners"
+ },
+/area/security/warden)
+"oau" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/toxins/mixing)
-"dIh" = (
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ dir = 0;
+ icon_state = "red"
},
-/area/toxins/mixing)
-"dIi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/camera{
- c_tag = "Research Central Hall";
+/area/security/brig)
+"oaU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- network = list("Research","SS13")
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/area/medical/research{
- name = "Research Division"
- })
-"dIj" = (
-/obj/effect/landmark/start{
- name = "Virologist"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/chair/office/dark{
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/library)
+"obc" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/blue,
+/obj/item/flash,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 10;
+ icon_state = "darkblue"
},
-/area/medical/virology)
-"dIk" = (
+/area/turret_protected/aisat)
+"obl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/turf/simulated/floor/greengrid,
+/area/security/nuke_storage)
+"obr" = (
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/central/north)
+"obt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/firealarm{
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreencorner"
+ icon_state = "cautioncorner"
},
-/area/medical/virology)
-"dIl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hallway/primary/starboard/east)
+"obu" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/machinery/door/airlock/medical{
- name = "Virology Bedroom";
- req_access_txt = "39"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hallway/primary/central/north)
+"obv" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "sw_maint2_pump"
},
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dIm" = (
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "sw_maint2_airlock";
+ pixel_y = 25;
+ tag_airpump = "sw_maint2_pump";
+ tag_chamber_sensor = "sw_maint2_sensor";
+ tag_exterior_door = "sw_maint2_outer";
+ tag_interior_door = "sw_maint2_inner"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "sw_maint2_sensor";
+ pixel_y = 33
+ },
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "4-8"
},
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"obB" = (
+/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/medical/virology)
-"dIn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/hallway/primary/central/north)
+"obE" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/area/engine/hardsuitstorage)
+"obR" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/central/north)
+"oca" = (
+/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "grimy"
},
-/area/medical/virology)
-"dIo" = (
-/obj/machinery/light{
- dir = 4
+/area/chapel/main)
+"ocg" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/machinery/status_display{
- pixel_x = 32
+/obj/structure/closet/crate,
+/obj/item/coin/silver,
+/obj/item/coin/silver,
+/obj/item/coin/silver,
+/obj/item/coin/silver,
+/obj/item/coin/silver,
+/obj/item/radio/intercom{
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dIp" = (
-/obj/structure/bookcase,
-/obj/effect/decal/cleanable/cobweb,
-/turf/simulated/floor/wood,
-/area/library/abandoned)
-"dIq" = (
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/library/abandoned)
-"dIr" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+ dir = 1;
+ icon_state = "vault"
},
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dIs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/security/nuke_storage)
+"ocu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/area/library/abandoned)
-"dIt" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/structure/cable{
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1
},
-/area/library/abandoned)
-"dIu" = (
-/turf/simulated/floor/wood,
-/area/library/abandoned)
-"dIv" = (
-/obj/effect/landmark{
- name = "blobstart"
+/area/security/brig)
+"ocw" = (
+/obj/machinery/status_display{
+ pixel_y = 32
},
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dIw" = (
-/obj/structure/chair/office/dark{
- dir = 1
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1;
+ icon_state = "vault"
},
-/area/library/abandoned)
-"dIx" = (
-/turf/simulated/wall,
-/area/chapel/office)
-"dIy" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dIz" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dIA" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dIB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/security/nuke_storage)
+"ocD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dIC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/barricade/wooden,
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
-/obj/machinery/newscaster{
- pixel_y = -28
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"ocE" = (
+/turf/simulated/floor/plasteel{
+ dir = 7;
+ icon_state = "yellow"
+ },
+/area/engine/hardsuitstorage)
+"ocK" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/fireaxecabinet{
+ pixel_y = 32
},
+/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ dir = 1;
+ icon_state = "vault"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dID" = (
+/area/security/nuke_storage)
+"ocR" = (
+/obj/effect/decal/warning_stripes/arrow,
+/obj/effect/decal/warning_stripes/yellow/partial,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"odf" = (
+/obj/structure/closet/secure_closet/freezer/money,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "vault"
+ },
+/area/security/nuke_storage)
+"odl" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/ne)
+"odT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dIE" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"oee" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dIF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
+/area/security/prison/cell_block/A)
+"oeC" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/grass,
/area/hallway/secondary/exit)
-"dIG" = (
+"oeE" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "escape"
+ },
+/area/bridge/checkpoint/south)
+"oeN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/south,
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Chapel Morgue";
+ req_access_txt = "27"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dIH" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/hallway/primary/central/north)
-"dII" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/chapel/office)
+"ofk" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/door/airlock/command/glass{
- name = "Customs Desk";
- req_access_txt = "19"
+/obj/structure/table/reinforced,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/south)
-"dIJ" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/toxins/lab)
+"ofn" = (
+/obj/machinery/atmospherics/unary/portables_connector{
+ layer = 2
},
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "SKPP"
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
/turf/simulated/floor/plating,
-/area/bridge/checkpoint/south)
-"dIK" = (
-/obj/structure/sign/directions/engineering{
- dir = 1;
- pixel_y = 8
+/area/maintenance/electrical)
+"ofo" = (
+/obj/machinery/computer/arcade,
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/structure/sign/directions/science{
- dir = 1;
- pixel_y = 1
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/structure/sign/directions/evac{
- pixel_y = -8
+/turf/simulated/floor/plasteel{
+ icon_state = "bcarpet05"
},
-/turf/simulated/wall,
-/area/bridge/checkpoint/south)
-"dIL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/prison/cell_block/A)
+"ofr" = (
+/obj/machinery/light{
+ dir = 8
},
/obj/machinery/camera{
- c_tag = "Mech Lab";
- dir = 1;
- network = list("Research","SS13")
+ c_tag = "Central Ring Hallway East 4";
+ dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dIM" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/door/airlock/public/glass{
- id_tag = "KPPN"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "eslock";
- name = "Escape Shuttle Lockdown"
+/area/hallway/primary/central/east)
+"ofG" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/south)
-"dIN" = (
-/obj/structure/sign/directions/evac{
- pixel_y = -8
+/area/crew_quarters/locker)
+"ofJ" = (
+/obj/machinery/light{
+ dir = 8
},
-/obj/structure/sign/directions/medical{
- dir = 1
+/obj/item/radio/intercom{
+ pixel_x = -32
},
-/obj/structure/sign/directions/security{
- dir = 1;
- pixel_y = 8
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/turf/simulated/wall,
-/area/bridge/checkpoint/south)
-"dIO" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/hallway/secondary/exit)
-"dIP" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall7"
+/area/medical/medbay2)
+"ofQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dIQ" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall12"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dIR" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "14"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dIS" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "17"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dIT" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle,
-/turf/simulated/floor/plating,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dIU" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall14"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dIV" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall11"
+/area/engine/break_room)
+"ogb" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dIW" = (
-/obj/structure/sign/biohazard,
-/turf/simulated/wall/r_wall,
-/area/medical/virology)
-"dIX" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/medical/virology)
-"dIY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/area/medical/virology)
-"dIZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/virology)
-"dJa" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hallway/primary/aft)
+"ogj" = (
+/obj/structure/sign/greencross{
+ pixel_x = 32
},
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Virology Office";
- req_access_txt = "39"
+/turf/simulated/wall,
+/area/medical/cryo)
+"ogy" = (
+/obj/structure/chair/office/light{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/reception)
+"ogG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dJb" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bcarpet05"
+ },
+/area/security/prison/cell_block/A)
+"ogO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door/window/brigdoor{
+ id = null;
+ name = "Creature Pen";
+ req_access_txt = "47"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"ogP" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/storage/box/monkeycubes,
+/obj/item/storage/box/monkeycubes,
+/obj/item/storage/box/monkeycubes,
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
+ name = "Chemistry Cleaner"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
+ dir = 10;
+ icon_state = "whitepurple"
},
-/area/medical/virology)
-"dJc" = (
+/area/toxins/misc_lab)
+"ogS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -93857,11 +92251,7 @@
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -93869,3450 +92259,3102 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/virology)
-"dJd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
+"ogV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dJe" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dJf" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/medical/virology)
-"dJg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/wall,
-/area/medical/virology)
-"dJh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/light_switch{
- pixel_x = -26;
- pixel_y = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreencorner"
+ icon_state = "neutralfull"
},
-/area/medical/virology)
-"dJi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/crew_quarters/locker)
+"ogY" = (
+/obj/machinery/vending/medical,
+/obj/effect/decal/warning_stripes/blue/hollow,
+/obj/machinery/light{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/item/radio/intercom{
+ pixel_x = 30
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/virology)
-"dJj" = (
-/obj/machinery/ai_status_display{
- pixel_x = 32
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
+/area/medical/sleeper)
+"ogZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/area/medical/virology)
-"dJk" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable,
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/area/solar/starboard)
-"dJl" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ icon_state = "2-8"
},
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -26
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dJm" = (
+/area/security/prison/cell_block/A)
+"oha" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/library/abandoned)
-"dJn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/turf/simulated/floor/wood,
-/area/library/abandoned)
-"dJo" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/library/abandoned)
-"dJp" = (
+/area/engine/break_room)
+"ohb" = (
+/turf/simulated/floor/carpet,
+/area/ntrep)
+"ohk" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "4-8"
},
-/area/library/abandoned)
-"dJq" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j1 (WEST)"
},
-/area/library/abandoned)
-"dJr" = (
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dJs" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/library/abandoned)
-"dJt" = (
-/obj/structure/table/wood,
-/obj/effect/decal/cleanable/cobweb2,
-/obj/item/flashlight/lamp,
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/library/abandoned)
-"dJu" = (
-/obj/structure/morgue,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/chapel/office)
-"dJv" = (
+/area/engine/break_room)
+"ohs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"ohx" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/table/glass,
+/obj/item/storage/box/beakers,
+/obj/item/storage/box/syringes,
+/obj/effect/decal/warning_stripes/northeastcorner,
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"ohz" = (
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/obj/machinery/r_n_d/protolathe,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"ohL" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/area/chapel/office)
-"dJw" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/chapel/office)
-"dJx" = (
-/turf/simulated/wall,
-/area/chapel/main)
-"dJy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/engine/hardsuitstorage)
+"ohN" = (
+/obj/structure/chair{
+ dir = 8
},
-/obj/machinery/door/airlock/maintenance{
- name = "Break Room Maintenance";
- req_access_txt = "47"
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/security/processing)
+"ohO" = (
+/obj/machinery/camera{
+ c_tag = "Medbay Waiting Room";
+ dir = 4;
+ network = list("SS13","Medical")
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/maintenance/asmaint2)
-"dJz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/chapel/main)
-"dJA" = (
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_y = 32
+/area/medical/medbay)
+"oij" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/flasher{
+ desc = "A floor-mounted flashbulb device.";
+ id = "permacell2";
+ layer = 5;
+ pixel_y = -24;
+ range = 3
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"oip" = (
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dJB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitegreencorner"
+ },
+/area/medical/medbay3)
+"ojd" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dJC" = (
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/effect/decal/warning_stripes/north,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dJD" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dJE" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/starboard)
+"ojf" = (
/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/louge)
+"ojk" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/toy/figure/warden,
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "First Surgery Theatre";
- name = "Surgery Shutters"
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -24;
+ pixel_y = 32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkred"
},
+/area/security/warden)
+"ojn" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
-"dJF" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dJG" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dJH" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dJI" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall3"
+/area/security/processing)
+"ojw" = (
+/obj/structure/table,
+/obj/item/plant_analyzer,
+/obj/item/cultivator,
+/obj/item/reagent_containers/spray/plantbgone,
+/obj/machinery/light{
+ dir = 8
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dJJ" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Escape Shuttle Infirmary"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"ojx" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/sleep)
+"ojC" = (
+/obj/structure/bed,
+/obj/structure/curtain/open,
+/obj/item/bedsheet/medical{
+ level = 1.4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dJK" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dJL" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+/area/medical/ward)
+"ojL" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/table/reinforced,
-/obj/item/flashlight,
-/obj/item/reagent_containers/spray/cleaner,
+/area/security/permabrig)
+"ojU" = (
+/obj/structure/bed,
+/obj/item/bedsheet/patriot,
+/obj/effect/decal/warning_stripes/red/hollow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ icon_state = "dark"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dJM" = (
+/area/security/permabrig)
+"okc" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/chair/office/light,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Gravity Generator Foyer";
+ req_access_txt = "10"
},
-/area/medical/cmo)
-"dJN" = (
-/turf/simulated/floor/plasteel{
- icon_state = "cmo"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dJO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"oke" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dJP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering";
+ req_access_txt = "32"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/virology)
-"dJQ" = (
+/area/engine/break_room)
+"okj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/toy/figure/dsquad,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "grimy"
},
-/area/medical/virology)
-"dJR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/assembly/showroom)
+"okq" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/reception)
+"okD" = (
+/obj/effect/decal/cleanable/blood/xeno,
+/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+ icon_state = "dark"
},
-/area/medical/virology)
-"dJS" = (
-/obj/machinery/atmospherics/unary/tank/air{
- dir = 1
+/area/maintenance/xenozoo)
+"okH" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/hologram/holopad{
+ pixel_x = -16
},
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (EAST)"
+ },
+/area/toxins/lab)
+"okI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"okQ" = (
+/obj/machinery/vending/engivend,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/virology)
-"dJT" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1
+/area/engine/hardsuitstorage)
+"okX" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/status_display{
- pixel_y = -32
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "darkred"
+ },
+/area/security/permabrig)
+"olb" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/medical/virology)
-"dJU" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/table,
-/obj/item/storage/box/donkpockets{
- pixel_x = 2;
- pixel_y = 3
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/ward)
+"olj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/virology)
-"dJV" = (
+/area/security/permabrig)
+"olA" = (
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"olG" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/checkpoint)
+"olI" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"olS" = (
/obj/structure/table,
-/obj/machinery/kitchen_machine/microwave,
+/obj/item/storage/box/chemimp{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/storage/box/trackimp,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"omi" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/camera{
+ c_tag = "Permabrig Office South";
+ dir = 1;
+ network = list("Prison","SS13");
+ pixel_x = 22
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "darkred"
},
-/area/medical/virology)
-"dJW" = (
-/obj/structure/sign/nosmoking_2,
-/turf/simulated/wall,
-/area/medical/virology)
-"dJX" = (
-/obj/structure/dresser,
+/area/security/permabrig)
+"omz" = (
+/obj/machinery/computer/area_atmos/area,
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/virology)
-"dJY" = (
+/area/security/permabrig)
+"omC" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/virology)
-"dJZ" = (
-/obj/structure/closet/wardrobe/virology_white,
-/obj/item/storage/belt/medical,
-/obj/item/storage/belt/medical,
-/obj/item/storage/belt/medical,
-/obj/machinery/camera{
- c_tag = "Virology Bedroom";
- dir = 1;
- network = list("Medical","SS13")
+/area/bridge/checkpoint/south)
+"omJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/medical/virology)
-"dKa" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/library/abandoned)
-"dKb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/library/abandoned)
-"dKc" = (
+/area/hallway/primary/port/west)
+"omO" = (
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/library/abandoned)
-"dKd" = (
-/obj/structure/table,
-/obj/machinery/newscaster{
- pixel_x = -32
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"omQ" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/firealarm{
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/area/chapel/office)
-"dKe" = (
+/area/medical/surgery2)
+"omU" = (
/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurple"
+ },
+/area/assembly/robotics)
+"onj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"onq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/chapel/office)
-"dKf" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/window/eastleft{
- dir = 2;
- name = "Chapel Delivery";
- req_access_txt = "22"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/chapel/main)
-"dKg" = (
-/obj/structure/bookcase,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/structure/cable{
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/main)
-"dKh" = (
-/obj/structure/table/wood,
-/obj/machinery/status_display{
- pixel_y = 32
+ dir = 1
},
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/security/permahallway)
+"onr" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"onT" = (
+/obj/structure/chair/comfy/teal,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/area/chapel/main)
-"dKi" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/chapel/main)
-"dKj" = (
+/area/medical/ward)
+"oof" = (
+/obj/structure/sign/nosmoking_1,
+/turf/simulated/wall,
+/area/medical/morgue)
+"oop" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/chapel/main)
-"dKk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/obj/item/radio/intercom{
- pixel_y = 26
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/blueshield)
+"ooA" = (
+/obj/machinery/computer/prisoner{
+ req_access = null;
+ req_access_txt = "2"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/main)
-"dKl" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/machinery/light_switch{
- pixel_y = 24
+/area/security/permabrig)
+"ooO" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/light/small{
+ dir = 1
},
+/obj/item/clipboard,
+/obj/item/folder/blue,
/obj/machinery/camera{
- c_tag = "Chapel North"
+ c_tag = "AI Transit Tube Access";
+ network = list("SS13","Engineering")
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/main)
-"dKm" = (
-/obj/structure/window/full/reinforced/tinted,
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/chapel/main)
-"dKn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dKo" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/engine/aienter)
+"ooV" = (
+/obj/machinery/atm{
+ pixel_x = -32
},
-/area/hallway/secondary/exit)
-"dKq" = (
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/hallway/secondary/exit)
-"dKr" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/centcom{
- name = "Chapel";
- opacity = 1
+/area/crew_quarters/fitness)
+"ooZ" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "eslock";
- name = "Escape Shuttle Lockdown"
+/obj/item/radio/intercom{
+ pixel_y = 25
},
+/turf/simulated/shuttle/floor,
+/area/shuttle/pod_4)
+"opt" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/chapel/main)
-"dKt" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
- dir = 8
+/area/library/abandoned)
+"opy" = (
+/obj/effect/landmark{
+ name = "lightsout"
},
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dKu" = (
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dKv" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
+/area/storage/primary)
+"opE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dKw" = (
-/obj/machinery/status_display,
-/turf/simulated/shuttle/wall{
- icon_state = "swall3"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dKx" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "solar_xeno_airlock";
- name = "exterior access button";
- pixel_x = -25;
- pixel_y = 25;
- req_access_txt = "13"
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/starboard)
-"dKy" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "16"
- },
-/turf/simulated/floor/plating,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dKz" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "Virology";
- name = "Virology Shutters"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Temporal Prisoner Cell";
+ req_access_txt = "63"
},
-/turf/simulated/floor/plating,
-/area/medical/virology/lab)
-"dKA" = (
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/processing)
+"opF" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Virology";
- name = "Virology Shutters"
- },
-/turf/simulated/floor/plating,
-/area/medical/virology/lab)
-"dKB" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ id_tag = "ai1";
+ name = "Turret Shutters"
},
/turf/simulated/floor/plating,
-/area/medical/virology)
-"dKC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- pixel_x = -25
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dKD" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dKE" = (
+/area/turret_protected/aisat_interior)
+"opP" = (
/obj/machinery/light/small{
dir = 8
},
/turf/simulated/floor/plating,
/area/library/abandoned)
-"dKF" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/cult/archives,
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dKG" = (
-/obj/structure/bookcase,
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dKH" = (
+"oqa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/closet/crate,
-/obj/item/flashlight,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dKI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "neutralcorner"
},
-/area/chapel/office)
-"dKJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
+/area/bridge/vip)
+"oqc" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/light{
+ dir = 1;
on = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/office)
-"dKK" = (
-/obj/machinery/door/airlock/centcom{
- name = "Chapel Morgue";
- opacity = 1;
- req_access_txt = "27"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/office)
-"dKL" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/chapel/main)
-"dKM" = (
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"oql" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/chapel/main)
-"dKN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/chapel/main)
-"dKO" = (
/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/centcom{
- name = "Chapel";
- opacity = 1
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "eslock";
- name = "Escape Shuttle Lockdown"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/main)
-"dKP" = (
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dKQ" = (
-/obj/machinery/door/airlock/external{
- hackProof = 1;
- id_tag = "emergency_home";
- name = "Escape Airlock"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dKR" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/machinery/shieldgen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dKS" = (
-/obj/machinery/light/small{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/rack,
-/obj/item/storage/toolbox/electrical{
- pixel_x = -4;
- pixel_y = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/storage/toolbox/emergency,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 4;
- pixel_y = -4
+/turf/simulated/floor/carpet,
+/area/medical/psych)
+"oqp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dKT" = (
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/fernybush,
-/obj/structure/window/full/shuttle,
-/turf/simulated/floor/grass,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dKU" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dKV" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay2)
-"dKW" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "8"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dKX" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+ icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
- dir = 4;
+ dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/surgery2)
+"oqr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
initialize_directions = 11
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dKY" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- name = "Crematorium Maintenance";
- req_access_txt = "27;12"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/maintenance/asmaint2)
-"dKZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dLa" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
+/turf/simulated/floor/wood,
+/area/assembly/showroom)
+"oqs" = (
+/obj/structure/chair,
+/obj/machinery/door/window/eastright,
+/turf/simulated/floor/plasteel{
+ icon_state = "carpet"
},
+/area/crew_quarters/courtroom)
+"oqv" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dLb" = (
+/area/storage/primary)
+"oqw" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/virology)
-"dLc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/shower{
- dir = 8;
- tag = "icon-shower (WEST)"
+ icon_state = "0-2"
},
-/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/light/small{
- dir = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dLd" = (
-/obj/structure/sink{
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- pixel_x = -12;
- pixel_y = 2
+ id_tag = "ai1";
+ name = "Turret Shutters"
},
-/obj/structure/mirror{
- pixel_x = -32
+/turf/simulated/floor/plating,
+/area/turret_protected/aisat_interior)
+"oqA" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/research{
+ name = "Research Division"
+ })
+"oqG" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dLe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/security/prisonershuttle)
+"oqI" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/light,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/station)
+"oqN" = (
+/obj/structure/delta_statue/se,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ dir = 6;
+ icon_state = "vault"
},
-/area/medical/virology)
-"dLf" = (
+/area/bridge/vip)
+"oqZ" = (
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Paramedic";
+ req_access_txt = "66"
+ },
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/landmark{
- name = "lightsout"
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/virology)
-"dLg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/radio/intercom{
+/area/medical/paramedic)
+"orl" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/ward)
+"orw" = (
+/obj/machinery/atmospherics/binary/pump{
+ desc = "Переводит смесь из хранилища в трубы";
dir = 4;
- pixel_x = 28
+ name = "Из хранилища в трубы";
+ target_pressure = 101
},
-/obj/machinery/camera{
- c_tag = "Virology Main Hall";
- dir = 9;
- network = list("Medical","SS13")
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 1;
+ name = "Труба дыхательной смеси"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
- },
-/area/medical/virology)
-"dLh" = (
-/obj/structure/sink{
- pixel_y = 30
+ dir = 10;
+ icon_state = "green"
},
-/obj/machinery/light{
- dir = 8
+/area/atmos)
+"orN" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/item/radio/intercom{
+ pixel_y = 26
},
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/grown/banana{
- pixel_x = -5;
- pixel_y = 5
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/item/reagent_containers/food/snacks/grown/banana{
- pixel_x = 6;
- pixel_y = 5
+/area/chapel/main)
+"orS" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ desc = "Труба хранит в себе набор газов для смешивания";
+ dir = 4;
+ name = "Труба смешивания"
},
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
dir = 1;
- icon_state = "whitegreencorner"
+ name = "Труба фильтрации"
},
-/area/medical/virology)
-"dLi" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"orT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/twohanded/required/kirbyplants,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/virology)
-"dLj" = (
+/area/crew_quarters/fitness)
+"osl" = (
+/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreen"
+ icon_state = "dark"
},
-/area/medical/virology/lab)
-"dLk" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/area/bridge)
+"oss" = (
+/obj/structure/table/wood,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"osx" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/toxins/explab)
+"osE" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/item/twohanded/required/kirbyplants,
+/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+ icon_state = "grimy"
},
-/area/medical/virology)
-"dLl" = (
-/obj/structure/sink{
- pixel_y = 30
+/area/bridge)
+"osJ" = (
+/obj/structure/chair/office/dark{
+ dir = 8
},
-/obj/machinery/light{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/table,
-/obj/item/storage/box/monkeycubes,
-/obj/item/storage/box/monkeycubes/farwacubes,
-/obj/item/storage/box/monkeycubes/neaeracubes,
-/obj/item/storage/box/monkeycubes/stokcubes,
-/obj/item/storage/box/monkeycubes/wolpincubes,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cabin4)
+"oth" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Bridge";
+ departmentType = 5;
+ name = "Bridge Requests Console";
+ pixel_x = -30;
+ pixel_y = -30
},
-/area/medical/virology)
-"dLm" = (
-/obj/effect/landmark{
- name = "revenantspawn"
+/obj/machinery/camera{
+ c_tag = "Bridge Center";
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/turretid/stun{
+ control_area = "\improper AI Upload Chamber";
+ name = "AI Upload Turret Control";
+ pixel_y = -24;
+ req_access = list(75)
},
-/area/library/abandoned)
-"dLn" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/turf/simulated/floor/carpet,
+/area/bridge)
+"otn" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 29;
+ pixel_y = 22
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dLo" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/sink{
+ pixel_y = 30
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"otC" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dLp" = (
-/obj/structure/table,
-/obj/item/radio/intercom{
- dir = 8;
- pixel_x = -28
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/office)
-"dLq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark/start{
- name = "Chaplain"
+/area/magistrateoffice)
+"otM" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/light_switch{
+ pixel_y = -24
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/office)
-"dLr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/security/permabrig)
+"otO" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "blueshield";
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/blueshield)
+"otP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/maintenance/gambling_den)
-"dLs" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+"oud" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/binary/volume_pump{
+ desc = "Позволяет опустошить трубы для смеси, отправив весь газ в отходы на фильтрацию";
dir = 4;
- on = 1
+ name = "Смесь в отходы"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/chapel/main)
-"dLt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/chapel/main)
-"dLu" = (
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"oum" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
dir = 4;
- initialize_directions = 11
+ icon_state = "whitegreencorner"
},
-/obj/effect/landmark{
- name = "lightsout"
+/area/medical/virology/lab)
+"ouw" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/chapel/main)
-"dLv" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 0;
+ icon_state = "red"
},
+/area/security/customs)
+"ouL" = (
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "purplefull"
},
-/area/chapel/main)
-"dLw" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/area/medical/research{
+ name = "Research Division"
+ })
+"ouO" = (
+/obj/structure/table/wood,
+/obj/machinery/cell_charger,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"ovf" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 10;
+ name = "Труба дыхательной смеси"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/chapel/main)
-"dLx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/area/atmos)
+"ovJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/chapel/main)
-"dLy" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 0;
+ icon_state = "red"
},
-/area/chapel/main)
-"dLz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/crew_quarters/locker)
+"ovP" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cabin4)
+"ovT" = (
+/obj/machinery/door_control{
+ id = "Exp_lockdown";
+ name = "Expedition Lockdown Control";
+ pixel_x = 7;
+ pixel_y = -26;
+ req_access_txt = "62"
+ },
+/obj/machinery/door_control{
+ id = "eva-shutters";
+ name = "Auxilary E.V.A. Storage";
+ pixel_x = -7;
+ pixel_y = -26;
+ req_one_access_txt = "18"
+ },
+/obj/machinery/door_control{
+ id = "BridgeLockdown";
+ name = "Bridge Lockdown";
+ pixel_x = 7;
+ pixel_y = -35;
+ req_access_txt = "62"
+ },
+/turf/simulated/floor/carpet,
+/area/bridge)
+"ovW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dLA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dLB" = (
-/obj/machinery/door/airlock/shuttle{
- aiControlDisabled = 1;
- hackProof = 1;
- id_tag = "s_docking_airlock";
- name = "Shuttle Hatch"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dLC" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/secondary/exit)
-"dLD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/atmos)
+"ovX" = (
+/obj/structure/table/reinforced,
+/obj/item/folder{
+ pixel_x = -4
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dLG" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/item/folder/red{
+ pixel_y = 3
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "green"
+/obj/item/folder/blue{
+ pixel_x = 5
},
-/area/hallway/secondary/exit)
-"dLH" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair,
-/obj/structure/disposalpipe/sortjunction{
- name = "Chapel Junction";
- sortType = 17
+/obj/item/folder/yellow{
+ pixel_x = 2;
+ pixel_y = 2
},
-/obj/effect/landmark/start{
- name = "Civilian"
+/obj/item/stamp/law,
+/obj/item/pen/multi,
+/obj/item/radio/intercom{
+ pixel_y = 23
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "green"
- },
-/area/hallway/secondary/exit)
-"dLI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dLJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/lawoffice)
+"owd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
},
-/area/hallway/secondary/exit)
-"dLK" = (
-/obj/machinery/light{
- dir = 4
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dLL" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "15"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/shuttle/escape{
- parallax_movedir = 2
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
})
-"dLM" = (
-/obj/machinery/ai_status_display,
-/turf/simulated/shuttle/wall{
- icon_state = "swall3"
+"owg" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dLN" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/item/radio/intercom{
+/turf/simulated/floor/plasteel{
dir = 8;
- pixel_x = -28
+ icon_state = "darkblue"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dLO" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dLP" = (
+/area/security/detectives_office)
+"owl" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/medical/ward)
-"dLQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/virology)
-"dLR" = (
-/obj/structure/chair/office/dark{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 4
},
-/obj/effect/landmark/start{
- name = "Virologist"
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"owm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
},
+/area/turret_protected/aisat_interior)
+"owp" = (
+/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHWEST)"
},
-/area/medical/virology/lab)
-"dLS" = (
+/area/medical/reception)
+"owB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"owM" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
+ dir = 4;
+ icon_state = "green"
},
-/area/medical/virology/lab)
-"dLT" = (
+/area/hydroponics)
+"owP" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ id_tag = "captainofficedoor";
+ name = "Captain's Office";
+ req_access = null;
+ req_access_txt = "20"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"oxm" = (
+/obj/machinery/camera{
+ c_tag = "Research Central Hall";
+ dir = 8;
+ network = list("Research","SS13")
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+ icon_state = "whitepurplecorner"
},
-/area/medical/virology/lab)
-"dLU" = (
+/area/medical/research/shallway)
+"oxF" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 4;
+ icon_state = "red"
},
-/area/medical/virology)
-"dLV" = (
-/obj/effect/spawner/window/reinforced,
+/area/security/securehallway)
+"oyq" = (
+/obj/machinery/hologram/holopad,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/medical/virology/lab)
-"dLW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- initialize_directions = 11
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreencorner"
+ icon_state = "cmo"
},
-/area/medical/virology)
-"dLX" = (
+/area/medical/cmo)
+"oyr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Atmospherics Desc";
+ req_one_access_txt = "24; 10"
},
-/area/medical/virology)
-"dLY" = (
-/obj/structure/closet/l3closet/virology,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dLZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/virology)
-"dMa" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 4;
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/closet/l3closet/virology,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/camera{
- c_tag = "Virology Airlock";
- dir = 1;
- network = list("Medical","SS13")
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dMb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dMc" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/simulated/floor/wood,
-/area/library/abandoned)
-"dMd" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/library/abandoned)
-"dMe" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dMf" = (
+/area/atmos)
+"oyt" = (
/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ name = "server vent";
+ on = 1;
+ pressure_checks = 0
},
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+/turf/simulated/floor/bluegrid{
+ icon_state = "gcircuit";
+ name = "Mainframe Floor";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/toxins/server)
+"oyP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/library/abandoned)
-"dMg" = (
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dMh" = (
-/obj/machinery/camera{
- c_tag = "Chapel Backroom";
- dir = 8
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"oyT" = (
+/obj/machinery/vending/coffee,
+/obj/machinery/light,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/office)
-"dMi" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ icon_state = "red"
},
+/area/security/processing)
+"ozi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+/obj/machinery/portable_atmospherics/canister/sleeping_agent,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/cmo)
-"dMj" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/area/chapel/main)
-"dMk" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 10
},
-/area/chapel/main)
-"dMl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"ozk" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"dMm" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
+ dir = 4;
+ icon_state = "red"
},
-/area/chapel/main)
-"dMn" = (
+/area/security/brig)
+"ozo" = (
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 28
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
+ dir = 6;
+ icon_state = "darkred"
},
-/area/chapel/main)
-"dMo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/window/reinforced{
- dir = 1
+/area/security/podbay)
+"ozq" = (
+/obj/structure/bookcase,
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_y = -32
},
-/obj/machinery/vending/snack,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dMp" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/turf/simulated/floor/wood,
+/area/library)
+"ozv" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
+/area/shuttle/administration)
+"ozQ" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dMq" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"ozX" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/hallway/secondary/exit)
-"dMr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/structure/disposalpipe/segment{
+/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "darkred"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/security/evidence)
+"oAa" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/hallway/secondary/exit)
-"dMs" = (
-/obj/structure/disposalpipe/segment{
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
dir = 8;
- icon_state = "pipe-c"
+ id = "execution"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "execution"
},
-/area/hallway/secondary/exit)
-"dMt" = (
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/sunnybush,
-/obj/structure/window/full/shuttle,
-/turf/simulated/floor/grass,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dMu" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "execution"
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "execution"
+ },
+/turf/simulated/floor/plating,
+/area/security/execution)
+"oAc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1
},
-/area/maintenance/electrical)
-"dMv" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/security/prison/cell_block/A)
+"oAg" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "ai1";
+ name = "Turret Shutters"
},
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dMw" = (
+/turf/simulated/floor/plating,
+/area/turret_protected/aisat_interior)
+"oAp" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "green"
},
-/area/medical/virology/lab)
-"dMx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/crew_quarters/courtroom)
+"oAs" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"oAA" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/virology/lab)
-"dMy" = (
+/area/hallway/primary/port/west)
+"oAM" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "1-8"
},
-/area/medical/virology/lab)
-"dMz" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/port)
+"oBd" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"oBf" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "neutralcorner"
},
-/area/medical/virology/lab)
-"dMA" = (
+/area/hallway/primary/central/north)
+"oBj" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research/nhallway)
+"oBA" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 32
+ },
+/obj/item/paper/deltainfo,
+/turf/simulated/floor/plasteel{
+ icon_state = "barber"
+ },
+/area/civilian/barber)
+"oBH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"oBL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/table/glass,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/healthanalyzer,
-/obj/item/clothing/glasses/hud/health,
-/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dMB" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"oBM" = (
+/obj/machinery/camera{
+ c_tag = "Research West Hallway";
+ network = list("Research","SS13")
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research/nhallway)
+"oCc" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/northwest,
+/obj/structure/table,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/maintenance/electrical)
+"oCg" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/storage/box/bodybags,
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/surgery1)
+"oCk" = (
+/obj/structure/table/reinforced,
+/obj/item/restraints/handcuffs{
+ pixel_y = -3
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/item/restraints/handcuffs,
+/obj/item/restraints/handcuffs{
+ pixel_y = 3
},
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Virology Lab";
- req_access_txt = "39"
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/main)
+"oCD" = (
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dMC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/hallway/secondary/exit)
+"oCG" = (
+/obj/machinery/light,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/firealarm{
+ pixel_y = -26
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/bed/dogbed{
+ desc = "A comfy-looking spider bed. You can even strap your pet in, just in case the gravity turns off.";
+ name = "spider bed"
},
+/mob/living/simple_animal/hostile/retaliate/araneus,
+/turf/simulated/floor/wood,
+/area/security/hos)
+"oCP" = (
+/obj/structure/weightmachine/stacklifter,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
+ icon_state = "dark"
},
-/area/medical/virology)
-"dMD" = (
+/area/crew_quarters/fitness)
+"oCX" = (
+/obj/item/radio/intercom,
+/turf/simulated/wall,
+/area/hallway/primary/central/ne)
+"oDk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/crew_quarters/cabin1)
+"oDx" = (
+/obj/machinery/camera/motion{
+ c_tag = "Vault";
dir = 4
},
-/obj/structure/disposalpipe/junction,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/virology)
-"dME" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ icon_state = "dark"
},
+/area/security/nuke_storage)
+"oDB" = (
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dMF" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/medical/virology)
-"dMG" = (
-/obj/structure/table/glass,
-/obj/item/folder/white,
-/obj/item/pen/red,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 5
+ icon_state = "white"
},
-/obj/machinery/requests_console{
- department = "Virology";
- departmentType = 3;
- name = "Virology Requests Console";
- pixel_y = 30
+/area/toxins/mixing)
+"oEj" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dMH" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/medical/research/nhallway)
+"oEk" = (
+/obj/structure/closet/firecloset,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/medical/research/nhallway)
+"oEz" = (
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/medical/virology)
-"dMI" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/range)
+"oEJ" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/wood,
-/area/library/abandoned)
-"dMJ" = (
-/obj/structure/chair/office/dark,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/library/abandoned)
-"dMK" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/library/abandoned)
-"dML" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
+"oEO" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/pen,
-/turf/simulated/floor/wood,
-/area/library/abandoned)
-"dMM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/library/abandoned)
-"dMN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/library/abandoned)
-"dMO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/reagent_containers/food/drinks/bottle/vodka{
+ pixel_x = 5;
+ pixel_y = 15
},
-/obj/machinery/door/morgue{
- name = "Occult Study"
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_x = -8;
+ pixel_y = -6
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"oET" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A31";
+ location = "A30"
},
-/area/library/abandoned)
-"dMP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/spawner/random_spawners/blood_maybe,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "neutral"
},
-/area/library/abandoned)
-"dMQ" = (
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/area/crew_quarters/sleep)
+"oFh" = (
+/obj/structure/table/glass,
+/obj/item/folder/white,
+/obj/item/flashlight/pen,
+/obj/item/clothing/accessory/stethoscope,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/chapel/office)
-"dMR" = (
+/area/medical/surgery2)
+"oFp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark{
- name = "blobstart"
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/medical/research/restroom)
+"oFs" = (
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"oFJ" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel{
dir = 4;
- initialize_directions = 11
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/hallway/primary/central/south)
+"oFK" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/area/chapel/office)
-"dMS" = (
-/obj/machinery/alarm{
+/turf/simulated/floor/plating/airless,
+/area/toxins/test_area)
+"oFL" = (
+/obj/structure/table/wood,
+/obj/item/book/manual{
+ attack_verb = list("nationalized","equalized","collectivized");
+ damtype = "burn";
+ desc = "A book, that descripe path to building communism. Still actual in 26XX. It has bear sketch on cover";
+ force = 5;
+ name = "Communist party manifesto"
+ },
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken7";
+ tag = "icon-wood-broken7"
+ },
+/area/maintenance/fsmaint)
+"oFU" = (
+/obj/structure/rack{
dir = 8;
- pixel_x = 25
+ layer = 2.9
},
-/obj/machinery/light{
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/hardsuit/medical,
+/obj/item/clothing/mask/gas,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/chapel/office)
-"dMT" = (
-/obj/structure/chair/wood,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
+/obj/machinery/door/window/westleft{
+ dir = 2;
+ name = "Emergency Hardsuits";
+ req_access_txt = "40"
},
-/area/chapel/main)
-"dMU" = (
-/obj/structure/chair/wood,
/turf/simulated/floor/plasteel{
- icon_state = "chapel"
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/chapel/main)
-"dMV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair/wood,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
+/area/medical/biostorage)
+"oFX" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"oGg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/chapel/main)
-"dMW" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/chair/wood,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
+ dir = 9;
+ icon_state = "darkblue"
},
-/area/chapel/main)
-"dMX" = (
-/obj/machinery/light{
+/area/turret_protected/ai)
+"oGK" = (
+/obj/structure/window/reinforced{
dir = 8
},
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/chair/comfy/brown{
+ dir = 1
},
-/area/hydroponics)
-"dMY" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dMZ" = (
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"oGM" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Permabrig";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/west,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dNa" = (
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dNd" = (
-/obj/effect/landmark{
- name = "lightsout"
+ icon_state = "1-2"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/hallway/secondary/exit)
-"dNe" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dNf" = (
-/obj/structure/extinguisher_cabinet,
-/turf/simulated/shuttle/wall{
- icon_state = "swall3"
+/area/security/permabrig)
+"oGO" = (
+/obj/machinery/light,
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dNg" = (
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape{
parallax_movedir = 2
})
-"dNh" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
- },
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 8
+"oGV" = (
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway East 3";
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHEAST)"
+ icon_state = "neutralcorner"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dNi" = (
-/obj/structure/cable{
+/area/hallway/primary/central/east)
+"oGY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"oGZ" = (
+/obj/structure/sign/vacuum,
+/turf/simulated/wall/r_wall,
+/area/engine/engineering)
+"oHg" = (
+/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/computer/pandemic,
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dNj" = (
-/obj/structure/chair/office/dark,
-/obj/effect/landmark/start{
- name = "Virologist"
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"oHq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/medical/virology/lab)
-"dNk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
+ icon_state = "1-2"
},
-/area/medical/virology/lab)
-"dNl" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ dir = 1;
+ icon_state = "darkblue"
},
-/area/medical/virology/lab)
-"dNm" = (
+/area/medical/surgery2)
+"oHz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/medical/virology/lab)
-"dNn" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/area/medical/virology/lab)
-"dNo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Pods";
+ req_access_txt = "71"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
+ icon_state = "dark"
},
-/area/medical/virology)
-"dNp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/security/podbay)
+"oHH" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -32
},
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+/obj/item/radio/intercom/specops{
+ pixel_x = 32
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/specops)
+"oHJ" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "red"
},
-/area/medical/virology)
-"dNq" = (
+/area/security/main)
+"oHK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dNr" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/medical/virology)
-"dNs" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
+/area/maintenance/gambling_den)
+"oHL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/area/medical/virology)
-"dNt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/medical/virology)
-"dNu" = (
+/area/medical/cmo)
+"oHS" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreen"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/virology)
-"dNv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"oHY" = (
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dNw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/table/glass,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/obj/machinery/alarm{
- pixel_y = 23
+ dir = 1
},
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28
+/area/security/securehallway)
+"oId" = (
+/obj/structure/chair,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
+/area/crew_quarters/fitness)
+"oIf" = (
+/obj/structure/delta_statue/ne,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+ dir = 9;
+ icon_state = "vault"
},
-/area/medical/virology)
-"dNx" = (
+/area/bridge/vip)
+"oIk" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dNy" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/pen,
-/turf/simulated/floor/wood,
-/area/library/abandoned)
-"dNz" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light/small,
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/library/abandoned)
-"dNA" = (
-/obj/structure/table/wood,
-/obj/item/paper/deltainfo,
-/turf/simulated/floor/wood,
-/area/library/abandoned)
-"dNB" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/wood,
-/area/library/abandoned)
-"dNC" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dND" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/crayons,
-/turf/simulated/floor/wood,
-/area/library/abandoned)
-"dNE" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dNF" = (
-/obj/structure/dresser,
-/turf/simulated/floor/plating,
-/area/library/abandoned)
-"dNG" = (
-/obj/structure/table/wood,
-/obj/item/taperecorder,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/library/abandoned)
-"dNH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
+/turf/simulated/floor/carpet,
+/area/security/vacantoffice)
+"oIm" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/office)
-"dNI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/newscaster{
- pixel_x = 32
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/chapel/office)
-"dNJ" = (
-/obj/structure/chair/wood,
+/area/crew_quarters/locker)
+"oIn" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "chapel"
+ icon_state = "red"
},
-/area/chapel/main)
-"dNK" = (
-/obj/structure/chair/wood,
+/area/security/permahallway)
+"oIq" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/area/chapel/main)
-"dNL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair/wood,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/toxins/lab)
+"oIw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/chapel/main)
-"dNM" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/chair/wood,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"oIy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/chapel/main)
-"dNN" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "green"
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"oIH" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/grown/redbeet,
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken3";
+ tag = "icon-wood-broken3"
},
-/area/hallway/secondary/exit)
-"dNO" = (
-/obj/structure/flora/ausbushes/palebush,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"dNP" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"dNQ" = (
-/obj/structure/flora/ausbushes/leafybush,
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"dNR" = (
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dNS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/poster/random{
- pixel_x = -32
+/area/maintenance/fsmaint)
+"oIN" = (
+/obj/machinery/door/airlock/security{
+ name = "Restroom";
+ req_access_txt = "63"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "freezerfloor"
},
-/area/hallway/primary/central/sw)
-"dNT" = (
-/obj/structure/sign/greencross,
-/turf/simulated/shuttle/wall{
- icon_state = "swall3"
- },
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dNU" = (
-/obj/machinery/bodyscanner{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "cmo"
- },
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dNV" = (
-/obj/machinery/sleeper,
-/obj/machinery/defibrillator_mount/loaded{
- pixel_x = 28
- },
-/turf/simulated/floor/plasteel{
- icon_state = "cmo"
- },
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dNW" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dNX" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/security/brigstaff)
+"oIQ" = (
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_y = 24
+ pixel_y = 26
},
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/obj/structure/table/glass,
-/obj/item/storage/box/beakers,
-/obj/item/storage/box/beakers,
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dNY" = (
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"oIV" = (
+/obj/machinery/porta_turret{
+ dir = 4;
+ installation = /obj/item/gun/energy/gun;
+ name = "hallway turret"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/turret_protected/aisat_interior)
+"oJo" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"oJy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"oJF" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/item/stack/packageWrap,
+/obj/item/stack/sheet/glass/fifty{
+ amount = 10
+ },
+/obj/item/stack/sheet/metal/fifty{
+ amount = 10
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/structure/table/reinforced,
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"oJO" = (
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHWEST)"
},
+/area/medical/sleeper)
+"oJS" = (
+/obj/structure/table/reinforced,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/wrench,
/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dNZ" = (
-/obj/structure/table,
-/obj/item/flashlight/lamp,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/toxins/xenobiology)
+"oJX" = (
+/obj/structure/closet/wardrobe/medic_white,
+/obj/item/clothing/head/surgery/blue,
+/obj/item/clothing/head/surgery/blue,
+/obj/item/clothing/head/surgery/green,
+/obj/item/clothing/head/surgery/green,
+/obj/item/clothing/head/surgery/purple,
+/obj/item/clothing/head/surgery/purple,
+/obj/item/clothing/suit/storage/fr_jacket,
+/obj/item/clothing/suit/storage/fr_jacket,
+/obj/item/clothing/suit/storage/fr_jacket,
+/obj/item/clothing/under/rank/medical/blue,
+/obj/item/clothing/under/rank/medical/green,
+/obj/item/clothing/under/rank/medical/purple,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/maintenance/electrical)
-"dOa" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Escape Shuttle Infirmary"
+/area/medical/ward)
+"oKb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/shuttle/escape{
- parallax_movedir = 2
+/area/medical/ward)
+"oKl" = (
+/obj/structure/chair,
+/obj/effect/landmark/start{
+ name = "Civilian"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research{
+ name = "Research Division"
})
-"dOb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+"oKs" = (
+/obj/structure/window/reinforced,
+/obj/structure/lattice,
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"oKv" = (
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 1
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/status_display{
+ pixel_y = -32
},
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dOc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/table/glass,
-/obj/structure/reagent_dispensers/virusfood{
- pixel_x = -32
+/area/medical/virology)
+"oKx" = (
+/obj/machinery/vending/plasmaresearch,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whitepurple"
+ },
+/area/toxins/misc_lab)
+"oKD" = (
+/obj/effect/decal/warning_stripes/eastnorthwest,
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/reagentgrinder,
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dOd" = (
+/area/toxins/mixing)
+"oKG" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "laborcamp_home";
+ name = "Labor Camp Airlock";
+ req_access_txt = "2"
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"oKJ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/medbay)
+"oKQ" = (
+/obj/structure/sign/electricshock,
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/hop)
+"oKR" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreencorner"
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner (WEST)"
},
-/area/medical/virology)
-"dOe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/medical/cryo)
+"oKS" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"oLb" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/virology)
-"dOf" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "ai1";
+ name = "Turret Shutters"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
+/turf/simulated/floor/plating,
+/area/turret_protected/aisat_interior)
+"oLC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 4
},
-/area/medical/virology)
-"dOg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/turret_protected/aisat_interior)
+"oLF" = (
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/door/airlock/medical{
- name = "Virology";
- req_access_txt = "39"
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder{
+ layer = 4;
+ pixel_x = -1;
+ pixel_y = 9
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dOh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/item/radio/intercom{
+ pixel_x = 30
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/crew_quarters/kitchen)
+"oLH" = (
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Cell Block";
+ req_access_txt = "63"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "darkred"
},
-/area/medical/virology)
-"dOi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/prison/cell_block/A)
+"oLJ" = (
+/obj/machinery/newscaster{
+ pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/britcup,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/medical/virology)
-"dOj" = (
+/area/medical/medbay3)
+"oLV" = (
+/obj/item/radio/intercom{
+ pixel_y = 25
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/pod_3)
+"oMo" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark{
- name = "blobstart"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/turf/simulated/floor/plating,
+/area/engine/hardsuitstorage)
+"oMt" = (
+/obj/item/radio/intercom{
+ pixel_x = -28
},
-/area/medical/virology)
-"dOk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 1;
+ name = "Труба дыхательной смеси"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/virology)
-"dOl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ dir = 9;
+ icon_state = "arrival"
},
+/area/atmos)
+"oMx" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/glass,
-/obj/item/folder/white,
-/obj/item/pen/red,
-/obj/item/paper_bin,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "2-8"
},
-/area/medical/virology)
-"dOm" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/library/abandoned)
-"dOn" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Checkpoint";
+ req_access_txt = "1"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dOo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/chapel/office)
-"dOp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/door/airlock/centcom{
- name = "Chapel Morgue";
- opacity = 1;
- req_access_txt = "27"
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plasteel,
+/area/security/checkpoint)
+"oMz" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 1;
+ name = "Труба фильтрации"
},
-/area/chapel/office)
-"dOq" = (
-/obj/structure/chair/wood,
-/obj/machinery/light{
- dir = 8
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"oMF" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/camera{
+ c_tag = "Atmospherics Storage";
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
+/obj/machinery/newscaster{
+ pixel_y = -32
},
-/area/chapel/main)
-"dOr" = (
-/turf/simulated/floor/plasteel{
- icon_state = "chapel"
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 1
},
-/area/chapel/main)
-"dOs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
+ icon_state = "arrival"
},
-/area/chapel/main)
-"dOt" = (
-/obj/structure/chair/wood,
-/obj/machinery/light{
+/area/atmos)
+"oMH" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
-/turf/simulated/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"dOu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ dir = 1;
+ icon_state = "yellowcorner"
},
-/area/crew_quarters/chief)
-"dOv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
+/area/hallway/primary/port/west)
+"oNa" = (
+/obj/structure/sign/vacuum{
+ pixel_y = -32
},
-/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/light,
+/obj/effect/decal/warning_stripes/southeast,
+/obj/structure/closet/bombcloset,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dOw" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"dOx" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"dOy" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair/comfy/shuttle{
+/area/toxins/mixing)
+"oNr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dOz" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair/comfy/shuttle{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dOA" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall7";
- tag = "icon-swall7"
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"oNx" = (
+/obj/structure/sign/electricshock,
+/turf/simulated/wall/r_wall,
+/area/storage/tech)
+"oNP" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dOB" = (
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dOC" = (
-/obj/structure/sign/greencross,
-/turf/simulated/shuttle/wall{
- icon_state = "swall12"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dOD" = (
+/area/security/main)
+"oNS" = (
+/obj/structure/sign/science,
+/turf/simulated/wall,
+/area/assembly/robotics)
+"oNV" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"oOg" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
+/turf/simulated/floor/plating,
+/area/storage/tech)
+"oOo" = (
+/turf/simulated/wall/r_wall,
+/area/toxins/xenobiology)
+"oOq" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 33;
+ pixel_y = -7
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "Virology";
- name = "Virology Shutters"
+/turf/simulated/shuttle/floor4,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"oOr" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/turf/simulated/floor/plating,
-/area/medical/virology/lab)
-"dOE" = (
+/area/medical/reception)
+"oOK" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "Virology";
- name = "Virology Shutters"
+ icon_state = "2-8"
},
-/turf/simulated/floor/plating,
-/area/medical/virology/lab)
-"dOF" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "Virology";
- name = "Virology Shutters"
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
-/area/medical/virology/lab)
-"dOG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/storage/tech)
+"oON" = (
+/obj/item/stack/cable_coil/random,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/north,
/obj/machinery/light{
- dir = 8
+ dir = 1;
+ on = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"oOX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/virology)
-"dOH" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"oOY" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/item/radio/intercom{
+ pixel_x = -28
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/virology)
-"dOI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/crew_quarters/chief)
+"oOZ" = (
+/turf/simulated/wall/r_wall,
+/area/toxins/misc_lab)
+"oPh" = (
+/obj/machinery/field/generator{
+ anchored = 1;
+ state = 2
+ },
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"oPr" = (
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "blue"
},
+/area/hydroponics)
+"oPH" = (
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitegreencorner"
},
/area/medical/virology)
-"dOJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+"oPP" = (
+/obj/machinery/camera{
+ c_tag = "Dorm Hallway Starboard"
},
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
+/obj/machinery/alarm{
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/sleep)
+"oPR" = (
+/obj/structure/rack{
dir = 8;
- icon_state = "whitegreencorner"
+ layer = 2.9
},
-/area/medical/virology)
-"dOK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/item/gun/energy/laser{
+ pixel_x = -2;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/laser,
+/obj/item/gun/energy/laser{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/structure/window/reinforced{
+ dir = 1
},
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/securearmoury)
+"oPZ" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreencorner"
+ icon_state = "neutralfull"
},
-/area/medical/virology)
-"dOL" = (
+/area/engine/break_room)
+"oQg" = (
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/iv_drip,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Virology Patients Rooms";
- dir = 1;
- network = list("Medical","SS13")
+ dir = 10
},
/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ tag = "icon-whitegreen (NORTHEAST)"
},
/area/medical/virology)
-"dOM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+"oQk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/virology)
-"dON" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "caution"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/area/atmos)
+"oQn" = (
+/obj/structure/chair/comfy/red{
+ dir = 8
},
-/obj/structure/table/glass,
-/obj/machinery/newscaster{
- pixel_x = 32
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
-/obj/item/clothing/suit/straight_jacket,
-/obj/item/clothing/mask/muzzle,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
+ dir = 1
},
-/area/medical/virology)
-"dOO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/area/security/brigstaff)
+"oQz" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dOQ" = (
+/area/hydroponics)
+"oQC" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering";
+ req_access_txt = "10"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dOR" = (
-/obj/effect/spawner/random_spawners/cobweb_right_frequent,
-/obj/structure/closet,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dOS" = (
-/turf/simulated/wall/r_wall,
-/area/chapel/office)
-"dOT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/crematorium,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/office)
-"dOU" = (
-/obj/structure/girder,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dOV" = (
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"oQQ" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"oQU" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/area/chapel/main)
-"dOW" = (
+/area/medical/reception)
+"oRe" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
+ },
+/area/medical/sleeper)
+"oRg" = (
+/turf/simulated/wall,
+/area/maintenance/asmaint)
+"oRr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
+ },
+/area/medical/research/nhallway)
+"oRC" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/engine/break_room)
+"oRQ" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken3";
+ tag = "icon-wood-broken3"
},
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"oRS" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "chapel"
+ icon_state = "neutralcorner"
},
-/area/chapel/main)
-"dOX" = (
+/area/hallway/primary/central/se)
+"oRX" = (
+/obj/structure/table/reinforced,
+/obj/machinery/camera{
+ c_tag = "Technical Storage";
+ dir = 4
+ },
+/obj/item/airalarm_electronics,
+/obj/item/apc_electronics,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/storage/tech)
+"oSv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/chair/comfy/brown,
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"oSy" = (
+/obj/machinery/door/morgue{
+ name = "Confession Booth"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
+ icon_state = "dark"
},
/area/chapel/main)
-"dOY" = (
+"oSL" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/chapel/main)
-"dOZ" = (
-/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ icon_state = "neutralfull"
+ },
+/area/storage/tech)
+"oSO" = (
+/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/ne)
+"oSQ" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/trinary/mixer{
+ req_access = null
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
+ dir = 8;
+ icon_state = "neutral"
+ },
+/area/toxins/mixing)
+"oSZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/chapel/main)
-"dPa" = (
-/obj/machinery/bluespace_beacon,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "whitepurplecorner"
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
+/area/medical/research{
+ name = "Research Division"
})
-"dPb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dPc" = (
-/obj/structure/grille,
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"dPd" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
+"oTc" = (
/obj/structure/chair{
dir = 8
},
/obj/effect/landmark/start{
name = "Civilian"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "green"
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/bridge/checkpoint/south)
+"oTg" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/hallway/secondary/exit)
-"dPe" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/reedbush,
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"dPf" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"dPg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Local Armory";
+ req_access_txt = "1"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/chem_master,
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dPh" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dPi" = (
-/obj/structure/closet/crate/medical,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/storage/firstaid/regular,
-/obj/item/storage/firstaid/brute,
-/obj/item/storage/firstaid/fire,
-/obj/item/storage/firstaid/toxin,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dPj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreencorner"
+ icon_state = "red"
},
-/area/medical/virology)
-"dPk" = (
+/area/security/armoury)
+"oTk" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/wood,
+/area/library)
+"oTB" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/obj/structure/table,
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/item/restraints/handcuffs/cable,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/virology)
-"dPl" = (
-/obj/structure/table,
-/obj/item/storage/box/masks,
-/obj/item/storage/box/gloves,
-/obj/structure/sign/vacuum{
- pixel_y = -32
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
+/area/crew_quarters/fitness)
+"oTI" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/area/medical/virology)
-"dPm" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/medical/virology)
-"dPn" = (
+/area/construction/hallway)
+"oTL" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/starboard)
-"dPo" = (
-/obj/structure/bed/roller,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/mob/living/carbon/human/monkey,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/medical/virology)
-"dPp" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/portsolar)
-"dPq" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/portsolar)
-"dPr" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/spawner/random_spawners/blood_maybe,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dPs" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/effect/spawner/random_spawners/blood_maybe,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dPt" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/starboard)
+"oTZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dPu" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/door/airlock/public/glass{
- id_tag = "KPPN"
+ icon_state = "4-8"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "eslock";
- name = "Escape Shuttle Lockdown"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/south)
-"dPv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"dPw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"dPy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"dPz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dPA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"dPB" = (
+/area/security/nuke_storage)
+"oUh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -97320,2764 +95362,2604 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/medical/research/nhallway)
+"oUj" = (
+/obj/effect/decal/cleanable/blood/xeno,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dPD" = (
-/obj/item/radio/intercom{
- dir = 8;
- pixel_x = -28
+/area/maintenance/xenozoo)
+"oUP" = (
+/obj/machinery/computer/security{
+ network = list("SS13","Mining Outpost")
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 62
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/office)
-"dPE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/security/prisonershuttle)
+"oUQ" = (
+/obj/machinery/bodyscanner{
+ dir = 4
},
-/obj/machinery/crema_switch{
- pixel_x = 26
+/obj/effect/decal/warning_stripes/blue/hollow,
+/obj/machinery/light{
+ dir = 8
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/sleeper)
+"oUT" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -32
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/specops)
+"oVf" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"oVl" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "whitepurplecorner"
},
-/area/chapel/office)
-"dPF" = (
+/area/medical/research/shallway)
+"oVx" = (
+/obj/structure/table,
+/obj/item/storage/fancy/donut_box,
+/obj/machinery/alarm{
+ pixel_x = -32;
+ pixel_y = 23
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkred"
+ },
+/area/security/prison/cell_block/A)
+"oVy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "chapel"
+ icon_state = "red"
},
-/area/chapel/main)
-"dPG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/area/security/main)
+"oVM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "chapel"
+ icon_state = "dark"
},
-/area/chapel/main)
-"dPH" = (
+/area/security/prison/cell_block/A)
+"oVN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
+ icon_state = "dark"
},
-/area/chapel/main)
-"dPI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/crew_quarters/courtroom)
+"oVT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/structure/closet/secure_closet/medical1,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"oWg" = (
/turf/simulated/floor/plasteel{
- icon_state = "chapel"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/nw)
+"oWk" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/chapel/main)
-"dPJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/area/chapel/main)
-"dPK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/medical/research/nhallway)
+"oWp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/security/prison/cell_block/A)
+"oWt" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/chapel/main)
-"dPL" = (
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/security/prison/cell_block/A)
+"oWy" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/area/chapel/main)
-"dPM" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dPN" = (
-/obj/structure/grille,
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"dPO" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dPP" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dPQ" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dPR" = (
-/obj/structure/closet/crate,
-/obj/item/storage/toolbox/emergency,
-/obj/item/storage/toolbox/emergency,
-/obj/item/flashlight/flare,
-/obj/item/flashlight/flare,
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/item/radio,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dPS" = (
-/obj/machinery/door/airlock/shuttle/glass{
- name = "trader shuttle airlock";
- req_access_txt = "160";
- security_level = 6
+ icon_state = "0-2"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"dPT" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "Virology";
- name = "Virology Shutters"
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 22
},
-/turf/simulated/floor/plating,
-/area/medical/virology)
-"dPU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHWEST)"
- },
-/area/medical/virology)
-"dPV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- on = 1
+ icon_state = "darkred"
},
+/area/security/prison/cell_block/A)
+"oWB" = (
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHEAST)"
- },
-/area/medical/virology)
-"dPW" = (
-/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- on = 1
+ icon_state = "brown"
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHWEST)"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"oWK" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/toxins/mixing)
+"oWT" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Cell Block";
+ req_access_txt = "63"
},
-/area/medical/virology)
-"dPX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHEAST)"
+ dir = 1;
+ icon_state = "darkred"
},
-/area/medical/virology)
-"dPY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/vending/coffee,
-/obj/structure/window/reinforced{
- dir = 1
+/area/security/prison/cell_block/A)
+"oXa" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dPZ" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating,
-/area/maintenance/portsolar)
-"dQa" = (
/obj/structure/cable{
+ d1 = 2;
d2 = 4;
- icon_state = "0-4"
+ icon_state = "2-4"
},
-/obj/machinery/power/smes,
-/obj/machinery/light/small{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/portsolar)
-"dQb" = (
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/starboard/east)
+"oXm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research/glass{
+ name = "Research and Development";
+ req_access_txt = "47"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/chapel/main)
-"dQc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dQd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"oXs" = (
+/obj/structure/closet/secure_closet/scientist,
+/obj/machinery/power/apc{
+ cell_type = 5000;
dir = 4;
- layer = 2.4;
- on = 1
+ name = "east bump";
+ pixel_x = 24
},
-/obj/effect/landmark{
- name = "blobstart"
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurple"
+ },
+/area/medical/research/restroom)
+"oXx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/morgue)
-"dQe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/turret_protected/aisat_interior)
+"oXK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dQf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 9
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dQg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dQh" = (
-/obj/structure/morgue,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/chapel/office)
-"dQi" = (
+/area/toxins/lab)
+"oYj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/light{
- dir = 4
+/obj/effect/landmark/start{
+ name = "Scientist"
},
-/obj/machinery/camera{
- c_tag = "Cremator";
- dir = 8
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/toxins/lab)
+"oYk" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/rd,
+/obj/machinery/status_display{
+ pixel_x = 32
},
-/area/chapel/office)
-"dQj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "chapel"
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (EAST)"
},
-/area/chapel/main)
-"dQk" = (
+/area/crew_quarters/hor)
+"oYl" = (
/obj/structure/table/wood,
+/obj/item/paper_bin,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"oYp" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 6;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/ward)
+"oYt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/chapel/main)
-"dQl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/table/wood,
-/obj/item/storage/bible,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/chapel/main)
-"dQm" = (
+/area/toxins/lab)
+"oYL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/chapel/main)
-"dQn" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/chapel/main)
-"dQo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dQp" = (
-/obj/structure/grille,
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"dQq" = (
-/obj/machinery/computer/operating{
- name = "Robotics Operating Computer"
+/area/maintenance/gambling_den)
+"oZd" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
},
-/obj/machinery/light{
- dir = 4
+/area/security/brig)
+"oZz" = (
+/obj/machinery/photocopier,
+/obj/machinery/status_display/supply_display{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitepurple"
+ dir = 1;
+ icon_state = "brown"
},
-/area/assembly/robotics)
-"dQr" = (
-/obj/structure/disposalpipe/segment,
+/area/quartermaster/office)
+"oZD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 1
},
-/area/hallway/primary/aft)
-"dQs" = (
+/area/security/reception)
+"oZH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"oZS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10;
+ initialize_directions = 10
},
-/turf/simulated/wall,
-/area/maintenance/asmaint)
-"dQt" = (
-/obj/machinery/door/airlock/shuttle{
- aiControlDisabled = 1;
- hackProof = 1;
- id_tag = null;
- name = "Shuttle Cargo Hatch"
+/obj/structure/cable{
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dQu" = (
-/obj/structure/chair{
- dir = 4
+/area/crew_quarters/kitchen)
+"paa" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/machinery/recharger/wallcharger{
- pixel_x = -24;
- pixel_y = -3
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 32
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
},
+/area/security/brig)
+"paK" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/locker)
+"pbg" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- icon_state = "red"
+ id_tag = "ai2";
+ name = "Turret Shutters"
},
-/area/security/main)
-"dQv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"pbk" = (
+/obj/structure/table,
+/obj/item/storage/box/donkpockets,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/crew_quarters/courtroom)
+"pbv" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood,
+/area/maintenance/fsmaint)
+"pbw" = (
+/obj/machinery/vending/chinese,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (SOUTHWEST)"
+ },
+/area/medical/ward)
+"pby" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
},
+/area/security/brig)
+"pbz" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/smartfridge/secure/chemistry/virology,
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/light{
- dir = 8
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dQw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dQx" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHWEST)"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/area/medical/virology)
-"dQy" = (
-/obj/structure/chair/office/dark,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHEAST)"
+/area/medical/medbay3)
+"pbM" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 26
},
-/area/medical/virology)
-"dQz" = (
-/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHWEST)"
+ dir = 1;
+ icon_state = "red"
},
-/area/medical/virology)
-"dQA" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/area/security/permahallway)
+"pbQ" = (
+/obj/machinery/firealarm{
dir = 1;
- on = 1
+ pixel_y = -24
},
-/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHEAST)"
- },
-/area/medical/virology)
-"dQB" = (
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/port)
-"dQC" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"dQD" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
- },
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"dQE" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"dQF" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/light,
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"dQG" = (
-/obj/effect/landmark{
- name = "revenantspawn"
+ icon_state = "neutralcorner"
},
+/area/bridge/vip)
+"pbX" = (
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/virology)
-"dQH" = (
+/area/hallway/primary/central/se)
+"pcb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/table/glass,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/item/reagent_containers/dropper,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/effect/decal/warning_stripes/east,
-/obj/item/reagent_containers/dropper/precision,
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dQI" = (
-/obj/machinery/door/airlock/external{
- hackProof = 1;
- id_tag = "emergency_home";
- name = "Escape Airlock"
+/area/chapel/main)
+"pcc" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/checkpoint)
-"dQJ" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/permahallway)
+"pcj" = (
+/obj/structure/window/reinforced,
+/obj/machinery/computer/med_data,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/security/detectives_office)
+"pcp" = (
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "red"
+ },
+/area/security/customs)
+"pcM" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/machinery/power/terminal{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/effect/landmark{
- name = "blobstart"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/turf/simulated/floor/plating,
-/area/maintenance/portsolar)
-"dQK" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/reception)
+"pcQ" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "robotics_solar_outer";
- locked = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "SecPilotPriv"
},
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/portsolar)
-"dQL" = (
+/area/security/podbay)
+"pcV" = (
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 4;
- frequency = 1379;
- id_tag = "robotics_solar_pump"
+/obj/machinery/door/window/eastright{
+ name = "Medbey Reception";
+ req_access_txt = "5"
},
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "robotics_solar_airlock";
- pixel_y = -25;
- req_access_txt = "13";
- tag_airpump = "robotics_solar_pump";
- tag_chamber_sensor = "robotics_solar_sensor";
- tag_exterior_door = "robotics_solar_outer";
- tag_interior_door = "robotics_solar_inner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/airlock_sensor{
- id_tag = "robotics_solar_sensor";
- pixel_x = 12;
- pixel_y = -25
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/sleeper)
+"pda" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"pdt" = (
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/permahallway)
+"pdP" = (
+/obj/machinery/camera{
+ c_tag = "Permabrig Hallway";
+ network = list("SS13","Security")
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/permahallway)
+"pee" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/permahallway)
+"pei" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/toy/figure/engineer,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "yellow"
+ },
+/area/engine/engineering)
+"pem" = (
+/obj/effect/decal/warning_stripes/north,
/obj/machinery/light/small{
dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/portsolar)
-"dQM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/medical/morgue)
+"pen" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dQN" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dQO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "robotics_solar_inner";
- locked = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "13"
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
+/area/medical/sleeper)
+"peP" = (
+/obj/structure/table/wood,
+/obj/machinery/status_display{
+ pixel_x = -32
},
-/turf/simulated/floor/plating,
-/area/maintenance/portsolar)
-"dQQ" = (
+/obj/item/flashlight/lamp,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"pfa" = (
+/obj/structure/cable,
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"pfs" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
},
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "robotics_solar_airlock";
- name = "interior access button";
- pixel_x = -25;
- pixel_y = -25;
- req_access_txt = "13"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/maintenance/portsolar)
-"dQR" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/bodybags{
- pixel_x = 2;
- pixel_y = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
- },
-/area/chapel/main)
-"dQS" = (
-/obj/structure/window/reinforced{
- dir = 8
+ icon_state = "white"
},
-/obj/structure/closet/coffin,
+/area/medical/medbay)
+"pfA" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/north,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "vault"
+ icon_state = "neutralcorner"
},
-/area/chapel/main)
-"dQT" = (
-/obj/structure/table,
-/obj/item/storage/box/gloves,
-/obj/item/storage/box/bodybags,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/toxins/mixing)
+"pfD" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/window/eastright{
+ dir = 2;
+ name = "Chemistry Delivery";
+ req_access_txt = "33"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/office)
-"dQU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ dir = 5;
+ icon_state = "whiteyellow"
},
+/area/medical/chemistry)
+"pfE" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/office)
-"dQV" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+ dir = 1;
+ icon_state = "red"
},
+/area/security/permahallway)
+"pfN" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/chapel/main)
-"dQW" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/area/medical/ward)
+"pfR" = (
+/obj/structure/table/wood,
+/obj/item/folder/yellow,
+/obj/item/pen,
+/obj/structure/window/reinforced{
dir = 1;
- on = 1
+ layer = 2.9
},
/turf/simulated/floor/plasteel{
- icon_state = "chapel"
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"pfV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/chapel/main)
-"dQX" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lantern,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1
},
-/area/chapel/main)
-"dQY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark/start{
- name = "Chaplain"
+/area/security/permahallway)
+"pgp" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/area/chapel/main)
-"dQZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/area/medical/research/nhallway)
+"pgt" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"pgv" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
+"pgx" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "chapel"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/chapel/main)
-"dRa" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
+/area/medical/medbay2)
+"pgA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "chapel"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/chapel/main)
-"dRb" = (
+/area/medical/medbay2)
+"pgE" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/processing)
+"pgF" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "0-4"
},
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "open";
+ id_tag = "brig_detprivacy";
+ name = "Detective Privacy Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"pgG" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/portsolar)
-"dRc" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Exp_lockdown";
+ name = "Expedition Lockdown";
+ opacity = 0
},
-/obj/machinery/door/airlock/engineering{
- name = "Aft Port Solar Access";
- req_access_txt = "10"
+/turf/simulated/floor/plating,
+/area/engine/mechanic_workshop/expedition)
+"pgI" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
},
-/obj/structure/sign/electricshock{
- pixel_y = -32
+/area/security/brig)
+"pgJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/portsolar)
-"dRd" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
})
-"dRe" = (
-/obj/machinery/light{
- dir = 8
+"pgL" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/obj/structure/rack,
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/tank/oxygen/red,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/head/hardhat/red,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dRf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/hallway/primary/aft)
+"pgO" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/table/glass,
-/obj/item/storage/box/beakers,
-/obj/item/storage/box/syringes,
-/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dRg" = (
-/obj/structure/table/glass,
-/obj/structure/sign/deathsposal{
- pixel_y = -32
+/area/security/warden)
+"pgR" = (
+/obj/machinery/door/window/brigdoor/southleft{
+ dir = 4;
+ req_access_txt = "63"
},
-/obj/item/paper_bin,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dRh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/computer/pandemic,
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dRi" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dRj" = (
-/obj/effect/decal/remains/human,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dRl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/vending/cigarette,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dRm" = (
-/obj/structure/closet/coffin,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/security/prisonershuttle)
+"phd" = (
/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/unary/portables_connector{
dir = 1
},
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"phf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1
+ },
+/area/security/securehallway)
+"phg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/chapel/main)
-"dRn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/fitness)
-"dRo" = (
-/obj/structure/cable,
-/obj/machinery/power/solar_control{
- id = "portsolar";
- name = "Aft Port Solar Control"
- },
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating,
-/area/maintenance/portsolar)
-"dRp" = (
-/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/area/medical/medbay)
+"phh" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/turf/simulated/floor/plating,
-/area/maintenance/portsolar)
-"dRq" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/area/toxins/explab)
+"phO" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating,
-/area/maintenance/portsolar)
-"dRr" = (
-/obj/structure/closet/coffin,
+/area/security/securehallway)
+"phQ" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/pen,
+/obj/item/radio/intercom{
+ pixel_x = -28
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"phR" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel,
+/area/bridge/checkpoint/south)
+"pid" = (
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "vault"
+ icon_state = "grimy"
},
-/area/chapel/main)
-"dRs" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/area/security/detectives_office)
+"pie" = (
+/obj/machinery/atmospherics/trinary/filter{
+ dir = 8
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"dRt" = (
-/obj/structure/morgue,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+"pif" = (
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
},
+/area/security/processing)
+"piB" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/closet/athletic_mixed,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "neutral"
},
-/area/chapel/office)
-"dRu" = (
+/area/crew_quarters/fitness)
+"piQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/chapel/office)
-"dRv" = (
+/area/library)
+"piW" = (
+/obj/machinery/vending/artvend,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/main)
-"dRw" = (
-/obj/machinery/ai_status_display{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/area/crew_quarters/locker)
+"pjh" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/chapel/main)
-"dRx" = (
+/obj/structure/lattice,
/obj/machinery/camera{
- c_tag = "Aft Starboard Solars"
+ c_tag = "AI Satellite Exterior 5";
+ dir = 4;
+ network = list("SS13","MiniSat")
+ },
+/turf/space,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"pjj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating,
-/area/maintenance/starboardsolar)
-"dRy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/chapel/main)
-"dRz" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/medbay)
+"pjr" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/main)
-"dRA" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light_switch{
- pixel_x = 24;
- pixel_y = -24
+/area/construction/hallway)
+"pjI" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "atmo_tank_airlock";
+ name = "exterior access button";
+ pixel_x = 20;
+ pixel_y = -20;
+ req_access_txt = "32"
},
-/obj/machinery/newscaster{
- pixel_x = 32
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"pjP" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Electrical Maintenance";
+ req_access_txt = "11"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/chapel/main)
-"dRB" = (
-/obj/structure/closet/coffin,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/door/window/eastleft{
- dir = 8;
- name = "Coffin Storage";
- req_access_txt = "22"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"pjS" = (
+/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 0;
+ icon_state = "yellow"
+ },
+/area/hallway/primary/port/west)
+"pjT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table,
+/obj/item/folder/red,
+/obj/item/pen/multi,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/chapel/main)
-"dRC" = (
-/obj/structure/closet/coffin,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/chapel/main)
-"dRD" = (
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dRE" = (
-/obj/structure/closet/coffin,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/light/small{
+/area/security/processing)
+"pjV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"pkc" = (
+/obj/structure/bed,
+/obj/item/bedsheet/brown,
+/obj/effect/decal/warning_stripes/red/hollow,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/main)
-"dRF" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "22;12"
+/area/security/permabrig)
+"pke" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light_switch{
+ pixel_x = 8;
+ pixel_y = -25
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/holosign_switch{
+ id = "surgery1";
+ pixel_x = -6;
+ pixel_y = -25
},
-/area/maintenance/asmaint2)
-"dRG" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/hallway/secondary/exit)
-"dRH" = (
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/item/radio/intercom{
+ pixel_x = -28
},
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"dRI" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkblue"
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/area/chapel/main)
-"dRJ" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+/area/medical/surgery1)
+"pkf" = (
+/obj/structure/chair/sofa/left{
dir = 8
},
-/obj/structure/closet/coffin,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "vault"
+/obj/effect/landmark/start{
+ name = "Civilian"
},
-/area/chapel/main)
-"dRK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dRL" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/area/crew_quarters/bar/atrium)
+"pkp" = (
+/obj/machinery/light/small{
+ dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dRM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/maintenance/gambling_den)
+"pkt" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/unary/outlet_injector/on{
+ dir = 4;
+ frequency = 1441;
+ id = "tox_in"
},
-/obj/machinery/door/morgue{
- name = "Chapel Morgue";
- req_access_txt = "22"
+/turf/space,
+/area/atmos)
+"pku" = (
+/obj/structure/chair/office/dark{
+ dir = 1
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/effect/landmark/start{
+ name = "Security Pod Pilot"
},
-/area/chapel/office)
-"dRN" = (
-/obj/machinery/door/morgue{
- name = "Confession Booth"
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "darkred"
},
-/area/chapel/main)
-"dRO" = (
+/area/security/podbay)
+"pkE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/chapel/main)
-"dRP" = (
+/turf/simulated/wall/r_wall,
+/area/turret_protected/aisat)
+"pkL" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/centcom{
- name = "Chapel Office";
- opacity = 1;
- req_access_txt = "27"
+/obj/structure/chair/comfy/brown,
+/obj/effect/landmark/start{
+ name = "Civilian"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"pkR" = (
+/obj/machinery/photocopier,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/chapel/main)
-"dRR" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"pln" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/exit)
-"dRT" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/chair/wood,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "green"
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
-/area/hallway/secondary/exit)
-"dRU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/area/maintenance/gambling_den)
+"plt" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dRV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"ply" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1
},
-/area/hallway/secondary/exit)
-"dRW" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dRX" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dRY" = (
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/folder/yellow,
-/obj/item/pen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dRZ" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/storage/bible,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dSa" = (
+/area/security/main)
+"plB" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkbluecorners"
+ icon_state = "red"
},
-/area/chapel/main)
-"dSb" = (
-/obj/structure/girder,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dSc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/kitchenspike,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dSe" = (
+/area/security/lobby)
+"plG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ icon_state = "1-2"
},
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"plJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/light/small{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "neutral"
},
-/area/chapel/office)
-"dSf" = (
-/obj/machinery/light/small,
-/obj/structure/chair/wood{
- dir = 4
+/area/crew_quarters/chief)
+"pmd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/newscaster{
- pixel_y = -32
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Virology";
+ req_access_txt = "39"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/chapel/main)
-"dSg" = (
-/obj/machinery/light/small,
-/obj/structure/chair/wood{
- dir = 8
+/area/medical/medbay3)
+"pmu" = (
+/obj/structure/chair/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"pmx" = (
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/chapel/office)
-"dSh" = (
-/obj/machinery/door/morgue{
- name = "Confession Booth (Chaplain)";
- req_access_txt = "22"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"pnb" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/chapel/office)
-"dSi" = (
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/chapel/office)
-"dSj" = (
-/obj/machinery/light{
+/turf/simulated/floor/plasteel{
dir = 1;
- on = 1
+ icon_state = "red"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/area/crew_quarters/courtroom)
+"pnv" = (
+/obj/structure/sign/science{
+ pixel_y = 32
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/area/chapel/office)
-"dSk" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/obj/machinery/camera{
+ c_tag = "Research Break Room";
+ network = list("Research","SS13")
},
-/obj/machinery/alarm{
- pixel_y = 23
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/area/chapel/office)
-"dSl" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/office)
-"dSm" = (
-/obj/machinery/light_switch{
- pixel_x = 24;
- pixel_y = 24
+ dir = 9;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (NORTHWEST)"
},
-/obj/machinery/firealarm{
- pixel_y = 26
+/area/medical/research/restroom)
+"pnx" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"pnz" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Electrical Maintenance";
+ req_access_txt = "11"
},
-/area/chapel/office)
-"dSn" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dSo" = (
+/area/maintenance/electrical)
+"pnA" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ desc = "Труба проводящая газ по фильтрам, где он перемещается в камеры хранения";
+ dir = 4;
+ name = "Труба фильтрации"
+ },
+/turf/simulated/wall/r_wall,
+/area/atmos)
+"pnF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 6
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dSp" = (
-/obj/structure/closet/firecloset,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dSq" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkblue"
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/chief)
+"pnI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"pnK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
/area/chapel/main)
-"dSr" = (
-/obj/machinery/door/airlock/centcom{
- name = "Chapel Office";
- opacity = 1;
- req_access_txt = "27"
+"pnM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "eslock";
- name = "Escape Shuttle Lockdown"
+/obj/structure/chair/wood,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"pnT" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/chapel/office)
-"dSs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/hallway/primary/central/sw)
+"poa" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
},
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"pob" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/camera{
- c_tag = "Departure Lounge South-West";
- dir = 1
+ icon_state = "2-4"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dSt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dSu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/south,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dSv" = (
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ icon_state = "dark"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dSw" = (
-/obj/machinery/light,
-/obj/machinery/vending/wallmed{
- pixel_y = -30
+/area/crew_quarters/chief)
+"pof" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/gloves{
+ pixel_x = 3;
+ pixel_y = 3
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+/obj/item/storage/box/masks,
+/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"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dSx" = (
-/obj/machinery/recharge_station,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dSy" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dSz" = (
-/obj/machinery/door/airlock/command/glass{
- name = "Escape Shuttle Cockpit";
- req_access_txt = "19"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/surgery1)
+"poi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- icon_state = "neutralfull"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dSA" = (
-/obj/structure/window/reinforced,
-/obj/structure/closet/coffin,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/chapel/main)
-"dSB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/crew_quarters/heads/hop)
+"pom" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dSC" = (
-/obj/machinery/door/airlock/engineering{
- name = "Electrical Maintenance";
- req_access_txt = "11"
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 9
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dSD" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/sleep)
+"poq" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dSE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Chief Engineer";
+ req_access_txt = "56"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dSF" = (
-/obj/structure/window/reinforced,
-/obj/structure/closet/coffin,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/chapel/main)
-"dSG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/chief)
+"pot" = (
+/obj/machinery/atmospherics/binary/volume_pump/on{
+ desc = "Отправляет неотфильтрованный газ в космос";
+ dir = 8;
+ name = "Остатки газа в космос"
},
-/obj/machinery/camera{
- c_tag = "Сosmination room";
- dir = 5;
- network = list("Research","SS13")
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 1;
+ name = "Труба дыхательной смеси"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkblue"
- },
-/area/chapel/main)
-"dSH" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
+ icon_state = "arrival"
},
-/obj/machinery/light{
- dir = 8
+/area/atmos)
+"pox" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/radio/intercom{
- dir = 8;
- pixel_x = -28
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/chapel/main)
-"dSI" = (
-/obj/effect/decal/warning_stripes/southeastcorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"poE" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/main)
-"dSJ" = (
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = -28
+/area/maintenance/electrical)
+"poO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
-/area/chapel/office)
-"dSK" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/toxins/lab)
+"poX" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/obj/machinery/meter,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"ppf" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"ppp" = (
+/obj/machinery/computer/card/minor/hos,
+/turf/simulated/floor/wood,
+/area/security/hos)
+"ppG" = (
+/obj/structure/table/glass,
+/obj/item/folder/blue,
+/obj/item/cartridge/medical,
+/obj/item/cartridge/medical,
+/obj/item/cartridge/chemistry,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/chapel/office)
-"dSL" = (
-/obj/structure/chair/office/dark,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/area/medical/cmo)
+"ppO" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ dir = 4;
+ name = "Труба на фильтрацию"
},
-/area/chapel/office)
-"dSM" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 4;
+ icon_state = "caution"
+ },
+/area/atmos)
+"ppQ" = (
+/obj/item/flag/nt,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/simulated/floor/wood,
+/area/blueshield)
+"pql" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/grown/poppy/geranium,
+/obj/item/reagent_containers/food/snacks/grown/poppy/lily{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/food/snacks/grown/poppy{
+ pixel_x = -4;
+ pixel_y = 6
},
-/area/chapel/office)
-"dSN" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/chapel/office)
-"dSO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"pqn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/chapel/main)
-"dSP" = (
-/turf/simulated/wall,
-/area/security/checkpoint)
-"dSQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"pqz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
- },
-/area/chapel/main)
-"dSR" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint)
-"dSS" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/security/checkpoint)
-"dST" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/security/checkpoint)
-"dSU" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/security/checkpoint)
-"dSV" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/security/checkpoint)
-"dSW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"pqF" = (
+/obj/structure/table/glass,
+/obj/item/storage/backpack/duffel/syndie/surgery_fake,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
+/area/shuttle/syndicate)
+"pqM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10;
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkblue"
+ icon_state = "neutralcorner"
},
-/area/chapel/main)
-"dSX" = (
+/area/crew_quarters/fitness)
+"pqT" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/security/checkpoint)
-"dSY" = (
-/obj/effect/spawner/window/reinforced,
+/area/atmos)
+"pqZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/security/checkpoint)
-"dSZ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/checkpoint)
-"dTa" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/security/checkpoint)
-"dTb" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Escape Shuttle Cell";
- req_access_txt = "2"
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/shuttle/floor4,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dTc" = (
-/obj/item/clipboard,
-/obj/structure/table,
-/obj/item/toy/figure/ninja,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dTd" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall13";
- tag = "icon-swall13"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dTe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/engine/break_room)
+"prh" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Lethal bullets"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/ammo_box/magazine/enforcer/lethal{
+ pixel_x = 3;
+ pixel_y = -3
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research/glass{
- name = "Experimentor";
- req_access_txt = "47"
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal{
+ pixel_x = -3;
+ pixel_y = 3
},
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"dTf" = (
-/obj/machinery/door/morgue{
- name = "Chapel Morgue";
- req_access_txt = "22"
+/obj/item/ammo_box/magazine/enforcer/lethal{
+ pixel_x = -6;
+ pixel_y = 6
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable,
+/obj/machinery/camera{
+ c_tag = "Brig Local Armory";
+ dir = 1;
+ network = list("SS13","Security")
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1
},
+/area/security/armoury)
+"pri" = (
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "vault"
+ },
+/area/assembly/showroom)
+"prm" = (
+/obj/effect/landmark{
+ name = "revenantspawn"
},
-/area/chapel/office)
-"dTg" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/main)
-"dTh" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dTi" = (
+/area/toxins/explab)
+"prr" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Checkpoint";
- req_access_txt = "1"
+/obj/structure/chair/barber{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/security/checkpoint)
-"dTj" = (
-/obj/effect/decal/warning_stripes/southwestcorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "barber"
},
-/area/chapel/main)
-"dTk" = (
+/area/civilian/barber)
+"prs" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"prC" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Checkpoint";
- req_access_txt = "1"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/security/checkpoint)
-"dTl" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"prI" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
},
-/area/chapel/main)
-"dTm" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
/obj/item/radio/intercom{
dir = 8;
- pixel_y = 24
+ pixel_x = -28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkblue"
},
+/area/chapel/main)
+"prK" = (
+/obj/machinery/suit_storage_unit/engine,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/office)
-"dTn" = (
+/area/engine/hardsuitstorage)
+"prU" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "yellow"
},
-/area/chapel/office)
-"dTo" = (
+/area/engine/break_room)
+"pse" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/structure/rack,
+/obj/item/circuitboard/robotics{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/item/circuitboard/mecha_control,
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/storage/tech)
+"psg" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10;
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/chapel/office)
-"dTp" = (
+/area/crew_quarters/heads/hop)
+"psj" = (
/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/camera{
- c_tag = "Chaplain's Quarters"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "green"
},
-/area/chapel/office)
-"dTq" = (
-/obj/structure/table/wood,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+/area/hallway/secondary/exit)
+"psk" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/status_display{
- pixel_y = 32
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/reagent_containers/food/drinks/bottle/holywater,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/chapel/office)
-"dTr" = (
-/obj/structure/disposalpipe/trunk{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/disposal,
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/light_switch{
- pixel_x = -26;
- pixel_y = -4
+/area/engine/break_room)
+"psx" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/crew_quarters/fitness)
+"psy" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/office)
-"dTs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/crew_quarters/fitness)
+"psE" = (
+/obj/structure/sink{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/area/chapel/office)
-"dTt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/sleeper)
+"psQ" = (
+/obj/machinery/camera{
+ c_tag = "Medbay South Central Hall";
+ dir = 4;
+ network = list("Medical","SS13")
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/chapel/office)
-"dTu" = (
+/area/medical/medbay2)
+"pth" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"pts" = (
+/turf/simulated/wall,
+/area/crew_quarters/cabin3)
+"pty" = (
+/turf/simulated/wall/r_wall,
+/area/blueshield)
+"ptE" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/medical/virology/lab)
-"dTv" = (
+/obj/effect/decal/warning_stripes/northeastcorner,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"pua" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/virology/lab)
-"dTw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "4-8"
},
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/turf/simulated/floor/carpet,
-/area/chapel/office)
-"dTx" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/door/airlock/medical{
- autoclose = 0;
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "viro_lab_airlock_exterior";
- locked = 1;
- name = "Virology Lab External Airlock";
- req_access_txt = "39"
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
},
/obj/machinery/access_button{
- command = "cycle_exterior";
+ command = "cycle_interior";
frequency = 1379;
- layer = 3.6;
- master_tag = "viro_lab_airlock_control";
- name = "Virology Lab Access Button";
- pixel_x = -24;
- req_access_txt = "39"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/virology)
-"dTy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
+ master_tag = "robotics_solar_airlock";
+ name = "interior access button";
+ pixel_x = -25;
+ pixel_y = -25;
+ req_access_txt = "13"
},
-/turf/simulated/wall,
-/area/security/checkpoint)
-"dTz" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/backpack/medic,
-/obj/item/storage/belt/medical,
-/obj/machinery/vending/wallmed{
- pixel_y = 30
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating,
+/area/maintenance/portsolar)
+"puk" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "cmo"
+ icon_state = "dark"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dTA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/hydroponics)
+"pus" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"puv" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "white"
},
-/area/security/checkpoint)
-"dTB" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
+/area/medical/research/nhallway)
+"pux" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/floodlight,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/checkpoint)
-"dTC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/hydroponics)
+"puA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
},
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor/southright{
- dir = 1;
- name = "Security Desk";
- pixel_y = 8;
- req_access_txt = "63"
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "ai_airlock";
+ name = "interior access button";
+ pixel_x = 25;
+ pixel_y = 25
},
-/obj/item/folder/red,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 1;
+ icon_state = "darkblue"
},
-/area/security/checkpoint)
-"dTD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/donut_box,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+/area/construction/hallway)
+"puB" = (
+/turf/simulated/wall/r_wall,
+/area/toxins/storage)
+"puJ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/security/checkpoint)
-"dTE" = (
-/obj/structure/closet/wardrobe/red,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/security/checkpoint)
-"dTF" = (
-/obj/structure/chair,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+/area/hallway/primary/central/east)
+"puM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/vending/clothing,
+/turf/simulated/floor/plasteel,
+/area/maintenance/fsmaint)
+"pvm" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/chair{
+ dir = 4
},
-/area/security/checkpoint)
-"dTG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/machinery/light{
+ dir = 8
},
-/area/security/checkpoint)
-"dTH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ dir = 8;
+ icon_state = "green"
},
-/area/security/checkpoint)
-"dTI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/checkpoint)
-"dTJ" = (
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+/area/hallway/secondary/exit)
+"pvn" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "Singularity";
+ layer = 2.7;
+ name = "Singularity Blast Doors";
+ opacity = 0
},
-/area/security/checkpoint)
-"dTK" = (
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/security/checkpoint)
-"dTL" = (
-/obj/machinery/light{
- dir = 8
+/obj/machinery/door_control{
+ id = "Singularity";
+ name = "Containment Blast Doors";
+ pixel_x = 32
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = -32
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dTM" = (
-/turf/simulated/shuttle/floor4,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dTN" = (
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/shuttle/floor4,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dTO" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/turf/simulated/shuttle/floor4,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dTP" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+/area/engine/engineering)
+"pvu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dTQ" = (
-/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/wood,
+/area/security/hos)
+"pvA" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"pvW" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "neutralcorner"
- },
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dTR" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dTS" = (
-/obj/machinery/status_display{
- pixel_y = 32
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dTT" = (
-/obj/machinery/door/airlock/external,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
/area/shuttle/escape{
parallax_movedir = 2
})
-"dTV" = (
-/obj/machinery/power/solar{
- name = "Aft Starboard Solar Panel"
+"pwt" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/storage/primary)
+"pww" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/solar/port)
-"dTW" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/chapel/main)
-"dTX" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/chapel/office)
-"dTY" = (
-/obj/structure/bed,
-/obj/item/bedsheet/brown,
+/obj/structure/chair/stool,
/obj/effect/landmark/start{
- name = "Chaplain"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ name = "Civilian"
},
-/area/chapel/office)
-"dTZ" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"pwH" = (
+/obj/machinery/light/small,
+/obj/effect/decal/warning_stripes/southeast,
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_y = -32
},
-/area/chapel/office)
-"dUa" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"pwK" = (
+/obj/machinery/door/airlock/external{
+ name = "Toxins Test Chamber"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/chapel/office)
-"dUb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/turf/simulated/floor/plating/airless,
+/area/toxins/test_area)
+"pwN" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
+/obj/structure/dresser,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
/area/chapel/office)
-"dUc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+"pwU" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
+/turf/simulated/floor/plating,
+/area/crew_quarters/courtroom)
+"pxm" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/chapel/office)
-"dUd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/medbay3)
+"pxt" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner (WEST)"
},
-/obj/machinery/door/airlock/centcom{
- name = "Chapel Office";
- opacity = 1;
- req_access_txt = "27"
+/area/medical/medbay3)
+"pxD" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/effect/landmark/start{
+ name = "Head of Security"
},
-/area/chapel/office)
-"dUe" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/turf/simulated/floor/wood,
+/area/security/hos)
+"pxR" = (
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"pyj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/chapel/office)
-"dUf" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/donut_box,
-/turf/simulated/floor/carpet,
-/area/chapel/office)
-"dUg" = (
-/obj/structure/disposalpipe/segment{
+/area/hallway/primary/central/nw)
+"pyk" = (
+/obj/structure/rack{
dir = 8;
- icon_state = "pipe-c"
+ layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/pen,
-/turf/simulated/floor/carpet,
-/area/chapel/office)
-"dUh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/door/window{
+ dir = 2;
+ name = "Secure Armory";
+ req_access_txt = "1"
},
-/obj/item/paper_bin,
-/obj/structure/table/wood,
-/obj/item/pen,
-/turf/simulated/floor/carpet,
-/area/chapel/office)
-"dUi" = (
-/obj/machinery/light{
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/light_switch{
- pixel_x = 27;
- pixel_y = 6
- },
-/obj/machinery/driver_button{
- id_tag = "chapelgun";
- name = "Chapel Mass Driver";
- pixel_x = 27;
- pixel_y = -5
+/obj/structure/window/reinforced{
+ dir = 8
},
+/obj/item/clothing/suit/armor/riot,
+/obj/item/shield/riot,
+/obj/item/clothing/head/helmet/riot,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
- },
-/area/chapel/main)
-"dUj" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ icon_state = "dark"
},
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 8
+/area/security/securearmoury)
+"pyN" = (
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 1;
+ state = 2
},
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/item/radio,
+/obj/effect/decal/warning_stripes/eastnorthwest,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"pyO" = (
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai)
+"pyQ" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"pzi" = (
+/obj/structure/chair/comfy/brown,
+/turf/simulated/floor/carpet,
+/area/bridge/meeting_room)
+"pzu" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/checkpoint)
-"dUk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "dark"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/maintenance/gambling_den)
+"pzG" = (
+/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/chapel/main)
+"pzH" = (
+/obj/structure/chair/comfy/brown,
+/obj/effect/landmark/start{
+ name = "Magistrate"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/security/checkpoint)
-"dUl" = (
+/area/magistrateoffice)
+"pzJ" = (
+/obj/structure/chair/comfy/beige,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/door/morgue{
- name = "Chapel Morgue";
- req_access_txt = "22"
+/turf/simulated/floor/carpet,
+/area/bridge/meeting_room)
+"pzO" = (
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_y = 32
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/chapel/office)
-"dUm" = (
+/area/medical/sleeper)
+"pzS" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/chair/office/dark{
- dir = 1
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno1";
+ name = "Creature Cell #1";
+ opacity = 0
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ name = "Creature Pen";
+ req_access_txt = "47"
},
-/area/security/checkpoint)
-"dUn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/area/toxins/xenobiology)
+"pzW" = (
+/obj/machinery/computer/guestpass{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/checkpoint)
-"dUo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "whitepurplecorner"
},
-/turf/simulated/floor/plasteel{
+/area/medical/research/nhallway)
+"pAa" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the test chamber.";
dir = 4;
- icon_state = "red"
+ layer = 4;
+ name = "Test Chamber Telescreen";
+ network = list("Toxins")
},
-/area/security/checkpoint)
-"dUp" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"pAg" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Holding Area";
- req_access_txt = "1"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
+ },
+/turf/simulated/floor/plating,
+/area/bridge)
+"pAh" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ pixel_x = -26;
+ pixel_y = 26
},
+/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
-/area/security/checkpoint)
-"dUq" = (
+/area/toxins/mixing)
+"pAi" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
},
-/area/security/checkpoint)
-"dUr" = (
+/turf/simulated/floor/plating,
+/area/bridge)
+"pAm" = (
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/power/smes{
+ charge = 2e+006
+ },
+/turf/simulated/floor/greengrid,
+/area/engine/engineering)
+"pAn" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/hallway/secondary/exit)
+"pAy" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "whitepurple"
},
-/area/security/checkpoint)
-"dUs" = (
+/area/medical/research/nhallway)
+"pAL" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/chair/comfy/brown,
+/turf/simulated/floor/carpet,
+/area/bridge/meeting_room)
+"pAT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/security/checkpoint)
-"dUt" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/junction{
dir = 1;
- on = 1
+ tag = "icon-pipe-j1 (EAST)"
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/checkpoint)
-"dUu" = (
-/obj/structure/chair{
- dir = 8
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
+/area/medical/medbay2)
+"pAV" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ icon_state = "white"
},
-/area/security/checkpoint)
-"dUv" = (
-/obj/effect/spawner/window/reinforced,
+/area/medical/genetics)
+"pBc" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/security/checkpoint)
-"dUw" = (
-/obj/structure/chair/comfy/shuttle{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/shuttle/floor4,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dUx" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+/obj/machinery/light/small{
+ dir = 1
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dUy" = (
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"pBd" = (
+/obj/structure/chair{
+ dir = 8
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dUz" = (
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dUA" = (
-/obj/machinery/light,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dUB" = (
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dUC" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dUD" = (
-/turf/simulated/wall,
-/area/security/main)
-"dUE" = (
-/obj/machinery/power/tesla_coil{
- anchored = 1
- },
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"dUF" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"dUG" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"dUH" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ dir = 4;
+ icon_state = "red"
},
-/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"dUI" = (
+/area/security/processing)
+"pBi" = (
/obj/structure/grille,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -100087,1594 +97969,1261 @@
/obj/machinery/light,
/turf/simulated/floor/plating/airless,
/area/engine/engineering)
-"dUJ" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
- },
-/obj/structure/dresser,
+"pBj" = (
+/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/office)
-"dUK" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/grown/poppy/geranium,
-/obj/item/reagent_containers/food/snacks/grown/poppy/lily{
- pixel_x = 4;
- pixel_y = 5
+ dir = 8;
+ icon_state = "ramptop";
+ tag = "icon-stage_stairs"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/area/crew_quarters/fitness)
+"pBl" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/chapel/office)
-"dUL" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/candle_box{
- pixel_x = 2;
- pixel_y = 3
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/item/storage/fancy/candle_box,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/chapel/office)
-"dUM" = (
+/area/bridge/checkpoint/south)
+"pBp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/wood,
-/obj/item/folder/red,
-/obj/item/pen,
+/obj/item/phone,
+/obj/item/cigbutt/cigarbutt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/chapel/office)
-"dUN" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = -4
- },
-/obj/structure/closet/secure_closet/chaplain,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/bridge/meeting_room)
+"pBq" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/area/chapel/office)
-"dUO" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/toy/figure/chaplain,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -28
+/turf/simulated/floor/plating,
+/area/crew_quarters/fitness)
+"pBD" = (
+/turf/simulated/wall/r_wall,
+/area/toxins/lab)
+"pBI" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/chapel/office)
-"dUP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"pBJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/chapel/office)
-"dUQ" = (
-/obj/structure/table/wood,
-/obj/machinery/newscaster{
- pixel_x = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/machinery/light{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/item/storage/fancy/candle_box{
- pixel_x = 2;
- pixel_y = 3
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"pBK" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/item/storage/fancy/candle_box,
-/obj/item/storage/fancy/candle_box{
- pixel_x = -2;
- pixel_y = -4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/carpet,
-/area/chapel/office)
-"dUR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
},
-/obj/structure/chair/office/dark{
+/turf/simulated/floor/plating,
+/area/bridge)
+"pBZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/bookcase,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"pCm" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 1
},
-/obj/effect/landmark/start{
- name = "Chaplain"
- },
-/turf/simulated/floor/carpet,
-/area/chapel/office)
-"dUS" = (
-/obj/machinery/mass_driver{
- id_tag = "chapelgun"
+/obj/machinery/meter,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"pCn" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/light,
+/obj/effect/decal/warning_stripes/northwest,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/obj/machinery/door/window{
- dir = 1;
- name = "Mass Driver";
- req_access_txt = "22"
+/obj/machinery/disposal,
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"pCr" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/structure/window/reinforced{
- dir = 4
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/chapel/main)
-"dUT" = (
-/obj/structure/table/reinforced,
-/obj/machinery/newscaster/security_unit{
- pixel_y = -32
+/area/bridge)
+"pCs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/recharger,
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- icon_state = "red"
+ initialize_directions = 10
},
-/area/security/checkpoint)
-"dUU" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"pCx" = (
+/obj/structure/table/reinforced,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = -30
},
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "red"
+/obj/item/folder/white,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker,
+/obj/item/reagent_containers/glass/beaker,
+/obj/item/reagent_containers/dropper,
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 7;
+ pixel_y = -30
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"pCz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/chair/wood{
+ dir = 8
},
-/area/security/checkpoint)
-"dUV" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
+/area/maintenance/gambling_den)
+"pCB" = (
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/computer/prisoner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"pCL" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+ dir = 10;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/security/checkpoint)
-"dUW" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/area/medical/sleeper)
+"pCP" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
},
-/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/security/checkpoint)
-"dUX" = (
-/obj/machinery/status_display{
- pixel_y = -32
+/area/hallway/primary/central/south)
+"pCW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/computer/security{
- network = list("SS13","Research Outpost","Mining Outpost")
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
+/obj/structure/chair/comfy/black,
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"pCX" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Dominator's";
+ req_access = list(1)
},
-/area/security/checkpoint)
-"dUY" = (
+/obj/item/gun/energy/dominator,
+/obj/item/gun/energy/dominator,
+/obj/item/gun/energy/dominator,
+/obj/item/gun/energy/dominator,
+/obj/item/gun/energy/dominator,
+/obj/item/gun/energy/dominator,
/obj/machinery/light,
-/obj/structure/closet/secure_closet/security,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
+/obj/machinery/firealarm{
+ pixel_y = -26
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/checkpoint)
-"dUZ" = (
-/obj/structure/chair{
dir = 1
},
-/obj/machinery/light,
-/obj/item/radio/intercom{
- pixel_y = -28
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
+/area/security/armoury)
+"pCY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/checkpoint)
-"dVa" = (
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/chair{
- dir = 1
+ d2 = 8;
+ icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/checkpoint)
-"dVb" = (
+/area/hallway/primary/central/east)
+"pDh" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "0-2"
},
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/table,
-/obj/item/restraints/handcuffs,
-/obj/item/flash,
-/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "2-4"
},
-/area/security/checkpoint)
-"dVc" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/chair{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/checkpoint)
-"dVd" = (
-/obj/machinery/camera{
- c_tag = "Server Room";
- dir = 8;
- network = list("SS13","Research")
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- external_pressure_bound = 140;
- external_pressure_bound_default = 140;
- name = "server vent";
- on = 1;
- pressure_checks = 0
+ icon_state = "2-8"
},
-/turf/simulated/floor/bluegrid{
- icon_state = "gcircuit";
- name = "Mainframe Floor";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
},
-/area/toxins/server)
-"dVe" = (
+/turf/simulated/floor/plating,
+/area/bridge)
+"pDj" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
},
+/turf/simulated/floor/plating,
+/area/bridge)
+"pDt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/mob/living/simple_animal/bot/medbot,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plating,
-/area/security/checkpoint)
-"dVf" = (
+/area/medical/reception)
+"pDF" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/hor)
+"pDP" = (
/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor4,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVg" = (
-/obj/structure/table/reinforced,
-/turf/simulated/shuttle/floor4,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVh" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
+ dir = 4
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVi" = (
-/obj/structure/closet/fireaxecabinet{
- pixel_x = 32
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_x = -30;
+ pixel_y = 0
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape{
parallax_movedir = 2
})
-"dVj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dVk" = (
+"pDS" = (
/turf/simulated/shuttle/wall{
- icon_state = "swallc1"
- },
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVl" = (
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = -32
+ dir = 4;
+ icon_state = "diagonalWall3"
},
+/area/shuttle/syndicate)
+"pEd" = (
+/obj/structure/closet/walllocker/emerglocker/north,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVm" = (
+/area/medical/research/nhallway)
+"pEi" = (
+/turf/simulated/wall,
+/area/medical/cryo)
+"pEm" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "neutral"
+ },
+/area/hallway/primary/central/south)
+"pEo" = (
+/obj/structure/table/wood,
+/obj/item/camera,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"pEu" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f9"
},
/area/shuttle/escape{
parallax_movedir = 2
})
-"dVn" = (
-/obj/machinery/power/solar{
- name = "Aft Starboard Solar Panel"
- },
-/obj/structure/cable,
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
- },
-/area/solar/port)
-"dVo" = (
-/obj/structure/table/wood,
-/obj/item/storage/bible,
+"pEz" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"pEC" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/area/chapel/main)
-"dVp" = (
-/turf/simulated/wall/r_wall,
-/area/security/checkpoint)
-"dVq" = (
+/area/medical/medbay)
+"pET" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/checkpoint)
-"dVr" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/shuttle/floor4,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVs" = (
-/obj/machinery/light,
-/obj/structure/chair/comfy/shuttle{
- dir = 1
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/shuttle/floor4,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVt" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVu" = (
+/turf/simulated/floor/plating,
+/area/bridge)
+"pEY" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "blue"
+ icon_state = "dark"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVv" = (
-/obj/structure/chair/comfy/teal{
+/area/engine/mechanic_workshop/hangar)
+"pFn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/obj/machinery/door/airlock/security/glass{
+ name = "Shooting Range";
+ req_access_txt = "63"
},
-/obj/structure/cable,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 1
},
-/area/medical/medbay3)
-"dVw" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/camera{
- c_tag = "Escape Shuttle Command Point";
- dir = 6
+/area/security/range)
+"pFp" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/structure/closet/emcloset,
-/obj/item/radio/intercom{
- pixel_y = 24
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/south)
-"dVx" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plating,
+/area/bridge)
+"pFA" = (
+/obj/structure/table,
+/obj/item/restraints/handcuffs,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/bridge/checkpoint/south)
-"dVy" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"dVz" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f5"
+/area/security/processing)
+"pFE" = (
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVA" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall13"
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVB" = (
-/obj/machinery/status_display,
-/turf/simulated/shuttle/wall{
- icon_state = "swall12"
+/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVC" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall15";
- tag = "icon-swall15"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVD" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f9"
+/area/medical/sleeper)
+"pFF" = (
+/turf/simulated/floor/wood,
+/area/ntrep)
+"pFW" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVE" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/turf/simulated/floor/plasteel{
+/obj/machinery/firealarm{
dir = 4;
- icon_state = "vault"
- },
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVF" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
- dir = 1;
- on = 1
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 6;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVG" = (
+/area/medical/medbay)
+"pGk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/stool,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"pGl" = (
+/obj/structure/table/wood,
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/obj/item/clipboard,
+/obj/item/folder,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
+/area/library)
+"pGq" = (
+/obj/structure/table,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/storage/firstaid/o2,
+/turf/simulated/floor/plasteel,
/area/shuttle/escape{
parallax_movedir = 2
})
-"dVH" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/donut_box,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "vault"
+"pGt" = (
+/obj/structure/sign/greencross,
+/turf/simulated/wall,
+/area/medical/medbay3)
+"pGu" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Showers"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVI" = (
-/obj/machinery/computer/security{
- network = list("SS13","Research Outpost","Mining Outpost","Telecomms")
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_x = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkred"
+ icon_state = "freezerfloor"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVJ" = (
+/area/crew_quarters/locker/locker_toilet)
+"pGw" = (
/obj/structure/chair/comfy/shuttle{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape{
parallax_movedir = 2
})
-"dVK" = (
-/obj/item/radio/intercom{
+"pGB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"pGI" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
+ },
+/turf/simulated/floor/plating,
+/area/bridge)
+"pGQ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 29;
- pixel_y = 54
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVL" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVM" = (
-/obj/machinery/computer/station_alert,
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_x = 32
+/area/hallway/primary/central/se)
+"pGY" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkyellow"
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/prison/cell_block/A)
+"pHr" = (
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"pHJ" = (
+/obj/structure/table,
+/obj/item/restraints/handcuffs,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ pixel_x = -28;
+ pixel_y = -28
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVN" = (
-/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "darkred"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVO" = (
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/security/prison/cell_block/A)
+"pHK" = (
+/obj/machinery/camera{
+ c_tag = "Xeno High Security Containment";
+ dir = 4;
+ network = list("Research","SS13");
+ pixel_y = -22
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVP" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/regular,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/item/radio/intercom{
+ pixel_x = -28
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVQ" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/blue,
-/obj/item/pen,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVR" = (
-/obj/machinery/computer/atmos_alert,
+/area/toxins/xenobiology)
+"pHL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkyellow"
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVS" = (
+/area/medical/research/nhallway)
+"pHP" = (
/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
+/obj/machinery/computer/secure_data/laptop,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "vault"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/shuttle/escape{
- parallax_movedir = 2
+/area/magistrateoffice)
+"pIb" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
})
-"dVT" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/restraints/handcuffs,
-/obj/item/flash,
+"pId" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central/west)
+"pIp" = (
+/obj/machinery/vending/cola/free,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVU" = (
-/obj/machinery/computer/crew,
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/area/security/permabrig)
+"pIq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVV" = (
-/obj/machinery/computer/med_data,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVW" = (
-/obj/machinery/computer/emergency_shuttle,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVX" = (
-/obj/machinery/computer/communications,
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVY" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/mechanical,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dVZ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "vault"
+ icon_state = "dark"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dWa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/security/prison/cell_block/A)
+"pIt" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"dWb" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 8;
- frequency = 1379;
- id_tag = "engineering_east_pump"
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/crew_quarters/locker)
+"pIy" = (
+/obj/machinery/door_timer/cell_4{
+ pixel_y = 0
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"dWc" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable,
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/solar/port)
-"dWd" = (
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 2;
- height = 18;
- id = "skipjack_sw";
- name = "southwest of SS13";
- width = 19
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/space,
-/area/space)
-"dWe" = (
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 2;
- height = 18;
- id = "skipjack_se";
- name = "southeast of SS13";
- width = 19
+/obj/machinery/light/small,
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/space,
-/area/space)
-"dWf" = (
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 22;
- id = "syndicate_s";
- name = "south of station";
- width = 18
+/turf/simulated/floor/plasteel{
+ icon_state = "darkred"
+ },
+/area/security/prison/cell_block/A)
+"pID" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/space,
-/area/space)
-"dWg" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/donut_box,
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"dWh" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- name = "Engineering Maintenance";
- req_access_txt = "10";
- req_one_access_txt = null
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"dWi" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/decal/warning_stripes/northeast,
/obj/item/radio/intercom{
- pixel_x = -28
+ pixel_y = -28
},
-/turf/simulated/floor/plating,
-/area/engine/engineering)
-"dWj" = (
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "darkred"
},
-/area/medical/research{
- name = "Research Division"
- })
-"dWk" = (
+/area/security/prison/cell_block/A)
+"pIL" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 4
},
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutral"
+ },
+/area/crew_quarters/courtroom)
+"pIR" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ icon_state = "2-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"dWl" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 1
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"dWm" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/port)
+"pIZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"dWn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- req_one_access_txt = "12;47"
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/asmaint2)
-"dWp" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
-/obj/structure/window/reinforced{
- dir = 4
+/area/medical/sleeper)
+"pJg" = (
+/obj/machinery/vending/security,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/light{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"dWq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -28
},
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- name = "Creature Pen";
- req_access_txt = "47"
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"dWr" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door_control{
- id = "xeno1";
- name = "Containment Control";
- req_access_txt = "55"
+/area/security/main)
+"pJi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26;
- pixel_y = -32
+/obj/machinery/light/small,
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"dWs" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
-/obj/structure/window/reinforced{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26;
+/obj/structure/sign/poster/official/random{
pixel_y = -32
},
+/turf/simulated/floor/plasteel{
+ icon_state = "darkred"
+ },
+/area/security/prison/cell_block/A)
+"pJm" = (
+/obj/effect/decal/warning_stripes/northeastcorner,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"pJp" = (
+/obj/machinery/vending/security,
+/turf/simulated/shuttle/floor4,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"pJs" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"dWt" = (
+/area/toxins/storage)
+"pJx" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/prisonershuttle)
+"pJN" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
+/turf/simulated/floor/plating,
+/area/security/armoury)
+"pJU" = (
+/turf/simulated/wall/r_wall,
+/area/security/armoury)
+"pJV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"dWu" = (
-/obj/machinery/newscaster{
- pixel_y = -32
+/obj/structure/chair/comfy/black{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/l3closet/scientist,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"dWv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table,
-/obj/machinery/light,
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/item/clothing/mask/gas,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"dWw" = (
-/obj/machinery/light/small{
+/turf/simulated/floor/carpet,
+/area/assembly/showroom)
+"pKc" = (
+/obj/machinery/light{
dir = 8
},
-/obj/structure/sign/poster/contraband/random{
+/obj/machinery/ai_status_display{
pixel_x = -32
},
-/obj/structure/chair/stool/bar,
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/camera{
+ c_tag = "Research Director's Bedroom";
+ dir = 4;
+ network = list("Research","SS13");
+ pixel_y = -22
+ },
+/obj/item/flag/rnd,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"pKg" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "white"
},
-/area/maintenance/gambling_den)
-"dWx" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/area/medical/research/nhallway)
+"pKh" = (
+/obj/machinery/shower{
+ dir = 8;
+ tag = "icon-shower (WEST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/turf/simulated/floor/plasteel,
+/area/medical/virology)
+"pKk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
+ },
+/area/toxins/xenobiology)
+"pKu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dWy" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/crew_quarters/kitchen)
+"pKE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dWz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "arrival_south_inner";
- locked = 1;
- name = "Arrivals External Access";
- req_access = null
+/turf/simulated/floor/plasteel{
+ icon_state = "darkred"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dWA" = (
+/area/security/prison/cell_block/A)
+"pKP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/checkpoint)
-"dWB" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dWC" = (
-/obj/machinery/door/airlock/external,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dWD" = (
-/obj/machinery/door/airlock/command/glass{
- name = "Emergency Recovery Airlock";
- req_access_txt = "19"
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dWE" = (
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dWF" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dWG" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+/obj/structure/grille,
+/obj/structure/window/reinforced{
dir = 1;
- frequency = 1379;
- id_tag = "arrival_south_pump"
- },
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "arrival_south_airlock";
- pixel_x = 25;
- tag_airpump = "arrival_south_pump";
- tag_chamber_sensor = "arrival_south_sensor";
- tag_exterior_door = "arrival_south_outer";
- tag_interior_door = "arrival_south_inner"
- },
-/obj/machinery/airlock_sensor{
- id_tag = "engineering_west_sensor";
- pixel_x = -24
- },
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 8
+ layer = 2.9
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dWH" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "arrival_south_outer";
- locked = 1;
- name = "Arrivals External Access";
- req_access = null
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dWI" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"pKY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/south)
-"dWJ" = (
-/obj/machinery/door/airlock/command/glass{
- name = "Escape Shuttle Cockpit";
- req_access_txt = "19"
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dWK" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/bridge/checkpoint/south)
-"dWL" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/south)
-"dWM" = (
-/obj/structure/closet/firecloset,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/south)
-"dWN" = (
-/obj/structure/cable,
-/obj/structure/disposalpipe/segment,
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/medical/chemistry)
-"dWO" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/area/crew_quarters/locker)
-"dWP" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/area/medical/sleeper)
+"pLb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/disposal,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/primary/central/se)
-"dWQ" = (
-/obj/machinery/light,
-/obj/machinery/vending/snack,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "neutralfull"
+ name = "Brig Physician";
+ sortType = 24
},
-/area/hallway/primary/central/se)
-"dWR" = (
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "redcorner"
},
-/area/hallway/primary/central/se)
-"dWS" = (
-/obj/machinery/light,
-/obj/machinery/status_display{
- pixel_y = -32
+/area/security/brig)
+"pLm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dWT" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dWU" = (
-/obj/structure/closet/secure_closet/medical1,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/door_control{
- id = "Virology";
- name = "Virology Window Shutters Control";
- pixel_x = -6;
- pixel_y = -26
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dWV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Isolation A";
- req_access_txt = "39"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/partial,
-/obj/effect/decal/warning_stripes/arrow,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dWW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Isolation B";
- req_access_txt = "39"
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/yellow/partial,
-/obj/effect/decal/warning_stripes/arrow,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dWX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6
+/area/security/brig)
+"pLz" = (
+/turf/simulated/wall/r_wall,
+/area/security/hos)
+"pLB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating/airless,
-/area/medical/virology)
-"dWY" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating/airless,
-/area/medical/virology)
-"dWZ" = (
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating/airless,
-/area/medical/virology)
-"dXa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- name = "Chapel Maintenance";
- req_access_txt = "12"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "High Sec Zone";
+ req_access_txt = "63"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/asmaint2)
-"dXb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dXc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 10
+/area/security/permahallway)
+"pLF" = (
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/medical/virology)
-"dXd" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating/airless,
-/area/medical/virology)
-"dXe" = (
-/obj/structure/disposalpipe/trunk{
+/turf/simulated/floor/plasteel{
dir = 1
},
-/obj/structure/disposaloutlet,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating/airless,
-/area/medical/virology)
-"dXf" = (
-/obj/item/radio/intercom{
+/area/security/permahallway)
+"pLM" = (
+/turf/simulated/floor/plasteel{
dir = 1;
- pixel_y = -28
+ icon_state = "darkblue"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/light,
-/obj/structure/closet/secure_closet/personal/patient,
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dXg" = (
-/obj/structure/table/glass,
-/obj/item/folder/white,
-/obj/item/pen/red,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/reagent_containers/dropper,
-/obj/item/reagent_containers/syringe/antiviral,
-/obj/item/reagent_containers/glass/beaker,
-/obj/item/reagent_containers/dropper/precision,
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dXh" = (
+/area/medical/surgery2)
+"pLR" = (
+/turf/simulated/floor/carpet,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"pMj" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dXi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
+/obj/effect/landmark/start{
+ name = "Geneticist"
},
-/area/medical/virology)
-"dXj" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/door/airlock/public/glass{
- id_tag = "KPPN"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "eslock";
- name = "Escape Shuttle Lockdown"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/south)
-"dXk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- on = 1
+ initialize_directions = 11
},
-/obj/machinery/light{
- dir = 8
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/ai_status_display{
- pixel_x = -32
+/area/medical/genetics_cloning)
+"pMp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/camera{
- c_tag = "Research Director's Bedroom";
+/turf/simulated/wall,
+/area/security/checkpoint)
+"pMx" = (
+/turf/simulated/floor/plasteel{
dir = 4;
- network = list("Research","SS13");
- pixel_y = -22
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dXm" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/door/airlock/public/glass{
- id_tag = "KPPS"
+ icon_state = "red"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "eslock";
- name = "Escape Shuttle Lockdown"
+/area/security/brig)
+"pMH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/south)
-"dXn" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/public/glass{
- id_tag = "KPPS"
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "eslock";
- name = "Escape Shuttle Lockdown"
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/turf/simulated/floor/plasteel,
-/area/bridge/checkpoint/south)
-"dXo" = (
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"pMV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dXp" = (
-/obj/machinery/vending/chinese,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHWEST)"
- },
-/area/medical/ward)
-"dXq" = (
-/obj/structure/morgue,
-/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/camera{
- c_tag = "Medbay Coroner's Office";
- dir = 1;
- network = list("Medical","SS13")
- },
-/obj/effect/landmark{
- name = "revenantspawn"
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"pNk" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28
},
+/obj/structure/cable,
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
},
/area/medical/morgue)
-"dXr" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
- dir = 4
+"pNr" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Exp_lockdown";
+ name = "Expedition Lockdown";
+ opacity = 0
},
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 4;
- name = "east bump";
- pixel_x = 28;
- pixel_y = 6
+/turf/simulated/floor/plating,
+/area/engine/mechanic_workshop/expedition)
+"pNt" = (
+/obj/machinery/door/airlock/shuttle/glass{
+ name = "Shuttle Cargo Hatch"
+ },
+/turf/simulated/floor/plasteel,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"pNG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/machinery/door_control{
- id = "RoboPrivat";
- name = "Robotics Privacy Shutters Control";
- pixel_x = 24;
- pixel_y = -9
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple"
+ dir = 1
},
-/area/assembly/robotics)
-"dXs" = (
-/obj/structure/closet/l3closet/virology,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/light/small,
-/obj/item/radio/intercom{
- pixel_x = -28
+/area/security/securehallway)
+"pNI" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/area/security/securearmoury)
+"pNN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ tag = "icon-pipe-j1 (EAST)"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel,
-/area/medical/virology)
-"dXt" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/latex/nitrile,
-/obj/item/clothing/mask/breath,
/turf/simulated/floor/plasteel{
- icon_state = "cmo"
+ dir = 1
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dXv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera{
- c_tag = "Research South Hallway";
- dir = 4;
- network = list("Research","SS13");
- pixel_y = -22
+/area/security/securehallway)
+"pNO" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/research/nhallway)
+"pNV" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/obj/structure/extinguisher_cabinet{
+/area/security/processing)
+"pOa" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/item/radio/intercom{
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -101684,2362 +99233,2135 @@
/area/medical/research{
name = "Research Division"
})
-"dXw" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23
+"pOg" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"dXx" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/camera{
- c_tag = "Chapel West";
- dir = 4;
- pixel_y = -22
+/area/tcommsat/chamber)
+"pOC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"dXy" = (
-/obj/structure/closet/secure_closet/scientist,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/poster/random{
- pixel_x = 32
+ icon_state = "neutralcorner"
},
-/obj/machinery/light{
+/area/hallway/primary/starboard/east)
+"pOI" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple"
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"dXz" = (
-/obj/structure/sign/custodian,
-/turf/simulated/wall,
-/area/janitor)
-"dXA" = (
-/obj/structure/sign/securearea,
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall/r_wall,
-/area/toxins/mixing)
-"dXB" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
+/obj/structure/window/reinforced{
dir = 8
},
-/obj/item/reagent_containers/food/drinks/mug/med,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/grass,
+/area/medical/medbay)
+"pOP" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/belt/utility,
+/obj/item/flashlight,
/turf/simulated/floor/plasteel{
- icon_state = "cmo"
+ dir = 5;
+ icon_state = "darkblue"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dXC" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/area/turret_protected/aisat)
+"pOS" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/camera{
- c_tag = "Departure Lounge North"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/north,
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dXD" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/chapel/office)
-"dXE" = (
-/obj/machinery/light/spot{
- dir = 1;
- tag = "icon-tube1 (NORTH)"
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"dXF" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/leafybush,
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"dXG" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/radio/intercom{
- pixel_y = 28
+/area/security/checkpoint)
+"pPo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/camera{
- c_tag = "Virology Work Area";
- network = list("Medical","SS13")
+/obj/structure/chair{
+ dir = 1
},
-/turf/simulated/floor/plasteel,
-/area/medical/virology/lab)
-"dXH" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/camera{
- c_tag = "Port Aft Solars"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"pPx" = (
+/obj/structure/bed,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
/obj/item/radio/intercom{
- pixel_y = 28
+ pixel_y = 24
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating,
-/area/maintenance/portsolar)
-"dXI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/structure/curtain/open,
+/obj/item/bedsheet/medical{
+ level = 1.4
},
-/obj/machinery/light,
/obj/machinery/camera{
- c_tag = "Chapel South";
- dir = 1
- },
-/obj/machinery/hologram/holopad,
-/obj/structure/sign/poster/official/religious{
- pixel_y = -32
+ c_tag = "Medbay Patients Rooms";
+ network = list("SS13","Medical");
+ pixel_x = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHWEST)"
},
-/area/chapel/main)
-"dXJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/medical/ward)
+"pPK" = (
+/obj/structure/chair/comfy/brown{
dir = 4
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/machinery/camera{
- c_tag = "Departure Lounge South";
- dir = 1
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dXK" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 8
+/obj/effect/landmark/start{
+ name = "Captain"
},
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/light_switch{
- pixel_x = -24;
- pixel_y = 24
+/area/crew_quarters/captain)
+"pPR" = (
+/obj/structure/table,
+/obj/item/clothing/under/color/orange/prison,
+/obj/item/clothing/shoes/orange,
+/obj/item/radio/intercom{
+ pixel_x = 28
},
-/obj/machinery/camera{
- c_tag = "Departure Lounge Security Checkpoint West";
- network = list("SS13","Security")
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 9;
+ dir = 4;
icon_state = "red"
},
-/area/security/checkpoint)
-"dXL" = (
-/obj/item/flag/med,
+/area/security/lobby)
+"pPV" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/emergency,
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"pPW" = (
+/obj/machinery/computer/security{
+ network = list("SS13","Research Outpost","Mining Outpost")
+ },
/turf/simulated/floor/plasteel{
- icon_state = "cmo"
+ icon_state = "dark"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dXM" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/o2{
- pixel_x = -3;
- pixel_y = -3
+/area/security/permabrig)
+"pQa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/item/storage/firstaid/regular,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHEAST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dXN" = (
-/obj/effect/decal/warning_stripes/blue/partial,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dXO" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dXP" = (
-/obj/effect/decal/warning_stripes/blue/partial{
+/area/security/securehallway)
+"pQd" = (
+/obj/item/radio/beacon,
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dXQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/research/nhallway)
+"pQg" = (
+/obj/structure/delta_statue/w,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault";
+ tag = "icon-vault (WEST)"
},
-/obj/structure/chair{
- dir = 1
+/area/bridge/vip)
+"pQl" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f9"
},
-/obj/machinery/light,
-/obj/machinery/firealarm{
+/area/shuttle/pod_3)
+"pQs" = (
+/obj/machinery/iv_drip,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- pixel_y = -24
+ initialize_directions = 11
},
-/obj/machinery/camera{
- c_tag = "Departure Lounge Security Checkpoint East";
- dir = 1;
- network = list("SS13","Security")
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/security/checkpoint)
-"dXR" = (
-/obj/structure/bed/roller,
-/obj/machinery/iv_drip,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dXS" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/main)
-"dXT" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
- },
-/area/maintenance/electrical)
-"dXU" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 27
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
+/area/medical/surgery1)
+"pQN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/chapel/main)
-"dXV" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Chapel Short Hall";
- dir = 1
- },
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/chapel/office)
-"dXW" = (
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 8
+/area/security/lobby)
+"pQP" = (
+/obj/structure/table,
+/obj/item/lighter,
+/obj/item/storage/fancy/cigarettes/cigpack_robust,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6
+/obj/machinery/camera{
+ c_tag = "Prisoner Processing";
+ dir = 6;
+ network = list("SS13","Security")
},
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "arrival_south_airlock";
- name = "interior access button";
- pixel_x = -24;
- pixel_y = -24;
- req_access_txt = "10;13"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
},
-/obj/structure/sign/vacuum{
- pixel_x = -32
+/area/security/processing)
+"pQU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dXX" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "sw_maint2_airlock";
- name = "exterior access button";
- pixel_x = 24;
- pixel_y = 24
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkredfull"
},
-/obj/structure/lattice/catwalk,
+/area/security/warden)
+"pRa" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/turf/space,
-/area/space/nearstation)
-"dXY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment{
dir = 1;
- on = 1
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/electrical)
-"dXZ" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/area/crew_quarters/sleep)
+"pRj" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "First Surgery Window";
+ name = "Surgery Shutters"
},
/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"dYa" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 6
+/area/medical/surgery1)
+"pRy" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/item/pen{
- pixel_x = 4;
- pixel_y = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/area/chapel/main)
-"dYb" = (
-/obj/machinery/dna_scannernew,
+/turf/simulated/floor/plating,
+/area/security/securehallway)
+"pRB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
- },
-/area/medical/genetics)
-"dYc" = (
-/obj/structure/window/reinforced{
- dir = 4
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/window/reinforced,
+/area/hallway/primary/aft)
+"pSd" = (
/obj/structure/window/reinforced{
dir = 8
},
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/grassybush,
-/turf/simulated/floor/grass,
-/area/medical/genetics)
-"dYd" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/applicator/burn,
-/obj/item/reagent_containers/glass/bottle/charcoal,
-/obj/machinery/camera{
- c_tag = "Medbay Genetics Office";
- network = list("Medical","SS13")
+/obj/structure/closet/coffin,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "vault"
},
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
+/area/chapel/main)
+"pSp" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/chapel/office)
+"pSs" = (
+/obj/machinery/door/airlock/centcom{
+ id_tag = "adminshuttle";
+ name = "Bridge";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"pSF" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/assembly/showroom)
+"pSM" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/medical/genetics)
-"dYe" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- tag = "icon-propulsion (NORTH)"
+/area/medical/surgery1)
+"pTt" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "atmo_tank_outer";
+ locked = 1;
+ name = "Atmos External Access";
+ req_access = null;
+ req_access_txt = "32"
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dYf" = (
-/obj/structure/window/reinforced,
-/obj/structure/shuttle/engine/heater{
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"pTx" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/ward)
+"pTS" = (
+/obj/structure/table,
+/obj/machinery/light{
dir = 1;
- tag = "icon-heater (NORTH)"
+ in_use = 1
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dYg" = (
-/obj/structure/bed/roller,
+/obj/machinery/camera{
+ c_tag = "Rec Room Fore"
+ },
+/obj/item/clipboard,
+/obj/item/folder,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "cmo"
+ dir = 1;
+ icon_state = "neutral"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dYh" = (
-/obj/item/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 29;
- pixel_y = 22
+/area/crew_quarters/fitness)
+"pUb" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
},
-/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
- icon_state = "cmo"
+ icon_state = "grimy"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"dYi" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+/area/crew_quarters/captain)
+"pUz" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/area/medical/genetics)
-"dYj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 26
+ },
+/obj/effect/landmark/start{
+ name = "Head of Personnel"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "grimy"
},
-/area/medical/genetics)
-"dYk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/area/crew_quarters/heads/hop)
+"pUJ" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/genetics)
-"dYl" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 1;
+ icon_state = "darkblue"
},
+/area/construction/hallway)
+"pUL" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "rdprivacy";
+ name = "Research Director Office Shutters";
+ opacity = 0
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+/turf/simulated/floor/plating,
+/area/crew_quarters/hor)
+"pUS" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/medical/genetics)
-"dYm" = (
-/obj/structure/chair/stool/bar,
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"pVa" = (
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "neutralcorner"
},
-/area/maintenance/gambling_den)
-"dYp" = (
-/obj/structure/table/reinforced,
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the horrors within the test chamber.";
- name = "Research Monitor";
- network = list("TestChamber")
+/area/crew_quarters/fitness)
+"pVj" = (
+/obj/structure/chair/office/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple"
- },
-/area/toxins/misc_lab)
-"dYq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ icon_state = "white"
},
-/obj/machinery/atmospherics/binary/valve,
+/area/toxins/mixing)
+"pVo" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/toxins/misc_lab)
-"dYs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dYt" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"dYu" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"dYv" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/area/maintenance/xenozoo)
+"pVu" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom{
+ pixel_x = 26;
+ pixel_y = 28
},
-/obj/effect/decal/cleanable/dirt,
+/obj/item/reagent_containers/food/snacks/grown/poppy/geranium,
+/obj/item/reagent_containers/food/snacks/grown/poppy/geranium,
+/obj/item/reagent_containers/food/snacks/grown/poppy/geranium,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/maintenance/gambling_den)
-"dYy" = (
-/obj/structure/chair/stool/bar,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/crew_quarters/cabin1)
+"pVy" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"dYz" = (
-/obj/structure/chair/stool/bar,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/maintenance/gambling_den)
-"dYA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dYC" = (
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"dYE" = (
-/obj/structure/bed/roller,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/mob/living/carbon/human/monkey,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dYF" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Monkey Pen";
- req_access_txt = "39"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1
+/area/crew_quarters/sleep)
+"pVL" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/arrow{
+/obj/structure/window/reinforced{
dir = 1
},
-/obj/machinery/door/firedoor,
-/obj/item/grown/bananapeel,
+/obj/structure/closet,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/virology)
-"dYI" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/security/evidence)
+"pVM" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/port)
-"dYJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"pVP" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 4;
+ name = "Труба дыхательной смеси"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/port)
-"dYK" = (
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"pWb" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "robotics_solar_airlock";
- name = "exterior access button";
- pixel_x = 25;
- pixel_y = 25;
- req_access_txt = "13"
+/obj/effect/landmark{
+ name = "lightsout"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/port)
-"dYL" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/medical/virology)
+"pWn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/fueltank,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/port)
-"dYM" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"pWo" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"pWu" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/port)
-"dYN" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/port)
-"dYO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
+/area/crew_quarters/locker/locker_toilet)
+"pWx" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/engine/break_room)
+"pWC" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/port)
-"dYP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
+/obj/item/reagent_containers/spray/cleaner/drone,
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/engine/break_room)
+"pWD" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -28
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/port)
-"dYQ" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "arrival_south_airlock";
- name = "exterior access button";
- pixel_x = 24;
- pixel_y = 24;
- req_access_txt = "10;13"
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/space/nearstation)
-"dYR" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/security/customs)
+"pWK" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/port)
-"dYS" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/firealarm{
+ pixel_x = -32;
+ pixel_y = 24
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"pWN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/port)
-"dYT" = (
-/turf/simulated/floor/carpet,
-/area/chapel/office)
-"dYU" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/crayons,
-/obj/machinery/camera{
- c_tag = "Chaplain's Office";
- dir = 1
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"pWR" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/wood,
+/area/library/abandoned)
+"pWT" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/requests_console{
- department = "Chapel";
- departmentType = 2;
- name = "Chapel Requests Console";
- pixel_y = -30
+/area/library/abandoned)
+"pXd" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/item/lighter/zippo/black,
-/turf/simulated/floor/carpet,
-/area/chapel/office)
-"dYV" = (
-/obj/structure/rack,
/obj/machinery/newscaster{
- pixel_y = -32
+ pixel_x = 32
},
-/obj/item/lock_buster,
-/obj/item/megaphone,
-/obj/item/clothing/glasses/meson{
- pixel_y = 4
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/rcd_ammo,
-/obj/item/rcd_ammo,
-/obj/item/rcd_ammo,
-/obj/item/rcd_ammo,
-/obj/item/rcd_ammo,
-/obj/item/rcd_ammo,
-/obj/item/rcd_ammo,
-/obj/item/rcd_ammo,
-/obj/item/rcd,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/chief)
-"dYW" = (
-/obj/structure/table,
-/obj/machinery/kitchen_machine/microwave,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/permabrig)
-"dYX" = (
-/obj/structure/window/reinforced,
-/obj/structure/shuttle/engine/heater{
- dir = 1;
- tag = "icon-heater (NORTH)"
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/syndicate_elite)
-"dYY" = (
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "wall3"
- },
-/area/shuttle/syndicate_elite)
-"dYZ" = (
-/obj/machinery/sleeper/syndie{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate_elite)
-"dZa" = (
-/obj/machinery/sleeper/syndie,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/chapel/office)
+"pXf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/shuttle/syndicate_elite)
-"dZb" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
},
-/area/shuttle/syndicate_elite)
-"dZc" = (
-/obj/machinery/light/spot{
+/area/tcommsat/chamber)
+"pXg" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/camera{
+ c_tag = "Atmos Hatch";
dir = 8;
- tag = "icon-tube1 (WEST)"
+ network = list("Engineering","SS13");
+ pixel_y = -22
},
+/obj/machinery/recharge_station,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"pXo" = (
/obj/structure/chair/comfy/shuttle{
dir = 4
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate_elite)
-"dZd" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/area/shuttle/syndicate_elite)
-"dZe" = (
-/obj/structure/chair/comfy/shuttle{
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"pXr" = (
+/obj/machinery/atmospherics/binary/pump{
dir = 4
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate_elite)
-"dZf" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
+/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry/louge)
-"dZg" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window{
dir = 8;
- name = "Kitchen";
- req_access_txt = "28"
+ icon_state = "neutralcorner"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Kitchen Hall Windows";
- name = "Kitchen Shutters"
+/area/toxins/mixing)
+"pXv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/area/crew_quarters/kitchen)
-"dZh" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/area/shuttle/syndicate_elite)
-"dZi" = (
-/obj/machinery/door/airlock/external{
- id_tag = "s_docking_airlock";
- name = "Shuttle Airlock";
- req_access_txt = "150"
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "syndicate_elite";
- name = "Side Hull Door";
- opacity = 0;
- req_access_txt = "150"
+/area/hallway/primary/central/east)
+"pXz" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/docking_port/mobile{
- dir = 4;
- dwidth = 7;
- height = 5;
- id = "sst";
- name = "SST shuttle";
- roundstart_move = "sst_away";
- width = 11
+/obj/machinery/vending/wallmed{
+ pixel_y = 30
},
-/obj/docking_port/stationary{
+/turf/simulated/floor/plasteel{
dir = 4;
- dwidth = 7;
- height = 5;
- id = "sst_home";
- name = "Near Kerberos Arrivals";
- width = 11
- },
-/obj/structure/fans/tiny,
-/turf/simulated/shuttle/plating,
-/area/shuttle/syndicate_elite)
-"dZj" = (
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate_elite)
-"dZk" = (
-/obj/machinery/computer/shuttle/sst,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+ icon_state = "neutralcorner"
},
-/area/shuttle/syndicate_elite)
-"dZl" = (
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
+/area/crew_quarters/sleep)
+"pXD" = (
+/obj/structure/table/reinforced,
+/obj/item/wrench,
+/obj/item/crowbar,
+/obj/item/analyzer,
+/obj/machinery/newscaster{
+ pixel_x = -32
},
-/area/shuttle/syndicate_elite)
-"dZm" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "diagonalWall3"
+/obj/machinery/camera{
+ c_tag = "Atmospherics Front Desk";
+ dir = 4;
+ network = list("SS13","Engineering")
},
-/area/shuttle/syndicate_elite)
-"dZn" = (
-/obj/machinery/door/airlock/external{
- id_tag = "s_docking_airlock";
- name = "Shuttle Airlock";
- req_access_txt = "150"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "caution"
},
-/obj/machinery/door_control{
- id = "syndicate_elite";
- name = "Blast Doors";
- pixel_x = -25;
- req_access_txt = "150"
+/area/atmos)
+"pXO" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "syndicate_elite";
- name = "Front Hull Door";
- opacity = 0;
- req_access_txt = "150"
+/area/hallway/primary/central/ne)
+"pXV" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/structure/fans/tiny,
-/turf/simulated/shuttle/plating,
-/area/shuttle/syndicate_elite)
-"dZo" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/tech)
+"pXX" = (
+/obj/structure/window/reinforced,
+/obj/machinery/photocopier,
+/obj/machinery/light/small{
dir = 4;
- icon_state = "diagonalWall3"
+ pixel_y = 8
},
-/area/shuttle/syndicate_elite)
-"dZp" = (
-/turf/simulated/floor/plating/airless,
-/area/shuttle/syndicate_elite)
-"dZq" = (
-/turf/space,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 6;
+ icon_state = "darkblue"
},
-/area/engine/mechanic_workshop/hanger)
-"dZr" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/area/medical/morgue)
+"pYf" = (
+/obj/structure/bed/roller,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/obj/item/radio/intercom{
- pixel_x = -30
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"pYm" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/candle_box/full,
+/obj/item/storage/fancy/candle_box/full{
+ pixel_x = -3;
+ pixel_y = 3
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"dZs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/area/chapel/office)
+"pYt" = (
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"pYG" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "red"
},
-/area/hallway/secondary/entry/eastarrival)
-"dZt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/brig)
+"pYJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Mech Bay";
+ req_access_txt = "29"
},
/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"dZu" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/area/assembly/chargebay)
+"pYL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"dZv" = (
-/obj/machinery/door_control{
- desc = "A remote control-switch for the pod doors.";
- id = "secpodbay";
- name = "Pod Door Control";
- pixel_x = -9;
- pixel_y = -23
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/engine/mechanic_workshop/hanger)
-"dZw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/toxins/misc_lab)
+"pYR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 6
},
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"pZl" = (
+/obj/effect/decal/warning_stripes/northeastcorner,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"pZq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"dZx" = (
+/area/storage/tech)
+"pZL" = (
/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/radio/intercom{
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 5;
icon_state = "red"
},
-/area/security/podbay)
-"dZy" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/security/reception)
+"pZM" = (
+/obj/machinery/light/small,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/unary/portables_connector{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"pZQ" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plating,
-/area/security/podbay)
-"dZz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"pZR" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"qac" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
-/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"qaw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkred"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
},
-/area/security/podbay)
-"dZA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
+/area/crew_quarters/hor)
+"qaH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/podbay)
-"dZB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/hallway/primary/central/sw)
+"qaX" = (
+/obj/machinery/mineral/stacking_machine/laborstacker{
+ input_dir = 2;
+ output_dir = 1
},
-/turf/simulated/floor/plasteel{
+/turf/simulated/shuttle/floor{
+ icon = 'icons/turf/floors.dmi';
icon_state = "dark"
},
-/area/security/podbay)
-"dZC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
+/area/shuttle/siberia)
+"qbq" = (
+/obj/structure/table/wood,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"qbt" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/light/small,
-/obj/machinery/door_control{
- desc = "A remote control-switch for the pod doors.";
- id = "secpod";
- name = "Pod Door Control";
- pixel_x = 26;
- pixel_y = -7;
- req_access_txt = "71"
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkred"
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
},
-/area/security/podbay)
-"dZD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaCellsLockdown";
+ name = "Perma Cells Lockdown"
},
-/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
-"dZE" = (
-/obj/machinery/floodlight{
- on = 1
- },
+/area/security/permabrig)
+"qbx" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/machinery/camera{
- c_tag = "Security Pod Pilot Office";
- dir = 1;
- network = list("SS13","Security")
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/cryopod/robot,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"qbE" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
+/obj/structure/window/reinforced,
+/obj/structure/showcase,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 8;
+ icon_state = "vault"
},
-/area/security/podbay)
-"dZF" = (
+/area/turret_protected/aisat)
+"qbQ" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/light,
-/obj/effect/landmark/start{
- name = "Security Pod Pilot"
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/hallway/primary/central/nw)
+"qbW" = (
+/obj/machinery/portable_atmospherics/scrubber/huge/stationary,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/camera{
+ c_tag = "Permabrig North";
+ dir = 1;
+ network = list("Prison","SS13")
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/podbay)
-"dZG" = (
+/area/security/permabrig)
+"qcd" = (
+/obj/machinery/ai_slipper,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/aisat)
+"qcB" = (
+/obj/machinery/computer/card,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
},
+/area/bridge)
+"qcE" = (
/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4"
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"dZH" = (
-/obj/structure/closet/secure_closet/security,
-/obj/item/spacepod_equipment/weaponry/laser,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/spacepod_key{
- id = 100000
+/obj/machinery/power/smes,
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/item/clothing/suit/jacket/pilot,
-/obj/item/clothing/head/beret/sec,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/maintenance/portsolar)
+"qcF" = (
+/obj/machinery/computer/scan_consolenew,
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/medical/genetics)
+"qcG" = (
+/obj/structure/table/reinforced,
+/obj/item/restraints/handcuffs,
+/obj/item/flash,
+/obj/machinery/ai_status_display{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/podbay)
-"dZI" = (
-/obj/machinery/door/poddoor/multi_tile/two_tile_hor{
- id_tag = "secpod"
+/area/bridge)
+"qcL" = (
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/port)
+"qcM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/spacepoddoor{
- dir = 4;
- luminosity = 3
+/obj/machinery/computer/security{
+ network = list("SS13","Mining Outpost")
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "darkred"
},
-/area/security/podbay)
-"dZJ" = (
-/obj/structure/spacepoddoor{
- dir = 4;
- luminosity = 3
+/area/bridge)
+"qcW" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/commercial)
+"qcX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/kitchenspike,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"qde" = (
+/obj/machinery/computer/atmos_alert,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkyellow"
+ },
+/area/bridge)
+"qdg" = (
+/obj/structure/closet/firecloset,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/ne)
+"qdp" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/podbay)
-"dZK" = (
-/obj/structure/sign/vacuum{
- pixel_x = -32
- },
-/obj/effect/decal/warning_stripes/west,
+/area/security/securearmoury)
+"qdz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"dZL" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA"
- },
-/turf/simulated/wall/r_wall,
-/area/security/podbay)
-"dZM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/door/airlock/security{
- name = "Security Pods";
- req_access_txt = "71";
- security_level = 1
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"qdI" = (
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"dZN" = (
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkyellow"
- },
-/area/engine/mechanic_workshop/hanger)
-"dZR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
- },
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "solar_chapel_airlock";
- name = "interior access button";
- pixel_x = 25;
- pixel_y = 25;
- req_access_txt = "13"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"dZS" = (
-/obj/structure/chair/office/dark{
+/area/crew_quarters/fitness)
+"qdV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"dZT" = (
-/obj/machinery/door_control{
- desc = "A remote control-switch for the pod doors.";
- id = "secpod";
- name = "Pod Door Control";
- pixel_x = 26;
- pixel_y = 5;
- req_access_txt = "71"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "darkyellow"
- },
-/area/engine/mechanic_workshop/hanger)
-"dZU" = (
-/obj/structure/cable,
-/obj/machinery/power/solar_control{
- id = "auxsolareast";
- name = "Fore Starboard Solar Control"
- },
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"dZV" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- icon_state = "propulsion_r";
- tag = "icon-propulsion_r (NORTH)"
+ icon_state = "caution"
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/syndicate_sit)
-"eaH" = (
-/obj/machinery/computer/message_monitor,
-/turf/simulated/floor/bluegrid,
-/area/tcommsat/chamber)
-"eaJ" = (
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"ebz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/power/apc{
+/area/atmos)
+"qef" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- name = "west bump";
- pixel_x = -24
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/structure/weightmachine/weightlifter,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/crew_quarters/fitness)
+"qeg" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/bodybags{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ dir = 5;
+ icon_state = "darkblue"
},
-/area/medical/medbay2)
-"ecb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/chapel/main)
+"qek" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"ecK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
tag = ""
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A38";
- location = "A37"
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Local Armory";
+ req_access_txt = "1"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "red"
},
-/area/hallway/primary/central/north)
-"ecN" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/security/armoury)
+"qex" = (
+/obj/structure/window/reinforced,
+/obj/structure/shuttle/engine/heater{
+ dir = 1;
+ tag = "icon-heater (NORTH)"
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate_sit)
+"qeJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"edv" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northwestsouth,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"eea" = (
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding4"
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/obj/effect/decal/warning_stripes/west{
- icon = 'icons/turf/floors.dmi';
- icon_state = "siding8"
+/area/hallway/primary/starboard/east)
+"qfb" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_containers/iv_bag/blood/AMinus,
+/obj/item/reagent_containers/iv_bag/blood/APlus,
+/obj/item/reagent_containers/iv_bag/blood/BMinus,
+/obj/item/reagent_containers/iv_bag/blood/BPlus,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/blood/OPlus,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/machinery/iv_drip,
+/obj/item/reagent_containers/iv_bag/salglu,
+/obj/effect/decal/warning_stripes/blue/hollow,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
},
-/obj/machinery/hologram/holopad,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = -29;
+ pixel_y = -12
+ },
+/obj/item/tank/emergency_oxygen/engi/full,
+/obj/item/tank/emergency_oxygen/engi/full,
+/obj/item/tank/emergency_oxygen/nitrogen,
+/obj/item/tank/emergency_oxygen/plasma,
/turf/simulated/floor/plasteel{
- icon_state = "asteroid";
- tag = "icon-asteroid (NORTH)"
+ icon_state = "white"
},
-/area/hydroponics)
-"eef" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/area/medical/sleeper)
+"qfe" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/aisat_interior)
-"eev" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+/obj/machinery/newscaster{
+ pixel_x = -28
},
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = -3;
- pixel_y = 3
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/item/gun/energy/gun/advtaser,
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = 3;
- pixel_y = -3
+/area/medical/medbay2)
+"qfg" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_containers/iv_bag/blood/AMinus,
+/obj/item/reagent_containers/iv_bag/blood/APlus,
+/obj/item/reagent_containers/iv_bag/blood/BMinus,
+/obj/item/reagent_containers/iv_bag/blood/BPlus,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/blood/OPlus,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/machinery/iv_drip,
+/obj/item/reagent_containers/iv_bag/salglu,
+/obj/effect/decal/warning_stripes/blue/hollow,
+/obj/item/tank/emergency_oxygen/engi/full,
+/obj/item/tank/emergency_oxygen/engi/full,
+/obj/item/tank/emergency_oxygen/nitrogen,
+/obj/item/tank/emergency_oxygen/plasma,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/medical/sleeper)
+"qfq" = (
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"qfr" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/security/securearmoury)
-"eeE" = (
-/obj/effect/spawner/window/reinforced,
+/area/crew_quarters/bar/atrium)
+"qfD" = (
/obj/structure/cable{
+ d1 = 2;
d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Second Surgery Window";
- name = "Surgery Shutters"
+ icon_state = "2-8"
},
-/turf/simulated/floor/plating,
-/area/medical/surgery2)
-"efA" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"egm" = (
-/obj/structure/window/reinforced,
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/space/nearstation)
-"egA" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"egD" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall/r_wall,
-/area/security/securearmoury)
-"egF" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "2-4"
},
-/obj/item/radio/intercom{
- pixel_y = 28
+/obj/machinery/door_control{
+ id = "xenokill";
+ name = "Xenobio Kill Room Bolts";
+ normaldoorcontrol = 1;
+ pixel_x = 30;
+ specialfunctions = 4
},
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/door/airlock/research/glass{
+ id_tag = "xenokill";
+ locked = 1;
+ name = "Xenobio Kill Room"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboardsolar)
-"egR" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
-"eht" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+/area/toxins/xenobiology)
+"qfO" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera{
+ c_tag = "Morgue External";
+ dir = 8
},
-/obj/machinery/door/poddoor/shutters/preopen{
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/aft)
+"qfW" = (
+/obj/machinery/camera{
+ c_tag = "Locker Room South";
+ dir = 5
+ },
+/obj/structure/closet/wardrobe/xenos,
+/turf/simulated/floor/plasteel{
dir = 8;
- id_tag = "execution";
- name = "Execution Privacy Shutters"
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"ehC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/crew_quarters/locker)
+"qgl" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"ehG" = (
-/obj/structure/bed,
-/obj/item/bedsheet/patriot,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/ne)
+"qgq" = (
+/obj/machinery/light/small,
+/obj/item/clothing/head/bearpelt,
+/obj/item/folder/documents,
+/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,
+/obj/item/lighter/zippo/nt_rep,
+/obj/item/storage/fancy/cigarettes/cigpack_robustgold,
+/obj/item/stack/spacecash/c1000{
+ amount = 100000
+ },
+/obj/structure/safe{
+ known_by = list("captain")
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+ dir = 1;
+ icon_state = "vault"
},
-/area/security/permabrig)
-"ehV" = (
-/obj/item/twohanded/required/kirbyplants,
+/area/security/nuke_storage)
+"qgz" = (
/obj/machinery/light{
dir = 8
},
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -28
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ dir = 8;
+ icon_state = "red"
},
-/area/medical/research{
- name = "Research Division"
- })
-"eiG" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"ejf" = (
-/obj/structure/closet/secure_closet/injection,
-/obj/machinery/door_control{
- id = "execution";
- name = "Execution Privacy Shutters Control";
- pixel_x = -24;
- pixel_y = -7;
- req_access_txt = "2"
+/area/security/brig)
+"qgZ" = (
+/obj/machinery/light/small,
+/obj/structure/sign/poster/contraband/communist_state{
+ pixel_y = -32
+ },
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken";
+ tag = "icon-wood-broken"
},
+/area/maintenance/fsmaint)
+"qhf" = (
+/obj/structure/table/reinforced,
+/obj/item/stamp/rd,
+/obj/item/paper_bin,
+/obj/item/pen,
/obj/machinery/door_control{
- id = "exspace";
- name = "Vacuum Execution";
- pixel_x = -24;
- pixel_y = 4;
- req_access_txt = "2"
+ id = "rdprivacy";
+ name = "Privacy Shutters";
+ pixel_x = -6;
+ pixel_y = 6
},
-/obj/machinery/camera{
- c_tag = "Execution Room";
+/turf/simulated/floor/plasteel{
dir = 4;
- network = list("SS13","Security")
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (EAST)"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkred"
+/area/crew_quarters/hor)
+"qhn" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
},
-/area/security/execution)
-"ejg" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- tag = "icon-propulsion (NORTH)"
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "red"
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/syndicate_sit)
-"eji" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/security/brig)
+"qhH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/assembly/robotics)
-"ejz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/slot_machine,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"ejA" = (
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 14";
- dir = 8;
- network = list("SS13","MiniSat")
+ dir = 1;
+ icon_state = "whitehall"
},
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"ekr" = (
-/obj/machinery/door_control{
- id = "Kitchen Hall Windows";
- name = "Kitchen Hallway Shutters Control";
- pixel_x = 26;
- pixel_y = 24;
- req_access_txt = "28"
+/area/toxins/xenobiology)
+"qhS" = (
+/obj/structure/chair/comfy/shuttle,
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = -26
},
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/crew_quarters/kitchen)
-"ell" = (
-/obj/structure/showcase{
- density = 0;
- dir = 4;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = -9;
- pixel_y = 2
+ dir = 1;
+ icon_state = "bot"
},
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"qhT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/turretid/stun{
- control_area = "\improper AI Satellite";
- name = "AI Antechamber Turret Control";
- pixel_x = -32;
- req_access_txt = "75"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
+ icon_state = "purplefull"
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
+/area/medical/research{
+ name = "Research Division"
})
-"elx" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/palebush,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"emm" = (
+"qhW" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/starboard)
-"emo" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/item/radio/intercom{
- pixel_y = 24
+/area/security/processing)
+"qic" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"enb" = (
-/obj/effect/decal/warning_stripes/north,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ icon_state = "1-4"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-4"
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Armory_South";
- location = "Armory_North"
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaCellsLockdown";
+ name = "Perma Cells Lockdown"
},
-/mob/living/simple_animal/bot/secbot/armsky{
- auto_patrol = 1
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"qie" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "Interrogation"
},
-/area/security/securearmoury)
-"enG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "Interrogation"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Bridge";
- req_access_txt = "19"
+/obj/structure/window/reinforced/polarized{
+ id = "Interrogation"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "Interrogation"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/turf/simulated/floor/plating,
+/area/security/interrogation)
+"qiv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/bridge)
-"enO" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (NORTH)"
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -30
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/syndicate_sit)
-"eoB" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/blue,
-/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 0;
+ icon_state = "red"
},
-/area/turret_protected/ai)
-"eoI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/area/security/permahallway)
+"qiB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "High Sec Zone";
+ req_access_txt = "63"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry/eastarrival)
-"epN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 0;
+ icon_state = "red"
},
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
+/area/security/permahallway)
+"qiD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
-"epX" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/beakers,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/machinery/alarm{
+/area/security/securehallway)
+"qiF" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/bar/atrium)
+"qiL" = (
+/obj/machinery/camera{
+ c_tag = "East-North Brig Hallway";
dir = 8;
- pixel_x = 24
+ network = list("SS13","Security")
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHEAST)"
+ dir = 4;
+ icon_state = "red"
},
-/area/toxins/misc_lab)
-"eqt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+/area/security/securehallway)
+"qiR" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/area/medical/sleeper)
-"eqy" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "2-8"
},
-/area/medical/medbay)
-"eqA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/quartermaster/storage)
-"erb" = (
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"qiU" = (
+/obj/machinery/hologram/holopad,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/hallway/primary/central/west)
-"erw" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/turret_protected/aisat_interior)
+"qji" = (
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/security/prisonershuttle)
+"qjj" = (
+/obj/machinery/light{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/toxins/explab)
-"esu" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/hallway/primary/aft)
-"esT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/ntrep)
+"qjn" = (
+/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "darkblue"
},
-/area/medical/research{
- name = "Research Division"
+/area/shuttle/escape{
+ parallax_movedir = 2
})
-"ets" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+"qjp" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"qjr" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1331;
+ id_tag = "atmo_tank_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "atmo_tank_airlock";
+ pixel_x = 57;
+ req_access_txt = "32";
+ tag_airpump = "atmo_tank_pump";
+ tag_chamber_sensor = "atmo_tank_sensor";
+ tag_exterior_door = "atmo_tank_outer";
+ tag_interior_door = "atmo_tank_inner"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "atmo_tank_sensor";
+ pixel_x = 57;
+ pixel_y = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"qjy" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Staff Room";
+ network = list("SS13","Medical")
},
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
+ },
+/area/medical/ward)
+"qjM" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/area/medical/research{
- name = "Research Division"
- })
-"etE" = (
-/obj/structure/closet,
/obj/structure/window/reinforced,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "dark"
},
-/area/security/evidence)
-"etQ" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry/commercial)
-"evl" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/stool/bar,
-/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+/area/security/securearmoury)
+"qjN" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/maintenance/abandonedbar)
-"evp" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Dorm Hallway Starboard"
- },
-/obj/machinery/alarm{
- pixel_y = 24
- },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/sleep)
-"evx" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/maintenance/abandonedbar)
-"evX" = (
-/obj/structure/table,
-/obj/item/reagent_containers/syringe/antiviral,
-/obj/item/reagent_containers/syringe/charcoal,
-/obj/item/reagent_containers/syringe/insulin,
-/obj/item/reagent_containers/glass/bottle/morphine,
-/obj/item/reagent_containers/glass/bottle/epinephrine,
-/obj/item/reagent_containers/syringe,
-/obj/item/stack/medical/bruise_pack/advanced{
- pixel_x = 6;
- pixel_y = 6
+/area/crew_quarters/locker)
+"qjU" = (
+/obj/structure/table/glass,
+/obj/item/storage/firstaid/adv{
+ pixel_x = 1;
+ pixel_y = 2
},
-/obj/item/stack/medical/ointment/advanced{
- pixel_x = 6;
- pixel_y = 8
+/obj/item/reagent_containers/glass/bottle/epinephrine{
+ pixel_y = 2
},
-/obj/item/reagent_containers/food/pill/patch/styptic{
- pixel_y = 6
+/obj/item/reagent_containers/glass/bottle/charcoal,
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "whitered"
},
-/obj/item/reagent_containers/food/pill/patch/styptic{
- pixel_x = 2;
- pixel_y = 8
+/area/security/medbay)
+"qjY" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/item/reagent_containers/food/pill/patch/silver_sulf{
- pixel_x = -8;
- pixel_y = 6
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/item/reagent_containers/food/pill/patch/silver_sulf{
- pixel_x = -8;
- pixel_y = 8
+/obj/machinery/gameboard{
+ pixel_x = 3;
+ pixel_y = -7
},
-/obj/item/storage/pill_bottle/painkillers{
- pixel_x = -6;
- pixel_y = -3
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"qks" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/cobweb2,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
-/obj/machinery/defibrillator_mount/loaded{
- pixel_y = 30
+/area/library/abandoned)
+"qkv" = (
+/obj/machinery/light/small{
+ dir = 4;
+ tag = "icon-bulb1 (EAST)"
},
-/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"qkH" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/glasses/welding,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
- },
-/area/medical/sleeper)
-"ewS" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ dir = 10;
+ icon_state = "arrival"
},
-/obj/machinery/atm{
- pixel_y = 32
+/area/atmos)
+"qla" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 28
},
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"exd" = (
+/area/crew_quarters/locker/locker_toilet)
+"qlu" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
+ },
+/area/engine/engineering)
+"qlw" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door_control{
+ id = "xeno4";
+ name = "Containment Control";
+ req_access_txt = "55"
+ },
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"qlJ" = (
+/obj/structure/sign/science{
+ icon_state = "xenobio2"
},
+/turf/simulated/wall,
+/area/toxins/xenobiology)
+"qlP" = (
/obj/effect/landmark/start{
- name = "Brig Physician"
+ name = "Blueshield"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/chair/comfy/black{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteredcorner"
+ icon_state = "bcarpet05"
},
-/area/security/medbay)
-"exo" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Brig Medical Bay";
- req_one_access_txt = "63"
+/area/blueshield)
+"qlT" = (
+/obj/machinery/light,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/turret_protected/ai_upload)
+"qlZ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"qme" = (
+/obj/structure/table/wood,
+/obj/item/storage/pill_bottle/dice,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/structure/window/reinforced{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "grimy"
},
-/area/security/medbay)
-"exv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/library)
+"qmn" = (
+/obj/structure/table/reinforced,
+/obj/machinery/newscaster{
+ pixel_x = -32
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/item/storage/box/donkpockets,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
- },
-/area/medical/medbay)
-"exx" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ icon_state = "redyellowfull"
},
+/area/engine/break_room)
+"qmu" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkred"
+ icon_state = "redyellowfull"
},
-/area/security/evidence)
-"eyt" = (
-/obj/structure/window/reinforced,
-/obj/structure/chair/comfy/black{
- dir = 8
+/area/engine/break_room)
+"qmv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
},
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"eyC" = (
-/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"qmz" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "ai2";
- name = "Turret Shutters"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"eyI" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/area/medical/virology)
+"qmF" = (
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
},
-/turf/simulated/floor/plating,
-/area/security/prison/cell_block/A)
-"eyU" = (
-/obj/effect/landmark/start{
- name = "Security Officer"
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"qmT" = (
+/obj/machinery/door/airlock{
+ id_tag = "cabin1";
+ name = "Cabin"
},
+/obj/machinery/door/firedoor,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/crew_quarters/cabin1)
+"qnc" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"qni" = (
+/turf/simulated/wall/r_wall,
+/area/turret_protected/aisat_interior)
+"qnk" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/chair/barber{
dir = 4
},
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "barber"
},
-/area/security/customs)
-"ezv" = (
-/obj/effect/spawner/window/reinforced,
+/area/civilian/barber)
+"qnB" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/security/medbay)
-"ezU" = (
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin3)
-"eAH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "4-8"
},
-/area/medical/research{
- name = "Research Division"
- })
-"eAJ" = (
-/obj/machinery/light/small{
+/obj/structure/chair/office/dark{
dir = 8
},
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"eBy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/atmos)
+"qnC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/toxins/misc_lab)
-"eCU" = (
-/turf/simulated/wall/r_wall,
-/area/security/securearmoury)
-"eDv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/atmos)
+"qnD" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
/area/medical/medbay)
-"eDD" = (
-/obj/effect/spawner/window/reinforced,
+"qnL" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"qnQ" = (
+/obj/structure/table/wood/poker,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"qol" = (
+/obj/effect/decal/cleanable/blood/xeno,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
- },
/turf/simulated/floor/plating,
-/area/security/permabrig)
-"eEg" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/maintenance/xenozoo)
+"qoy" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/main)
-"eEu" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"eEK" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/area/security/securearmoury)
+"qoz" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal,
+/obj/item/clothing/glasses/welding,
+/obj/item/weldingtool,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"eFo" = (
-/turf/simulated/wall,
-/area/mimeoffice)
-"eGd" = (
-/obj/machinery/light/small{
+/area/shuttle/syndicate_sit)
+"qoG" = (
+/obj/machinery/atmospherics/unary/portables_connector{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"eGq" = (
-/obj/machinery/light/small{
+/obj/machinery/camera{
+ c_tag = "Port Hallway North";
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"eGv" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall/r_wall,
-/area/maintenance/xenozoo)
-"eHJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/portable_atmospherics/pump,
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ dir = 4;
+ icon_state = "arrival"
},
-/area/tcommsat/chamber)
-"eIk" = (
-/obj/machinery/vending/wallmed{
- pixel_y = 30
+/area/hallway/primary/port/west)
+"qoH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/security/processing)
-"eJl" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/hallway/primary/central/sw)
+"qoN" = (
+/obj/structure/closet,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/medical/cryo)
-"eJs" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/vending/coffee,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"eJC" = (
-/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"qoQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -104050,3616 +101372,3192 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "vault"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Tech Storage";
+ req_access_txt = "19;23"
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/storage/tech)
+"qpj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/engine/mechanic_workshop)
-"eJH" = (
-/obj/structure/bed,
-/obj/item/bedsheet/red,
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- on = 1
+ initialize_directions = 11
},
-/obj/item/radio/intercom{
- pixel_x = 30
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 32;
+ pixel_y = -32
},
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/area/security/prison/cell_block/A)
-"eKI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"eKM" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+/area/maintenance/fpmaint2)
+"qpk" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall7"
},
-/area/medical/medbay)
-"eMa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"qpm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/manifold/visible,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "white"
},
-/area/medical/medbay3)
-"eMv" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"eMx" = (
+/area/medical/cryo)
+"qpw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"eMM" = (
-/obj/machinery/hydroponics/soil,
-/obj/machinery/camera{
- c_tag = "Animal Garden";
+/area/maintenance/fpmaint2)
+"qpC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"eNq" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"qpU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Reception";
+ req_access_txt = "63"
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 1
+ },
+/area/security/reception)
+"qqe" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/glass{
+ amount = 50;
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50;
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/plasteel{
+ amount = 15
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
},
-/area/hallway/primary/port/east)
-"eOv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/central/west)
-"ePe" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/assembly/robotics)
+"qqA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/engine/mechanic_workshop)
-"ePl" = (
-/turf/simulated/floor/wood{
- icon_state = "wood-broken5";
- tag = "icon-wood-broken5"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/area/maintenance/abandonedbar)
-"eQd" = (
/obj/machinery/light{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkyellow"
- },
-/area/engine/mechanic_workshop/hanger)
-"eQA" = (
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "darkred"
},
-/area/medical/sleeper)
-"eRU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+/area/security/permabrig)
+"qqO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/medbay3)
-"eSz" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkbluecorners"
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/area/tcommsat/chamber)
-"eSE" = (
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/roller,
-/obj/effect/decal/warning_stripes/blue/partial,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/sleeper)
-"eSK" = (
-/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"qqU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaCellsLockdown";
- name = "Perma Cells Lockdown"
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/crew_quarters/heads/hop)
+"qqV" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plating,
-/area/security/permabrig)
-"eSM" = (
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 1";
- name = "Cell 1 Locker"
+/area/library/abandoned)
+"qqW" = (
+/obj/structure/chair/comfy/red,
+/obj/item/radio/intercom{
+ pixel_y = 22
},
-/obj/machinery/flasher{
- id = "Cell 1"
+/obj/effect/landmark/start{
+ name = "Civilian"
},
-/turf/simulated/floor/plasteel{
- icon_state = "bcarpet05"
+/turf/simulated/floor/wood,
+/area/library)
+"qrj" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/security/prison/cell_block/A)
-"eTq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"qrz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"eTz" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/mug/sec,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/lobby)
-"eTP" = (
-/turf/simulated/wall,
-/area/security/customs)
-"eUb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/wood,
+/area/civilian/pet_store)
+"qrH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (NORTHWEST)"
+ },
+/area/medical/virology)
+"qrL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"eUc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/maintenance/fsmaint)
+"qrR" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
- },
-/area/security/main)
-"eUt" = (
-/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ icon_state = "darkblue"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/medical/surgery1)
+"qrT" = (
+/turf/simulated/wall/r_wall,
+/area/tcommsat/chamber)
+"qrV" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+/obj/item/lightreplacer,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/area/medical/medbay3)
-"eUK" = (
-/turf/simulated/floor/wood,
-/area/maintenance/abandonedbar)
-"eVK" = (
-/obj/structure/window/reinforced{
- dir = 8
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
},
-/turf/simulated/floor/plating,
-/area/security/execution)
-"eVL" = (
+/area/turret_protected/aisat)
+"qrW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_pump{
dir = 4;
- icon_state = "redcorner"
+ external_pressure_bound = 101;
+ on = 1
},
-/area/security/main)
-"eWw" = (
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"qsc" = (
+/turf/simulated/wall/r_wall,
+/area/medical/surgery1)
+"qsg" = (
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/hallway/secondary/exit)
+"qsw" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/chapel/main)
-"eWC" = (
/obj/machinery/light/small{
dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"eWM" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/medbay3)
-"eWO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"qsF" = (
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"qsX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "1-4"
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/security/lobby)
-"eXp" = (
-/obj/structure/shuttle/engine/propulsion/burst{
+/area/chapel/office)
+"qsZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f9"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitegreencorner"
},
-/area/shuttle/pod_4)
-"eXw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/medical/virology)
+"qtp" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay3)
-"eXx" = (
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/portable_atmospherics/scrubber/huge/stationary,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"qtq" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall,
+/area/toxins/explab)
+"qtv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/permabrig)
-"eYe" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Bridge";
- req_access_txt = "19"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/bridge)
-"eYG" = (
+/area/bridge/vip)
+"qtz" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12";
+ tag = "icon-swall12"
+ },
+/area/shuttle/pod_3)
+"qtU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/junction{
+/turf/simulated/floor/plasteel{
dir = 1;
- tag = "icon-pipe-j1 (EAST)"
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/nw)
+"qtZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/toxins/explab)
+"qug" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/brig)
-"eYO" = (
-/obj/machinery/door/airlock/security/glass{
- id_tag = "BrigLeft";
- name = "Brig";
- req_access_txt = "63"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/mapping_helpers/airlock/unres{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/area/security/permahallway)
+"qui" = (
+/obj/structure/dispenser/oxygen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/ai_monitored/storage/eva)
+"qul" = (
+/obj/machinery/shower{
+ dir = 4
},
+/obj/structure/curtain/open/shower,
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "freezerfloor"
},
-/area/security/brig)
-"eYQ" = (
-/obj/structure/disposalpipe/segment,
+/area/crew_quarters/locker/locker_toilet)
+"qut" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10;
+ initialize_directions = 10
},
-/area/medical/medbay)
-"eZg" = (
-/obj/structure/chair{
- dir = 8
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "station_ai_airlock";
+ name = "interior access button";
+ pixel_x = -24;
+ pixel_y = -24;
+ req_access_txt = "10;13"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
- })
-"fay" = (
-/obj/machinery/door/airlock/external{
- name = "Toxins Test Chamber"
+/area/engine/aienter)
+"quv" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
+/area/bridge/vip)
+"quy" = (
+/obj/item/clothing/mask/cigarette,
/turf/simulated/floor/plating/airless,
/area/toxins/test_area)
-"faI" = (
-/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"faL" = (
-/obj/structure/table/glass,
-/obj/item/folder/blue,
-/obj/item/radio/intercom{
- pixel_y = 28
+"quA" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/item/clothing/glasses/hud/health,
-/obj/item/stamp/cmo,
-/turf/simulated/floor/plasteel,
-/area/medical/cmo)
-"fbk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/hallway/primary/central/west)
+"quO" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/chair/wood,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/chapel/main)
+"quV" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
},
+/area/toxins/explab)
+"qvg" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "red"
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/prison/cell_block/A)
-"fbO" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- icon_state = "redcorner"
+ initialize_directions = 11
},
-/area/security/permabrig)
-"fbS" = (
-/obj/machinery/alarm{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- pixel_x = -22
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/fitness)
-"fcf" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/botanic_leather,
-/obj/item/reagent_containers/spray/pestspray,
-/obj/machinery/camera{
- c_tag = "Permabrig 2";
- dir = 1;
- network = list("SS13","Security")
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/hallway/primary/central/nw)
+"qvr" = (
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/security/permabrig)
-"fcN" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"fcT" = (
+/area/hallway/primary/central/sw)
+"qvz" = (
+/obj/structure/chair/comfy/shuttle,
/obj/item/radio/intercom{
- pixel_y = 24
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 30
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkyellow"
+ icon_state = "bot"
},
-/area/engine/mechanic_workshop/hanger)
-"fds" = (
-/obj/structure/cable{
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"qvF" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/area/medical/medbay3)
-"feb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"qvN" = (
+/obj/machinery/light/small{
dir = 4;
- initialize_directions = 11
+ tag = "icon-bulb1 (EAST)"
},
+/obj/machinery/camera{
+ c_tag = "AI Transit Tube Airlock";
+ dir = 8;
+ network = list("SS13","Engineering")
+ },
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "dark"
},
-/area/medical/medbay3)
-"fef" = (
-/obj/effect/spawner/window/reinforced,
+/area/engine/aienter)
+"qvY" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 25
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/cmo)
+"qwa" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"qwb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/cable{
+ d1 = 1;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "1-8"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"qwo" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/grass,
+/area/hallway/secondary/exit)
+"qws" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
},
/turf/simulated/floor/plating,
-/area/security/brig)
-"ffi" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
+/area/bridge)
+"qwy" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/regular,
+/obj/item/radio/intercom{
dir = 8;
- icon_state = "vault"
+ pixel_x = -28
},
-/area/security/securearmoury)
-"ffs" = (
-/turf/simulated/wall/r_wall,
-/area/security/execution)
-"ffK" = (
-/obj/machinery/vending/security,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+/obj/machinery/light{
+ dir = 8
},
-/area/security/processing)
-"fgB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/processing)
-"fhd" = (
-/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- on = 1
+ icon_state = "darkbluecorners"
+ },
+/area/bridge)
+"qwA" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/crew_quarters/bar)
-"fho" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
+/area/hallway/primary/central/ne)
+"qwG" = (
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"fhD" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "ai_airlock";
- name = "exterior access button";
- pixel_x = 25;
- pixel_y = -25;
- req_access_txt = "75;13"
+/area/maintenance/asmaint2)
+"qwQ" = (
+/obj/machinery/field/generator{
+ anchored = 1;
+ state = 2
},
-/turf/space,
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plating/airless,
/area/space/nearstation)
-"fhM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
- },
-/area/engine/hardsuitstorage)
-"fhY" = (
-/obj/structure/table,
-/obj/item/plant_analyzer,
-/obj/item/cultivator,
-/obj/item/reagent_containers/spray/plantbgone,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/permabrig)
-"fjX" = (
+"qwW" = (
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/ne)
+"qwX" = (
+/obj/machinery/computer/arcade,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A33";
- location = "A32"
+/obj/structure/cable{
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central/se)
-"fki" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "bcarpet05"
},
+/area/security/prison/cell_block/A)
+"qwZ" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/assembly/robotics)
-"fkB" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+/area/medical/surgery1)
+"qxd" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
dir = 4
},
-/obj/item/gun/projectile/shotgun/riot{
- pixel_x = -1;
- pixel_y = 3
- },
-/obj/item/gun/projectile/shotgun/riot{
- pixel_x = -1
- },
-/obj/item/gun/projectile/shotgun/riot{
- pixel_x = -1;
- pixel_y = -3
- },
-/turf/simulated/floor/plasteel{
- icon_state = "darkred"
- },
-/area/security/securearmoury)
-"fkP" = (
-/obj/structure/table/reinforced,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 32
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
-/obj/item/reagent_containers/food/drinks/bottle/patron,
-/obj/item/storage/fancy/cigarettes/cigpack_shadyjims,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"fkX" = (
-/obj/effect/decal/cleanable/cobweb2,
-/obj/structure/table/reinforced,
-/obj/item/radio/electropack,
-/obj/item/assembly/signaler,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 28
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
+ icon_state = "dark"
},
-/area/security/processing)
-"flw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/chapel/office)
+"qxf" = (
+/obj/structure/table/wood,
+/obj/item/paicard,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "carpet"
},
-/area/medical/sleeper)
-"fmC" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
+/area/library/abandoned)
+"qxo" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/light{
+/obj/machinery/power/apc{
dir = 1;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ name = "north bump";
+ pixel_y = 24
},
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"qxs" = (
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteblue";
tag = "icon-whiteblue (NORTH)"
},
/area/medical/medbay3)
-"fmF" = (
-/obj/structure/chair,
+"qxv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 4;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (EAST)"
},
-/area/security/main)
-"fnr" = (
+/area/toxins/explab)
+"qxP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/area/hallway/primary/central/sw)
-"fnQ" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/plating,
-/area/security/execution)
-"fnW" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bcarpet05"
+ },
+/area/security/prison/cell_block/A)
+"qxQ" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"qxY" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"qyg" = (
+/obj/machinery/teleport/station,
+/obj/machinery/status_display{
+ pixel_x = 32
},
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"qze" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/hallway/primary/central/west)
-"fos" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"foE" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f6"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/shuttle/pod_4)
-"foY" = (
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "cabin3";
- name = "Door Bolt Control";
- normaldoorcontrol = 1;
- pixel_y = 24;
- specialfunctions = 4
+/area/hallway/primary/starboard/east)
+"qzh" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin3)
-"fpv" = (
-/obj/machinery/camera{
- c_tag = "Cabin 2";
- dir = 9
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/obj/machinery/firealarm{
+/turf/simulated/floor/plasteel{
dir = 4;
- pixel_x = 28
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin2)
-"fpN" = (
-/turf/simulated/shuttle/wall{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate_sit)
-"fqD" = (
-/obj/structure/chair/wood/wings,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"frh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "redcorner"
},
+/area/security/prison/cell_block/A)
+"qzk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/brig)
-"frp" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window{
- dir = 8;
- name = "Kitchen";
- req_access_txt = "28"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Kitchen Hall Windows";
- name = "Kitchen Shutters"
- },
-/obj/item/reagent_containers/food/condiment/peppermill,
-/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/crew_quarters/kitchen)
-"frq" = (
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"frL" = (
-/obj/structure/window/reinforced{
- dir = 4
+/area/assembly/chargebay)
+"qzl" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
},
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 5";
+/area/tcommsat/chamber)
+"qzC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- network = list("SS13","MiniSat")
- },
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"fsp" = (
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"fsz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/junction{
- dir = 1
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "purplecorner"
+ icon_state = "dark"
},
-/area/hallway/primary/aft)
-"fsJ" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/toxins/server)
+"qzP" = (
+/obj/machinery/power/treadmill{
+ dir = 8
},
-/turf/space,
-/area/space/nearstation)
-"ftP" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 4
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/prison/cell_block/A)
+"qAH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/prison/cell_block/A)
+"qAK" = (
+/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/toxins/misc_lab)
-"fuj" = (
+/area/engine/engineering)
+"qAT" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/locker)
+"qAX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/port/east)
-"fuv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/bridge/vip)
+"qAY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ dir = 4;
+ icon_state = "red"
},
-/area/medical/sleeper)
-"fuR" = (
-/turf/simulated/floor/plasteel{
- icon_state = "blue"
+/area/security/prison/cell_block/A)
+"qBc" = (
+/obj/machinery/status_display{
+ pixel_x = -32
},
-/area/hydroponics)
-"fuS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/computer/card/minor/ce,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/crew_quarters/chief)
+"qBn" = (
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/reception)
-"fvE" = (
-/turf/simulated/wall,
-/area/security/hos)
-"fwc" = (
-/obj/structure/table,
+/area/hallway/secondary/exit)
+"qBv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/radio,
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/processing)
-"fxJ" = (
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
-"fyp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"qBw" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/obj/item/lighter/zippo,
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "cabin1";
+ name = "Door Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_y = -25;
+ specialfunctions = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"fzq" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/item/paper_bin,
-/obj/item/pen,
+/area/crew_quarters/cabin1)
+"qBC" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "darkblue"
},
/area/turret_protected/ai)
-"fzF" = (
-/obj/machinery/power/apc{
+"qBE" = (
+/obj/machinery/firealarm{
dir = 4;
- name = "east bump";
pixel_x = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/main)
-"fzQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/central/east)
+"qBG" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/prison/cell_block/A)
-"fAB" = (
-/obj/structure/chair/wood/wings{
- dir = 8;
- tag = "icon-wooden_chair_wings (WEST)"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"fAO" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 1;
- pixel_y = 2
- },
-/obj/item/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 8;
- pixel_y = 9
- },
-/obj/item/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = -6;
- pixel_y = 9
- },
-/obj/machinery/camera{
- c_tag = "Medbay Cryo Room";
- dir = 1;
- network = list("SS13","Medical")
+ dir = 5;
+ icon_state = "whitegreencorner"
},
-/obj/item/radio/intercom{
- pixel_y = -26
+/area/medical/virology/lab)
+"qBV" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "darkred"
},
-/area/medical/cryo)
-"fAT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
+/area/security/permabrig)
+"qBZ" = (
+/obj/structure/sign/poster/contraband/communist_state{
+ pixel_x = 33
},
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"fBe" = (
-/obj/structure/window/reinforced{
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"qCA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/washing_machine,
/turf/simulated/floor/plasteel{
+ dir = 8;
icon_state = "red"
},
-/area/security/permabrig)
-"fBl" = (
-/obj/machinery/ai_slipper,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/security/securehallway)
+"qCE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/area/chapel/main)
+"qCK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkbluefull"
- },
-/area/tcommsat/chamber)
-"fBs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
+ icon_state = "whitepurplecorner"
},
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -26
+/area/crew_quarters/hor)
+"qCL" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/crew_quarters/chief)
+"qCX" = (
+/obj/machinery/power/emitter{
+ anchored = 1;
+ state = 2
+ },
+/obj/structure/cable/yellow,
+/obj/effect/decal/warning_stripes/eastsouthwest,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"qDm" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/west)
-"fCi" = (
+/area/bridge/vip)
+"qDH" = (
/obj/structure/table/reinforced,
-/obj/item/paicard,
+/obj/item/flash,
+/obj/item/restraints/handcuffs,
+/obj/item/folder/red,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/ai)
-"fCs" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/firealarm{
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"qDW" = (
+/turf/simulated/floor/plasteel{
dir = 8;
- pixel_x = 27
+ icon_state = "darkredcorners"
},
-/obj/item/radio/intercom{
- pixel_y = -31
+/area/security/permabrig)
+"qEd" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "teleaccessshutter";
+ name = "Teleporter Access Shutters"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"qEj" = (
+/obj/structure/grille,
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"qEm" = (
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkred"
+ dir = 0;
+ icon_state = "red"
},
-/area/security/prisonershuttle)
-"fEe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/customs)
+"qEo" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"fEr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitepurple"
},
+/area/toxins/explab)
+"qEx" = (
/obj/structure/cable{
- d1 = 1;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/prison/cell_block/A)
-"fEC" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/grenade/barrier{
- pixel_x = -3;
- pixel_y = 3
+ icon_state = "0-8"
},
-/obj/item/grenade/barrier,
-/obj/item/grenade/barrier{
- pixel_x = 3;
- pixel_y = -3
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/obj/item/grenade/barrier{
- pixel_x = 6;
- pixel_y = -6
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"qEC" = (
+/turf/simulated/wall,
+/area/crew_quarters/fitness)
+"qEK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "red"
},
-/area/security/securearmoury)
-"fFm" = (
-/obj/machinery/vending/cola/free,
+/area/security/checkpoint)
+"qEP" = (
+/obj/structure/closet/secure_closet/brig,
/obj/machinery/light{
- dir = 4
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+ dir = 9;
+ icon_state = "darkred"
},
/area/security/permabrig)
-"fFu" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/machinery/light/small,
+"qEX" = (
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
- },
-/area/medical/morgue)
-"fFv" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+ dir = 4;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/medical/medbay)
+"qEZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/brig)
-"fFB" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"fFC" = (
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/carpet,
-/area/medical/psych)
-"fFM" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/space,
-/area/space/nearstation)
-"fGj" = (
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"fGt" = (
-/obj/structure/table/reinforced,
-/obj/item/flashlight/lamp,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 9;
+ icon_state = "red"
},
-/area/turret_protected/ai)
-"fGU" = (
+/area/security/reception)
+"qFn" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/floodlight,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"qFw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"fHj" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/secondary/entry/westarrival)
-"fHp" = (
-/obj/structure/shuttle/window,
-/obj/structure/grille,
-/turf/simulated/shuttle/plating,
-/area/shuttle/trade/sol)
-"fHC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 1
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"fIa" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/structure/disposalpipe/junction{
dir = 8;
- initialize_directions = 11
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j1 (WEST)"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/se)
-"fIn" = (
-/obj/structure/lattice,
-/obj/structure/window/reinforced{
dir = 1
},
-/turf/space,
-/area/space/nearstation)
-"fIF" = (
-/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"fIH" = (
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
- },
-/area/tcommsat/chamber)
-"fJi" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light{
+/area/security/brig)
+"qFx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/sleep)
-"fKf" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/light,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "green"
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/area/hallway/secondary/exit)
-"fKr" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
dir = 4;
- initialize_directions = 11
+ icon_state = "neutralcorner"
},
+/area/bridge/vip)
+"qFz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "1-2"
},
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 1
},
/area/security/brig)
-"fKA" = (
-/obj/machinery/door/airlock{
- id_tag = "cabin3";
- name = "Cabin"
- },
-/obj/machinery/door/firedoor,
+"qFD" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "0-2"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin3)
-"fLk" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Warden";
+ name = "Warden Privacy Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"qFN" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/central/se)
-"fLB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/crew_quarters/chief)
+"qFQ" = (
+/obj/structure/closet/bombcloset,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/starboard)
-"fLD" = (
+/area/medical/research/nhallway)
+"qFV" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/camera{
- c_tag = "Permabrig East";
- network = list("SS13","Security")
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
- },
-/area/security/permabrig)
-"fLM" = (
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"qGf" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/vending/medical,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHWEST)"
- },
-/area/medical/medbay3)
-"fLX" = (
-/obj/machinery/flasher/portable,
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- icon_state = "darkred"
- },
-/area/security/securearmoury)
-"fMG" = (
-/obj/machinery/camera{
- c_tag = "Fore Starboard Solars";
- network = list("SS13","Engineering")
- },
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"fNB" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag/blood/AMinus,
-/obj/item/reagent_containers/iv_bag/blood/APlus,
-/obj/item/reagent_containers/iv_bag/blood/BMinus,
-/obj/item/reagent_containers/iv_bag/blood/BPlus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/reagent_containers/iv_bag/salglu,
-/obj/machinery/door_control{
- id = "First Surgery Theatre";
- name = "Theatre Window Shutters Control";
- pixel_x = 6;
- pixel_y = -26
- },
-/obj/machinery/door_control{
- id = "First Surgery Window";
- name = "Surgery Window Shutters Control";
- pixel_x = -6;
- pixel_y = -26
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/reagent_containers/iv_bag/salglu,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "purplefull"
},
-/area/medical/surgery1)
-"fNC" = (
-/turf/simulated/wall/rust,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"fOC" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"fPA" = (
-/obj/machinery/light{
- dir = 8
+/area/medical/research/nhallway)
+"qGg" = (
+/obj/machinery/status_display{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkyellow"
+ dir = 7;
+ icon_state = "yellow"
},
-/area/engine/mechanic_workshop/hanger)
-"fPD" = (
+/area/engine/break_room)
+"qGj" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "0-8"
},
-/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"fPQ" = (
-/obj/structure/sign/poster/official/random,
-/turf/simulated/wall,
-/area/medical/sleeper)
-"fQd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/area/security/prison/cell_block/A)
+"qGp" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"fQv" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
+ icon_state = "whitehall"
},
-/area/security/permabrig)
-"fRw" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/area/toxins/xenobiology)
+"qGq" = (
+/obj/docking_port/mobile/pod{
+ dir = 4;
+ id = "pod3";
+ name = "escape pod 3"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "s_docking_airlock";
+ name = "Escape Pod Hatch"
},
-/area/medical/research{
- name = "Research Division"
- })
-"fRS" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/pod_3)
+"qGv" = (
+/obj/machinery/light,
/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/multitool,
-/obj/item/clothing/ears/earmuffs,
-/obj/item/clothing/ears/earmuffs,
-/obj/item/clothing/ears/earmuffs,
-/obj/item/clothing/ears/earmuffs,
-/obj/item/radio/intercom{
- pixel_y = 21
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/storage/briefcase/inflatable,
+/obj/machinery/newscaster{
+ pixel_y = -30
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitepurple"
+ dir = 7;
+ icon_state = "yellow"
},
-/area/toxins/misc_lab)
-"fSo" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/engine/engineering/monitor)
+"qGy" = (
+/turf/simulated/wall/r_wall,
+/area/medical/virology/lab)
+"qGO" = (
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = "CloningDoor";
+ name = "Genetics Cloning";
+ req_one_access_txt = "5;9"
},
-/turf/space,
-/area/space)
-"fSt" = (
-/obj/effect/landmark/start{
- name = "Scientist"
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/toxins/mixing)
-"fSR" = (
-/obj/structure/computerframe,
+/area/medical/genetics_cloning)
+"qGP" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/area/maintenance/asmaint2)
+"qGR" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
})
-"fSY" = (
-/obj/structure/morgue,
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/landmark{
- name = "revenantspawn"
- },
-/turf/simulated/floor/plasteel{
+"qHb" = (
+/obj/machinery/door/window/brigdoor/southleft{
dir = 1;
- icon_state = "darkblue"
+ req_access_txt = "63"
},
-/area/medical/morgue)
-"fUb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/window/reinforced,
-/obj/machinery/vending/cola,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"fVA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/security/evidence)
+"qHk" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
icon_state = "red"
},
-/area/security/processing)
-"fVJ" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/dispenser,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/area/security/armoury)
+"qIf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
},
-/turf/simulated/floor/plasteel{
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"qIg" = (
+/obj/machinery/light{
dir = 1;
- icon_state = "whitepurple"
+ on = 1
},
-/area/toxins/mixing)
-"fVO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/kitchen_machine/microwave{
- pixel_x = -1;
- pixel_y = 7
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/door_control{
- id = "Kitchen Windows";
- name = "Kitchen Privacy Shutters Control";
- pixel_y = -26;
- req_access_txt = "28"
+/obj/structure/table/glass,
+/obj/item/storage/box/beakers,
+/obj/item/storage/box/beakers,
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"qIk" = (
+/obj/structure/closet/coffin,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ icon_state = "dark"
},
-/area/crew_quarters/kitchen)
-"fVX" = (
-/obj/structure/barricade/wooden,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"fWc" = (
+/area/chapel/main)
+"qIq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/main)
-"fXK" = (
+/area/hallway/primary/central/west)
+"qIs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
+ },
+/area/engine/break_room)
+"qIz" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Warden";
+ name = "Warden Privacy Shutters"
},
+/turf/simulated/floor/plating,
+/area/security/warden)
+"qIQ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/window/brigdoor{
- base_state = "rightsecure";
- dir = 2;
- icon_state = "rightsecure";
- id = "Cell 4";
- name = "Cell 4";
- req_access_txt = "2"
- },
-/turf/simulated/floor/plasteel{
- dir = 1
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/security/prison/cell_block/A)
-"fYe" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/area/hallway/primary/central/east)
-"fYm" = (
-/obj/structure/table/glass,
-/obj/item/folder/blue,
-/obj/item/cartridge/medical,
-/obj/item/cartridge/medical,
-/obj/item/cartridge/chemistry,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ icon_state = "grimy"
},
-/area/medical/cmo)
-"fYB" = (
-/obj/structure/window/reinforced{
- dir = 1
+/area/library)
+"qJh" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/machinery/light_switch{
+ pixel_y = 24
},
-/obj/machinery/light{
- dir = 1;
- pixel_y = -7
+/obj/machinery/camera{
+ c_tag = "Chapel North"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/construction/hallway)
-"fYM" = (
+/area/chapel/main)
+"qJo" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/storage/tech)
+"qJB" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Warden";
- name = "Warden Privacy Shutters"
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
-/area/security/warden)
-"fZs" = (
+/area/security/permahallway)
+"qJK" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "brig_detprivacy";
+ name = "Detective Privacy Shutters";
+ opacity = 0
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "First Surgery Window";
- name = "Surgery Shutters"
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"qJM" = (
+/obj/machinery/door/airlock{
+ id_tag = "PermaBath";
+ name = "Restroom"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/medical/surgery1)
-"fZB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/security/permabrig)
+"qJO" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken6";
+ tag = "icon-wood-broken6"
+ },
+/area/maintenance/fsmaint)
+"qKj" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ icon_state = "1-8"
},
-/area/hallway/secondary/entry)
-"fZE" = (
-/obj/machinery/door/firedoor,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai)
+"qKm" = (
+/turf/simulated/wall,
+/area/security/brigstaff)
+"qKv" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/airlock/security{
- name = "Warden's Office";
- req_access_txt = "3"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"qKK" = (
+/obj/machinery/teleport/station,
+/obj/effect/decal/warning_stripes/south,
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/area/security/warden)
-"fZL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/camera/motion{
+ c_tag = "Minisat Teleporter Room";
+ network = list("Minisat","SS13")
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
+/turf/simulated/floor/bluegrid,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"qKO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/mimeoffice)
-"gaj" = (
-/obj/machinery/door_control{
- id = "mechanicgate";
- name = "Mechanic Pod Door";
- pixel_x = -24;
- pixel_y = -24;
- req_access_txt = "70"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkyellow"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/area/engine/mechanic_workshop/hanger)
-"gaE" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/security/processing)
-"gbp" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 4;
- icon_state = "2-4"
+ icon_state = "1-4"
},
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai)
-"gbI" = (
-/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/headcrab/fast,
-/turf/simulated/floor/plasteel,
-/area/maintenance/engrooms)
-"gdA" = (
-/obj/structure/rack{
+/turf/simulated/floor/plasteel{
dir = 8;
- layer = 2.9
+ icon_state = "neutralfull"
},
-/obj/structure/window/reinforced,
-/obj/item/storage/box/beanbag,
-/obj/item/storage/box/beanbag{
- pixel_x = -3;
- pixel_y = 3
+/area/hallway/primary/aft)
+"qKS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/storage/box/tranquilizer{
- pixel_x = -6;
- pixel_y = 6
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop,
/turf/simulated/floor/plasteel{
- icon_state = "darkred"
- },
-/area/security/securearmoury)
-"gdW" = (
-/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ icon_state = "cmo"
},
-/obj/machinery/light{
- dir = 4
+/area/medical/cmo)
+"qKW" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/permahallway)
+"qKZ" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
+/obj/effect/decal/warning_stripes/southeastcorner,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"qLa" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkyellow"
+ icon_state = "vault"
},
-/area/engine/mechanic_workshop/hanger)
-"geg" = (
-/obj/structure/window/reinforced{
- dir = 4
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"qLc" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/range)
+"qLt" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "neutralcorner"
},
-/area/security/permabrig)
-"gfv" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/hallway/primary/aft)
+"qLE" = (
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "yellow"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+/area/storage/primary)
+"qLZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaCellsLockdown";
- name = "Perma Cells Lockdown"
+/obj/effect/landmark/start{
+ name = "Clown"
},
-/obj/machinery/flasher{
- id = "Perma1"
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"gfV" = (
-/obj/structure/chair/office/light{
- dir = 8
+/obj/structure/cable{
+ icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "bar"
},
-/area/toxins/mixing)
-"ggx" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
- },
-/turf/simulated/floor/plating,
-/area/security/brig)
-"ggD" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/mechanic_workshop/hanger)
-"ggJ" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Paramedic";
- req_access_txt = "66"
- },
-/obj/machinery/door/firedoor,
+/area/clownoffice)
+"qMb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/table/glass,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/healthanalyzer,
+/obj/item/clothing/glasses/hud/health,
+/obj/effect/decal/warning_stripes/southeastcorner,
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"qMm" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
-/area/medical/paramedic)
-"ggX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/turret_protected/aisat)
-"ghR" = (
-/turf/simulated/wall,
-/area/crew_quarters/cabin3)
-"ghY" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Chemistry1";
+ name = "Chemistry Privacy Shutter"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/security/brig)
-"gjh" = (
-/obj/structure/closet/bombclosetsecurity,
+/turf/simulated/floor/plating,
+/area/medical/chemistry)
+"qMp" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkred"
+ icon_state = "neutralcorner"
},
-/area/security/securearmoury)
-"gkc" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/hologram/holopad,
+/area/hallway/primary/central/nw)
+"qMN" = (
+/obj/structure/table,
+/obj/item/book/manual/nuclear,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
+/area/security/permabrig)
+"qMP" = (
+/turf/simulated/floor/plasteel,
+/area/shuttle/escape{
+ parallax_movedir = 2
})
-"gke" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"gkw" = (
+"qNc" = (
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "execution"
},
-/area/hallway/primary/central/nw)
-"gkC" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "execution"
},
-/obj/item/radio/intercom{
- pixel_y = 25
+/obj/structure/window/reinforced/polarized{
+ id = "execution"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/pod_4)
-"gkQ" = (
-/obj/machinery/vending/cola,
-/obj/structure/disposalpipe/segment{
+/turf/simulated/floor/plating,
+/area/security/execution)
+"qNd" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
dir = 1;
- icon_state = "pipe-c"
+ layer = 2.9
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/brig)
-"gkW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/crew_quarters/courtroom)
+"qNl" = (
+/obj/machinery/computer/shuttle/sit,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
+/area/shuttle/syndicate_sit)
+"qNA" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"glh" = (
-/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A23";
- location = "A22"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Virology";
+ name = "Virology Shutters"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plating,
+/area/medical/virology/lab)
+"qNQ" = (
+/obj/effect/landmark/start{
+ name = "Civilian"
},
-/area/hallway/primary/central/south)
-"glt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 4
+/obj/item/bikehorn/rubberducky,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
+ icon_state = "freezerfloor"
},
-/area/turret_protected/aisat_interior)
-"gmd" = (
+/area/crew_quarters/locker/locker_toilet)
+"qNR" = (
+/turf/simulated/floor/plating/airless,
+/area/toxins/test_area)
+"qNW" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- icon_state = "red"
+ id_tag = "Genetics";
+ name = "Genetics Privacy Shutters"
},
-/area/security/brig)
-"gmp" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/electrical,
-/obj/item/multitool,
-/obj/item/screwdriver,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = -30
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/light,
+/turf/simulated/floor/plating,
+/area/medical/genetics)
+"qNZ" = (
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/main)
-"gmH" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/landmark/start{
- name = "Head of Security"
- },
-/obj/structure/chair/comfy/brown{
- dir = 1
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/assembly/robotics)
+"qOh" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"qOo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
},
-/area/security/main)
-"gmI" = (
-/obj/structure/bed/psych,
-/obj/machinery/light{
- dir = 1
+/turf/simulated/wall/r_wall,
+/area/tcommsat/chamber)
+"qOs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"gnf" = (
-/turf/simulated/wall,
-/area/crew_quarters/cabin1)
-"gnR" = (
-/turf/simulated/wall,
-/area/engine/engineering/monitor)
-"goP" = (
/turf/simulated/floor/plasteel{
- dir = 4;
icon_state = "neutralcorner"
},
-/area/bridge/vip)
-"goR" = (
-/obj/machinery/camera{
- c_tag = "Cabin 3";
- dir = 5
+/area/hallway/primary/central/east)
+"qOt" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/light/small{
+ dir = 4
},
-/obj/machinery/newscaster{
- pixel_x = -32
+/turf/simulated/floor/plasteel,
+/area/maintenance/maintcentral)
+"qPa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin3)
-"gpA" = (
-/obj/structure/chair{
+/obj/machinery/door/morgue{
+ name = "Occult Study"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
- })
-"gpE" = (
+/area/library/abandoned)
+"qPr" = (
+/obj/machinery/door/airlock/security/glass{
+ id = "execution";
+ name = "Prisoner Lockers";
+ req_access_txt = "1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/obj/structure/cable{
+ icon_state = "1-2"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/central/west)
-"gpV" = (
-/obj/structure/chair{
+/area/security/execution)
+"qPF" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
+ dir = 1
},
-/area/medical/surgery1)
-"gqd" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "GYM";
- name = "Dungeon Privacy Shutters"
+/area/security/securehallway)
+"qPG" = (
+/obj/structure/table/glass,
+/obj/item/storage/toolbox/surgery{
+ pixel_x = -1;
+ pixel_y = 2
},
/obj/structure/cable{
+ d1 = 1;
d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+ icon_state = "1-8"
},
-/turf/simulated/floor/plating,
-/area/security/processing)
-"gqh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door_timer/cell_3{
- pixel_y = 0
- },
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/security/prison/cell_block/A)
-"gqF" = (
-/obj/structure/table,
-/obj/item/taperecorder,
+/area/medical/surgery2)
+"qQf" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall/r_wall,
+/area/maintenance/xenozoo)
+"qQk" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_containers/iv_bag/blood/AMinus,
+/obj/item/reagent_containers/iv_bag/blood/APlus,
+/obj/item/reagent_containers/iv_bag/blood/BMinus,
+/obj/item/reagent_containers/iv_bag/blood/BPlus,
+/obj/item/reagent_containers/iv_bag/blood/OPlus,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/salglu,
+/obj/item/reagent_containers/iv_bag/salglu,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door_control{
+ id = "Second Surgery Window";
+ name = "Surgery Window Shutters Control";
+ pixel_y = 26
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/security/processing)
-"grf" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8
+/area/medical/surgery2)
+"qQl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
-/area/toxins/mixing)
-"grq" = (
-/obj/machinery/light/small{
- dir = 4
+/area/maintenance/gambling_den)
+"qQu" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry/eastarrival)
-"gsC" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/belt/utility,
-/obj/item/flashlight,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "CMO Shutters";
+ name = "CMO Privacy Shutters"
},
-/area/turret_protected/aisat)
-"gsD" = (
-/obj/effect/decal/warning_stripes/southeast,
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+/turf/simulated/floor/plating,
+/area/medical/cmo)
+"qQz" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkblue"
- },
-/area/medical/morgue)
-"gsY" = (
-/turf/simulated/wall,
-/area/security/prisonershuttle)
-"gtf" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/space,
-/area/space/nearstation)
-"gtK" = (
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "neutralcorner"
},
+/area/bridge/vip)
+"qQG" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "grimy"
},
-/area/medical/medbay)
-"gum" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/space/nearstation)
-"guK" = (
-/obj/structure/closet/secure_closet/brig,
+/area/bridge/meeting_room)
+"qQQ" = (
+/obj/structure/table/reinforced,
+/obj/item/dice/d10,
+/obj/item/dice/d20,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "brown"
+ icon_state = "dark"
},
-/area/security/prisonlockers)
-"guX" = (
+/area/maintenance/xenozoo)
+"qQS" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/turf/simulated/floor/carpet,
+/area/bridge/meeting_room)
+"qRn" = (
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "white"
},
/area/crew_quarters/kitchen)
-"gvq" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 1
- },
-/obj/structure/window/plasmareinforced{
- dir = 8
- },
-/obj/structure/window/plasmareinforced{
- dir = 4
- },
-/obj/structure/window/plasmareinforced,
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"gvs" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8
+"qRt" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/trade/sol)
-"gvN" = (
-/obj/structure/chair/wood/wings{
- dir = 8;
- tag = "icon-wooden_chair_wings (WEST)"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/wood,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"gwP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/obj/effect/decal/warning_stripes/southwestcorner,
+/area/medical/medbay3)
+"qRN" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"gxg" = (
+/area/ai_monitored/storage/eva)
+"qRT" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/medbay2)
+"qRV" = (
+/obj/machinery/vending/coffee/free,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/lawoffice)
+"qSE" = (
+/turf/simulated/wall,
+/area/toxins/explab)
+"qSG" = (
+/obj/item/phone{
+ pixel_x = -3;
+ pixel_y = 3
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"gxk" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/area/turret_protected/ai_upload)
+"qSI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door_control{
+ id = "experimentor";
+ name = "Experimentor Control";
+ pixel_x = -26
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"gxn" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-22";
- tag = "icon-plant-22"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "experimentor";
+ name = "Experimentor Blast Door";
+ opacity = 0
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/medical/morgue)
-"gxI" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atm{
- pixel_x = -28;
- pixel_y = -30
+/area/toxins/explab)
+"qSJ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger{
+ pixel_y = 2
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = -28
+ },
+/obj/structure/window/reinforced{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "purplecorner"
+ dir = 1
},
-/area/hallway/primary/aft)
-"gyo" = (
+/area/security/customs)
+"qTn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"qTt" = (
+/obj/structure/girder,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"qTv" = (
+/obj/structure/sign/greencross,
+/turf/simulated/wall/r_wall,
+/area/medical/cmo)
+"qTG" = (
+/obj/structure/rack,
+/obj/item/rcd,
+/obj/item/rcd_ammo,
+/obj/item/rcd_ammo,
+/obj/item/rcd_ammo,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"qTI" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+/obj/machinery/power/terminal{
+ dir = 1
},
-/area/security/prison/cell_block/A)
-"gyu" = (
-/obj/item/twohanded/required/kirbyplants,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
+"qTK" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/ai)
-"gyW" = (
-/obj/structure/table,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/light,
+/area/engine/gravitygenerator)
+"qTP" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/captain)
+"qUc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door/airlock/engineering{
+ name = "Aft Port Solar Access";
+ req_access_txt = "10"
},
-/obj/machinery/recharger{
- pixel_y = 3
+/obj/structure/sign/electricshock{
+ pixel_y = -32
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
+/turf/simulated/floor/plating,
+/area/maintenance/portsolar)
+"qUe" = (
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
})
-"gzc" = (
+"qUh" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno3";
- name = "Creature Cell #3";
- opacity = 0
+/obj/structure/sign/electricshock{
+ pixel_y = 32
},
/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"gzs" = (
-/obj/structure/window/reinforced{
- dir = 8
+/area/engine/gravitygenerator)
+"qUz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 17";
+/turf/simulated/floor/plasteel{
dir = 8;
- network = list("SS13","MiniSat")
- },
-/turf/space,
-/area/space/nearstation)
-"gAB" = (
-/obj/structure/table/reinforced,
-/obj/item/radio{
- pixel_x = 5;
- pixel_y = 4
- },
-/obj/item/reagent_containers/spray/cleaner/drone{
- pixel_x = -6;
- pixel_y = 1
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+/area/bridge/checkpoint/south)
+"qUF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/engine/engineering)
-"gAD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/remains/human,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"gCu" = (
/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hydroponics)
-"gCz" = (
-/obj/item/flag/nt,
+/area/atmos)
+"qUJ" = (
/obj/machinery/status_display{
- layer = 4;
- pixel_x = 32
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/computer/station_alert,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"qUL" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/turret_protected/ai)
-"gCI" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "ai2";
- name = "Turret Shutters"
+/area/crew_quarters/captain)
+"qUO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"gCR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/medical/cmo)
-"gDd" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
+ },
+/area/medical/reception)
+"qUR" = (
+/obj/structure/window/reinforced,
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"qUW" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 28
},
+/obj/machinery/computer/med_data/laptop,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/aisat_interior)
-"gDz" = (
-/obj/effect/decal/warning_stripes/west,
+/area/medical/virology)
+"qVc" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/security/vacantoffice)
+"qVg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/mechanic_workshop/hanger)
-"gDV" = (
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "wall3"
+/area/hallway/primary/aft)
+"qVm" = (
+/obj/structure/transit_tube{
+ icon_state = "D-SE";
+ tag = "icon-D-SE"
},
-/area/shuttle/syndicate_sit)
-"gFf" = (
-/obj/machinery/power/treadmill{
+/obj/structure/window/reinforced,
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"qVp" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/south)
+"qVB" = (
+/obj/structure/closet{
+ icon_closed = "cabinet_closed";
+ icon_opened = "cabinet_open";
+ icon_state = "cabinet_closed"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"qVO" = (
+/obj/structure/sign/electricshock,
+/turf/simulated/wall/r_wall,
+/area/toxins/xenobiology)
+"qWf" = (
+/obj/structure/chair/office/dark{
dir = 8
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/effect/landmark/start{
+ name = "Head of Personnel"
},
-/obj/effect/decal/cleanable/cobweb,
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+/obj/machinery/door_control/ticket_machine_button{
+ pixel_x = -38;
+ pixel_y = 38
},
-/area/security/prison/cell_block/A)
-"gFR" = (
-/obj/structure/transit_tube{
- icon_state = "E-SW-NW";
- tag = "icon-E-SW-NW"
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/structure/lattice/catwalk,
+/area/crew_quarters/heads/hop)
+"qWu" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/space,
-/area/space/nearstation)
-"gGc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
+ },
+/area/engine/controlroom)
+"qWw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
},
+/area/security/main)
+"qWC" = (
+/obj/structure/table/wood/poker,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/ward)
-"gHp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/maintenance/gambling_den)
+"qWU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/sleeper)
-"gHB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/research{
+ name = "Research Division"
+ })
+"qXd" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/clothing/accessory/holster{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/clothing/accessory/holster{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/clothing/accessory/holster{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/accessory/holster{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/accessory/holster,
+/obj/item/clothing/accessory/holster,
+/obj/item/clothing/accessory/holster{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/clothing/accessory/holster{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/clothing/accessory/holster{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/clothing/accessory/holster{
+ pixel_x = 6;
+ pixel_y = -6
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1
},
-/area/medical/ward)
-"gHL" = (
+/area/security/armoury)
+"qXt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
-"gHM" = (
+"qXu" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"qXv" = (
+/obj/item/twohanded/required/kirbyplants,
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "CMO's Office";
- req_access_txt = "40"
- },
-/turf/simulated/floor/plasteel,
-/area/medical/cmo)
-"gHY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"gIb" = (
-/obj/structure/rack{
+/obj/structure/disposalpipe/segment{
dir = 8;
- layer = 2.9
- },
-/obj/item/storage/box/flashbangs,
-/obj/item/storage/box/flashbangs{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/machinery/light{
- dir = 1;
- on = 1
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
+ dir = 8;
+ icon_state = "whitepurple"
},
-/area/security/securearmoury)
-"gIW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/medical/genetics)
+"qXy" = (
+/obj/effect/landmark/start{
+ name = "Nanotrasen Representative"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/chair/comfy/black{
dir = 4
},
+/turf/simulated/floor/carpet,
+/area/ntrep)
+"qXC" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"qXH" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"gJy" = (
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"qYh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin3)
-"gJA" = (
-/obj/machinery/suit_storage_unit/engine,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/status_display{
- pixel_y = 32
+/obj/machinery/crema_switch{
+ pixel_x = 26
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/hardsuitstorage)
-"gJO" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+/area/chapel/office)
+"qYr" = (
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Chamber Observation";
+ req_access_txt = "75"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"gKi" = (
-/turf/simulated/floor/wood{
- icon_state = "wood-broken6";
- tag = "icon-wood-broken6"
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/maintenance/abandonedbar)
-"gKC" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/hydroponics)
-"gKX" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/reagent_containers/glass/bucket,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/permabrig)
-"gLd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/area/turret_protected/ai)
+"qYG" = (
+/obj/machinery/message_server,
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ name = "south bump Important Area";
+ pixel_y = -24
},
-/area/crew_quarters/bar)
-"gLT" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/turf/simulated/floor/plating,
-/area/security/main)
-"gNb" = (
-/obj/structure/closet,
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"gNU" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
- },
-/area/construction/hallway)
-"gPh" = (
-/turf/simulated/wall,
-/area/medical/medbay2)
-"gPw" = (
-/obj/machinery/door/airlock/maintenance,
-/obj/structure/barricade/wooden,
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"gPR" = (
-/obj/structure/transit_tube/station{
- dir = 8;
- tag = "icon-closed (EAST)"
- },
-/obj/structure/transit_tube_pod,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- pixel_x = -6
- },
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"qYL" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
- },
-/area/construction/hallway)
-"gRb" = (
-/obj/structure/window/reinforced,
-/obj/structure/shuttle/engine/heater{
- dir = 1;
- tag = "icon-heater (NORTH)"
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/syndicate_sit)
-"gRw" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/insulated,
-/turf/simulated/floor/plasteel{
+/obj/machinery/power/apc{
dir = 1;
- icon_state = "neutral"
- },
-/area/toxins/mixing)
-"gRL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/flasher{
- id = null;
+ name = "north bump";
pixel_y = 24
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/chair/stool,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"qYR" = (
/turf/simulated/floor/plasteel{
- dir = 5;
+ dir = 10;
icon_state = "darkblue"
},
-/area/turret_protected/aisat_interior)
-"gRQ" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
- },
-/area/security/evidence)
-"gRY" = (
+/area/medical/surgery1)
+"qYZ" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/power/terminal{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/item/radio/intercom{
+ pixel_y = 26
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/camera{
+ c_tag = "Gravity Generator Area";
+ network = list("SS13","Engineering")
},
-/obj/machinery/door_timer/cell_1{
- pixel_y = 0
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"qZe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/stool/bar,
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken3";
+ tag = "icon-wood-broken3"
},
-/turf/simulated/floor/plasteel{
- icon_state = "red"
+/area/maintenance/abandonedbar)
+"qZm" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/security/prison/cell_block/A)
-"gSY" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/effect/decal/cleanable/cobweb2,
+/obj/machinery/power/smes{
+ charge = 5e+006
},
-/area/shuttle/syndicate_sit)
-"gTr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 27
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 22
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"qZn" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/toy/figure/lawyer,
+/obj/machinery/light_switch{
+ pixel_x = -26
},
-/area/security/main)
-"gTw" = (
-/obj/machinery/camera{
- c_tag = "Command Meeting Room";
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"gUe" = (
-/obj/machinery/door/airlock/security{
- name = "Interrogation";
+/area/lawoffice)
+"qZq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "atmos_eva_inner";
+ locked = 1;
+ name = "Atmos External Access";
req_access = null;
- req_access_txt = "63"
+ req_access_txt = "32"
},
-/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"qZt" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/atmos)
+"qZv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/chair/office/light,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/security/processing)
-"gVd" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "1"
+/area/crew_quarters/hor)
+"qZy" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/engine/break_room)
+"qZG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "darkbluefull"
+ },
+/area/turret_protected/aisat)
+"qZO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 8;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
dir = 1
},
-/area/security/main)
-"gVN" = (
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable,
+/area/security/customs)
+"qZZ" = (
+/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "darkred"
- },
-/area/security/evidence)
-"gWx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (SOUTHWEST)"
},
+/area/medical/virology)
+"rab" = (
+/obj/structure/table/glass,
+/obj/item/storage/firstaid/regular,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
- },
-/area/medical/reception)
-"gWz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+ dir = 8;
+ icon_state = "cmo"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"gWH" = (
-/turf/simulated/wall/r_wall,
-/area/security/main)
-"gWK" = (
+/area/medical/cmo)
+"rai" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/area/medical/medbay)
-"gXc" = (
-/obj/structure/window/reinforced{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/light{
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plasteel{
dir = 8;
- pixel_x = 6
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/se)
+"raC" = (
+/turf/simulated/wall,
+/area/engine/aienter)
+"raO" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "vault"
},
-/area/construction/hallway)
-"gXM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/engine/aienter)
+"raR" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light,
+/obj/machinery/light_switch{
+ pixel_x = 4;
+ pixel_y = -26
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/library)
+"raW" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "dark"
},
-/area/security/brig)
-"gYp" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/medical/cryo)
-"gYJ" = (
+/area/engine/aienter)
+"rbh" = (
/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor{
- armor = list("melee" = 60, "bullet" = 70, "laser" = 70, "energy" = 70, "bomb" = 40, "bio" = 100, "rad" = 100, "fire" = 70, "acid" = 100);
- dir = 2;
- name = "Secure Armory";
- req_access_txt = "1"
- },
-/obj/machinery/door/window/brigdoor{
- armor = list("melee" = 60, "bullet" = 70, "laser" = 70, "energy" = 70, "bomb" = 40, "bio" = 100, "rad" = 100, "fire" = 70, "acid" = 100);
+/obj/machinery/door/window/eastright{
+ base_state = "left";
dir = 1;
- name = "Secure Armory";
- req_access_txt = "3"
+ icon_state = "left";
+ name = "Medical Reception";
+ req_access_txt = "5"
},
/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters{
- dir = 1;
- id_tag = "ArmorySec";
- name = "Armory Security Shutters"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/securearmoury)
-"gZH" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/prisonlockers)
-"hae" = (
-/obj/structure/window/reinforced{
- dir = 8
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 7
},
-/obj/structure/lattice,
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"ham" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/sheet/glass{
- amount = 10
+/obj/item/pen,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"haX" = (
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "bluefull"
},
-/area/medical/ward)
-"hbR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/medical/reception)
+"rbm" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/range)
+"rbs" = (
+/obj/structure/morgue,
+/obj/effect/decal/warning_stripes/southwest,
+/obj/effect/landmark{
+ name = "revenantspawn"
},
-/obj/structure/disposalpipe/junction{
- dir = 1;
- tag = "icon-pipe-j1 (EAST)"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/morgue)
+"rbA" = (
+/obj/structure/closet/secure_closet/research_reagents,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/insulated{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/brig)
-"hbY" = (
-/obj/structure/sign/science,
-/turf/simulated/wall/r_wall,
-/area/toxins/lab)
-"hcA" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 15";
dir = 8;
- network = list("SS13","MiniSat")
+ icon_state = "whitepurple"
},
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"hcE" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaCellsLockdown";
- name = "Perma Cells Lockdown"
+/area/toxins/misc_lab)
+"rbD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"rbH" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ tag = "icon-pipe-j1 (EAST)"
},
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"hcV" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/lobby)
-"hdh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+ icon_state = "whitepurple"
},
+/area/toxins/misc_lab)
+"rbI" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/sw)
-"heg" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/security/brig)
-"hek" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/medical/medbay3)
-"hes" = (
-/obj/structure/table,
-/obj/item/camera,
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/permabrig)
-"hev" = (
-/mob/living/simple_animal/crab/Coffee,
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"heT" = (
-/obj/machinery/door/airlock/shuttle{
- id_tag = "s_docking_airlock";
- name = "Escape Pod Hatch"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/docking_port/mobile/pod{
- dir = 8;
- id = "pod4";
- name = "escape pod 4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/pod_4)
-"hfk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Chief Engineer";
+ req_access_txt = "56"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/serviceyard)
-"hfx" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
+ icon_state = "dark"
},
-/area/security/main)
-"hfS" = (
+/area/crew_quarters/chief)
+"rbR" = (
+/obj/structure/bed,
+/obj/item/bedsheet/blue,
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/processing)
-"hgx" = (
-/obj/effect/decal/remains/human,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate_sit)
-"hgL" = (
-/obj/effect/landmark/start{
- name = "Security Officer"
+ dir = 0;
+ icon_state = "whitered"
},
+/area/security/medbay)
+"rbU" = (
+/obj/machinery/vending/cola,
+/obj/effect/decal/warning_stripes/red/hollow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/security/customs)
-"hhg" = (
-/obj/effect/decal/warning_stripes/eastnorthwest,
-/obj/machinery/light{
- dir = 1;
- on = 1
+ dir = 1
},
-/obj/machinery/firealarm{
- pixel_y = 26
+/area/security/permabrig)
+"rcc" = (
+/obj/structure/chair/office/dark{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/securearmoury)
-"hhq" = (
-/obj/effect/landmark/start{
- name = "Station Engineer"
+/area/atmos)
+"rcf" = (
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 8
},
+/obj/machinery/portable_atmospherics/pump,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+ dir = 4;
+ icon_state = "arrival"
},
-/area/engine/hardsuitstorage)
-"hhH" = (
+/area/hallway/primary/port/west)
+"rch" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "whitebluefull";
tag = "icon-whitebluefull"
},
-/area/medical/medbay3)
-"hhI" = (
-/obj/structure/sign/greencross,
-/turf/simulated/wall,
-/area/medical/ward)
-"hid" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+/area/medical/medbay2)
+"rcp" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/security/prison/cell_block/A)
-"hiB" = (
-/obj/item/twohanded/required/kirbyplants,
+/obj/structure/table/reinforced,
+/obj/item/paicard,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/ward)
-"hiH" = (
-/obj/machinery/vending/wallmed{
- pixel_x = 26
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
+/area/crew_quarters/chief)
+"rcr" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/area/engine/break_room)
-"hiT" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/execution)
-"hjl" = (
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
- },
-/area/turret_protected/ai)
-"hjN" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"hkk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/library)
+"rcy" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/sw)
-"hkr" = (
-/obj/machinery/light/small{
- dir = 1
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"hkG" = (
+/area/medical/sleeper)
+"rcA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/junction{
- dir = 4;
- tag = "icon-pipe-j1 (EAST)"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/brig)
-"hlc" = (
-/obj/machinery/porta_turret,
-/obj/machinery/ai_status_display{
- pixel_x = 32
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Corporate Lounge";
+ req_one_access_txt = "19"
},
-/area/turret_protected/ai)
-"hlT" = (
-/obj/structure/lattice,
-/turf/simulated/wall,
-/area/quartermaster/sorting)
-"hmq" = (
+/turf/simulated/floor/wood,
+/area/assembly/showroom)
+"rcM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering";
+ req_access_txt = "10"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"rcP" = (
+/obj/structure/chair/stool,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/driver_button{
+ id_tag = "trash";
+ name = "Trash Ejector Button";
+ pixel_x = -26
},
-/area/security/permabrig)
-"hna" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/light/small{
+ dir = 8
},
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"rcT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"hng" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/vending/wallmed{
- pixel_y = -32
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=V1";
+ location = "V4"
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"hnQ" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"rcV" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall,
+/area/engine/break_room)
+"rcX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/processing)
-"hnX" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai)
-"hop" = (
-/obj/machinery/seed_extractor,
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -107667,447 +104565,373 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
- },
-/area/security/permabrig)
-"hpc" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"hpd" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+ icon_state = "whitepurplecorner"
},
-/obj/machinery/status_display{
- pixel_y = 32
+/area/toxins/misc_lab)
+"rdn" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A24";
+ location = "A23"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
+/mob/living/simple_animal/bot/secbot/beepsky{
+ name = "Officer Beepsky 1"
},
-/area/hallway/secondary/entry/commercial)
-"hph" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"rdo" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/box/lights/mixed,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/processing)
-"hqn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/barricade/wooden,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"hqG" = (
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = -28
+/area/security/permahallway)
+"rdB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/camera{
- c_tag = "Psychiatrist";
- dir = 1;
- network = list("Medical","SS13")
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"hrb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/toxins/misc_lab)
+"rdK" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"rdT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/main)
+"ref" = (
+/obj/structure/table/reinforced,
+/obj/item/analyzer,
+/obj/item/assembly/signaler,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/storage/tech)
+"reA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/security/warden)
-"hrm" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+/area/medical/medbay2)
+"reI" = (
+/obj/structure/chair{
+ dir = 8
},
-/obj/structure/table/reinforced,
-/obj/item/storage/briefcase,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/bridge/checkpoint/south)
+"rfm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/north)
+"rfr" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom,
+/obj/structure/window/reinforced{
dir = 1;
- icon_state = "neutral"
+ layer = 2.9
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"hrt" = (
-/obj/structure/disposalpipe/segment{
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/simulated/wall,
-/area/maintenance/abandonedbar)
-"hrW" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"hrX" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "carpet"
+ },
+/area/crew_quarters/courtroom)
+"rfs" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/taperecorder,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+ icon_state = "whitepurple"
},
-/area/security/permabrig)
-"hsp" = (
-/turf/simulated/wall,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"hsQ" = (
-/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+/area/toxins/explab)
+"rfz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/structure/window/reinforced,
-/obj/structure/chair/comfy/shuttle{
+/obj/effect/decal/warning_stripes/south,
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"rfA" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/clipboard,
+/obj/item/toy/figure/scientist,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/area/shuttle/syndicate_sit)
-"htt" = (
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ dir = 6;
+ icon_state = "neutral"
},
-/area/security/brig)
-"htC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/toxins/mixing)
+"rfB" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/hologram/holopad,
+/obj/structure/chair/office/light,
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/research{
- name = "Chemical Toxins";
- req_access_txt = "47"
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whitepurplecorner"
},
-/area/toxins/misc_lab)
-"huw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/toxins/explab)
+"rfK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/effect/decal/warning_stripes/northeast,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "green"
- },
-/area/hydroponics)
-"hvi" = (
-/turf/simulated/floor/plating,
-/area/construction/hallway)
-"hvI" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/landmark/start{
- name = "Security Officer"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "whitepurplecorner"
},
-/area/security/main)
-"hvW" = (
+/area/toxins/explab)
+"rfQ" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/storage/tech)
+"rfV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"rfZ" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"rgj" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/brig)
-"hwa" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/light,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"hwl" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
- },
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating,
-/area/maintenance/starboardsolar)
-"hws" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"hwt" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/camera{
+ c_tag = "Xenobio West";
+ network = list("Research","SS13")
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/machinery/status_display{
+ pixel_y = 32
},
-/area/security/permabrig)
-"hwz" = (
-/obj/structure/table/reinforced,
-/obj/item/bikehorn{
- pixel_x = -1;
- pixel_y = 13
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"rgA" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/item/instrument/bikehorn{
- pixel_y = -2
+/obj/item/stack/tape_roll,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/item/kitchen/utensil/spoon{
- pixel_x = -3;
- pixel_y = 18
+/area/library)
+"rgD" = (
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_x = -32
},
-/obj/item/kitchen/utensil/fork{
- pixel_x = -4;
- pixel_y = 18
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave{
+ pixel_x = -1;
+ pixel_y = 7
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkred"
- },
-/area/security/processing)
-"hys" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/construction/hallway)
-"hyX" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "whitepurple"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/medical/research/restroom)
+"rgF" = (
+/obj/machinery/driver_button{
+ id_tag = "toxinsdriver";
+ pixel_x = -26
},
-/obj/effect/landmark/start{
- name = "Mechanic"
+/obj/structure/chair/office/dark{
+ dir = 8
},
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"hzk" = (
-/obj/structure/closet,
-/obj/item/storage/box/handcuffs,
-/obj/item/clothing/suit/straight_jacket,
-/obj/item/clothing/mask/muzzle,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/stack/tape_roll,
+/area/toxins/mixing)
+"rgY" = (
/turf/simulated/floor/plasteel{
- icon_state = "darkred"
+ icon_state = "white"
},
-/area/security/processing)
-"hzp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/medical/medbay)
+"rho" = (
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/west)
-"hzS" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "purplefull"
},
-/turf/simulated/floor/plasteel{
+/area/medical/research/nhallway)
+"rhx" = (
+/obj/machinery/alarm{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/cryo)
-"hzX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/hallway/primary/central/sw)
-"hAX" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/electrical{
- pixel_x = -3;
- pixel_y = 3
+/area/hallway/primary/central/nw)
+"rhy" = (
+/obj/effect/landmark/start{
+ name = "Station Engineer"
},
-/obj/item/storage/toolbox/mechanical,
-/obj/item/multitool,
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellow"
},
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"hCq" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"hCG" = (
+/area/engine/hardsuitstorage)
+"rhD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"hCJ" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"hCR" = (
-/obj/structure/chair/office/dark{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/item/radio/intercom{
- pixel_x = -30;
- pixel_y = 31
- },
-/obj/machinery/flasher_button{
- id = "permaflash";
- layer = 4;
- name = "Prison Flasher";
- pixel_x = -24;
- pixel_y = 23
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
+ icon_state = "white"
},
-/area/security/permabrig)
-"hDh" = (
-/obj/structure/rack,
-/obj/item/extinguisher,
-/obj/item/clothing/mask/gas,
-/obj/item/grenade/chem_grenade/firefighting,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/research/nhallway)
+"rhQ" = (
+/obj/item/radio/intercom{
+ pixel_y = -30
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/toxins/mixing)
-"hDC" = (
-/obj/machinery/door/airlock/medical{
- name = "Operating Theatre";
- req_access_txt = "45"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/holosign/surgery{
- id = "surgery2"
+ icon_state = "red"
},
+/area/security/brig)
+"rhU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -108116,424 +104940,430 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/surgery2)
-"hDZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (EAST)"
},
-/area/crew_quarters/fitness)
-"hEs" = (
-/obj/structure/window/reinforced{
- dir = 8
+/area/medical/medbay3)
+"rhW" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/medical/medbay2)
+"rhX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkblue"
},
-/obj/structure/lattice,
-/obj/structure/lattice,
-/obj/machinery/light/small{
+/area/turret_protected/aisat_interior)
+"riA" = (
+/obj/structure/chair/comfy/teal,
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"hEM" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/assembly/robotics)
-"hEN" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/table/reinforced,
-/obj/item/implanter/mindshield{
- pixel_x = 4;
- pixel_y = 12
- },
-/obj/item/scalpel{
- pixel_y = 7
- },
-/obj/item/circular_saw{
- pixel_y = -5
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
+/area/medical/ward)
+"riE" = (
+/obj/structure/morgue,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
+ icon_state = "dark"
},
-/area/security/processing)
-"hES" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/wall,
-/area/quartermaster/storage)
-"hFg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/chapel/office)
+"riI" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/effect/landmark/start{
+ name = "Civilian"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar/atrium)
+"riJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/medbay)
-"hFm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"hFU" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "green"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/area/hallway/secondary/exit)
-"hGE" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/chair{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "red"
+ icon_state = "darkred"
},
-/area/security/prisonlockers)
-"hGW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/warden)
+"riK" = (
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/obj/effect/decal/remains/human,
+/obj/machinery/vending/cigarette/free,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/gambling_den)
-"hHa" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/securearmoury)
-"hHj" = (
-/obj/machinery/atmospherics/unary/outlet_injector{
- dir = 8;
- frequency = 1443;
- icon_state = "on";
- id = "air_in";
- on = 1
- },
-/obj/machinery/sparker{
- id = "toxinsigniter";
- pixel_x = 1;
- pixel_y = 24
- },
-/turf/simulated/floor/engine/insulated/vacuum,
-/area/toxins/mixing)
-"hHp" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/pen,
-/obj/structure/closet/walllocker/emerglocker{
+/area/security/hos)
+"riW" = (
+/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_x = -32
},
+/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 10;
+ icon_state = "darkyellow"
},
-/area/security/vacantoffice)
-"hHG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"riX" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
-/obj/structure/chair/office/dark{
- dir = 1
+/obj/item/pen,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 6;
+ icon_state = "darkred"
},
-/area/library)
-"hHP" = (
+/area/security/permabrig)
+"rja" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/sleep)
+"rjs" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/security/main)
-"hJA" = (
+/area/assembly/chargebay)
+"rju" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
+/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "pipe-c"
},
-/area/maintenance/turbine)
-"hKm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"rjK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"hKo" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHWEST)"
},
-/area/security/execution)
-"hKq" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 4
+/area/medical/sleeper)
+"rjT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/area/toxins/mixing)
-"hKw" = (
-/obj/machinery/door/airlock/hatch/gamma{
- locked = 1;
- req_access_txt = "1";
- use_power = 0
+/turf/simulated/floor/wood,
+/area/assembly/showroom)
+"rkC" = (
+/turf/simulated/floor/carpet/black,
+/area/shuttle/trade/sol)
+"rkO" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/door/firedoor,
-/obj/structure/fans/tiny,
-/turf/simulated/floor/engine,
-/area/security/brig)
-"hKH" = (
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"hLs" = (
-/obj/machinery/bodyscanner,
-/obj/item/radio/intercom{
- pixel_x = 28
+ icon_state = "white"
},
+/area/medical/research/nhallway)
+"rkP" = (
/obj/structure/extinguisher_cabinet{
- pixel_y = -32
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitered"
+ dir = 8;
+ icon_state = "red"
},
-/area/security/medbay)
-"hLL" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"hMR" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/area/security/securehallway)
+"rlh" = (
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "s_docking_airlock";
+ name = "Labor Shuttle Airlock"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 2;
+ height = 5;
+ id = "laborcamp";
+ name = "labor camp shuttle";
+ rebuildable = 1;
+ width = 9
},
-/turf/simulated/floor/plating,
-/area/medical/reception)
-"hNA" = (
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"hNJ" = (
-/obj/structure/window/reinforced,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 2;
+ height = 5;
+ id = "laborcamp_home";
+ name = "fore bay 1";
+ width = 9
},
-/area/shuttle/syndicate_sit)
-"hOp" = (
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor,
+/area/shuttle/siberia)
+"rlj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/paramedic)
+"rlm" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/bridge)
+"rlp" = (
+/obj/machinery/clonepod/biomass,
+/obj/structure/window/reinforced{
dir = 4
},
+/obj/machinery/light{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
+ icon_state = "dark"
},
-/area/security/processing)
-"hOs" = (
+/area/medical/genetics_cloning)
+"rlE" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/aft)
+"rlI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/area/crew_quarters/locker)
+"rlK" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
+/turf/simulated/floor/mech_bay_recharge_floor,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"rma" = (
+/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
+ dir = 1;
+ icon_state = "darkblue"
},
-/area/security/customs)
-"hOy" = (
+/area/bridge)
+"rmb" = (
+/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel{
- icon_state = "darkbluefull"
- },
-/area/construction/hallway)
-"hOT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ dir = 1;
+ icon_state = "darkblue"
},
+/area/bridge)
+"rmg" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/chair/office/dark{
dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/landmark/start{
+ name = "Station Engineer"
},
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/processing)
-"hPC" = (
-/obj/machinery/vending/medical,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
+/area/engine/engineering/monitor)
+"rmy" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/medical/medbay)
-"hPQ" = (
-/turf/simulated/wall,
-/area/hallway/primary/central/ne)
-"hQc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Virology";
+ name = "Virology Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/medical/virology/lab)
+"rmB" = (
+/obj/structure/bed,
+/obj/item/bedsheet/hos,
/obj/item/radio/intercom{
- pixel_x = -32
+ pixel_x = 32
+ },
+/obj/machinery/door_control{
+ id = "HoSPriv";
+ name = "HoS Office Privacy Shutters Control";
+ pixel_y = 24;
+ req_access_txt = "58"
+ },
+/obj/effect/landmark/start{
+ name = "Head of Security"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "grimy"
},
-/area/medical/medbay2)
-"hQr" = (
-/obj/effect/decal/warning_stripes/northwestcorner,
+/area/security/hos)
+"rmX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/engine/hardsuitstorage)
-"hQL" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
+"rna" = (
+/obj/machinery/atmospherics/unary/cold_sink/freezer,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/medical/genetics_cloning)
+"rnp" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/storage/tech)
+"rnr" = (
+/obj/item/flag/grey,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"rnz" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 5;
+ dir = 4;
icon_state = "whiteblue";
tag = "icon-whitehall (WEST)"
},
-/area/medical/sleeper)
-"hQT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/biostorage)
+"rnJ" = (
+/turf/simulated/wall,
+/area/ai_monitored/storage/eva)
+"rnS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/crew_quarters/fitness)
-"hQV" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"hRv" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/recharge_station,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"hSA" = (
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- name = "Cell Door";
- req_access_txt = "150"
+/area/medical/genetics_cloning)
+"rnT" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/pointybush,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/grass,
+/area/medical/biostorage)
+"rnY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellowcorner"
},
+/area/storage/primary)
+"rob" = (
+/obj/machinery/recharge_station/ert,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/syndicate_sit)
-"hSN" = (
+/area/shuttle/administration)
+"roe" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -108541,458 +105371,662 @@
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- dir = 1
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/security/permabrig)
-"hSU" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/obj/effect/landmark{
+ name = "lightsout"
},
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"hUe" = (
-/obj/effect/decal/warning_stripes/southeast,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/area/engine/mechanic_workshop/hanger)
-"hUf" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/medical/paramedic)
-"hUk" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/closet/secure_closet/brig,
+/area/hallway/primary/central/east)
+"rof" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "red"
},
-/area/security/permabrig)
-"hUr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/north,
+/area/security/range)
+"rop" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"ros" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"hVk" = (
-/obj/machinery/camera{
- c_tag = "Officer Equipment Storage";
- network = list("SS13","Security");
- pixel_x = -5
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A36";
+ location = "A35"
},
-/obj/machinery/firealarm{
- pixel_y = 26
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/structure/closet/redcorp,
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/east)
+"rot" = (
+/obj/structure/sign/science,
+/turf/simulated/wall/r_wall,
+/area/toxins/lab)
+"roC" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "red"
},
-/area/security/customs)
-"hVo" = (
-/obj/structure/toilet{
- dir = 4
+/area/security/range)
+"roH" = (
+/obj/machinery/computer/security/mining,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkpurple"
},
-/obj/machinery/door/window,
+/area/bridge)
+"roU" = (
+/obj/structure/table/reinforced,
/obj/machinery/light{
dir = 8
},
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/item/stack/cable_coil,
+/obj/item/multitool{
+ pixel_x = 3
+ },
+/obj/item/flash,
+/obj/item/flash,
+/obj/item/flash,
+/obj/item/flash,
+/obj/item/flash,
+/obj/item/flash,
+/obj/structure/sign/poster/random{
+ pixel_x = -32
+ },
+/obj/item/clothing/suit/fire/firefighter,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ dir = 8;
+ icon_state = "whitepurple"
+ },
+/area/assembly/robotics)
+"roX" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/pen,
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"rpb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/permabrig)
-"hWF" = (
-/obj/effect/spawner/lootdrop/trade_sol/largeitem,
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"hWM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"rpj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
+/obj/machinery/computer/supplycomp,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkyellow"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/bridge)
+"rpv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/crew_quarters/hor)
+"rpw" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery1)
+"rpB" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"rpF" = (
+/obj/machinery/door_timer/cell_5{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
dir = 1
},
-/area/security/permabrig)
-"hXj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkred"
},
+/area/security/prison/cell_block/A)
+"rpM" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
+ },
+/area/medical/sleeper)
+"rpN" = (
+/obj/structure/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Virologist"
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"hXm" = (
-/obj/machinery/light,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "whitegreencorner"
},
-/area/medical/research{
- name = "Research Division"
- })
-"hYd" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/area/medical/virology/lab)
+"rpO" = (
+/obj/item/flag/command,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
-"hYu" = (
-/obj/effect/spawner/window/reinforced,
+/area/bridge)
+"rpQ" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "Virology";
- name = "Virology Shutters"
+/obj/item/radio/beacon,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/medical/virology/lab)
-"hYw" = (
-/obj/structure/table/reinforced,
-/obj/item/book/manual/engineering_guide{
- pixel_x = 4;
- pixel_y = 4
+/area/bridge)
+"rpT" = (
+/obj/item/radio/intercom{
+ pixel_y = -28
},
-/obj/item/book/manual/engineering_particle_accelerator,
/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/vip)
+"rpY" = (
+/turf/simulated/wall,
+/area/storage/primary)
+"rqh" = (
+/obj/machinery/light{
dir = 1;
- icon_state = "yellow"
+ in_use = 1
},
-/area/engine/engineering)
-"hZK" = (
-/obj/machinery/alarm{
+/obj/structure/chair,
+/turf/simulated/floor/plasteel{
dir = 1;
- pixel_y = -22
+ icon_state = "neutral"
},
+/area/crew_quarters/fitness)
+"rqk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/turret_protected/ai)
-"hZW" = (
-/obj/structure/chair{
+/area/crew_quarters/fitness)
+"rqn" = (
+/obj/machinery/light,
+/obj/structure/chair/comfy/shuttle{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/shuttle/floor,
+/area/shuttle/pod_4)
+"rqF" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/main)
-"iah" = (
-/obj/effect/decal/cleanable/blood/xeno,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"iam" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/engine/mechanic_workshop/hangar)
+"rqO" = (
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "green"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/hydroponics)
-"iaA" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/area/hallway/primary/central/nw)
+"rqU" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"rqW" = (
+/obj/machinery/sleeper{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "cmo"
},
-/area/medical/research{
- name = "Research Division"
+/area/shuttle/escape{
+ parallax_movedir = 2
})
-"ibf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+"rri" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/crew_quarters/courtroom)
+"rrl" = (
+/obj/machinery/flasher/portable,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkblue"
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"rru" = (
+/turf/simulated/floor/mech_bay_recharge_floor,
+/area/assembly/robotics)
+"rrz" = (
+/turf/simulated/floor/plasteel,
+/area/bridge/vip)
+"rrR" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/turret_protected/aisat_interior)
-"ibi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/remains/xeno,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/cmo)
+"rsd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/courtroom)
+"rsE" = (
+/obj/item/radio/intercom{
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/gambling_den)
-"ibC" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/area/chapel/main)
+"rsK" = (
+/obj/structure/table/wood,
+/obj/machinery/light,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Head of Personnel's Office"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/vending/wallmed{
+ pixel_x = 26
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"rsM" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "neutralcorner"
},
-/area/security/main)
-"ibI" = (
+/area/hallway/primary/central/nw)
+"rsV" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/medical/research/nhallway)
+"rsW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/southeastcorner,
+/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"rsY" = (
+/obj/structure/window/reinforced{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/security/prison/cell_block/A)
-"icc" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swallc3"
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
},
-/area/shuttle/trade/sol)
-"ice" = (
+/area/construction/hallway)
+"rtb" = (
+/obj/structure/closet/coffin,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/door/window/eastleft{
+ dir = 8;
+ name = "Coffin Storage";
+ req_access_txt = "22"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"icl" = (
-/obj/effect/decal/warning_stripes/south,
+/area/chapel/main)
+"rtl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/securearmoury)
-"icz" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"rtn" = (
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 4";
+ name = "Cell 4 Locker"
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 10;
+ icon_state = "red"
},
-/area/hallway/primary/central/south)
-"icL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/security/prison/cell_block/A)
+"rtB" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/maintenance/xenozoo)
+"rtG" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"icS" = (
-/obj/structure/chair,
+/area/security/range)
+"rtJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/effect/landmark{
+ name = "Marauder Entry"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/security/processing)
-"ieh" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/bridge)
+"rum" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/item/flag/command,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/bridge)
+"run" = (
+/obj/structure/rack,
+/obj/item/tank/nitrogen,
+/obj/item/tank/nitrogen,
+/obj/item/tank/nitrogen,
+/obj/item/tank/nitrogen,
+/obj/item/tank/nitrogen,
+/obj/item/tank/nitrogen,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
+"rus" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ tag = "icon-pipe-j1 (EAST)"
+ },
+/turf/simulated/floor/plasteel{
dir = 8;
- initialize_directions = 11
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/se)
+"ruH" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
+ },
+/turf/simulated/shuttle/floor4,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"ruT" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/vending/snack,
+/obj/structure/sign/poster/contraband/smoke{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "white"
},
-/area/security/brig)
-"ieE" = (
+/area/medical/research/restroom)
+"rvd" = (
+/obj/machinery/vending/tool,
+/turf/simulated/floor/wood,
+/area/maintenance/fsmaint)
+"rvg" = (
+/turf/simulated/floor/carpet,
+/area/bridge/meeting_room)
+"rvh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/cmo)
+"rvn" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research{
+ name = "Research Division"
})
-"ieI" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+"rvt" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 1;
+ layer = 2.4;
+ on = 1
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/hor)
-"ifd" = (
-/obj/structure/window/reinforced{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/morgue)
+"rvG" = (
+/obj/structure/table/wood,
+/obj/item/toy/figure/bartender,
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
+/area/maintenance/abandonedbar)
+"rvX" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/construction/hallway)
-"ifS" = (
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 3";
+/obj/structure/disposalpipe/sortjunction{
dir = 4;
- network = list("SS13","MiniSat")
+ name = "Medbay Junction";
+ sortType = 9
},
-/turf/space,
-/area/space/nearstation)
-"igC" = (
-/obj/machinery/light,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"igS" = (
-/obj/structure/window/reinforced{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/window/reinforced,
-/obj/machinery/light{
- dir = 1;
- pixel_y = -7
+/area/hallway/primary/central/south)
+"rwl" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/northeast,
+/obj/structure/table,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/item/analyzer,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/construction/hallway)
-"igV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+/area/maintenance/electrical)
+"rwB" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"rwH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
+/obj/structure/disposalpipe/junction{
dir = 1;
- icon_state = "neutralcorner"
+ tag = "icon-pipe-j1 (EAST)"
},
-/area/hallway/primary/central/se)
-"igW" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
+ },
+/area/medical/sleeper)
+"rwM" = (
/obj/structure/table,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/item/clothing/head/helmet/skull{
+ desc = "Бедный Йорик...";
+ name = "Йорик"
},
-/area/shuttle/syndicate_sit)
-"ihc" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/magistrateoffice)
+"rwW" = (
+/obj/machinery/computer/aifixer,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkpurple"
+ },
+/area/bridge)
+"rxc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -109003,783 +106037,631 @@
dir = 8;
initialize_directions = 11
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "grimy"
},
-/area/security/brig)
-"ihm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/area/crew_quarters/heads/hop)
+"rxr" = (
+/obj/effect/landmark{
+ name = "blobstart"
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/area/security/processing)
-"ihB" = (
-/obj/machinery/blackbox_recorder,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/turf/simulated/floor/bluegrid,
-/area/tcommsat/chamber)
-"ihP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"rxs" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/machinery/light,
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
},
+/turf/simulated/shuttle/floor,
+/area/shuttle/pod_3)
+"rxv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/evidence)
-"iil" = (
-/obj/machinery/recharge_station,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -24
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plating,
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"ikv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/quartermaster/delivery)
-"ikA" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"ikS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/camera{
- c_tag = "Medbay Waiting Room";
- dir = 4;
- network = list("SS13","Medical")
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "white"
},
-/area/medical/medbay)
-"ilr" = (
-/obj/machinery/vending/snack,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+/area/medical/sleeper)
+"rxx" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/security/lobby)
-"ilz" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/machinery/firealarm{
- pixel_y = 24
+/obj/structure/window/reinforced{
+ dir = 1
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/grass,
-/area/hydroponics)
-"ilQ" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/structure/rack,
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/item/tank/emergency_oxygen/engi,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"ima" = (
-/turf/simulated/wall/r_wall,
-/area/security/prisonlockers)
-"imB" = (
+/area/hallway/secondary/exit)
+"rxD" = (
/obj/structure/table/reinforced,
-/obj/item/folder/red{
- pixel_y = 3
+/obj/item/book/manual/security_space_law{
+ pixel_x = -3;
+ pixel_y = 5
},
-/obj/item/book/manual/security_space_law,
-/obj/structure/extinguisher_cabinet{
+/obj/item/megaphone,
+/obj/item/radio/intercom{
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ dir = 1
},
-/area/security/customs)
-"imD" = (
+/area/security/reception)
+"rxE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/radio/intercom{
- pixel_x = -30;
- pixel_y = -4
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"rxF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/hallway/primary/fore)
-"imH" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ icon_state = "2-8"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-4"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Virology";
- name = "Virology Shutters"
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/medical/virology/lab)
-"imX" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/glass/fifty{
- pixel_x = -5;
- pixel_y = 5
+/area/security/reception)
+"rxH" = (
+/obj/structure/disposalpipe/trunk,
+/obj/structure/disposaloutlet{
+ dir = 1
},
-/obj/item/storage/belt/utility,
-/turf/simulated/floor/bluegrid,
-/area/tcommsat/chamber)
-"inw" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/toxins/xenobiology)
+"rxL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "darkred"
- },
-/area/security/evidence)
-"inF" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "ai2";
- name = "Turret Shutters"
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"iob" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/chapel/office)
+"rye" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/mech_bay_recharge_floor,
+/area/maintenance/electrical)
+"ryp" = (
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
},
+/area/bridge)
+"ryr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A36";
- location = "A35"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central/east)
-"iof" = (
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway)
-"ioo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1
},
-/area/security/execution)
-"iox" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/blue,
-/obj/item/flash,
+/area/security/brig)
+"ryt" = (
+/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
- dir = 10;
+ dir = 1;
icon_state = "darkblue"
},
-/area/turret_protected/aisat)
-"ipi" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/light,
-/turf/simulated/floor/plating/airless,
-/area/engine/engineering)
-"ipx" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/wall,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"iqN" = (
+/area/bridge)
+"ryz" = (
/obj/structure/chair/comfy/shuttle{
dir = 4
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/syndicate_sit)
-"iqS" = (
+/area/shuttle/administration)
+"ryM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "yellowfull"
},
-/area/medical/medbay)
-"iru" = (
+/area/engine/engineering)
+"ryP" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkred"
+ },
+/area/security/permabrig)
+"rze" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/prisonershuttle)
-"irJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/west,
-/obj/item/radio/intercom{
- pixel_x = -30
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/starboard)
+"rzf" = (
+/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"irZ" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/item/radio/intercom{
- pixel_y = -30
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
+/area/engine/engineering)
+"rzh" = (
+/turf/simulated/wall,
/area/security/processing)
-"ise" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/radio/intercom{
- pixel_y = -28
- },
+"rzo" = (
+/obj/item/aiModule/quarantine,
+/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
- })
-"iso" = (
+/area/turret_protected/ai_upload)
+"rzq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin3)
+"rzv" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "whitegreencorner"
},
/area/medical/virology)
-"isv" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/disposal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/newscaster{
- pixel_x = 32
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hydroponics)
-"isP" = (
-/obj/structure/sign/nosmoking_1,
-/turf/simulated/wall,
-/area/medical/morgue)
-"itc" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop{
- pixel_x = 1;
- pixel_y = 2
- },
-/obj/machinery/defibrillator_mount/loaded{
- pixel_x = -29
- },
-/obj/machinery/camera{
- c_tag = "Brig Medical Room";
- dir = 4;
- network = list("SS13","Security")
- },
+"rzM" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"rzO" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"rzT" = (
+/obj/machinery/mecha_part_fabricator,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitered"
+ icon_state = "neutralfull"
},
-/area/security/medbay)
-"itk" = (
+/area/assembly/robotics)
+"rzU" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"rAb" = (
/obj/structure/chair/comfy/shuttle{
dir = 8
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate_sit)
-"itZ" = (
-/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
- },
-/turf/space,
-/area/space/nearstation)
-"ium" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/bridge/vip)
-"iuG" = (
-/obj/structure/window/reinforced,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
- },
-/area/construction/hallway)
-"iuS" = (
-/obj/structure/chair{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/main)
-"iuW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "dark"
},
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"rAh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 4
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4
},
-/area/security/processing)
-"iuY" = (
-/obj/effect/decal/warning_stripes/south,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Armory_sprava";
- location = "Armory_South"
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"rAl" = (
+/obj/structure/table/reinforced,
+/obj/item/paper/deltainfo,
+/obj/item/flashlight/seclite,
+/turf/simulated/floor/plasteel{
+ dir = 1
},
+/area/security/main)
+"rAs" = (
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 5;
+ icon_state = "darkred"
},
/area/security/securearmoury)
-"ivL" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"rAA" = (
+/obj/item/radio/intercom{
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/mechanic_workshop/hanger)
-"ivV" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"iwe" = (
+/area/crew_quarters/locker)
+"rAC" = (
+/obj/structure/chair/wood,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"rAM" = (
+/turf/simulated/wall,
+/area/toxins/xenobiology)
+"rAN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"iwt" = (
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurple"
+/obj/effect/decal/warning_stripes/northeast,
+/obj/structure/closet/secure_closet/brig,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/toxins/misc_lab)
-"iwx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/window/reinforced{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/sleeper)
-"iwO" = (
-/obj/item/flag/clown,
-/obj/machinery/power/apc{
- pixel_y = 26
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "bar"
- },
-/area/clownoffice)
-"iwT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "dark"
},
+/area/security/prisonershuttle)
+"rBg" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkblue"
- },
-/area/turret_protected/aisat_interior)
-"iwV" = (
-/obj/structure/table,
-/obj/item/reagent_containers/syringe/capulettium_plus{
- pixel_x = -3;
- pixel_y = -2
+ icon_state = "bluecorner"
},
-/obj/item/reagent_containers/syringe{
- pixel_x = -3;
- pixel_y = 4
+/area/hallway/primary/central/ne)
+"rBh" = (
+/obj/effect/decal/cleanable/blood/xeno,
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"rBk" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/auxsolarstarboard)
+"rBx" = (
+/obj/machinery/computer/crew,
+/obj/machinery/door_control{
+ id = "blueshieldofficedoor";
+ name = "Office Door";
+ normaldoorcontrol = 1;
+ pixel_x = 6;
+ pixel_y = 24;
+ req_access_txt = "67"
},
-/obj/item/reagent_containers/food/pill/fakedeath{
+/obj/machinery/door_control{
+ id = "blueshield";
+ name = "Privacy Shutters Control";
pixel_x = -4;
- pixel_y = 9
+ pixel_y = 24;
+ req_access_txt = "67"
},
-/obj/item/reagent_containers/food/pill/morphine{
- pixel_x = 7;
- pixel_y = 9
+/turf/simulated/floor/wood,
+/area/blueshield)
+"rBA" = (
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 2";
+ name = "Cell 2 Locker"
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkred"
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
},
-/area/security/execution)
-"ixc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/newscaster{
+ pixel_x = -28
},
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"ixo" = (
-/obj/structure/closet/secure_closet/CMO,
-/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "bcarpet05"
},
-/area/medical/cmo)
-"ixP" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/area/security/prison/cell_block/A)
+"rCf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/brig)
-"iyv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "green"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/hydroponics)
-"iyV" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "purplefull"
},
-/area/engine/mechanic_workshop/hanger)
-"izQ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger{
- pixel_y = 2
+/area/medical/research/nhallway)
+"rCi" = (
+/obj/machinery/vending/sovietsoda,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"rCs" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/recharger/wallcharger{
- pixel_x = 5;
- pixel_y = 24
+/obj/machinery/light,
+/obj/machinery/flasher{
+ id = "Cell 2";
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/customs)
-"izX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "bcarpet05"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/area/security/prison/cell_block/A)
+"rCy" = (
+/obj/structure/chair/office/dark{
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/obj/structure/cable{
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "red"
},
-/area/hallway/primary/central/south)
-"iAw" = (
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+/area/security/reception)
+"rCP" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s5"
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"iAK" = (
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 12";
- network = list("SS13","MiniSat")
+/area/shuttle/administration)
+"rCV" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door_control{
+ id = "ArmorySec";
+ name = "Armory Security Window Control";
+ pixel_x = 9;
+ pixel_y = 7;
+ req_access_txt = "3"
},
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"iAS" = (
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/door_control{
+ id = "ArmorySecAccess";
+ name = "Armory Security Access Control";
+ pixel_x = 9;
+ pixel_y = -2;
+ req_access_txt = "3"
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/door_control{
+ id = "Warden";
+ name = "Warden Privacy Shutters Control";
+ pixel_x = -9;
+ pixel_y = 7;
+ req_access_txt = "3"
},
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"iBE" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/hallway/primary/central/nw)
-"iBL" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+/obj/machinery/door_control{
+ id = "ArmoryLock";
+ name = "Armory Lockdown";
+ pixel_x = -9;
+ pixel_y = -2;
+ req_access_txt = "3"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "darkred"
},
-/area/medical/morgue)
-"iCY" = (
+/area/security/warden)
+"rDf" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/warning_stripes/southwest,
+/obj/structure/cable{
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/vending/cigarette,
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"iDF" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/mechanic_workshop/hanger)
-"iEb" = (
-/obj/structure/table/reinforced,
-/obj/item/paicard,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/bluegrid,
-/area/tcommsat/chamber)
-"iFj" = (
-/obj/machinery/atmospherics/unary/passive_vent{
- dir = 8
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"rDm" = (
+/obj/structure/transit_tube,
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/engine/insulated/vacuum,
-/area/toxins/mixing)
-"iFq" = (
+/turf/space,
+/area/space/nearstation)
+"rDp" = (
+/obj/effect/decal/warning_stripes/northwestcorner,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"rDA" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno2";
- name = "Creature Cell #4";
- opacity = 0
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "HoSPriv";
+ name = "HoS Office Privacy Shutters"
},
/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"iFu" = (
+/area/security/hos)
+"rDF" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 7;
+ icon_state = "yellow"
},
-/area/medical/medbay)
-"iFw" = (
-/obj/machinery/suit_storage_unit/clown,
-/obj/machinery/door_control{
- id = "Clown";
- name = "Clowns Privacy Shutters Control";
- pixel_y = 26
+/area/engine/engineering)
+"rDK" = (
+/obj/machinery/autolathe/security,
+/obj/item/stack/sheet/metal{
+ amount = 10
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/item/stack/sheet/glass{
+ amount = 10
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24;
- pixel_y = 32
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
- icon_state = "bar"
+ dir = 1
},
-/area/clownoffice)
-"iFS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
+/area/security/armoury)
+"rDM" = (
+/obj/machinery/flasher/portable,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"rDP" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/medical/sleeper)
-"iGj" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/vip)
+"rDQ" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/glass/bottle/ether,
+/obj/item/reagent_containers/syringe{
+ pixel_x = -1;
+ pixel_y = 11
+ },
/obj/structure/cable{
d1 = 1;
d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "1-4";
+ tag = "90Curve"
},
/obj/structure/cable{
d1 = 4;
@@ -109787,2987 +106669,2999 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/security/brig)
-"iGo" = (
-/obj/structure/window/reinforced{
+/area/medical/surgery1)
+"rDZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/window/reinforced,
-/obj/machinery/arcade/claw,
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"iGu" = (
-/obj/structure/chair/office/dark{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hydroponics)
-"iGQ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Virology";
- name = "Virology Shutters"
- },
-/turf/simulated/floor/plating,
-/area/medical/virology/lab)
-"iHJ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/security/execution)
-"iHW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
},
-/obj/machinery/light/small{
- dir = 1
+/area/hallway/secondary/entry)
+"rEd" = (
+/obj/machinery/camera{
+ c_tag = "Research Test Chamber";
+ dir = 4;
+ network = list("TestChamber","SS13","Research")
},
-/obj/structure/extinguisher_cabinet{
- pixel_y = 28
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"rEe" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 100;
+ on = 1
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
},
-/area/crew_quarters/sleep)
-"iHX" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
-"iIc" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"rEq" = (
+/obj/machinery/camera{
+ c_tag = "Captain's Room";
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"rEx" = (
+/obj/structure/table/reinforced,
+/obj/item/radio/electropack,
+/obj/item/assembly/signaler,
+/obj/item/healthanalyzer,
+/obj/machinery/light{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
-"iJv" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whitepurple"
},
-/area/hallway/secondary/entry/commercial)
-"iJB" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"iJZ" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/area/toxins/misc_lab)
+"rEC" = (
+/obj/machinery/newscaster{
+ pixel_x = 28
},
+/obj/machinery/computer/arcade,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 6;
+ icon_state = "darkred"
+ },
+/area/security/permabrig)
+"rEO" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/structure/rack,
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/item/tank/emergency_oxygen/engi,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"rEU" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
+ },
+/area/shuttle/siberia)
+"rFb" = (
+/obj/structure/fans/tiny,
+/turf/simulated/floor/plating/airless,
+/area/toxins/test_area)
+"rFi" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/chair,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/area/library)
-"iLi" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkredcorners"
+ dir = 1;
+ icon_state = "green"
},
-/area/security/prisonershuttle)
-"iLo" = (
+/area/hallway/secondary/exit)
+"rFn" = (
+/obj/effect/decal/cleanable/blood,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/hologram/holopad,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=V2";
- location = "V1"
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"rFw" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/table/wood,
+/obj/item/storage/fancy/candle_box/full,
+/obj/item/storage/fancy/candle_box/full{
+ pixel_x = 3;
+ pixel_y = 3
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkblue"
+ },
+/area/chapel/main)
+"rFB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/bridge/vip)
-"iMi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 8;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/medical/medbay3)
-"iMk" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/maintenance/asmaint)
-"iNk" = (
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
-"iNP" = (
-/obj/item/reagent_containers/glass/bucket,
-/obj/structure/sink{
- dir = 1
+/area/medical/surgery1)
+"rFC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkred"
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck Door"
},
-/area/security/processing)
-"iNS" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"rFG" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/medical/ward)
-"iOH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+ icon_state = "whitepurplecorner"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"iOQ" = (
-/obj/structure/window/reinforced,
+/area/toxins/misc_lab)
+"rFJ" = (
/obj/structure/window/reinforced{
- dir = 4
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/item/flag{
+ layer = 4
},
-/area/construction/hallway)
-"iPH" = (
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"rGw" = (
/obj/structure/table/reinforced,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/storage/toolbox/mechanical,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"iQf" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
- },
-/turf/simulated/floor/plating,
-/area/security/prisonlockers)
-"iSo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/item/storage/box/beakers,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 6;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (SOUTHEAST)"
},
-/area/hallway/primary/central/south)
-"iSO" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 32;
- pixel_y = -32
+/area/toxins/misc_lab)
+"rGx" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/mug/sec,
+/obj/machinery/light{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/area/security/brig)
-"iTz" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "bluecorner"
+ icon_state = "red"
},
-/area/hydroponics)
-"iTT" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/area/security/processing)
+"rGK" = (
+/obj/machinery/flasher/portable,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/hallway/primary/central/se)
-"iUR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
-"iVE" = (
-/obj/effect/spawner/lootdrop/trade_sol/eng,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"iVU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ dir = 1;
+ icon_state = "vault"
},
+/area/security/securearmoury)
+"rGM" = (
+/obj/machinery/computer/rdconsole/experiment,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
-"iWe" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/plasteel,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
- },
-/area/turret_protected/ai)
-"iWk" = (
-/obj/effect/decal/warning_stripes/south,
+/area/toxins/explab)
+"rGO" = (
+/obj/effect/decal/warning_stripes/red,
+/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/item/radio/intercom{
- pixel_y = -32
+ pixel_y = 26
},
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "yellow"
- },
-/area/maintenance/electrical)
-"iWo" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ dir = 1;
+ icon_state = "vault"
},
-/obj/machinery/door/poddoor/shutters/preopen{
+/area/security/securearmoury)
+"rHl" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- id_tag = "ai1";
- name = "Turret Shutters"
- },
-/turf/simulated/floor/plating,
-/area/turret_protected/aisat_interior)
-"iWC" = (
-/obj/structure/lattice,
-/turf/simulated/wall/r_wall,
-/area/construction/hallway)
-"iWL" = (
-/obj/machinery/flasher{
- id = "soltraderflash";
- pixel_y = -28
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 8
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"iWM" = (
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Chamber Observation";
- req_access_txt = "75"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
},
-/obj/machinery/door/firedoor,
+/area/security/range)
+"rHq" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "0-2"
},
+/turf/simulated/floor/plating,
/area/turret_protected/ai)
-"iWO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+"rHr" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "neutralcorner"
},
-/area/crew_quarters/serviceyard)
-"iXv" = (
-/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+/area/crew_quarters/fitness)
+"rHz" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 100;
+ on = 1
},
-/obj/structure/chair/comfy/shuttle{
- dir = 4
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"rHD" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/area/shuttle/syndicate_sit)
-"iXx" = (
-/obj/machinery/light/small{
- dir = 8
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"rHM" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/computer/monitor{
+ name = "Backup Power Monitoring Console"
},
-/obj/structure/safe/floor,
-/obj/item/paper{
- desc = "Мятый лист бумаги. От одного вида на него у вас начинается головокружение.";
- info = "ПОМОГИТЕ МНЕ
ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ПОМОГИТЕМНЕ МНЕ ПОМОГИТЕМНЕПОМОГИТЕ МНЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕПОМОГИТЕМНЕ ПОМОГИТЕПОМОГИТЕПОМОГИТЕ МНЕПОМОГИТЕМНЕМНЕ ПОМОГИТЕМНЕМНЕПОМОГИТЕ ";
- name = "Странные записи"
+/obj/structure/cable,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"iXK" = (
-/obj/item/flag/nt,
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = -32
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/ai)
-"iXX" = (
-/obj/machinery/door/airlock/hatch{
- name = "Telecommunications Access";
- req_access_txt = "61"
+/area/maintenance/electrical)
+"rHV" = (
+/obj/machinery/computer/security{
+ network = list("SS13","Research Outpost","Mining Outpost")
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
},
+/area/security/reception)
+"rHW" = (
+/obj/structure/dispenser/oxygen,
+/obj/effect/decal/warning_stripes/red,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/tcommsat/chamber)
-"iYw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/security/securearmoury)
+"rIt" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/alarm{
+ pixel_y = 24
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"rIw" = (
+/obj/structure/cable,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "Interrogation"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "Interrogation"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+/obj/structure/window/reinforced/polarized{
+ id = "Interrogation"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "Interrogation"
},
-/area/security/prison/cell_block/A)
-"iYC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/turf/simulated/floor/plating,
+/area/security/interrogation)
+"rIx" = (
+/turf/simulated/wall/r_wall,
+/area/teleporter)
+"rIC" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTH)"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/toxins/misc_lab)
-"iYV" = (
-/obj/machinery/light/small{
- dir = 1
+/area/hallway/primary/central/west)
+"rIF" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "adminshuttleshutters";
+ name = "Blast Shutters";
+ opacity = 0
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/radiation,
+/obj/structure/grille,
+/obj/structure/window/full/shuttle,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"jaX" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/machinery/disposal,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/disposalpipe/trunk{
+/area/shuttle/administration)
+"rIU" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/crew_quarters/fitness)
+"rIV" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/medical/sleeper)
+"rIY" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple"
+ icon_state = "chapel"
},
-/area/toxins/mixing)
-"jba" = (
-/obj/structure/window/reinforced{
- dir = 8
+/area/chapel/main)
+"rIZ" = (
+/obj/machinery/bluespace_beacon,
+/obj/machinery/door_control{
+ id = "teleaccessshutter";
+ name = "Teleporter Shutters Access Control";
+ pixel_y = 24;
+ req_access_txt = "62"
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"rJr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/space,
-/area/space/nearstation)
-"jby" = (
+/obj/machinery/vending/cigarette,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/brig)
-"jde" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "ai2";
- name = "Turret Shutters"
+ icon_state = "whitepurplecorner"
},
+/area/medical/research/nhallway)
+"rJw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"jeA" = (
-/obj/machinery/light{
- dir = 1
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/item/radio/intercom{
- pixel_x = 30
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"jeI" = (
-/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/medical/medbay2)
-"jfk" = (
-/obj/item/radio/intercom{
- pixel_y = -28
+/area/crew_quarters/serviceyard)
+"rJG" = (
+/obj/machinery/suit_storage_unit/security/secure,
+/obj/structure/window/reinforced{
+ dir = 8
},
+/obj/effect/decal/warning_stripes/red/hollow,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/toxins/explab)
-"jhm" = (
+/area/security/securearmoury)
+"rJJ" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/closet/radiation,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/door/airlock/maintenance{
- req_one_access_txt = "12;47"
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"jhv" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plating/airless,
-/area/toxins/test_area)
-"jhR" = (
+/area/medical/research/nhallway)
+"rJZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Research Junction";
+ sortType = 12;
+ tag = "icon-pipe-j1s (EAST)"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/area/medical/medbay3)
-"jic" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 1
+/area/medical/research/nhallway)
+"rKg" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
},
-/obj/structure/window/plasmareinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"jig" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/item/radio/intercom{
+ pixel_x = -32
+ },
+/obj/machinery/door_control{
+ id = "Briefing";
+ name = "Briefing room Shutters Control";
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1
},
-/area/medical/medbay3)
-"jjA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/wood/wings{
- dir = 8;
- tag = "icon-wooden_chair_wings (WEST)"
+/area/security/main)
+"rKr" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ name = "south bump Important Area";
+ pixel_y = -24
+ },
+/obj/machinery/computer/message_monitor,
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
+"rKL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/carpet,
-/area/maintenance/abandonedbar)
-"jjC" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/south)
+"rKM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"rKQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurplecorner"
},
-/area/toxins/misc_lab)
-"jkc" = (
-/obj/structure/table/reinforced,
-/obj/item/taperecorder,
-/obj/item/flashlight/lamp,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/medical/research/shallway)
+"rKX" = (
+/obj/structure/closet/fireaxecabinet{
+ pixel_x = 32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "blue"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"rKZ" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j2"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/light,
-/obj/machinery/door_control{
- id = "Interrogation";
- name = "Interrogation Privacy Shutters Control";
- pixel_y = -25;
- req_access_txt = "63"
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "darkred"
+ icon_state = "purplefull"
},
-/area/security/processing)
-"jks" = (
-/obj/structure/closet,
-/obj/structure/window/reinforced{
- dir = 4
+/area/medical/research/shallway)
+"rLd" = (
+/obj/machinery/power/grounding_rod{
+ anchored = 1
},
-/obj/item/stack/sheet/cardboard,
-/obj/item/stack/sheet/cardboard,
-/obj/item/stack/sheet/cardboard,
-/turf/simulated/floor/plasteel{
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"rLk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery";
dir = 1;
- icon_state = "darkred"
+ location = "Robotics"
},
-/area/security/evidence)
-"jku" = (
-/obj/machinery/computer/security{
- network = list("SS13","Research Outpost","Mining Outpost")
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/plasticflaps{
+ opacity = 1
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/assembly/robotics)
+"rLl" = (
+/obj/machinery/suit_storage_unit/security/secure,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/light{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkred"
+ icon_state = "dark"
},
-/area/security/warden)
-"jlk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/security/securearmoury)
+"rLt" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/library/checkout,
+/obj/machinery/newscaster{
+ pixel_x = 32
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
+ },
+/area/library)
+"rLv" = (
+/obj/structure/showcase{
+ density = 0;
+ dir = 4;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = -9;
+ pixel_y = 2
+ },
+/obj/machinery/flasher{
+ id = null;
+ pixel_y = 24
},
-/area/turret_protected/ai)
-"jll" = (
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ dir = 9;
+ icon_state = "darkblue"
},
-/area/medical/ward)
-"jlz" = (
-/obj/effect/decal/cleanable/dirt,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"rLF" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/suit_storage_unit/security/secure,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/securearmoury)
+"rLL" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"jlH" = (
-/obj/item/radio/intercom,
-/turf/simulated/wall,
-/area/hallway/primary/central/ne)
-"jlK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/area/security/podbay)
+"rLZ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whiteblue";
tag = "icon-whiteblue (WEST)"
},
-/area/medical/ward)
-"jlY" = (
+/area/medical/genetics_cloning)
+"rMg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/fernybush,
-/obj/structure/window/reinforced{
- dir = 8
+ icon_state = "1-2"
},
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/grass,
-/area/bridge/vip)
-"jmw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central/east)
-"joA" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/machinery/light/small{
- dir = 1
+ icon_state = "white"
},
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"joM" = (
-/turf/simulated/wall,
-/area/hallway/primary/port/west)
-"joW" = (
-/obj/structure/bed,
-/obj/effect/decal/cleanable/cobweb2,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/area/toxins/mixing)
+"rMl" = (
+/obj/structure/closet/wardrobe/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/obj/item/radio/intercom{
- pixel_x = 30
+/area/crew_quarters/locker)
+"rMr" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/security/prison/cell_block/A)
-"jpa" = (
-/obj/machinery/door_control{
- id = "GYM";
- name = "Dungeon Privacy Shutters Control";
- pixel_x = -24;
- pixel_y = 23;
- req_access_txt = "63"
+ icon_state = "grimy"
},
+/area/library)
+"rMu" = (
+/obj/structure/table/wood,
+/obj/item/storage/pill_bottle/dice,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "carpet"
},
-/area/security/processing)
-"jpk" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = -32
+/area/library/abandoned)
+"rMN" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/item/grenade/chem_grenade,
-/obj/item/grenade/chem_grenade{
- pixel_x = 10;
- pixel_y = 5
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/grenade/chem_grenade{
- pixel_x = -7;
- pixel_y = 6
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/item/grenade/chem_grenade{
- pixel_x = 1;
- pixel_y = 10
+/area/medical/genetics_cloning)
+"rNg" = (
+/obj/effect/decal/remains/xeno,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"rNh" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"rNO" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/chair{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple"
+/obj/machinery/camera{
+ c_tag = "Departure Lounge West";
+ dir = 8
},
-/area/toxins/mixing)
-"jpv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"jpK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/mixing)
-"jqb" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 4;
+ icon_state = "green"
},
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"jqd" = (
+/area/hallway/secondary/exit)
+"rNX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/landmark/start{
- name = "Civilian"
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"rOm" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plating,
+/area/medical/cmo)
+"rOC" = (
+/obj/structure/table,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 5;
+ pixel_y = 10
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = -5;
+ pixel_y = 10
},
-/area/bridge/vip)
-"jqe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 5
+ },
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = -5
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/cigarettes/syndicate,
-/obj/item/lighter/zippo/engraved,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "redcorner"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/security/main)
-"jqu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/medical/biostorage)
+"rOD" = (
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/area/security/permahallway)
+"rOG" = (
+/obj/structure/showcase{
+ density = 0;
+ dir = 8;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 9;
+ pixel_y = 2
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/engine,
-/area/security/brig)
-"jrm" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 6;
+ pixel_y = 30
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"rOY" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkred"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/security/execution)
+"rPi" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 1;
+ icon_state = "darkred"
},
-/area/security/brig)
-"jrJ" = (
-/obj/machinery/computer/shuttle/trade/sol,
-/obj/machinery/door_control{
- id = "soltrader_south";
- name = "Trade Deposits Door";
- normaldoorcontrol = 1;
- pixel_x = 24;
- pixel_y = 8;
- req_access_txt = "160"
+/area/security/execution)
+"rPj" = (
+/obj/machinery/field/generator{
+ anchored = 1;
+ state = 2
},
-/obj/machinery/flasher_button{
- id = "soltraderflash";
- pixel_x = 24;
- pixel_y = -8
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"rPu" = (
+/obj/structure/chair/comfy/shuttle,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"jrP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"jrU" = (
+/area/shuttle/syndicate_sit)
+"rPE" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/civilian/pet_store)
+"rPG" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "diagonalWall3"
},
+/area/shuttle/syndicate_sit)
+"rPI" = (
+/turf/simulated/wall/rust,
+/area/toxins/mixing)
+"rPP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 1
},
-/area/security/permabrig)
-"jsJ" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/gun/projectile/automatic/pistol/enforcer/security,
-/obj/item/gun/projectile/automatic/pistol/enforcer/security,
-/obj/item/gun/projectile/automatic/pistol/enforcer/security,
-/obj/item/gun/projectile/automatic/pistol/enforcer/security,
-/obj/item/gun/projectile/automatic/pistol/enforcer/security,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
+/area/security/customs)
+"rPU" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"rQd" = (
/obj/structure/window/reinforced{
dir = 8
},
-/obj/machinery/door/window/brigdoor{
- req_access_txt = "3"
+/obj/structure/closet/secure_closet{
+ anchored = 1;
+ name = "Evidence Storage";
+ req_access_txt = "4"
},
+/obj/item/folder/red,
+/obj/item/folder/red,
+/obj/item/folder/red,
+/obj/item/storage/box/bodybags,
+/obj/item/reagent_containers/spray/cleaner,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkred"
+ dir = 9;
+ icon_state = "darkblue"
},
-/area/security/securearmoury)
-"jtd" = (
+/area/security/detectives_office)
+"rQf" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "ai1";
- name = "Turret Shutters"
+/obj/machinery/door/poddoor{
+ icon_state = "open";
+ id_tag = "transitlock";
+ name = "Transit Tube Blast Doors"
},
/turf/simulated/floor/plating,
-/area/turret_protected/aisat_interior)
-"jtr" = (
-/obj/structure/bookcase,
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
+/area/engine/aienter)
+"rQm" = (
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/main)
-"jtE" = (
-/turf/simulated/floor/plasteel{
+/area/maintenance/xenozoo)
+"rQt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
- icon_state = "redcorner"
- },
-/area/security/processing)
-"jub" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/carpet,
-/area/medical/psych)
-"juc" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel,
-/area/security/podbay)
-"jvt" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = -3
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/item/taperecorder{
- pixel_x = 5;
- pixel_y = 5
+/area/maintenance/electrical)
+"rQw" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
},
-/obj/item/analyzer{
- pixel_x = -5;
- pixel_y = 5
+/obj/machinery/button/windowtint{
+ id = "execution";
+ pixel_x = -8;
+ pixel_y = 24
},
-/obj/machinery/camera{
- c_tag = "Toxins Lab";
- dir = 5;
- network = list("Research","SS13")
+/obj/machinery/light_switch{
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple"
+ dir = 5;
+ icon_state = "darkred"
},
-/area/toxins/mixing)
-"jvK" = (
+/area/security/execution)
+"rQz" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/closet/secure_closet/warden,
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/item/megaphone,
-/obj/item/book/manual/security_space_law,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
- },
-/area/security/warden)
-"jww" = (
-/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/secondary/entry/commercial)
-"jxk" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/hallway/primary/starboard/east)
+"rQP" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "Singularity";
+ layer = 2.7;
+ name = "Singularity Blast Doors";
+ opacity = 0
},
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"rQT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/medbay3)
-"jxu" = (
-/obj/machinery/hydroponics/constructable{
- desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays.";
- name = "Prison hydroponics tray";
- using_irrigation = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/seeds/carrot,
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/cable{
+/area/medical/morgue)
+"rRf" = (
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "engineering_east_airlock";
+ pixel_y = 25;
+ req_access_txt = "10;13";
+ tag_airpump = "engineering_east_pump";
+ tag_chamber_sensor = "engineering_east_sensor";
+ tag_exterior_door = "engineering_east_outer";
+ tag_interior_door = "engineering_east_inner"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "engineering_east_sensor";
+ pixel_y = 33
+ },
+/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/light{
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"rRs" = (
+/turf/simulated/floor/wood,
+/area/maintenance/abandonedbar)
+"rRy" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/hydroponics)
+"rRA" = (
+/obj/machinery/door/airlock{
+ id_tag = "toilet1";
+ name = "Toilet"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"rRM" = (
+/obj/structure/rack,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"rRO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Chapel Morgue";
+ req_access_txt = "27"
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/permabrig)
-"jxv" = (
+/area/chapel/office)
+"rRS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- dir = 1
+/turf/simulated/floor/plating,
+/area/crew_quarters/locker)
+"rRV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/processing)
-"jxG" = (
-/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = 26
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/medical/cmo)
-"jyl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"jyC" = (
-/obj/structure/sink/kitchen{
- pixel_y = 25
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"rSa" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood{
- icon_state = "wood-broken6";
- tag = "icon-wood-broken6"
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"rSr" = (
+/obj/structure/toilet{
+ dir = 1
},
-/area/maintenance/abandonedbar)
-"jAa" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
},
-/turf/simulated/floor/plating,
-/area/bridge)
-"jAt" = (
-/obj/structure/morgue,
-/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/item/radio/intercom{
+ pixel_x = 30
+ },
+/obj/structure/curtain/open/shower/security,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/security/brigstaff)
+"rSt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"rSH" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/landmark{
- name = "revenantspawn"
- },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/morgue)
-"jAv" = (
-/obj/effect/decal/warning_stripes/southwest,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+ dir = 1;
+ icon_state = "yellowcorner"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/engine/engineering/monitor)
+"rSJ" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/engine,
-/area/security/execution)
-"jAx" = (
+/area/hallway/primary/central/south)
+"rSK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"jAB" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/closet/crate,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/area/quartermaster/storage)
-"jAF" = (
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/vending/sustenance,
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "red"
},
-/area/security/permabrig)
-"jBO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/area/security/armoury)
+"rSL" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/hallway/primary/central/west)
-"jCn" = (
+/turf/simulated/floor/plating,
+/area/crew_quarters/fitness)
+"rTm" = (
+/obj/effect/decal/warning_stripes/east,
/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"rTE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/se)
-"jCG" = (
-/obj/structure/chair{
- dir = 1
+ icon_state = "grimy"
},
+/area/crew_quarters/heads/hop)
+"rTF" = (
/obj/machinery/light{
dir = 1;
- in_use = 1
+ on = 1
},
+/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutral"
+ icon_state = "whitepurplecorner"
},
-/area/crew_quarters/fitness)
-"jCX" = (
+/area/toxins/lab)
+"rTH" = (
+/obj/structure/lattice,
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/space,
+/area/space/nearstation)
+"rTW" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Watchroom";
- name = "Watch Room Privacy Shutters"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plating,
-/area/security/permabrig)
-"jDz" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/light{
- dir = 8
+/area/medical/reception)
+"rUa" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/closet/walllocker/emerglocker/north{
- pixel_x = -32;
- pixel_y = 0
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"jDH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/girder,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/engine/gravitygenerator)
+"rUr" = (
+/mob/living/simple_animal/hostile/carp/megacarp{
+ desc = "Странная космическая акула, летающая неподалёку от станции. Многие поговаривают, что данное существо - аватар могущественного блю-спейс божества";
+ faction = list("carp","neutral");
+ name = "Странная Космическая Акула"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"jDQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/space,
+/area/space)
+"rUs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/turret_protected/aisat)
+"rUu" = (
+/obj/structure/safe/floor,
+/obj/item/melee/cultblade,
+/obj/item/restraints/legcuffs/bola/cult,
+/obj/item/whetstone/cult,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+ icon_state = "grimy"
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"jDT" = (
-/obj/machinery/door/airlock/external{
- id_tag = "s_docking_airlock";
- name = "Shuttle Airlock";
- req_access_txt = "150"
+/area/library/abandoned)
+"rUC" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/engine/gravitygenerator)
+"rUE" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "syndicate_sit_1";
- name = "Side Hull Door";
- opacity = 0;
- req_access_txt = "150"
+/area/crew_quarters/hor)
+"rUF" = (
+/obj/effect/landmark/start{
+ name = "Virologist"
},
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 3;
- height = 5;
- id = "sit";
- name = "SIT shuttle";
- roundstart_move = "sit_away";
- width = 11
+/obj/structure/chair/office/dark{
+ dir = 8
},
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 3;
- height = 5;
- id = "sit_arrivals";
- name = "South-East Solars";
- width = 11
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/fans/tiny,
-/obj/machinery/door_control{
- id = "syndicate_sit_1";
- name = "Blast Doors";
- pixel_y = -23;
- req_access_txt = "150"
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/syndicate_sit)
-"jFc" = (
-/obj/effect/decal/warning_stripes/southwest,
-/obj/structure/closet/walllocker/emerglocker/north{
- pixel_x = -30;
- pixel_y = -32
+/area/medical/virology)
+"rUS" = (
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"jFg" = (
-/turf/simulated/wall,
-/area/security/prisonlockers)
-"jFH" = (
-/turf/simulated/wall/r_wall,
-/area/security/processing)
-"jFS" = (
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "Perma12";
- name = "First Cell Perma Bolts";
- normaldoorcontrol = 1;
- pixel_x = -6;
- pixel_y = 24;
- req_access_txt = "2";
- specialfunctions = 4
+/area/maintenance/gambling_den)
+"rVa" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "Perma11";
- name = "First Cell Brig Bolts";
- normaldoorcontrol = 1;
- pixel_x = 6;
- pixel_y = 24;
- req_access_txt = "2";
- specialfunctions = 4
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"rVb" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/rods{
+ amount = 8
},
-/obj/machinery/flasher_button{
- id = "Perma1";
- layer = 4;
- name = "Prison Flasher";
- pixel_y = 32
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"rVe" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"rVf" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
-"jGf" = (
-/obj/structure/closet/secure_closet/security,
+/area/engine/aienter)
+"rVi" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/security/prison/cell_block/A)
+"rVp" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
+/area/shuttle/syndicate_sit)
+"rVw" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/engineering{
+ name = "Tech Storage";
+ req_access_txt = "23"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/storage/tech)
+"rVP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Corporate Lounge";
+ req_one_access_txt = "19"
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/item/clothing/mask/balaclava,
+/turf/simulated/floor/wood,
+/area/assembly/showroom)
+"rVS" = (
+/obj/machinery/door/airlock/silver{
+ name = "Captain's Bathroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/crew_quarters/captain/bedroom)
+"rWt" = (
+/obj/structure/chair{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
+ dir = 8;
icon_state = "red"
},
-/area/security/customs)
-"jGi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/processing)
+"rWu" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Virology";
+ name = "Virology Shutters"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plating,
+/area/medical/virology)
+"rWO" = (
+/obj/structure/window/plasmareinforced{
+ color = "#FF0000";
+ dir = 1
+ },
+/obj/structure/chair/comfy/shuttle{
dir = 4
},
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"rWW" = (
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/security/main)
+"rXc" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "atmo_tank_airlock";
+ name = "interior access button";
+ pixel_x = -20;
+ pixel_y = 20;
+ req_access_txt = "32"
+ },
/obj/item/radio/intercom{
+ pixel_x = 30;
pixel_y = 24
},
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"rXo" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ dir = 10;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/crew_quarters/sleep)
-"jGR" = (
-/obj/machinery/light/small{
- dir = 8
+/area/medical/biostorage)
+"rXq" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "caution"
},
-/obj/structure/girder,
+/area/engine/break_room)
+"rYp" = (
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
+/area/maintenance/portsolar)
+"rYz" = (
+/obj/structure/chair/wood/wings{
+ dir = 8;
+ tag = "icon-wooden_chair_wings (WEST)"
+ },
+/turf/simulated/floor/wood,
/area/maintenance/fsmaint2{
name = "Tourist Area Maintenance"
})
-"jHN" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- name = "standard air scrubber";
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/permabrig)
-"jIv" = (
+"rYG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/security/processing)
-"jIV" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 30
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/obj/machinery/light{
- dir = 1;
- on = 1
+/area/medical/reception)
+"rYY" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
},
+/area/lawoffice)
+"rZe" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkred"
- },
-/area/security/prisonershuttle)
-"jJr" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/medical/virology/lab)
-"jLb" = (
-/obj/machinery/door_control{
- id = "soltrader_north";
- name = "Trade Deposits Door";
- normaldoorcontrol = 1;
- pixel_x = 24;
- pixel_y = -8;
- req_access_txt = "160"
+ icon_state = "caution"
},
-/obj/machinery/door_control{
- id = "trader_privacy";
- name = "Privacy Shutters Control";
- pixel_x = 24;
- pixel_y = 8;
- req_access_txt = "160"
+/area/engine/break_room)
+"rZo" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "caution"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"jLH" = (
-/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+/area/engine/break_room)
+"rZz" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"jMm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"rZF" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/vending/wallmed{
+ pixel_x = -28
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "red"
},
-/area/hallway/primary/central/nw)
-"jMs" = (
+/area/security/lobby)
+"rZI" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
+ dir = 8;
icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/medbay2)
-"jMO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ tag = "icon-whiteblue (WEST)"
},
+/area/medical/medbay3)
+"rZN" = (
+/obj/structure/delta_statue/e,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "vault";
+ tag = "icon-vault (WEST)"
},
-/area/medical/medbay2)
-"jNF" = (
-/obj/item/twohanded/required/kirbyplants,
+/area/bridge/vip)
+"rZU" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"sag" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/chapel/main)
+"san" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno4";
+ name = "Creature Cell #4";
+ opacity = 0
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Creature Pen";
+ req_access_txt = "47"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
- })
-"jOd" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- tag = "icon-swall12"
+/area/toxins/xenobiology)
+"saA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/shuttle/pod_4)
-"jOo" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "caution"
+ },
+/area/engine/break_room)
+"saS" = (
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "neutral"
},
-/area/hallway/primary/central/nw)
-"jOq" = (
-/obj/structure/disposalpipe/segment,
+/area/crew_quarters/courtroom)
+"saY" = (
/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ dir = 1;
+ icon_state = "rampbottom";
+ tag = "icon-stage_stairs"
},
-/area/security/brig)
-"jPm" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/medical/cmo)
-"jPB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/research{
+ name = "Research Division"
+ })
+"sbb" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "caution"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/atmos)
+"sbc" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
+/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "caution"
},
-/area/bridge/vip)
-"jQq" = (
+/area/atmos)
+"sbf" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the RD's goons from the safety of his office.";
+ name = "Research Monitor";
+ network = list("Research","Research Outpost","RD");
+ pixel_y = 2
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkred"
- },
-/area/security/warden)
-"jQA" = (
-/obj/effect/decal/cleanable/blood/xeno,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ icon_state = "white"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/crew_quarters/hor)
+"sbj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/maintenance/gambling_den)
-"jRV" = (
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"sbn" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkred"
+ icon_state = "neutral"
},
-/area/security/warden)
-"jSh" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "Virology";
- name = "Virology Shutters"
+/area/storage/tech)
+"sbq" = (
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_y = 32
},
-/turf/simulated/floor/plating,
-/area/medical/virology)
-"jSV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"sbt" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/item/aicard,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/storage/tech)
+"sbD" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 8
},
+/obj/item/analyzer,
+/obj/item/analyzer,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"sbF" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "grimy"
},
-/area/security/brig)
-"jTa" = (
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Antechamber";
- req_access_txt = "75"
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"sbR" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/disposal,
+/obj/machinery/requests_console{
+ department = "Primary Tool Storage";
+ name = "Primary Tool Storage Console";
+ pixel_y = 30
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"scg" = (
+/obj/machinery/mineral/labor_claim_console{
+ machinedir = 1;
+ pixel_x = 30
},
+/turf/simulated/shuttle/floor,
+/area/shuttle/siberia)
+"sci" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/aisat)
-"jTk" = (
+/area/turret_protected/ai)
+"scl" = (
+/obj/machinery/door/window/westright{
+ name = "Front Desk";
+ req_access_txt = "37"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/library)
+"scn" = (
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ dir = 8;
+ icon_state = "red"
},
-/area/hallway/secondary/entry/commercial)
-"jTU" = (
-/obj/machinery/power/treadmill{
- dir = 8
+/area/security/processing)
+"sct" = (
+/obj/machinery/status_display{
+ pixel_y = -32
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"scx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"scD" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/maintenance/gambling_den)
+"scP" = (
/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+ icon_state = "red"
},
-/area/security/prison/cell_block/A)
-"jUp" = (
+/area/security/securehallway)
+"scS" = (
+/obj/item/radio/intercom,
+/turf/simulated/wall,
+/area/medical/ward)
+"scT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/area/security/prison/cell_block/A)
-"jUM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2)
+"scZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atm{
- pixel_y = 32
+ dir = 9
},
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"sdb" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "whitegreencorner"
},
-/area/crew_quarters/locker)
-"jVD" = (
+/area/medical/virology)
+"sdj" = (
+/obj/structure/table,
+/obj/item/flashlight/lamp,
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple"
+ icon_state = "4-8"
},
-/area/toxins/misc_lab)
-"jVL" = (
-/obj/effect/decal/remains/human,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/gambling_den)
-"jWl" = (
-/obj/machinery/power/treadmill{
- dir = 8
+ icon_state = "yellowfull"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/maintenance/electrical)
+"sdz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/prison/cell_block/A)
-"jWq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ icon_state = "dark"
},
+/area/security/permabrig)
+"sdF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/toxins/mixing)
-"jWA" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1
+/area/medical/reception)
+"sdY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"see" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light,
-/turf/simulated/floor/plating,
-/area/maintenance/electrical)
-"jWD" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A40";
- location = "A39"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"jXd" = (
-/obj/structure/table,
-/obj/item/storage/box/prisoner{
- pixel_x = 2;
- pixel_y = 3
+/obj/structure/chair{
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ dir = 4;
+ icon_state = "green"
},
-/area/security/prisonlockers)
-"jYe" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics";
- req_access_txt = "35"
+/area/hallway/secondary/exit)
+"sei" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light{
+ dir = 8
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "darkred"
},
-/area/hydroponics)
-"jYz" = (
-/obj/machinery/door_control{
- desc = "A remote control-switch for the pod doors.";
- id = "secpodbay";
- name = "Pod Door Control";
- pixel_x = 26;
- pixel_y = -7
+/area/security/securearmoury)
+"sek" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"seo" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/camera{
- c_tag = "Hangar East North";
- dir = 8
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkyellow"
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Briefing";
+ name = "Briefing Room Shutters"
},
-/area/engine/mechanic_workshop/hanger)
-"jYQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plating,
+/area/security/main)
+"sez" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/machinery/newscaster{
+ pixel_x = -32
},
-/obj/machinery/shower{
- dir = 1
+/turf/simulated/floor/wood,
+/area/library)
+"seF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
- icon_state = "whitehall"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/toxins/xenobiology)
-"jYY" = (
-/obj/structure/window/reinforced,
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 10";
- dir = 6;
- network = list("SS13","MiniSat")
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"jZL" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
+/area/toxins/misc_lab)
+"seJ" = (
+/obj/effect/spawner/random_spawners/oil_maybe,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"seM" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/aisat_interior)
-"kaf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/crew_quarters/kitchen)
+"sfq" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
})
-"kaz" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"sfI" = (
+/obj/machinery/camera{
+ c_tag = "Experimention Lab";
+ dir = 1;
+ network = list("Research","SS13")
},
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "dark"
},
-/area/security/prisonlockers)
-"kaD" = (
-/obj/structure/window/reinforced,
+/area/toxins/explab)
+"sfU" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+ icon_state = "whitepurple"
},
-/area/crew_quarters/fitness)
-"kaE" = (
-/obj/structure/table,
-/obj/item/book/manual/security_space_law,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/area/toxins/misc_lab)
+"sfV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/lobby)
-"kaO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/brig)
-"kaX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
+ icon_state = "white"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/medbay3)
+"sgo" = (
+/obj/machinery/vending/wallmed{
+ pixel_y = 30
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurplecorner"
- },
-/area/crew_quarters/hor)
-"kbd" = (
-/obj/machinery/hydroponics/constructable{
- desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays.";
- name = "Prison hydroponics tray";
- using_irrigation = 1
+ icon_state = "neutralcorner"
},
-/obj/item/seeds/chili,
-/obj/item/radio/intercom{
- pixel_x = 28;
- pixel_y = -8
+/area/bridge/vip)
+"sgu" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
},
+/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ dir = 6;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (SOUTHEAST)"
},
-/area/security/permabrig)
-"kbT" = (
+/area/toxins/misc_lab)
+"sgw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitegreencorner"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"kci" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
+/area/medical/virology)
+"sgK" = (
+/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Brig Public Hallway";
- dir = 8;
- network = list("SS13","Security")
+ dir = 1;
+ in_use = 1
},
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/lobby)
-"kcq" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/computer/mob_healer_terminal,
-/obj/structure/table,
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"kfc" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"sgM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/securearmoury)
-"kfh" = (
-/obj/item/trash/pistachios,
-/turf/simulated/floor/carpet,
-/area/maintenance/abandonedbar)
-"kfi" = (
+/area/storage/primary)
+"sgX" = (
+/obj/machinery/vending/cola,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/bridge/vip)
+"sha" = (
+/obj/item/twohanded/required/kirbyplants,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door_timer/cell_4{
- pixel_y = 0
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/turf/simulated/floor/plasteel{
- icon_state = "red"
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/security/prison/cell_block/A)
-"kfn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/main)
-"kfz" = (
+/area/security/hos)
+"sic" = (
+/turf/simulated/floor/greengrid,
+/area/maintenance/xenozoo)
+"sid" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/engine/mechanic_workshop)
-"kfF" = (
-/turf/simulated/wall/r_wall,
-/area/security/medbay)
-"kfX" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
-/obj/structure/showcase,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/warden)
-"kgz" = (
-/obj/machinery/light/small{
- dir = 1
+ icon_state = "white"
},
-/obj/structure/rack{
+/area/medical/research/shallway)
+"sil" = (
+/turf/simulated/floor/plasteel{
dir = 8;
- layer = 2.9
- },
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"kgB" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal,
-/obj/item/clothing/glasses/welding,
-/obj/item/weldingtool,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate_sit)
-"kht" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"khY" = (
-/obj/structure/chair,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+ icon_state = "neutralcorner"
},
-/obj/structure/sign/vacuum{
- pixel_x = -32
+/area/crew_quarters/fitness)
+"sio" = (
+/obj/machinery/door/poddoor/shutters{
+ id_tag = "roboticsshutters";
+ name = "Mech Bay Shutters"
},
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -28;
- pixel_y = 28
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"kjn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/carpet,
-/area/hallway/secondary/entry/louge)
-"kjC" = (
-/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"sip" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "4-8"
},
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "ai1";
- name = "Turret Shutters"
- },
-/turf/simulated/floor/plating,
-/area/turret_protected/aisat_interior)
-"kjF" = (
-/obj/machinery/camera{
- c_tag = "Research Chemical Maintance Access";
- dir = 6;
- network = list("Research","SS13")
- },
-/obj/machinery/light/small{
- dir = 1
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whitepurple"
- },
-/area/toxins/explab)
-"kka" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+ dir = 8;
+ icon_state = "darkredcorners"
},
+/area/security/execution)
+"six" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/medical/research{
- name = "Research Division"
- })
-"kkd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/hallway/primary/central/nw)
+"siH" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/turret_protected/ai)
-"kkK" = (
-/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/aft)
+"siJ" = (
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light,
/turf/simulated/floor/plating,
-/area/hallway/primary/central/ne)
-"kkV" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+/area/maintenance/electrical)
+"siL" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"siM" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/storage/primary)
+"sja" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/lobby)
-"klj" = (
-/obj/machinery/computer/prisoner,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/requests_console{
- department = "Warden";
- departmentType = 7;
- name = "Warden's Requests Console";
- pixel_x = 32
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
- },
-/area/security/warden)
-"kln" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"klv" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ icon_state = "red"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/security/customs)
+"sjm" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/area/hydroponics)
-"klw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/secondary/entry/louge)
-"kmh" = (
+/area/assembly/chargebay)
+"sjs" = (
+/turf/simulated/wall/rust,
+/area/maintenance/abandonedbar)
+"sjQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"sjW" = (
+/obj/structure/sign/science,
+/turf/simulated/wall/r_wall,
+/area/medical/research/nhallway)
+"skp" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"skw" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_l";
+ tag = "icon-propulsion_l"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/vox)
+"sky" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Pods";
+ req_access_txt = "71"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkred"
},
+/area/security/podbay)
+"skB" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+/obj/effect/landmark{
+ name = "lightsout"
},
-/area/medical/cmo)
-"kmD" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/navbeacon{
- codes_txt = "delivery";
- location = "Chapel"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/structure/plasticflaps{
- opacity = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/chapel/main)
-"kmU" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "ai_inner";
- locked = 1;
- name = "MiniSat External Access";
- req_access = null;
- req_access_txt = "75;13"
+/area/hallway/primary/central/nw)
+"skZ" = (
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway East 1";
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "neutralcorner"
},
-/area/construction/hallway)
-"kna" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/hallway/primary/central/se)
+"slb" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/public/glass,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/aft)
+"sll" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Library"
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/main)
-"knb" = (
-/obj/structure/chair,
-/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ icon_state = "dark"
+ },
+/area/library)
+"sln" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/fitness)
-"kny" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Watchroom";
- name = "Watch Room Privacy Shutters"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"knA" = (
-/obj/effect/decal/warning_stripes/south,
+/area/medical/sleeper)
+"slr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/security/securearmoury)
-"knF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"kox" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/checkpoint2)
-"koC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ req_access_txt = "19"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/security/glass{
- name = "High Sec Area";
- req_access_txt = "1"
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 8;
+ icon_state = "vault"
},
-/area/security/brig)
-"koK" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/quartermaster/delivery)
-"kpE" = (
-/obj/machinery/light/small{
- dir = 8
+/area/bridge)
+"slv" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -3;
+ pixel_y = -2
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = 3;
+ pixel_y = 2
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"kpG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/door/poddoor/shutters{
+ id_tag = "ShootRange";
+ name = "Shooting Range Shutters"
},
/turf/simulated/floor/plasteel{
dir = 1
},
-/area/security/processing)
-"kpV" = (
-/obj/structure/table/reinforced,
-/obj/item/radio/intercom{
- pixel_x = -28
+/area/security/range)
+"slF" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/item/camera,
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/magistrateoffice)
+"slQ" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/securehallway)
+"smb" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkblue"
+ icon_state = "vault"
},
-/area/turret_protected/aisat)
-"krc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/east,
+/area/turret_protected/ai_upload)
+"sme" = (
+/turf/simulated/wall,
+/area/security/checkpoint)
+"smf" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
+ },
+/area/engine/hardsuitstorage)
+"smu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"kri" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"krI" = (
-/obj/structure/chair/comfy/red{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
+ },
+/area/medical/genetics_cloning)
+"smw" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "bcarpet05"
+ dir = 1
},
-/area/security/prison/cell_block/A)
-"krO" = (
+/area/security/processing)
+"smD" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay2)
+"sno" = (
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway East 2";
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/se)
+"snq" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkbluefull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/chair/office/dark{
+ dir = 1
},
-/area/turret_protected/aisat_interior)
-"ksr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/bridge)
+"snF" = (
+/turf/space,
+/turf/simulated/wall/r_wall,
+/area/medical/virology)
+"snP" = (
+/turf/simulated/wall,
+/area/maintenance/disposal)
+"soa" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ icon_state = "4-8"
},
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/area/security/prisonlockers)
-"kss" = (
+/turf/simulated/floor/plating,
+/area/security/securehallway)
+"sod" = (
+/obj/structure/rack,
/obj/machinery/light/small{
- dir = 8
+ dir = 4;
+ pixel_y = 8
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
-"ktB" = (
+"sok" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/west)
+"sot" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/structure/window/reinforced,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+ icon_state = "darkblue"
},
-/area/security/main)
-"ktI" = (
+/area/bridge)
+"sov" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
+ external_pressure_bound = 100;
on = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/execution)
-"ktJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/rack{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/west)
+"soz" = (
+/obj/machinery/door/airlock/hatch/gamma{
+ locked = 1;
+ req_access_txt = "1";
+ use_power = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/structure/fans/tiny,
+/turf/simulated/floor/plating,
+/area/security/securehallway)
+"soE" = (
+/obj/structure/cable{
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"ktO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/se)
-"kvr" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "darkred"
},
-/area/security/brig)
-"kvP" = (
-/obj/machinery/light/small{
+/area/security/execution)
+"soL" = (
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
+"soM" = (
+/obj/structure/window/reinforced{
dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"kvY" = (
-/obj/machinery/slot_machine,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"kwl" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/medical/cryo)
-"kwq" = (
-/obj/structure/window/reinforced{
- dir = 4
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
},
-/obj/structure/window/reinforced{
- dir = 8
+/area/crew_quarters/fitness)
+"soV" = (
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkblue"
},
-/turf/simulated/floor/plating,
-/area/chapel/main)
-"kws" = (
+/area/medical/surgery1)
+"spe" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaCellsLockdown";
- name = "Perma Cells Lockdown"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno5";
+ name = "Creature Cell #5";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/security/permabrig)
-"kxa" = (
-/obj/machinery/computer/crew,
-/obj/machinery/computer/guestpass{
- pixel_y = -32
+/area/toxins/xenobiology)
+"sps" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 100;
+ on = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/crew_quarters/courtroom)
+"spv" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "darkblue"
},
-/area/medical/reception)
-"kym" = (
-/obj/machinery/suit_storage_unit/engine,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/status_display{
- pixel_y = 32
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"spC" = (
+/obj/structure/chair/office/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
},
-/obj/machinery/camera{
- c_tag = "Engineering Storage 2";
- dir = 6;
- network = list("Engineering","SS13")
+/area/medical/cmo)
+"spH" = (
+/obj/structure/closet/secure_closet/RD,
+/obj/effect/decal/warning_stripes/northeast,
+/obj/item/megaphone,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"spK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/hardsuitstorage)
-"kyn" = (
-/obj/effect/decal/warning_stripes/west,
+/area/engine/mechanic_workshop/expedition)
+"spR" = (
+/obj/structure/crematorium,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/main)
-"kyY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/chapel/office)
+"spS" = (
+/obj/structure/bookcase,
+/obj/item/book/manual/sop_engineering,
+/obj/item/book/manual/sop_medical,
+/obj/item/book/manual/sop_science,
+/obj/item/book/manual/sop_security,
+/obj/item/book/manual/sop_service,
+/obj/item/book/manual/sop_supply,
+/obj/item/book/manual/sop_general,
+/obj/item/book/manual/sop_legal,
+/obj/item/book/manual/sop_command,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/lawoffice)
+"spW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"kze" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"kzN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/light/small{
- dir = 1
+/area/chapel/office)
+"sqs" = (
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+ dir = 8;
+ icon_state = "red"
},
-/area/security/prison/cell_block/A)
-"kAe" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
+/area/security/range)
+"sqK" = (
+/obj/structure/chair{
+ dir = 4
},
-/area/engine/engineering)
-"kAF" = (
-/obj/structure/computerframe,
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"kAL" = (
/obj/machinery/light{
- dir = 4
+ dir = 8
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/ignition_switch{
- id = "toxinsigniter";
- pixel_x = 24;
- pixel_y = -9
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -28
},
-/obj/machinery/door_control{
- id = "ToxinsVenting";
- name = "Toxin Venting Control";
- pixel_x = 25
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"sqO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/toxins/mixing)
-"kAY" = (
+/area/hallway/secondary/exit)
+"sqY" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/brig)
-"kCg" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/security/permabrig)
-"kCE" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "Interrogation";
- name = "Interrogation Privacy Shutters"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
- },
-/turf/simulated/floor/plating,
-/area/security/processing)
-"kCF" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/suit/armor/riot,
-/obj/item/shield/riot,
-/obj/item/clothing/head/helmet/riot,
-/obj/machinery/door/window{
- dir = 2;
- name = "Secure Armory";
- req_access_txt = "1"
+ icon_state = "1-4"
},
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "darkbluecorners"
},
-/area/security/securearmoury)
-"kCZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/bridge)
+"sqZ" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
+ dir = 4;
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/east)
-"kEp" = (
+/area/hallway/primary/central/sw)
+"srd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/medical/medbay3)
-"kFO" = (
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/shuttle/syndicate_sit)
-"kGg" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"kGl" = (
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/brig)
-"kGQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ dir = 8;
+ icon_state = "vault"
},
+/area/bridge)
+"srp" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/processing)
-"kGY" = (
-/turf/simulated/wall,
-/area/crew_quarters/cabin2)
-"kHa" = (
-/obj/machinery/door/window/brigdoor/southleft{
- base_state = "rightsecure";
- dir = 4;
- icon_state = "rightsecure";
- req_access_txt = "63"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/evidence)
-"kHk" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/table/reinforced,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/main)
-"kHs" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/office/light{
- dir = 4;
- pixel_y = 3
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"kIa" = (
+/area/bridge/vip)
+"srA" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/medical/research/nhallway)
+"srI" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "4-8"
},
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"kIp" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- name = "Robotics Junction";
- sortType = 14
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ req_access_txt = "19"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "vault"
},
-/area/medical/research{
- name = "Research Division"
- })
-"kJc" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+/area/bridge)
+"srP" = (
+/obj/machinery/light,
+/obj/structure/chair/sofa{
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/construction/hallway)
-"kJB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hallway/primary/central/west)
+"srS" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/light{
dir = 4
},
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light_switch{
+ pixel_x = 25
+ },
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ icon_state = "dark"
},
-/area/hallway/secondary/entry/commercial)
-"kJY" = (
-/obj/structure/disposalpipe/segment,
+/area/security/prisonershuttle)
+"srW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/port)
+"srZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/door/morgue{
+ name = "Chapel Morgue";
+ req_access_txt = "22"
},
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"kKQ" = (
-/obj/structure/table/reinforced,
-/obj/item/gps,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/chapel/office)
+"ssj" = (
+/obj/machinery/space_heater,
/turf/simulated/floor/plating,
/area/maintenance/starboard{
name = "Engineering Maintenance"
})
-"kLF" = (
+"sss" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -112775,84 +109669,32 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/medical/medbay)
-"kLP" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ dir = 8;
+ icon_state = "bluecorner"
},
-/area/atmos)
-"kMd" = (
+/area/hallway/primary/central/ne)
+"stf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/processing)
-"kMl" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/evidence)
-"kMm" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"kMn" = (
-/obj/item/flag,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"kMC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/twohanded/required/kirbyplants,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "green"
- },
-/area/hallway/secondary/exit)
-"kNk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"kNv" = (
+/area/hallway/primary/central/east)
+"stl" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -112860,1243 +109702,1274 @@
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+ dir = 4;
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Armory_North";
- location = "Armory_sprava"
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ icon_state = "pipe-j2s";
+ name = "HoP Office";
+ sortType = 15
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "neutralfull"
},
-/area/security/securearmoury)
-"kOF" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/science{
- pixel_x = 32;
- pixel_y = 32
+/area/hallway/primary/central/ne)
+"stC" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
},
-/area/hallway/primary/aft)
-"kPn" = (
+/area/medical/sleeper)
+"stI" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"kPC" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"kPJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 1;
+ icon_state = "open";
+ id_tag = "brig_detprivacy";
+ name = "Detective Privacy Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"stT" = (
+/obj/structure/rack{
dir = 8;
- on = 1
+ layer = 2.9
},
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/item/gun/energy/gun{
+ pixel_x = -3;
+ pixel_y = 3
},
-/area/medical/medbay3)
-"kRE" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23
+/obj/item/gun/energy/gun,
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = -3
},
+/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
-"kSt" = (
-/turf/simulated/wall,
-/area/crew_quarters/cabin4)
-"kSE" = (
+/area/security/securearmoury)
+"stV" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 1;
+ icon_state = "open";
+ id_tag = "brig_detprivacy";
+ name = "Detective Privacy Shutters";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/security/permabrig)
-"kSH" = (
+/area/security/detectives_office)
+"suf" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/cable{
- d1 = 1;
+/area/maintenance/gambling_den)
+"sui" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/security/medbay)
-"kSR" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"kSW" = (
-/turf/simulated/wall,
-/area/security/securearmoury)
-"kUQ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"sum" = (
+/obj/structure/chair{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay2)
-"kUR" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/requests_console{
- department = "Hydroponics";
- departmentType = 2;
- name = "Hydroponics Requests Console";
- pixel_y = -32
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/hydroponics)
-"kVR" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 26
+/area/crew_quarters/courtroom)
+"sut" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
},
+/area/security/brigstaff)
+"suE" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
+/turf/simulated/wall,
+/area/medical/paramedic)
+"suJ" = (
+/obj/structure/closet/secure_closet/medical2,
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/turf/simulated/floor/plating,
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"kVT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
+/area/medical/surgery1)
+"suL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 6
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/area/security/main)
-"kWc" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/captain)
+"suV" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "Kitchen Windows";
- name = "Kitchen Privacy Shutters"
- },
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "0-2"
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/kitchen)
-"kWY" = (
-/obj/structure/table,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 1;
+ icon_state = "open";
+ id_tag = "brig_detprivacy";
+ name = "Detective Privacy Shutters";
+ opacity = 0
},
-/obj/item/taperecorder{
- pixel_y = 6
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"suW" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 6;
icon_state = "red"
},
-/area/security/processing)
-"kXX" = (
-/obj/structure/window/reinforced{
- dir = 8
+/area/security/armoury)
+"svh" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/structure/table,
-/obj/structure/bedsheetbin,
-/turf/simulated/floor/plasteel{
- icon_state = "red"
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "RD Junction";
+ sortType = 13
},
-/area/security/permabrig)
-"kYQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/table/reinforced,
+/obj/item/aicard,
+/obj/item/circuitboard/aicore,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"svD" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurple"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/toxins/misc_lab)
+"svL" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
},
+/area/security/range)
+"svM" = (
+/obj/effect/decal/warning_stripes/north,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/crew_quarters/sleep)
-"kZD" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker/waterbottle,
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- pixel_x = -5
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/area/security/permabrig)
-"kZO" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"kZZ" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/hallway/secondary/exit)
+"svX" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 1;
+ icon_state = "open";
+ id_tag = "lawyer";
+ name = "Internal Affairs Privacy Shutters";
+ opacity = 0
},
-/area/assembly/robotics)
-"lap" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"laB" = (
+/area/lawoffice)
+"sws" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/smes,
-/obj/machinery/light/small{
- dir = 1
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/starboardsolar)
-"laF" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"swx" = (
+/obj/structure/table/wood,
+/obj/item/ashtray/bronze,
+/obj/item/storage/fancy/cigarettes/dromedaryco,
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"swI" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "sw_maint2_outer";
+ locked = 1;
+ name = "West Maintenance External Access";
+ req_access = null
},
+/obj/effect/decal/warning_stripes/west,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "browncorner"
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"swQ" = (
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
},
-/area/security/prisonlockers)
-"lbf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Cell Block";
+ req_access_txt = "63"
},
-/area/medical/sleeper)
-"lbD" = (
-/obj/structure/window/reinforced{
- dir = 4
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkred"
},
-/obj/structure/window/reinforced{
+/area/security/prison/cell_block/A)
+"swV" = (
+/obj/structure/window/reinforced,
+/obj/structure/chair/office/dark{
dir = 8
},
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/grassybush,
-/turf/simulated/floor/grass,
-/area/medical/cryo)
-"lbM" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry/eastarrival)
-"lch" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkblue"
},
-/area/hallway/primary/aft)
-"ldR" = (
-/obj/effect/spawner/window/reinforced,
+/area/medical/morgue)
+"swW" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "1-8"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "ai2";
- name = "Turret Shutters"
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
+"sxk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain/bedroom)
+"sxn" = (
+/obj/machinery/photocopier,
+/obj/effect/decal/warning_stripes/red,
+/turf/simulated/floor/plasteel{
+ dir = 1
},
+/area/security/main)
+"sxp" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"lec" = (
-/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"sxt" = (
+/obj/effect/decal/warning_stripes/southeastcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"lev" = (
+/area/chapel/main)
+"sxH" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "grimy"
},
-/area/security/main)
-"lfd" = (
+/area/library)
+"sxJ" = (
+/obj/structure/table/wood,
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 1;
+ icon_state = "right";
+ name = "Captain's Desk Door";
+ req_access_txt = "20"
+ },
+/obj/item/folder/blue,
+/obj/item/stamp/captain,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/captain)
+"sxM" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/pen,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/engine/mechanic_workshop)
-"lfh" = (
-/obj/effect/landmark/start{
- name = "Cyborg"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plasteel{
+ icon_state = "carpet"
+ },
+/area/crew_quarters/courtroom)
+"sxO" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 1;
+ icon_state = "right";
+ name = "Captain's Desk Door";
+ req_access_txt = "20"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"lfQ" = (
+/area/crew_quarters/captain)
+"sxS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"sxW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/junction,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "grimy"
},
-/area/security/brig)
-"lgx" = (
-/obj/effect/decal/warning_stripes/northeast,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/security/hos)
+"sxX" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/toy/figure/ian,
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 28
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"sxZ" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
+/obj/item/storage/secure/briefcase,
+/obj/item/storage/lockbox/medal,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
+ },
+/area/crew_quarters/captain)
+"syf" = (
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/area/engine/mechanic_workshop/hanger)
-"lgH" = (
-/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 1;
+ icon_state = "darkredcorners"
},
-/area/security/permabrig)
-"lgN" = (
-/obj/effect/spawner/window/reinforced,
+/area/security/warden)
+"syj" = (
/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"lhe" = (
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 9";
- dir = 6;
- network = list("SS13","MiniSat")
- },
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
+/area/maintenance/port{
+ name = "Brig Maintenance"
})
-"lhC" = (
-/obj/machinery/camera{
- c_tag = "Research Test Chamber";
- dir = 4;
- network = list("TestChamber","SS13","Research")
- },
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"lhS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/wall/r_wall,
-/area/tcommsat/chamber)
-"lhV" = (
-/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+"sys" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"syB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "vault"
+ dir = 1
},
-/area/engine/mechanic_workshop)
-"lia" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/beach/water{
- icon_state = "seadeep"
+/area/security/main)
+"syC" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/crew_quarters/fitness)
-"lin" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/aisat)
-"liE" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/engine/controlroom)
-"ljm" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/item/reagent_containers/spray/pepper{
- pixel_x = -9;
- pixel_y = 5
- },
-/obj/item/flash{
- pixel_x = 1;
- pixel_y = 6
- },
-/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{
- pixel_x = 5;
- pixel_y = -3
- },
+/area/security/permabrig)
+"szb" = (
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkred"
+ dir = 1
},
/area/security/processing)
-"ljn" = (
-/turf/simulated/floor/wood,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"ljp" = (
+"szc" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"szd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/security/execution)
-"ljy" = (
-/obj/effect/decal/warning_stripes/eastnorthwest,
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/light{
- dir = 8
+/area/medical/genetics)
+"szM" = (
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkred"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"lke" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/security/securearmoury)
+"szQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"szR" = (
+/turf/simulated/wall/r_wall,
+/area/chapel/office)
+"szY" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Genetics Junction";
+ sortType = 23
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "ai1";
- name = "Turret Shutters"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/plating,
-/area/turret_protected/aisat_interior)
-"lkC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/turf/simulated/floor/plasteel{
+ icon_state = "purplecorner"
},
+/area/hallway/primary/aft)
+"sAv" = (
+/obj/machinery/light/small,
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"llM" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/starboardsolar)
-"lmG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = -32
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/aft)
+"sAI" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"lnf" = (
-/obj/structure/table,
-/obj/machinery/light,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell,
-/obj/item/phone{
- pixel_x = -3;
- pixel_y = 3
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior Arrivals";
+ dir = 6;
+ network = list("SS13","MiniSat")
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 1;
+ icon_state = "darkblue"
},
-/area/medical/ward)
-"lnt" = (
-/obj/effect/landmark/start{
- name = "Security Officer"
+/area/construction/hallway)
+"sAQ" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel{
+ icon_state = "darkred"
},
+/area/security/podbay)
+"sAT" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/aft)
+"sBd" = (
+/obj/machinery/mech_bay_recharge_port{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/securearmoury)
+"sBk" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/camera{
+ c_tag = "Brig Storage";
+ dir = 5;
+ network = list("SS13","Security")
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/customs)
-"lnB" = (
-/turf/simulated/wall,
-/area/crew_quarters/mrchangs)
-"lnI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/area/security/permahallway)
+"sBl" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"sBx" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/reagent_containers/dropper/precision,
+/obj/item/reagent_containers/dropper/precision,
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/dropper,
+/obj/item/storage/box/pillbottles,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/storage/box/beakers,
+/obj/item/storage/box/beakers,
+/obj/item/storage/box/syringes,
+/obj/item/storage/box/syringes,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/area/toxins/misc_lab)
+"sBL" = (
+/turf/simulated/wall/r_wall,
+/area/security/main)
+"sBX" = (
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/machinery/computer/station_alert,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/chief)
+"sCb" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitered"
+ },
+/area/security/medbay)
+"sCf" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/disposal,
+/obj/structure/window/plasmareinforced{
+ dir = 8
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/engine,
+/area/toxins/misc_lab)
+"sCp" = (
+/obj/machinery/light,
+/obj/structure/filingcabinet,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
},
+/area/magistrateoffice)
+"sCt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"sCy" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "brown"
},
-/area/toxins/mixing)
-"lof" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/area/quartermaster/storage)
+"sCz" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
dir = 8;
- on = 1
+ icon_state = "neutralfull"
+ },
+/area/security/checkpoint)
+"sCB" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/glasses/welding,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+ icon_state = "dark"
},
-/area/security/prison/cell_block/A)
-"lor" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/engine/hardsuitstorage)
+"sCH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "18"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/courtroom)
+"sCL" = (
+/obj/structure/showcase{
+ density = 0;
+ dir = 8;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 9;
+ pixel_y = 2
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 6;
+ icon_state = "darkblue"
},
-/area/maintenance/fore{
- name = "Hangar Maintenance"
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
})
-"lov" = (
-/obj/structure/table,
-/obj/item/storage/box/evidence,
-/obj/item/storage/box/evidence,
-/obj/item/hand_labeler,
+"sCQ" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/hallway/secondary/exit)
+"sCY" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 10;
icon_state = "darkred"
},
-/area/security/evidence)
-"loD" = (
+/area/security/execution)
+"sDu" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "blue"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/area/hydroponics)
+"sDx" = (
+/obj/structure/table/glass,
+/obj/item/folder/white,
+/obj/item/pen/red,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 5
+ },
+/obj/machinery/requests_console{
+ department = "Virology";
+ departmentType = 3;
+ name = "Virology Requests Console";
+ pixel_y = 30
},
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"sDy" = (
+/obj/structure/table,
+/obj/machinery/syndicatebomb/training,
/turf/simulated/floor/plasteel{
dir = 1
},
-/area/security/permabrig)
-"loZ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/security/customs)
-"lpd" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/light{
+/area/security/range)
+"sDC" = (
+/obj/machinery/camera{
+ c_tag = "Research Lobby";
dir = 1;
- on = 1
+ network = list("Research","SS13")
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "green"
- },
-/area/hallway/secondary/exit)
-"lpm" = (
-/obj/effect/decal/cleanable/blood/xeno,
-/turf/simulated/floor/wood,
-/area/maintenance/gambling_den)
-"lpH" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+ icon_state = "whitepurple"
},
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"lpO" = (
+/area/medical/research{
+ name = "Research Division"
+ })
+"sDU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1
},
-/area/security/processing)
-"lpT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/area/security/securehallway)
+"sDV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/crew_quarters/locker)
-"lqn" = (
+"sDY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/item/radio/intercom{
- pixel_y = -32
+ dir = 10
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/hallway/primary/port/east)
-"lqE" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/area/hallway/primary/central/east)
-"lqJ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
+/area/medical/sleeper)
+"sEp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/turf/simulated/floor/plasteel{
+/obj/structure/table/wood,
+/obj/item/radio/intercom{
dir = 4;
- icon_state = "red"
+ pixel_x = 28
},
-/area/security/processing)
-"lqY" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/item/folder/red,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"lrV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
+/area/assembly/showroom)
+"sEz" = (
+/obj/machinery/light{
+ dir = 1;
on = 1
},
+/obj/effect/decal/cleanable/blood/xeno,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/cryo)
-"lsf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+/area/toxins/xenobiology)
+"sEG" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/area/security/lobby)
-"lsh" = (
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"lth" = (
-/obj/structure/bookcase,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"sEK" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"sEO" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/engine,
+/area/toxins/misc_lab)
+"sEV" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
},
-/area/chapel/main)
-"lvs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A10";
- location = "A9"
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/aisat_interior)
+"sEW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "arrival"
+ icon_state = "neutral"
},
-/area/hallway/secondary/entry/commercial)
-"lwR" = (
-/obj/structure/window/reinforced{
+/area/crew_quarters/sleep)
+"sEZ" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/chem_master,
+/obj/structure/window/plasmareinforced{
dir = 1
},
-/obj/structure/window/reinforced{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/engine,
+/area/toxins/misc_lab)
+"sFa" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/glass/bottle/ether,
+/obj/item/reagent_containers/syringe{
+ pixel_x = -1;
+ pixel_y = 11
},
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"lwS" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/light_switch{
- pixel_x = 6;
- pixel_y = -26
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "whiteblue";
- tag = "icon-whiteblue"
- },
-/area/medical/cryo)
-"lwX" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25
+ tag = "icon-whitehall (WEST)"
},
+/area/medical/surgery2)
+"sFj" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 5;
+ icon_state = "red"
},
-/area/medical/cmo)
-"lxh" = (
-/obj/machinery/ignition_switch{
- id = "testigniter";
- pixel_x = 6;
- pixel_y = 6
+/area/security/range)
+"sFF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door_control{
- id = "RnDChem";
- name = "Chamber Blast Doors";
- pixel_x = 6;
- pixel_y = -5
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellowcorner"
},
-/obj/structure/disposalpipe/segment{
+/area/hallway/primary/port)
+"sFJ" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/simulated/wall/r_wall/coated,
-/area/toxins/test_chamber)
-"lxo" = (
-/obj/machinery/flasher/portable,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
+/obj/structure/window/reinforced{
+ dir = 1
},
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
+ dir = 5;
+ icon_state = "darkblue"
},
-/area/security/securearmoury)
-"lxQ" = (
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 4";
- name = "Cell 4 Locker"
+/area/construction/hallway)
+"sGl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/flasher{
- id = "Cell 4"
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ tag = "icon-pipe-j1 (EAST)"
},
/turf/simulated/floor/plasteel{
- dir = 8;
icon_state = "red"
},
-/area/security/prison/cell_block/A)
-"lyi" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"lyo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/lobby)
+"sGp" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/area/security/podbay)
+"sGs" = (
+/obj/structure/table,
+/obj/item/clothing/suit/storage/hazardvest,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/gloves/color/black,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "yellowfull"
},
-/area/hallway/primary/central/se)
-"lyA" = (
-/obj/structure/window/reinforced,
-/obj/structure/chair/office/dark{
+/area/maintenance/electrical)
+"sGz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light{
dir = 8
},
/turf/simulated/floor/plasteel{
+ dir = 8;
icon_state = "darkblue"
},
-/area/medical/morgue)
-"lyE" = (
+/area/turret_protected/aisat_interior)
+"sGJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"lzH" = (
-/obj/structure/chair/stool/bar,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"lzW" = (
-/obj/machinery/flasher{
- id = "AI";
- pixel_x = 8;
- pixel_y = -24
+ icon_state = "1-2"
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
-"lAc" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkbluefull"
},
+/area/turret_protected/aisat_interior)
+"sGS" = (
/obj/structure/cable{
+ d1 = 2;
d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin3)
-"lAr" = (
-/obj/machinery/light_switch{
- pixel_x = 4;
- pixel_y = 26
+ icon_state = "2-4"
},
-/obj/machinery/camera{
- c_tag = "Librarian Office";
- dir = 6
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"sHi" = (
+/obj/machinery/vending/snack,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/library)
-"lAA" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"lAW" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/crew_quarters/fitness)
+"sHq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"lBb" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"lBn" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/construction/hallway)
-"lBo" = (
-/obj/structure/chair{
- dir = 8
+/area/toxins/explab)
+"sHA" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/obj/machinery/light,
-/obj/machinery/power/apc{
- pixel_y = -26
+/area/medical/medbay3)
+"sHI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 4
},
-/obj/structure/cable,
/turf/simulated/floor/plasteel{
- dir = 10;
+ dir = 4;
icon_state = "darkblue"
},
-/area/medical/surgery2)
-"lBC" = (
-/obj/machinery/atm{
- pixel_x = -32
+/area/turret_protected/aisat_interior)
+"sHT" = (
+/obj/structure/transit_tube{
+ icon_state = "D-SW";
+ tag = "icon-D-SW"
},
-/turf/simulated/floor/plasteel{
+/turf/space,
+/area/space/nearstation)
+"sHX" = (
+/obj/machinery/photocopier,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/obj/machinery/firealarm{
dir = 1;
- icon_state = "neutralcorner"
+ pixel_y = -24
},
-/area/crew_quarters/fitness)
-"lBK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
+/turf/simulated/floor/wood,
+/area/blueshield)
+"sHY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"sIs" = (
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "grimy"
},
-/area/medical/research{
- name = "Research Division"
- })
-"lDu" = (
+/area/chapel/office)
+"sIy" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 8
},
-/obj/effect/landmark/start{
- name = "Warden"
+/obj/effect/decal/warning_stripes/yellow/partial{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"sII" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "engineering_east_inner";
+ locked = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
},
-/area/security/warden)
-"lDC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"lEM" = (
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/sleeper)
-"lER" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/prize_counter,
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"lFf" = (
-/obj/structure/sign/vacuum{
- pixel_x = -32
- },
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"lFG" = (
-/obj/structure/table/wood,
-/obj/machinery/status_display{
- pixel_y = 32
+/area/engine/engineering)
+"sIS" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
-/obj/item/storage/fancy/candle_box,
-/obj/item/storage/fancy/candle_box{
- pixel_x = 2;
- pixel_y = 3
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/aisat_interior)
+"sIV" = (
+/obj/machinery/door/airlock/research/glass{
+ heat_proof = 1;
+ name = "Chemical Testing Room";
+ req_access_txt = "47"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "RnDChem";
+ name = "Biohazard Shutter";
+ opacity = 0
},
-/area/chapel/main)
-"lGo" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -114108,2022 +110981,2268 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/sortjunction{
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"sIX" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 1;
- name = "Brig HoS Office";
- sortType = 7
+ id_tag = "Genetics";
+ name = "Genetics Privacy Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/medical/genetics)
+"sIZ" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "dark"
},
-/area/security/brig)
-"lGD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+/area/engine/gravitygenerator)
+"sJK" = (
+/turf/simulated/floor/greengrid,
+/area/engine/gravitygenerator)
+"sJO" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ icon_state = "bcarpet05"
+ },
+/area/blueshield)
+"sKp" = (
+/obj/structure/closet/secure_closet/blueshield,
+/obj/item/stack/tape_roll,
+/obj/item/sensor_device,
+/turf/simulated/floor/wood,
+/area/blueshield)
+"sKw" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/chapel/office)
+"sKF" = (
+/obj/effect/decal/warning_stripes/northeastcorner,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/crew_quarters/kitchen)
+"sKK" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"sKP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Gravity Generator Room";
+ req_access_txt = "19;23"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"lHj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ icon_state = "dark"
},
-/area/hallway/secondary/entry/commercial)
-"lHP" = (
+/area/engine/gravitygenerator)
+"sKT" = (
+/obj/structure/chair/comfy/brown,
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"sLa" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellow"
+ },
+/area/maintenance/electrical)
+"sLi" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall/rust,
+/area/maintenance/asmaint)
+"sLl" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"sLr" = (
+/obj/machinery/light,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/table/wood,
+/obj/item/toy/russian_revolver,
+/obj/item/reagent_containers/food/drinks/bottle/whiskey{
+ pixel_y = 18
+ },
+/turf/simulated/floor/wood,
+/area/security/hos)
+"sMh" = (
+/obj/structure/table,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel,
+/area/security/range)
+"sMk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 4;
+ icon_state = "yellow"
},
-/area/security/lobby)
-"lHR" = (
+/area/engine/break_room)
+"sMv" = (
+/obj/structure/table/reinforced,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 20;
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/crowbar,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/warden)
-"lIF" = (
-/obj/structure/flora/ausbushes/palebush,
-/obj/structure/flora/ausbushes/ppflowers,
+/area/ai_monitored/storage/eva)
+"sMF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 8
},
-/obj/structure/window/reinforced{
- dir = 1
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"sMH" = (
+/obj/machinery/light/small{
+ dir = 4
},
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"lIH" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"sMJ" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"sMM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/prisonlockers)
-"lIO" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/landmark/start{
- name = "Security Officer"
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"sMP" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/securearmoury)
+"sMS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/main)
-"lJr" = (
-/obj/structure/window/reinforced,
-/obj/machinery/light{
+/area/hallway/primary/port/west)
+"sMZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
on = 1;
- pixel_y = 7
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ dir = 4;
+ icon_state = "yellowcorner"
},
-/area/construction/hallway)
-"lJD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hallway/primary/port/west)
+"sNa" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"lJF" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"sNf" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
+ dir = 4;
+ icon_state = "neutral"
},
-/area/hallway/secondary/entry/commercial)
-"lJK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/storage/tech)
+"sNt" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/ai_status_display{
+ pixel_x = 32
},
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"lKl" = (
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/machinery/portable_atmospherics/canister,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/storage/tech)
+"sNx" = (
+/obj/effect/spawner/random_spawners/wall_rusted_maybe,
+/turf/simulated/wall,
+/area/maintenance/fsmaint)
+"sND" = (
+/obj/structure/bookcase,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"sNW" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "whitegreencorner"
},
-/area/toxins/mixing)
-"lKm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"lKE" = (
-/obj/machinery/light/small{
+/area/medical/virology)
+"sNY" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/turretid/stun{
+ control_area = "\improper Telecoms Central Compartment";
+ name = "AI Antechamber Turret Control";
+ pixel_y = -26;
+ req_access_txt = "75"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/turret_protected/aisat)
+"sOt" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
dir = 1
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/construction/hallway)
-"lKQ" = (
-/obj/machinery/light/small{
- dir = 1
+"sOC" = (
+/obj/structure/closet/secure_closet/exile,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"sOE" = (
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research{
+ name = "Research Division"
})
-"lKU" = (
+"sOI" = (
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Chamber Hallway";
+ req_access_txt = "75"
+ },
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
- },
-/area/security/warden)
-"lKV" = (
-/turf/simulated/wall,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"lKX" = (
-/obj/effect/landmark{
- name = "blobstart"
+ icon_state = "dark"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"lLb" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/plating,
/area/aisat{
name = "\improper AI Satellite Hallway"
})
-"lLV" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+"sOS" = (
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/light{
+ dir = 8
},
-/obj/structure/window/reinforced{
+/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/structure/showcase,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 1
},
-/area/security/warden)
-"lMj" = (
+/area/security/brigstaff)
+"sOV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "yellow"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"lMn" = (
+/area/storage/primary)
+"sOW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable{
d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/chapel/main)
+"sPe" = (
+/obj/structure/transit_tube{
+ icon_state = "D-NE";
+ tag = "icon-D-NE"
+ },
+/obj/structure/transit_tube{
+ icon_state = "D-SE";
+ tag = "icon-D-SE"
},
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
+/turf/space,
+/area/space/nearstation)
+"sPy" = (
/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/range)
+"sPF" = (
+/obj/machinery/light/small,
+/obj/machinery/camera{
+ c_tag = "Xeno Containment 1";
dir = 1;
+ network = list("Research","SS13")
+ },
+/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/controlroom)
-"lMF" = (
+/area/toxins/xenobiology)
+"sPG" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/toxins/server)
+"sPM" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
+ dir = 1;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "dark"
},
-/area/security/permabrig)
-"lNc" = (
+/area/bridge)
+"sPY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "dark"
},
-/area/medical/paramedic)
-"lNz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/bridge)
+"sQd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"lNM" = (
-/obj/structure/closet/lasertag/blue,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
-/area/crew_quarters/fitness)
-"lNO" = (
-/obj/machinery/turretid/lethal{
- check_synth = 1;
- name = "AI Chamber Turret Control";
- pixel_x = -2;
- pixel_y = 28;
- req_access_txt = "75"
+/area/library/abandoned)
+"sQx" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/camera{
- c_tag = "Minisat AI Core Centre";
- network = list("Minisat","SS13")
+/obj/item/restraints/handcuffs,
+/obj/item/flash,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/bridge)
+"sQz" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable{
+ d1 = 2;
d2 = 4;
- icon_state = "0-4"
+ icon_state = "2-4"
},
-/obj/machinery/door_control{
- id = "ai1";
- name = "Turret Hallway Shutters Control";
- pixel_x = -8;
- pixel_y = 40
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Virology";
+ name = "Virology Shutters"
},
-/obj/machinery/door_control{
- id = "ai2";
- name = "Turret AI Core Shutters Control";
- pixel_x = 8;
- pixel_y = 40
+/turf/simulated/floor/plating,
+/area/medical/virology/lab)
+"sQK" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"sQS" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
-"lOT" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/bridge)
+"sQU" = (
+/obj/structure/window/full/reinforced/tinted,
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/chapel/main)
+"sRa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/glass,
+/obj/structure/reagent_dispensers/virusfood{
+ pixel_x = -32
+ },
+/obj/machinery/reagentgrinder,
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"sRf" = (
+/obj/structure/chair,
+/turf/simulated/floor/plasteel{
dir = 4;
- on = 1
+ icon_state = "whitepurplecorner"
},
+/area/medical/research{
+ name = "Research Division"
+ })
+"sRk" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/hand_labeler,
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"sRo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "cmo"
+ icon_state = "neutral"
},
-/area/medical/cmo)
-"lPb" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/wood,
-/area/maintenance/abandonedbar)
-"lPH" = (
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
+/area/crew_quarters/chief)
+"sRr" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ req_access_txt = "19"
},
-/area/shuttle/syndicate_sit)
-"lPJ" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/bridge)
+"sRy" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
+/turf/space,
+/area/space/nearstation)
+"sRA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/security/prisonershuttle)
-"lQj" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
+/area/medical/reception)
+"sRC" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating/airless,
+/area/toxins/mixing)
+"sRG" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil/random,
+/obj/item/assembly/igniter,
+/obj/item/assembly/timer{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"sRH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
dir = 8;
- id_tag = "ai1";
- name = "Turret Shutters"
+ icon_state = "vault"
},
-/turf/simulated/floor/plating,
-/area/turret_protected/aisat_interior)
-"lQm" = (
-/obj/structure/window/reinforced{
- dir = 1
+/area/bridge)
+"sRM" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "purple"
},
-/obj/machinery/atmospherics/unary/portables_connector{
+/area/maintenance/xenozoo)
+"sRN" = (
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/plating,
+/area/space/nearstation)
+"sSo" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/construction/hallway)
-"lQw" = (
+/area/bridge/checkpoint/south)
+"sSD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/hologram/holopad,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+/obj/machinery/computer/shuttle/labor,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "dark"
},
-/area/medical/medbay3)
-"lQG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/prisonershuttle)
+"sSH" = (
+/obj/machinery/light_switch{
+ pixel_x = 26
},
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/chem_dispenser,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/engine,
+/area/toxins/misc_lab)
+"sTk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+ dir = 4
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/hallway/secondary/entry)
-"lQJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10;
- initialize_directions = 10
+/area/security/processing)
+"sTA" = (
+/obj/item/flag/sec,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/security/brigstaff)
+"sTG" = (
+/obj/machinery/computer/prisoner{
+ req_access = null;
+ req_access_txt = "2"
},
-/turf/simulated/wall/r_wall,
-/area/tcommsat/chamber)
-"lQL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/firealarm{
+ pixel_y = -28
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/lawoffice)
+"sTO" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/security/range)
+"sUa" = (
+/obj/machinery/light/small{
dir = 1
},
-/area/security/brig)
-"lQT" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/turf/simulated/floor/plasteel,
-/area/medical/cmo)
-"lQU" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- icon_state = "shutter0";
- id_tag = "researchdesk2";
- name = "Research Desk Shutters";
- opacity = 0
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/toxins/lab)
-"lRk" = (
-/turf/simulated/wall,
-/area/engine/aienter)
-"lRv" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"lRy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/maintenance/asmaint)
+"sUb" = (
+/obj/structure/target_stake,
+/obj/machinery/magnetic_module,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel{
dir = 1
},
+/area/security/range)
+"sUd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "redcorner"
+ icon_state = "bluecorner"
},
-/area/security/permabrig)
-"lRO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/southeastcorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/hallway/primary/central/ne)
+"sUj" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/engine/hardsuitstorage)
-"lRT" = (
+/area/toxins/explab)
+"sUp" = (
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"sUw" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 27
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/chapel/main)
+"sUN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "red"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/security/customs)
-"lSG" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/rack,
-/obj/item/airlock_painter{
- pixel_x = -6;
- pixel_y = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/airlock_painter{
- pixel_x = -3;
- pixel_y = 3
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"sUU" = (
+/obj/effect/landmark{
+ name = "lightsout"
},
-/obj/item/airlock_painter,
-/obj/item/airlock_painter{
- pixel_x = 3;
- pixel_y = -3
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/airlock_painter{
- pixel_x = 6;
- pixel_y = -6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/engine/hardsuitstorage)
-"lSN" = (
-/obj/effect/spawner/window/reinforced,
+/area/library)
+"sUY" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/medical/ward)
-"lTH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"sVC" = (
+/obj/item/twohanded/required/kirbyplants,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
},
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
+/area/security/detectives_office)
+"sVH" = (
+/obj/effect/landmark/start{
+ name = "Cyborg"
},
-/obj/machinery/camera{
- c_tag = "Warden Office";
- dir = 8;
- network = list("SS13","Security")
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
+ icon_state = "dark"
},
-/area/security/warden)
-"lUg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"lUP" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/poster/random{
- pixel_x = 32
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/se)
-"lUS" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/window/brigdoor{
- req_access_txt = "3"
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkred"
- },
-/area/security/securearmoury)
-"lVe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/permabrig)
-"lVo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 4
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"sVN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"lVO" = (
-/obj/structure/table/reinforced,
-/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
- },
-/area/turret_protected/aisat)
-"lVP" = (
-/obj/machinery/door/airlock/maintenance,
-/obj/structure/barricade/wooden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"lWl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "whitepurplecorner"
},
-/turf/simulated/floor/plasteel{
+/area/medical/research{
+ name = "Research Division"
+ })
+"sVU" = (
+/turf/simulated/wall,
+/area/security/range)
+"sVV" = (
+/obj/machinery/camera{
+ c_tag = "Virology Office";
dir = 8;
- icon_state = "redcorner"
- },
-/area/security/main)
-"lXa" = (
-/obj/structure/chair{
- dir = 8
+ network = list("Medical","SS13")
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/structure/disposalpipe/segment,
+/obj/machinery/vending/wallmed{
+ pixel_x = 26
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "red"
+ icon_state = "whitegreencorner"
},
-/area/security/main)
-"lXs" = (
+/area/medical/virology)
+"sWf" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/table/glass,
-/obj/item/storage/firstaid/adv{
- pixel_x = 1;
- pixel_y = 2
- },
-/obj/item/reagent_containers/glass/bottle/epinephrine{
- pixel_y = 2
+/obj/structure/cable{
+ icon_state = "1-2"
},
+/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/security/medbay)
-"lZa" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ icon_state = "red"
},
+/area/security/prisonershuttle)
+"sWh" = (
+/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"lZe" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/area/hallway/secondary/exit)
+"sWp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"sWs" = (
+/obj/structure/chair/wheelchair{
+ desc = "Это кресло осталось от одного из предыдущих детективов. Говорят, что тот открыл в себе псионические способности и ушёл работать в федерацию магов.";
+ name = "Старое инвалидное кресло"
},
-/obj/machinery/atmospherics/pipe/simple/hidden,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
- },
-/area/security/permabrig)
-"lZk" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/wall,
-/area/maintenance/asmaint2)
-"lZy" = (
-/obj/item/radio/intercom{
- pixel_y = 24
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "arrival"
+ icon_state = "darkblue"
},
-/area/hallway/secondary/entry)
-"lZA" = (
+/area/security/detectives_office)
+"sWC" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/item/radio/intercom{
- pixel_x = 28
+ icon_state = "2-8"
},
-/obj/machinery/camera{
- c_tag = "Evidence Room";
- dir = 9;
- network = list("SS13","Security")
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"sWN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
+ icon_state = "dark"
},
-/area/security/evidence)
-"lZJ" = (
-/obj/structure/closet/secure_closet/security,
-/obj/structure/window/reinforced{
- dir = 4
+/area/security/processing)
+"sXk" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "redcorner"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/security/prisonershuttle)
+"sXQ" = (
+/obj/structure/table,
+/obj/item/reagent_containers/glass/bottle/morphine{
+ pixel_x = 8;
+ pixel_y = 2
},
-/obj/machinery/light,
-/obj/item/clothing/mask/balaclava,
-/turf/simulated/floor/plasteel{
- icon_state = "red"
+/obj/item/reagent_containers/glass/bottle/sulfonal{
+ pixel_x = -4;
+ pixel_y = 2
},
-/area/security/customs)
-"man" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/hallway/primary/central/west)
-"maw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/execution)
+"sXY" = (
+/obj/structure/morgue{
dir = 8;
- icon_state = "neutralfull"
+ tag = "icon-morgue1 (WEST)"
},
-/area/quartermaster/storage)
-"maB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"maO" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 5;
+ icon_state = "darkblue"
},
-/area/construction/hallway)
-"mcq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/detectives_office)
+"sYB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/port/east)
-"mcu" = (
-/obj/structure/chair/office/dark{
- dir = 4
+/area/toxins/explab)
+"sYS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/evidence)
-"mcz" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "MiniSat Maintenance";
- req_access_txt = "75"
- },
/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
})
-"mcI" = (
-/obj/structure/chair{
- dir = 8
+"sYW" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/camera{
+ c_tag = "Psychiatrist";
+ dir = 6;
+ network = list("Medical","SS13")
+ },
+/turf/simulated/floor/carpet,
+/area/medical/psych)
+"sYX" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"sZg" = (
+/obj/effect/decal/remains/xeno,
+/obj/effect/decal/cleanable/blood/xeno,
+/turf/simulated/floor/greengrid,
+/area/toxins/xenobiology)
+"sZn" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "hopprivacy";
+ name = "Head of Personal Privacy Shutters"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"mdB" = (
-/obj/effect/decal/remains/human,
/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"mdQ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 100;
- on = 1
+/area/crew_quarters/heads/hop)
+"sZp" = (
+/obj/structure/morgue,
+/obj/effect/decal/warning_stripes/northwest,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/obj/item/radio/intercom{
+ pixel_x = -28
},
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/medical/morgue)
+"sZx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "darkbluecorners"
},
-/area/medical/medbay3)
-"meo" = (
-/obj/structure/chair{
- dir = 8
+/area/security/detectives_office)
+"sZN" = (
+/obj/structure/chair/wood,
+/turf/simulated/floor/plasteel{
+ icon_state = "chapel"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/chapel/main)
+"sZP" = (
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "diagonalWall3"
},
+/area/shuttle/syndicate_sit)
+"sZT" = (
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkred"
- },
-/area/security/processing)
-"mey" = (
-/obj/machinery/light/small{
- dir = 4
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"mfz" = (
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/recharge_station,
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "toilet3";
- name = "Toilet Bolt Control";
- normaldoorcontrol = 1;
- pixel_y = -25;
- specialfunctions = 4
+/area/medical/sleeper)
+"tae" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/greencross{
+ pixel_y = 30
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"mfL" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutral"
- },
-/area/security/main)
-"mgc" = (
-/obj/structure/sign/poster/random,
-/turf/simulated/shuttle/wall{
- icon_state = "swall3"
+ icon_state = "bot"
},
/area/shuttle/escape{
parallax_movedir = 2
})
-"mgS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+"taw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/assembly/robotics)
-"mha" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/storage{
- name = "Perma Maintenance"
- })
-"mhs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"miK" = (
-/obj/item/radio/intercom{
- pixel_x = 28
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkyellow"
- },
-/area/engine/mechanic_workshop/hanger)
-"mjx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"mjE" = (
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "solar_chapel_outer";
- locked = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"taM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"mjG" = (
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/port)
+"taO" = (
+/obj/structure/chair{
+ dir = 1
},
-/area/tcommsat/chamber)
-"mjY" = (
-/obj/machinery/mecha_part_fabricator,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/window/eastright,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "carpet"
},
-/area/assembly/robotics)
-"mkm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/crew_quarters/courtroom)
+"tbb" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
+/area/crew_quarters/locker)
+"tby" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1
},
-/area/assembly/robotics)
-"mkK" = (
+/area/security/processing)
+"tbM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"mlo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"mlB" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"mlF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/medbay3)
-"mmn" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/wood,
+/area/security/hos)
+"tbO" = (
+/obj/structure/chair/office/dark{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/processing)
-"mmo" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"mmS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "grimy"
},
+/area/library/abandoned)
+"tbX" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/machinery/camera{
+ c_tag = "Port Aft Solars"
},
-/area/security/main)
-"mnh" = (
-/obj/machinery/teleport/hub,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"mob" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/item/radio/intercom{
+ pixel_y = 28
},
-/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plating,
+/area/maintenance/portsolar)
+"tcb" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/mixing)
-"mog" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+ icon_state = "1-4"
},
-/obj/item/clothing/accessory/holster,
-/obj/item/clothing/accessory/holster,
-/obj/item/clothing/accessory/holster,
-/obj/item/clothing/accessory/holster,
-/obj/item/clothing/accessory/holster,
-/obj/item/clothing/accessory/holster,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/securearmoury)
-"moG" = (
-/turf/simulated/wall,
-/area/maintenance/fpmaint2)
-"mpl" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"mrx" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26;
- pixel_y = -32
+/area/lawoffice)
+"tcp" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/medical/research/nhallway)
+"tct" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/landmark/start{
+ name = "Detective"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "grimy"
},
-/area/medical/cryo)
-"mtK" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"muf" = (
-/obj/machinery/light/small{
- dir = 1
+/area/security/detectives_office)
+"tcC" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/obj/machinery/hydroponics/constructable{
- desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays.";
- name = "Prison hydroponics tray";
- using_irrigation = 1
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/item/seeds/nymph,
/turf/simulated/floor/plasteel{
- dir = 5;
+ dir = 10;
icon_state = "red"
},
-/area/security/permabrig)
-"muo" = (
-/obj/machinery/door/airlock/command/glass{
- name = "AI Core";
- req_access_txt = "16"
+/area/security/range)
+"tcD" = (
+/obj/item/target,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"tcF" = (
+/obj/structure/cable,
+/obj/machinery/power/solar_control{
+ id = "portsolar";
+ name = "Aft Port Solar Control"
},
-/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plating,
+/area/maintenance/portsolar)
+"tcH" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door_control{
+ id = "lawyer";
+ name = "Internal Affairs Privacy Shutters Control";
+ pixel_y = 24
},
-/area/turret_protected/ai)
-"muE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/lawoffice)
+"tcK" = (
+/obj/structure/chair/office/dark,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/area/security/prisonershuttle)
-"muH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/hallway/primary/central/nw)
-"muM" = (
+/area/library)
+"tcP" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/table/reinforced,
-/obj/item/flashlight{
- pixel_y = 4
- },
-/obj/item/wirecutters{
- pixel_y = 18
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
- },
-/area/security/processing)
-"muS" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- frequency = 1379;
- id_tag = "ai_pump"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "ai_airlock";
- pixel_x = 28;
- tag_airpump = "ai_pump";
- tag_chamber_sensor = "ai_sensor";
- tag_exterior_door = "ai_outer";
- tag_interior_door = "ai_inner"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/airlock_sensor{
- id_tag = "ai_sensor";
- pixel_x = -28
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 1
},
-/area/construction/hallway)
-"muV" = (
+/area/security/brig)
+"tcS" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
-/obj/machinery/power/apc{
- cell_type = 5000;
- name = "south bump Important Area";
- pixel_y = -24
- },
-/obj/machinery/bodyscanner,
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Medbay West Hallway";
- dir = 1;
- network = list("Medical","SS13")
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/medical/sleeper)
-"mwc" = (
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"mwB" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor,
-/obj/item/paper_bin{
- pixel_y = 7
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "HoSPriv";
+ name = "HoS Office Privacy Shutters"
},
-/obj/item/pen,
/obj/machinery/door/poddoor{
density = 0;
icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
opacity = 0
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "Genetics";
- name = "Genetics Privacy Shutters"
- },
+/turf/simulated/floor/plating,
+/area/security/hos)
+"tda" = (
+/obj/machinery/r_n_d/experimentor,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/genetics)
-"mxy" = (
-/obj/effect/decal/cleanable/dirt,
+/area/toxins/explab)
+"tdf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research/restroom)
+"tdm" = (
+/obj/machinery/photocopier,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "brown"
+/obj/machinery/camera{
+ c_tag = "Internal Affairs Office North";
+ network = list("SS13","Security")
},
-/area/security/prisonlockers)
-"mxZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
},
+/area/lawoffice)
+"tdn" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkred"
- },
-/area/security/warden)
-"mzI" = (
-/obj/machinery/light{
- dir = 8
+ icon_state = "neutralcorner"
},
-/obj/machinery/porta_turret,
-/obj/machinery/status_display{
- pixel_x = -32
+/area/hallway/primary/central/se)
+"tdo" = (
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway South 1"
},
+/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/south)
+"tdp" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- icon_state = "darkblue"
+ id_tag = "CMO Shutters";
+ name = "CMO Privacy Shutters"
},
-/area/tcommsat/chamber)
-"mzZ" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/donut_box,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = -30
+/turf/simulated/floor/plating,
+/area/medical/cmo)
+"tdt" = (
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 5
},
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"tdv" = (
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 1;
+ icon_state = "yellow"
},
-/area/security/main)
-"mAa" = (
+/area/engine/engineering)
+"tdA" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "RoboPrivat";
+ name = "Robotics Privacy Shutter"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"tdC" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Barber Shop"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/permabrig)
-"mAn" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+ icon_state = "barber"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaCellsLockdown";
- name = "Perma Cells Lockdown"
+/area/civilian/barber)
+"tdH" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutral"
},
-/obj/machinery/flasher{
- id = "Perma3"
+/area/storage/tech)
+"tdT" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 10
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"mAs" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A18";
- location = "A17"
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutral"
},
-/area/hallway/primary/port/west)
-"mAF" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swallc2"
+/area/toxins/mixing)
+"tea" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/west)
+"tek" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"ten" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Internal Affairs Office"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/area/shuttle/trade/sol)
-"mAN" = (
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-2"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/engine/mechanic_workshop/hanger)
-"mAO" = (
+/area/lawoffice)
+"tez" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/beacon,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/permabrig)
-"mBa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkred"
+ icon_state = "neutralfull"
},
-/area/security/warden)
-"mBj" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"mBm" = (
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/area/engine/engineering)
+"teD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/sleeper)
-"mBF" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"mCe" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkbluefull"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/construction/hallway)
-"mCs" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "2-8"
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "70"
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"mCu" = (
-/obj/machinery/door/window/westleft{
- dir = 1;
- name = "Robotic Delivery";
- req_access_txt = "29"
+/area/security/brig)
+"teF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/window/reinforced{
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "darkbluefull"
},
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"teJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/floodlight,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"teS" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/structure/closet/secure_closet/brig,
/obj/structure/window/reinforced{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/assembly/robotics)
-"mCW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "dark"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/security/prisonershuttle)
+"tfd" = (
+/obj/structure/table/wood,
+/obj/item/taperecorder,
+/turf/simulated/floor/carpet,
+/area/ntrep)
+"tfh" = (
+/obj/structure/closet/bombclosetsecurity,
+/obj/effect/decal/warning_stripes/red,
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24;
+ pixel_y = -4
},
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "dark"
},
-/area/security/main)
-"mDe" = (
-/turf/simulated/wall/r_wall,
-/area/engine/hardsuitstorage)
-"mDm" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/donut_box,
-/obj/item/radio/intercom{
- pixel_y = -28
+/area/security/securearmoury)
+"tfy" = (
+/obj/machinery/vending/snack,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j2 (EAST)"
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "whitepurplecorner"
},
-/area/security/customs)
-"mDo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/research/nhallway)
+"tfE" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkyellow"
+ },
+/area/engine/mechanic_workshop/hangar)
+"tfI" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ icon_state = "whitepurplecorner"
},
-/area/hallway/secondary/entry)
-"mEt" = (
-/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/sit,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/toxins/explab)
+"tfK" = (
+/obj/machinery/sleeper{
+ pixel_x = 3
},
-/area/shuttle/syndicate_sit)
-"mFb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/obj/effect/decal/warning_stripes/blue/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/medical/sleeper)
+"tfS" = (
+/obj/structure/filingcabinet/employment,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/security/permabrig)
-"mFd" = (
+/area/lawoffice)
+"tgf" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/camera/emp_proof{
+ c_tag = "Singularity SouthEast";
+ dir = 8;
+ network = list("SS13","Singularity","Engineering")
+ },
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"tgg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"tgy" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A18";
+ location = "A17"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkred"
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/port/west)
+"tgF" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/handcuffs,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/prisonershuttle)
+"tgH" = (
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Teleporter Room";
+ req_access_txt = "17;75"
},
-/area/security/permabrig)
-"mFk" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/brig)
-"mFN" = (
-/turf/simulated/wall,
-/area/maintenance/fsmaint)
-"mGo" = (
/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/security/glass{
- name = "High Sec Area";
- req_access_txt = "1"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/prison/cell_block/A)
-"mHr" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"tgM" = (
+/obj/effect/decal/remains/human,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"tgP" = (
+/obj/item/radio/intercom{
dir = 1;
- on = 1
+ pixel_y = 28
},
-/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/security/processing)
-"mHX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/status_display{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
-"mIi" = (
-/obj/structure/cable{
+/area/medical/research/restroom)
+"tgT" = (
+/obj/structure/cable/yellow{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"thk" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/window/reinforced,
+/obj/structure/showcase,
+/obj/machinery/light{
+ dir = 8
},
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 8;
+ icon_state = "vault"
},
-/area/security/main)
-"mIG" = (
-/obj/item/radio/intercom{
- pixel_y = -28
+/area/security/warden)
+"thl" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "CMO Shutters";
+ name = "CMO Privacy Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/medical/cmo)
+"thA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"thO" = (
+/turf/simulated/wall,
+/area/security/customs)
+"thR" = (
+/obj/structure/table,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 100;
+ on = 1
+ },
+/obj/item/reagent_containers/food/snacks/grown/harebell{
+ pixel_x = 5
+ },
+/obj/item/reagent_containers/food/snacks/grown/harebell{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/food/snacks/grown/harebell,
+/obj/item/reagent_containers/food/snacks/grown/harebell{
+ pixel_x = -4;
+ pixel_y = 5
},
-/area/chapel/main)
-"mIQ" = (
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/tcommsat/chamber)
-"mIX" = (
+/area/chapel/office)
+"thS" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 1
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/bookcase,
-/obj/item/book/manual/security_space_law,
-/obj/item/book/manual/sop_command,
-/obj/item/book/manual/sop_engineering,
-/obj/item/book/manual/sop_general,
-/obj/item/book/manual/sop_legal,
-/obj/item/book/manual/sop_medical,
-/obj/item/book/manual/sop_science,
-/obj/item/book/manual/sop_security,
-/obj/item/book/manual/sop_service,
-/obj/item/book/manual/sop_supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/processing)
-"mJH" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 4;
+ icon_state = "yellow"
},
-/area/security/permabrig)
-"mKg" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/area/maintenance/electrical)
+"tif" = (
+/obj/structure/table,
+/obj/item/book/manual/security_space_law,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "red"
},
-/turf/simulated/floor/beach/water{
- icon_state = "seadeep"
+/area/security/lobby)
+"tii" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/vending/coffee,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/crew_quarters/fitness)
-"mKu" = (
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"tik" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "white"
},
-/area/security/brig)
-"mKv" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"mKM" = (
-/obj/effect/decal/warning_stripes/south,
+/area/medical/sleeper)
+"til" = (
+/obj/structure/chair/office/dark,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"mKR" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/structure/window/reinforced{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 1
},
+/area/security/reception)
+"tiq" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/mechanic_workshop/hanger)
-"mLE" = (
-/obj/machinery/light,
-/obj/machinery/vending/coffee,
+/area/quartermaster/storage)
+"tir" = (
+/obj/machinery/vending/wallmed{
+ pixel_y = 30
+ },
+/obj/structure/table,
+/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 1;
+ icon_state = "red"
},
-/area/medical/medbay3)
-"mLS" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/floodlight,
+/area/security/lobby)
+"tiz" = (
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
+"tiJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "redcorner"
},
-/area/engine/mechanic_workshop/hanger)
-"mLW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/security/lobby)
+"tiL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/crew_quarters/courtroom)
+"tiU" = (
+/obj/item/flag/cult,
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"tja" = (
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"tjq" = (
+/obj/structure/computerframe,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/toxins/mixing)
-"mMd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10;
- initialize_directions = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
})
-"mMr" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+"tjE" = (
+/obj/effect/decal/remains/human,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate_sit)
+"tjK" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
},
-/area/engine/mechanic_workshop/hanger)
-"mME" = (
-/mob/living/carbon/human/monkey/punpun,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "white"
},
-/area/crew_quarters/bar)
-"mNt" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
- dir = 8
+/area/crew_quarters/captain/bedroom)
+"tjR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/camera{
- c_tag = "Departure Lounge West";
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "green"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/secondary/exit)
-"mOV" = (
+/area/assembly/chargebay)
+"tjW" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+ dir = 5;
+ icon_state = "darkblue"
},
-/area/security/permabrig)
-"mQn" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- icon_state = "shutter0";
- id_tag = "researchdesk2";
- name = "Research Desk Shutters";
- opacity = 0
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"tkc" = (
+/turf/simulated/wall/rust,
+/area/maintenance/asmaint)
+"tkf" = (
+/obj/item/hand_labeler,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/structure/table/glass,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (SOUTHWEST)"
+ },
+/area/medical/genetics)
+"tkg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/wall/r_wall,
+/area/turret_protected/ai)
+"tku" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/toxins/lab)
-"mQI" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/brig)
-"mQO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
- on = 1
+ icon_state = "red"
},
+/area/security/customs)
+"tkR" = (
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 8;
+ icon_state = "whitegreencorner"
},
-/area/security/brig)
-"mRJ" = (
+/area/medical/virology)
+"tkW" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/secondary/entry/louge)
-"mSP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/bridge/checkpoint/south)
+"tla" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"tlc" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/fitness)
-"mTB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/research/nhallway)
+"tle" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
},
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"mUg" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
+/area/security/lobby)
+"tlg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/command{
+ id_tag = "ntrepofficedoor";
+ name = "NT Representative's Office";
+ req_access_txt = "73"
},
+/turf/simulated/floor/wood,
+/area/ntrep)
+"tlZ" = (
/obj/machinery/light{
- dir = 1;
- on = 1
+ dir = 1
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/filingcabinet,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/heads/hop)
+"tmc" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/medical/medbay2)
-"mWo" = (
-/obj/machinery/computer/shuttle/sit,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/area/hallway/primary/central/east)
+"tmp" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red,
+/obj/item/pen/multi,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -28
},
-/area/shuttle/syndicate_sit)
-"mWP" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
+ dir = 10;
+ icon_state = "red"
},
-/area/security/prison/cell_block/A)
-"mXF" = (
-/obj/machinery/sleeper,
-/obj/item/radio/intercom{
- pixel_x = 28
+/area/security/reception)
+"tmB" = (
+/obj/effect/decal/warning_stripes/blue,
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/storage/firstaid/doctor,
+/obj/item/storage/firstaid/fire{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/sleeper)
-"mYd" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
+"tmF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"mYf" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/security/glass{
- name = "High Sec Area";
- req_access_txt = "1"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 8;
+ dir = 1;
icon_state = "red"
},
-/area/security/brig)
-"mYA" = (
-/obj/structure/window/reinforced{
- dir = 4
+/area/security/customs)
+"tmH" = (
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Detective's Lab";
+ network = list("SS13","Security")
},
-/obj/structure/window/reinforced,
-/obj/structure/showcase,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "darkblue"
},
-/area/turret_protected/ai)
-"mZm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/security/detectives_office)
+"tmR" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/maintenance/xenozoo)
+"tmW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"mZA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/security/reception)
+"tnd" = (
+/obj/item/radio/intercom{
+ pixel_x = 28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"mZM" = (
-/obj/machinery/power/apc{
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
dir = 4;
- name = "east bump";
- pixel_x = 24
+ icon_state = "red"
+ },
+/area/security/brig)
+"tni" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"tno" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/starboard/east)
+"tnr" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "First Surgery Window";
+ name = "Surgery Shutters"
},
+/obj/structure/cable,
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/turf/simulated/floor/plating/airless,
-/area/toxins/test_area)
-"nab" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Second Surgery Window";
+ name = "Surgery Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/medical/surgery2)
+"tnM" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/teargas,
+/obj/item/storage/box/teargas{
+ pixel_x = 3;
+ pixel_y = -3
},
-/obj/structure/disposalpipe/segment,
-/obj/item/flag/nt,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "darkred"
},
-/area/crew_quarters/heads/hop)
-"nak" = (
+/area/security/warden)
+"tnS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -116132,178 +113251,143 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/virology)
-"naq" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"naz" = (
-/obj/machinery/hologram/holopad,
+/area/medical/ward)
+"tom" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
+ },
+/area/turret_protected/aisat)
+"tot" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/hallway/secondary/entry/westarrival)
-"nbx" = (
-/obj/item/radio/beacon,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whitepurplecorner"
},
/area/medical/research{
name = "Research Division"
})
-"nbA" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkredcorners"
- },
-/area/security/warden)
-"nbH" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/cans/beer,
-/obj/item/reagent_containers/food/drinks/cans/beer,
-/obj/item/pizzabox,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway)
-"nbP" = (
+"tou" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A27";
- location = "A26"
+/obj/structure/transit_tube{
+ icon_state = "E-W-Pass"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/space,
+/area/space/nearstation)
+"toB" = (
+/obj/item/radio/intercom{
+ pixel_x = -27
},
-/area/hallway/primary/central/se)
-"ncP" = (
-/turf/simulated/wall/rust,
-/area/maintenance/fsmaint)
-"ndc" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/bible,
-/obj/item/reagent_containers/food/drinks/bottle/holywater,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkred"
+ icon_state = "neutralcorner"
},
-/area/security/processing)
-"ndS" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"neg" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet,
-/obj/item/lipstick/jade,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"neq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
+/area/crew_quarters/fitness)
+"toL" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"toP" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/medbay2)
-"neQ" = (
-/obj/machinery/bodyscanner,
-/obj/structure/window/reinforced{
- dir = 1
+ dir = 10;
+ icon_state = "darkredfull"
},
+/area/security/securearmoury)
+"toS" = (
+/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkred"
+ icon_state = "darkredcorners"
},
-/area/security/execution)
-"neU" = (
+/area/security/securearmoury)
+"toW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"toY" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/landmark/start{
- name = "Roboticist"
+/obj/structure/transit_tube,
+/turf/space,
+/area/space/nearstation)
+"tpe" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/light,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/assembly/robotics)
-"nfF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"ngy" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
+/obj/machinery/camera{
+ c_tag = "Brig Customs";
dir = 1;
- icon_state = "darkblue"
+ network = list("SS13","Security")
},
-/area/turret_protected/ai)
-"ngW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/turret_protected/aisat)
-"nhd" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"nhX" = (
-/obj/structure/girder,
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/customs)
+"tpt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"nin" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"njq" = (
-/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"njz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
},
+/area/security/customs)
+"tpv" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/light,
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkbluefull"
+ icon_state = "dark"
},
-/area/turret_protected/aisat_interior)
-"njF" = (
-/obj/machinery/computer/guestpass{
- pixel_y = -32
+/area/engine/mechanic_workshop/hangar)
+"tpA" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"tpM" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"tpR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -116312,2070 +113396,2368 @@
/area/medical/research{
name = "Research Division"
})
-"njH" = (
-/obj/structure/bed,
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/obj/item/radio/intercom{
- pixel_y = 24
- },
-/obj/structure/curtain/open,
-/obj/item/bedsheet/medical{
- level = 1.4
+"tpS" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f9"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+/area/shuttle/siberia)
+"tqc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/ward)
-"nkN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/light,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"tqf" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
},
-/area/hallway/secondary/entry/commercial)
-"nlp" = (
-/obj/structure/closet/wardrobe/red,
-/obj/item/clothing/suit/tracksuit/red,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowfull"
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/maintenance/electrical)
+"tqj" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
},
-/obj/machinery/power/apc{
+/turf/simulated/floor/plasteel{
dir = 1;
- name = "north bump";
- pixel_y = 24
+ icon_state = "bot"
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"tqu" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/security/customs)
-"nlr" = (
-/obj/machinery/photocopier,
-/turf/simulated/floor/plasteel,
-/area/medical/cmo)
-"nlE" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/shuttle/floor,
-/area/shuttle/arrival/station)
-"nlF" = (
-/obj/machinery/vending/autodrobe,
-/obj/machinery/firealarm{
- pixel_y = -32
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/light_switch{
- pixel_x = -22;
- pixel_y = 9
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"tqz" = (
+/obj/machinery/computer/med_data,
+/obj/machinery/status_display{
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "bar"
+ dir = 10;
+ icon_state = "blue"
},
-/area/clownoffice)
-"nmy" = (
-/obj/structure/chair{
+/area/bridge/checkpoint/south)
+"tqF" = (
+/obj/structure/chair/office/dark{
dir = 8
},
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/power/apc{
- pixel_y = 26
+/obj/effect/landmark/start{
+ name = "Civilian"
},
+/turf/simulated/floor/wood,
+/area/library)
+"trg" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A34";
+ location = "A33"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/surgery1)
-"nnH" = (
-/obj/structure/rack{
+/area/hallway/primary/central/east)
+"trA" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/firealarm{
dir = 8;
- layer = 2.9
+ pixel_x = -24
},
-/obj/structure/window/reinforced{
+/obj/structure/closet/wardrobe/pjs,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/locker)
+"trI" = (
+/turf/simulated/floor/plasteel{
dir = 1;
- layer = 2.9
+ icon_state = "whitepurplecorner"
},
-/obj/effect/decal/warning_stripes/southeast,
-/obj/item/restraints/legcuffs/bola/energy{
- pixel_x = -3;
- pixel_y = 3
+/area/medical/research/restroom)
+"tsi" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"tst" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/item/restraints/legcuffs/bola/energy,
-/obj/item/restraints/legcuffs/bola/energy{
- pixel_x = 3;
- pixel_y = -3
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"tsu" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/color/white,
+/obj/item/clothing/gloves/color/white,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"tsB" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/obj/item/restraints/legcuffs/bola/energy{
- pixel_x = 6;
- pixel_y = -6
+/area/medical/sleeper)
+"tsG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall/coated,
+/area/toxins/test_chamber)
+"tsS" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = 24
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"tsW" = (
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "darkred"
},
/area/security/securearmoury)
-"nnU" = (
+"tta" = (
+/obj/structure/table,
+/obj/item/storage/box/pillbottles{
+ pixel_x = 8
+ },
+/obj/item/storage/box/pillbottles{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/obj/item/storage/box/syringes{
+ pixel_x = -6
+ },
+/obj/item/storage/box/syringes{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/storage/box/autoinjectors{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/storage/box/autoinjectors{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/biostorage)
+"ttc" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
+ },
+/area/security/processing)
+"ttw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "red"
},
-/area/medical/medbay2)
-"noj" = (
+/area/security/customs)
+"ttY" = (
+/obj/structure/table,
+/obj/item/stack/sheet/cloth/ten,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/fitness)
+"tui" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/effect/landmark{
- name = "lightsout"
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"tum" = (
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"tuv" = (
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkblue"
},
+/area/medical/surgery2)
+"tuE" = (
+/obj/structure/table/reinforced,
+/obj/item/kitchen/knife,
+/obj/item/kitchen/rollingpin,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/hallway/primary/central/sw)
-"nol" = (
+/area/crew_quarters/kitchen)
+"tuK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/medical/research/nhallway)
+"tuQ" = (
+/obj/structure/transit_tube{
+ icon_state = "E-W-Pass"
+ },
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/space,
+/area/space/nearstation)
+"tuT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "cmo"
+ icon_state = "neutralfull"
},
-/area/medical/cmo)
-"nop" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/crew_quarters/fitness)
+"tuU" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
},
+/area/security/customs)
+"tuY" = (
+/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel{
+ dir = 6;
icon_state = "red"
},
-/area/security/main)
-"noF" = (
-/obj/effect/spawner/window/reinforced,
+/area/security/processing)
+"tuZ" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkbluecorners"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "execution";
- name = "Execution Privacy Shutters"
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"tvi" = (
+/obj/machinery/power/solar{
+ name = "Aft Starboard Solar Panel"
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"npx" = (
+/obj/structure/cable,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/port)
+"tvK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 10
},
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"npH" = (
+/area/maintenance/asmaint2)
+"tvY" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/wall,
-/area/medical/paramedic)
-"nqM" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain/bedroom)
+"tvZ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/table/reinforced,
-/obj/item/toy/figure/mime{
- pixel_x = 6;
- pixel_y = 1
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Virology";
+ name = "Virology Shutters"
},
+/turf/simulated/floor/plating,
+/area/medical/virology)
+"twd" = (
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
- },
-/area/mimeoffice)
-"nqS" = (
-/obj/structure/chair{
dir = 1
},
+/area/security/permahallway)
+"twe" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/security/hos)
+"twh" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"two" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 4;
+ icon_state = "red"
},
-/area/security/processing)
-"nsl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/securehallway)
+"twN" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/mask/gas,
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"twU" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/space,
+/area/space/nearstation)
+"txb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutral"
+ },
+/area/toxins/mixing)
+"txk" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/area/bridge/vip)
-"nsP" = (
-/obj/structure/table/reinforced,
-/turf/simulated/floor/wood,
-/area/maintenance/abandonedbar)
-"nsU" = (
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/security/securearmoury)
-"ntb" = (
-/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/door/airlock/security{
- name = "Warden's Office";
- req_access_txt = "3"
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/warden)
-"nte" = (
-/turf/simulated/wall,
-/area/maintenance/asmaint2)
-"nuj" = (
+/area/turret_protected/aisat_interior)
+"txl" = (
+/obj/structure/table/wood,
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken";
+ tag = "icon-wood-broken"
+ },
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"txq" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/portsolar)
+"txt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
+ },
+/area/security/permahallway)
+"txE" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"txI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "bcarpet05"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/ward)
-"nvF" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
-"nwh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/engine/break_room)
+"tyn" = (
+/obj/machinery/photocopier,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"tyJ" = (
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre";
+ req_access_txt = "45"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/light/small{
- dir = 1
+/obj/machinery/holosign/surgery{
+ id = "surgery1"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"nwK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/mapping_helpers/airlock/unres{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/surgery1)
+"tzb" = (
+/obj/machinery/status_display{
+ pixel_x = 32;
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 4;
+ icon_state = "cautioncorner"
},
-/area/security/main)
-"nxr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/engine/break_room)
+"tzg" = (
+/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/camera{
+ c_tag = "Engineering Entrance";
+ dir = 4;
+ network = list("Engineering","SS13");
+ pixel_y = -22
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"tzh" = (
+/turf/simulated/wall/r_wall,
+/area/security/warden)
+"tzi" = (
+/obj/structure/grille,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"tzk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "redcorner"
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"nxC" = (
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/window/reinforced,
+/area/security/main)
+"tzp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"tzt" = (
+/obj/machinery/computer/arcade/orion_trail,
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"tzE" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/window/reinforced{
dir = 1
},
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"nxE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/hologram/holopad,
+/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"nxK" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 26
+/area/hallway/secondary/exit)
+"tzI" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/shuttle/transport)
+"tzJ" = (
+/obj/structure/sign/redcross{
+ desc = "The Star of Life, a symbol of Medical Aid.";
+ icon_state = "lifestar";
+ name = "Medbay"
},
+/turf/simulated/wall/r_wall,
+/area/medical/chemistry)
+"tzL" = (
+/obj/structure/girder,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
-"nxM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+"tzM" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/engine/engineering)
+"tzQ" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1;
+ tag = "icon-propulsion (NORTH)"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"tzR" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "barber"
},
-/area/security/lobby)
-"nxS" = (
-/obj/machinery/light{
+/area/civilian/barber)
+"tzV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+/obj/machinery/door/airlock/public/glass{
+ name = "Pet Store"
},
-/area/medical/research{
- name = "Research Division"
- })
-"nxT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/wood,
+/area/civilian/pet_store)
+"tzX" = (
/obj/structure/girder,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"nyb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -26
+/area/maintenance/asmaint2)
+"tzZ" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light_switch{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = 28
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"tAz" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"tAB" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28;
+ pixel_y = 32
},
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"tAC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"tBr" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/primary/central/nw)
-"nye" = (
+/area/hallway/primary/port/west)
+"tBs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"nyN" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "63;12";
- security_level = 1
+/area/maintenance/asmaint2)
+"tBB" = (
+/obj/machinery/status_display{
+ pixel_x = -32
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/crate/plastic{
+ desc = "В ящике хранится оборудование для осуществления уборки станции гражданским персоналом в случае нужды или безработицы";
+ name = "Ящик оборудования для уборки"
},
+/obj/item/mop,
+/obj/item/mop,
+/obj/item/mop,
+/obj/item/mop,
+/obj/item/mop,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/storage/bag/trash,
+/obj/item/storage/bag/trash,
+/obj/item/storage/bag/trash,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"tBR" = (
+/obj/structure/grille,
/turf/simulated/floor/plating,
/area/maintenance/port{
name = "Brig Maintenance"
})
-"nBl" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/power/apc{
+"tCj" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (EAST)"
+ },
+/area/toxins/mixing)
+"tCu" = (
+/turf/simulated/floor/plasteel{
dir = 8;
- name = "west bump";
- pixel_x = -24
+ icon_state = "yellow"
},
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
+/area/storage/primary)
+"tCy" = (
+/obj/structure/mineral_door/wood,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/library)
+"tCB" = (
+/turf/simulated/wall/r_wall,
+/area/medical/surgery2)
+"tCM" = (
/obj/machinery/camera{
- c_tag = "Armory West";
+ c_tag = "Virology Maintance Access";
dir = 4;
- network = list("SS13","Security")
+ network = list("Medical","SS13")
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (WEST)"
},
-/area/security/securearmoury)
-"nBz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/medbay3)
+"tCN" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ name = "Execution Access";
+ req_access_txt = "1"
},
+/obj/machinery/atmospherics/binary/valve/digital,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"nBR" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/item/radio/intercom{
- pixel_y = -28
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/chief)
-"nBZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/execution)
+"tDc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry/eastarrival)
-"nCy" = (
-/obj/structure/closet/secure_closet/psychiatrist,
-/obj/item/clothing/suit/straight_jacket,
-/obj/item/clothing/suit/straight_jacket,
-/obj/item/clothing/mask/muzzle,
-/obj/item/clothing/mask/muzzle,
-/obj/item/clipboard{
- pixel_x = -5
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"nCH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/hallway/primary/central/nw)
+"tDg" = (
+/obj/machinery/ai_status_display{
+ pixel_y = -32
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/crew_quarters/bar)
-"nCI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- initialize_directions = 11
+/area/chapel/main)
+"tDB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/fitness)
-"nCN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+ icon_state = "darkblue"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"tDD" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -25
},
-/area/medical/medbay3)
-"nCX" = (
/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4"
+ icon_state = "0-4"
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/south,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "red"
+ icon_state = "neutralcorner"
},
-/area/security/brig)
-"nDf" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "hosp";
- name = "HoS Privacy Shutters"
+/area/toxins/mixing)
+"tDN" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
},
-/turf/simulated/floor/plating,
-/area/security/hos)
-"nDj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small{
- dir = 8
+/area/bridge)
+"tEg" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/folder,
+/obj/item/pen,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"nDJ" = (
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"nDV" = (
-/obj/structure/window/reinforced{
+/area/crew_quarters/courtroom)
+"tEh" = (
+/obj/machinery/sleeper{
+ dir = 4;
+ pixel_x = -3
+ },
+/obj/effect/decal/warning_stripes/blue/hollow,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/flasher/portable,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
- },
-/area/security/securearmoury)
-"nEb" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/medical/reception)
-"nEP" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "ai1";
- name = "Turret Shutters"
- },
-/turf/simulated/floor/plating,
-/area/turret_protected/aisat_interior)
-"nEY" = (
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "white"
},
+/area/medical/sleeper)
+"tEl" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/hop)
+"tEw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/item/clipboard,
-/obj/item/toy/figure/secofficer,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ icon_state = "darkblue"
},
-/area/security/brig)
-"nFl" = (
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/bridge)
+"tEy" = (
+/obj/structure/closet/fireaxecabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/bridge)
+"tEB" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"nGr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
-"nGy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/area/medical/research/shallway)
+"tED" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/morgue)
-"nGM" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/hologram/holopad,
-/obj/effect/landmark/start{
- name = "Station Engineer"
+ icon_state = "yellowfull"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/hardsuitstorage)
-"nGQ" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+/area/engine/engineering)
+"tEE" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/blue,
+/obj/item/firelock_electronics,
+/obj/item/stack/sheet/glass,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/storage/secure)
+"tEG" = (
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "eslock";
+ name = "Escape Shuttle Lockdown"
},
-/area/security/processing)
-"nHa" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/machinery/door/airlock{
+ name = "Chapel Office";
+ req_access_txt = "22"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
+ icon_state = "dark"
},
-/area/security/brig)
-"nHN" = (
+/area/chapel/office)
+"tFd" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"tFj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "dark"
},
-/area/security/prisonlockers)
-"nIm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/mob/living/simple_animal/hostile/killertomato{
- desc = "Прирученный ботаниками томат-убийца. Держать подальше от Сани.";
- faction = list("plants","neutral");
- name = "Витамин"
+/area/chapel/office)
+"tFt" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 8
},
+/obj/item/paper_bin,
+/obj/item/pen/multi,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "green"
+ icon_state = "grimy"
},
-/area/hydroponics)
-"nIo" = (
+/area/library)
+"tFv" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
},
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/security/processing)
+"tFz" = (
+/obj/machinery/door_control{
+ id = "HoSPriv";
+ name = "HoS Office Privacy Shutters Control";
+ pixel_y = -24
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboardsolar)
-"nIw" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/wood,
+/area/security/hos)
+"tFO" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/northwest,
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/crowbar/red,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/hardsuitstorage)
+"tFR" = (
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/aisat_interior)
+"tGd" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/wood,
+/area/library/abandoned)
+"tGi" = (
+/obj/structure/closet/chefcloset,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/mop,
+/obj/item/soap,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/kitchen)
+"tGl" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/toxins/mixing)
+"tGo" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating/airless,
+/area/toxins/test_area)
+"tGs" = (
+/obj/structure/table/glass,
+/obj/item/flashlight/lamp,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/virology)
+"tGA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel,
-/area/hydroponics)
-"nJZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/virology/lab)
+"tGD" = (
+/obj/structure/chair/office/light{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/landmark/start{
+ name = "Chief Medical Officer"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/sw)
-"nKe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/hallway/primary/central/west)
-"nKy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"nKF" = (
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry/commercial)
-"nKX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "cmo"
},
-/obj/machinery/light/small,
+/area/medical/cmo)
+"tGE" = (
+/turf/simulated/wall/r_wall,
+/area/engine/supermatter)
+"tGG" = (
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"nLD" = (
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/maintenance/starboardsolar)
+"tGM" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/pipe/simple/insulated,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
},
-/area/security/evidence)
-"nLE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/vending/wallmed{
+ pixel_x = 26
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A35";
- location = "A34"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
+/area/toxins/mixing)
+"tGR" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+ dir = 1;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/area/security/lobby)
-"nLX" = (
-/obj/machinery/hologram/holopad,
+/area/medical/ward)
+"tGV" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "browncorner";
+ tag = "icon-browncorner (EAST)"
},
-/area/engine/mechanic_workshop/hanger)
-"nMs" = (
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"tHn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 32
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
- },
-/area/security/evidence)
-"nMw" = (
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"tHr" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"nNg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
-"nNm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+"tHC" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"tHH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/genetics)
+"tHP" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkblue"
},
-/area/hallway/secondary/entry/louge)
-"nNy" = (
-/obj/structure/table,
-/obj/item/folder/yellow,
-/obj/item/pen,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/bridge)
+"tHS" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/security/securearmoury)
+"tHZ" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "neutralcorner"
},
-/area/security/prisonlockers)
-"nNN" = (
-/obj/structure/chair,
-/turf/simulated/floor/plasteel{
+/area/crew_quarters/sleep)
+"tIb" = (
+/obj/machinery/camera{
+ c_tag = "Paramedic's Office";
dir = 1;
- icon_state = "red"
+ network = list("Medical","SS13")
},
-/area/security/lobby)
-"nPa" = (
-/obj/structure/disposalpipe/segment{
+/obj/item/radio/intercom{
+ pixel_y = -32
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/light_switch{
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner (WEST)"
},
-/area/crew_quarters/sleep)
-"nPi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/medical/paramedic)
+"tIh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/genetics)
+"tIu" = (
+/obj/machinery/power/apc{
dir = 1;
- icon_state = "dark"
+ name = "north bump";
+ pixel_y = 24
},
-/area/engine/controlroom)
-"nQv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/floor/plating,
/area/maintenance/starboard{
name = "Engineering Maintenance"
})
-"nQG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced{
- dir = 4
+"tIz" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
},
-/obj/structure/window/reinforced{
+/obj/machinery/light{
dir = 8
},
-/obj/structure/window/reinforced,
-/turf/simulated/floor/grass,
-/area/medical/medbay)
-"nQS" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"nRC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/firealarm{
- pixel_y = 24
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/south)
-"nSd" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- on = 1
+ icon_state = "red"
+ },
+/area/security/securehallway)
+"tID" = (
+/obj/structure/transit_tube{
+ icon_state = "D-NE";
+ tag = "icon-D-NE"
},
+/turf/space,
+/area/space/nearstation)
+"tIK" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/medical/paramedic)
-"nSf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/bed,
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"nSi" = (
-/obj/effect/decal/warning_stripes/north,
+/area/bridge/vip)
+"tIL" = (
+/obj/structure/rack,
+/obj/machinery/light/small,
+/obj/item/aicard,
+/obj/item/storage/secure/briefcase,
+/obj/item/multitool,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "vault";
+ tag = "icon-vault (WEST)"
},
-/area/engine/hardsuitstorage)
-"nSo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/bridge)
+"tIQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"nSr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "white"
},
-/area/security/permabrig)
-"nSt" = (
-/obj/structure/table,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/area/medical/reception)
+"tIY" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"tJh" = (
+/mob/living/simple_animal/pet/dog/pug,
/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/toxins/explab)
+"tJk" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- icon_state = "red"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/security/processing)
-"nSx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = -32
+/turf/simulated/floor/carpet,
+/area/bridge)
+"tJu" = (
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_y = -27
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"nTk" = (
+/obj/structure/piano,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
+ icon_state = "grimy"
},
-/area/security/main)
-"nTn" = (
-/obj/structure/window/reinforced{
- dir = 1
+/area/crew_quarters/bar/atrium)
+"tJM" = (
+/obj/machinery/light_switch{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/construction/hallway)
-"nTz" = (
-/obj/effect/decal/warning_stripes/northeastcorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/library)
+"tJN" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "chapel"
},
-/area/engine/hardsuitstorage)
-"nTD" = (
-/obj/structure/rack{
+/area/chapel/main)
+"tKa" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
dir = 8;
- layer = 2.9
+ icon_state = "neutralcorner"
},
-/obj/item/storage/box/teargas,
-/obj/item/storage/box/teargas{
- pixel_x = 3;
- pixel_y = -3
+/area/hallway/primary/central/sw)
+"tKh" = (
+/obj/machinery/vending/security,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
+ icon_state = "dark"
},
-/area/security/securearmoury)
-"nTK" = (
+/area/security/evidence)
+"tKj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"tKk" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/computer/guestpass/hop{
+ pixel_x = -30
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"tKz" = (
+/obj/item/screwdriver,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"tKK" = (
/obj/structure/table,
-/obj/item/assembly/igniter,
+/obj/item/book/manual/security_space_law,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/security/permabrig)
-"nUq" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall/r_wall,
-/area/security/prison/cell_block/A)
-"nUs" = (
+/area/security/processing)
+"tKL" = (
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 9";
+ dir = 6;
+ network = list("SS13","MiniSat")
+ },
+/turf/space,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"tKX" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/space,
+/area/space/nearstation)
+"tLc" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno6";
+ name = "Creature Cell #6";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"tLh" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "teleportershutter";
+ name = "Teleporter Shutters"
+ },
+/obj/machinery/door_control{
+ id = "teleportershutter";
+ name = "Teleporter Shutters Access Control";
+ pixel_x = -24;
+ req_access_txt = "17"
+ },
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"tLj" = (
+/obj/structure/window/plasmareinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/chair/comfy/shuttle,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport)
+"tLr" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/machinery/light_switch{
+ pixel_x = 8;
+ pixel_y = -24
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"tLv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/brig)
+"tLy" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
},
+/area/bridge)
+"tLB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "ai1";
- name = "Turret Shutters"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/plating,
-/area/turret_protected/aisat_interior)
-"nUw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"tLD" = (
+/turf/simulated/wall,
+/area/security/permabrig)
+"tLH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/obj/structure/table/reinforced,
+/obj/item/folder/blue,
+/obj/item/paper/tcommskey,
+/obj/item/stamp/ce,
+/obj/item/paper/monitorkey,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/chief)
+"tLI" = (
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
},
/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"nUy" = (
+/area/maintenance/asmaint2)
+"tLN" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -32;
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/customs)
-"nUJ" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"nVJ" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "2"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/crew_quarters/chief)
+"tLO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/storage{
- name = "Perma Maintenance"
- })
-"nVL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/landmark{
- name = "JoinLateCyborg"
+/area/medical/virology)
+"tLT" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/structure/table/glass,
+/obj/item/scalpel{
+ pixel_y = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ icon_state = "whitepurplefull"
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"nWB" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green,
-/obj/item/paper_bin{
- pixel_y = 5
+/area/medical/research/restroom)
+"tMi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/pen/multi,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/sorting)
+"tMj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/carpet,
-/area/medical/psych)
-"nXe" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/item/flag/atmos,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/chief)
+"tMm" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/ward)
+"tMG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "bcarpet05"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/area/security/prison/cell_block/A)
-"nXf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/medbay3)
+"tML" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light_switch{
+ pixel_x = 8;
+ pixel_y = 26
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/holosign_switch{
+ id = "surgery2";
+ pixel_x = -6;
+ pixel_y = 26
+ },
+/obj/item/radio/intercom{
+ pixel_x = -28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
+/area/medical/surgery2)
+"tMO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+/obj/machinery/door_control{
+ id = "CMO Shutters";
+ name = "CMO Privacy Shutters Control";
+ pixel_x = 26;
+ pixel_y = 7
},
-/area/medical/sleeper)
-"nXm" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
+/obj/machinery/door_control{
+ id = "Biohazard_medi";
+ name = "Medbey Lockdown";
+ pixel_x = 26;
+ pixel_y = -9
},
-/area/engine/hardsuitstorage)
-"nXE" = (
-/obj/machinery/light/small{
+/obj/structure/table/glass,
+/obj/item/phone,
+/obj/item/lighter/zippo/cmo,
+/turf/simulated/floor/plasteel,
+/area/medical/cmo)
+"tMQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/obj/structure/rack,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50;
- pixel_x = 3;
- pixel_y = 3
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/clothing/head/welding,
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"nYp" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "4-8"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j1 (WEST)"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/permabrig)
-"nYK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/area/security/prison/cell_block/A)
+"tMU" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "red"
},
-/area/medical/medbay2)
-"nZz" = (
+/area/security/brig)
+"tMV" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "hosp";
- name = "HoS Privacy Shutters"
- },
/turf/simulated/floor/plating,
-/area/security/hos)
-"oaG" = (
+/area/medical/virology/lab)
+"tNa" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/chapel/main)
-"obl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/security/armoury)
+"tNf" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/primary/central/ne)
-"obR" = (
-/obj/structure/fans/tiny,
-/turf/simulated/floor/plating/airless,
-/area/toxins/test_area)
-"ocb" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/nw)
-"ocB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 1
},
-/area/medical/ward)
-"ocE" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/area/security/main)
+"tNl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/engine/engineering)
-"odb" = (
-/turf/simulated/wall/rust,
-/area/maintenance/asmaint2)
-"odT" = (
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/prisonershuttle)
-"oek" = (
-/obj/machinery/air_sensor{
- frequency = 1222;
- id_tag = "burn_sensor"
+/area/crew_quarters/fitness)
+"tNI" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall14";
+ tag = "icon-swall14"
},
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
-/turf/simulated/floor/engine/insulated/vacuum,
-/area/toxins/mixing)
-"oel" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"tNL" = (
+/obj/structure/chair/office/dark{
+ dir = 8
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/turf/simulated/floor/plasteel{
dir = 8;
- on = 1
+ icon_state = "red"
+ },
+/area/security/reception)
+"tOb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkred"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/processing)
-"oey" = (
+/area/crew_quarters/fitness)
+"tOf" = (
/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Chemistry";
+ name = "Chemistry Privacy Shutter"
+ },
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "SKPP"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "eslock";
- name = "Escape Shuttle Lockdown"
+/turf/simulated/floor/plating,
+/area/medical/chemistry)
+"tOg" = (
+/obj/item/flag/cargo,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"tOj" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/construction/hallway)
+"tOs" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plating,
-/area/bridge/checkpoint/south)
-"ofj" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/maintenance/gambling_den)
+"tOA" = (
+/obj/machinery/camera{
+ c_tag = "Bridge Starboard";
+ dir = 1
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaCellsLockdown";
- name = "Perma Cells Lockdown"
+/area/bridge)
+"tOB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"ofk" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/toxins/mixing)
-"ogb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"ogf" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+ icon_state = "darkblue"
},
-/turf/simulated/floor/plasteel{
+/area/bridge)
+"tOD" = (
+/obj/machinery/light/small,
+/obj/machinery/camera{
+ c_tag = "Xeno Containment 3";
dir = 1;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"ogg" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall8";
- tag = "icon-swall12"
+ network = list("Research","SS13")
},
-/area/shuttle/trade/sol)
-"ogj" = (
-/obj/machinery/flasher_button{
- id = "Perma3";
- layer = 4;
- name = "Prison Flasher";
- pixel_y = 32
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "Perma21";
- name = "Third Cell Brig Bolts";
- normaldoorcontrol = 1;
- pixel_x = 6;
- pixel_y = 24;
- req_access_txt = "2";
- specialfunctions = 4
+/area/toxins/xenobiology)
+"tON" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "escape"
},
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "Perma22";
- name = "Third Cell Perma Bolts";
- normaldoorcontrol = 1;
- pixel_x = -6;
- pixel_y = 24;
- req_access_txt = "2";
- specialfunctions = 4
+/area/crew_quarters/fitness)
+"tOT" = (
+/obj/machinery/computer/security{
+ network = list("SS13","Research Outpost","Mining Outpost")
},
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 6;
icon_state = "red"
},
-/area/security/brig)
-"ogH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/area/security/reception)
+"tPd" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "ceprivacy";
+ name = "CE Privacy Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/chief)
+"tPe" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/central/ne)
+"tPh" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"tPj" = (
+/obj/structure/chair/sofa,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"tPv" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"tPD" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1;
+ icon_state = "propulsion_r";
+ tag = "icon-propulsion_r (NORTH)"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate_sit)
+"tQe" = (
+/obj/structure/chair/comfy/brown,
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/medical/sleeper)
-"oha" = (
-/obj/structure/lattice,
-/obj/structure/transit_tube{
- icon_state = "W-NE";
- tag = "icon-W-NE"
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/turf/space,
-/area/space/nearstation)
-"ohB" = (
-/obj/machinery/sleeper{
- dir = 4
+/obj/effect/landmark/start{
+ name = "Detective"
},
-/obj/structure/window/reinforced{
- dir = 8
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"tQh" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "brown"
},
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"tQn" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "grimy"
},
-/area/medical/sleeper)
-"ohC" = (
+/area/library)
+"tQo" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"ohN" = (
-/obj/machinery/light/small{
- dir = 8
+/area/engine/engineering/monitor)
+"tQq" = (
+/obj/structure/chair/office/dark{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"ohO" = (
-/obj/machinery/light,
-/obj/machinery/newscaster{
- pixel_x = -32
+/obj/effect/landmark/start{
+ name = "Internal Affairs Agent"
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/prison/cell_block/A)
-"ojf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "cult";
+ tag = "icon-cult"
},
+/area/lawoffice)
+"tQs" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "Warden";
+ name = "Warden Privacy Shutters"
},
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+/turf/simulated/floor/plating,
+/area/security/warden)
+"tQF" = (
+/obj/machinery/light{
+ dir = 4
},
-/area/hallway/secondary/entry)
-"okc" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "red"
},
-/area/engine/gravitygenerator)
-"okX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/securehallway)
+"tQG" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"tQL" = (
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 9;
+ icon_state = "yellow"
},
-/area/medical/medbay3)
-"olb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/maintenance/electrical)
+"tQQ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"olZ" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 27
- },
+/area/engine/hardsuitstorage)
+"tQX" = (
+/obj/machinery/computer/message_monitor,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"tRb" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/camera{
- c_tag = "Processing Room";
- dir = 8;
- network = list("SS13","Security")
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"tRm" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Airlock";
+ req_access_txt = "150"
},
-/area/security/processing)
-"omi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/door_control{
+ id = "syndicate_sit_1";
+ name = "Blast Doors";
+ pixel_x = -25;
+ req_access_txt = "150"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "syndicate_sit_1";
+ name = "Front Hull Door";
+ opacity = 0;
+ req_access_txt = "150"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate_sit)
+"tRE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"omJ" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"omO" = (
-/obj/machinery/door/window{
- name = "Secure Armory";
- req_access_txt = "2"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/binary/valve,
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"ooA" = (
-/obj/effect/decal/warning_stripes/yellow/partial,
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"ooV" = (
+/area/engine/engineering/monitor)
+"tRG" = (
+/obj/machinery/optable,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/closet/crate/freezer,
-/obj/item/tank/emergency_oxygen/engi/empty,
-/obj/item/tank/emergency_oxygen/engi/empty,
-/obj/item/reagent_containers/iv_bag/blood/AMinus,
-/obj/item/reagent_containers/iv_bag/blood/APlus,
-/obj/item/reagent_containers/iv_bag/blood/BMinus,
-/obj/item/reagent_containers/iv_bag/blood/BPlus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/machinery/iv_drip,
-/obj/item/reagent_containers/iv_bag/salglu,
-/obj/effect/decal/warning_stripes/blue/hollow,
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/sleeper)
-"ooZ" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle,
-/turf/simulated/shuttle/plating,
-/area/shuttle/pod_4)
-"opf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/barricade/wooden,
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"opy" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/chair/comfy/black{
- dir = 1
- },
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"oqt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/camera{
- c_tag = "Bathroom North"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 28
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"oqv" = (
-/obj/structure/lattice,
-/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NW"
- },
-/turf/space,
-/area/space/nearstation)
-"oqI" = (
-/obj/structure/sign/vacuum{
- pixel_x = -32
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"oqZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/toxins/lab)
-"orl" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/chair/comfy/teal{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/medbay)
-"orw" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/shower{
+ pixel_x = -3;
+ pixel_y = 3
},
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "dark"
},
-/area/security/permabrig)
-"orI" = (
+/area/medical/surgery2)
+"tSb" = (
+/obj/structure/lattice,
/obj/structure/window/reinforced{
- dir = 8
+ dir = 1
},
+/turf/space,
+/area/space/nearstation)
+"tSc" = (
+/turf/simulated/wall/r_wall,
+/area/engine/engineering/monitor)
+"tSj" = (
/obj/structure/lattice,
/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 16";
- dir = 8;
- network = list("SS13","MiniSat")
+/obj/structure/window/reinforced{
+ dir = 1
},
/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"orS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/area/space/nearstation)
+"tSn" = (
+/obj/structure/mirror{
+ pixel_y = 32
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/structure/sink{
+ pixel_y = 21
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/main)
-"orT" = (
-/obj/machinery/door/airlock/medical{
- name = "Psych Office";
- req_access_txt = "64"
+ icon_state = "freezerfloor"
},
-/obj/machinery/door/firedoor,
+/area/security/brigstaff)
+"tSo" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"oss" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/camera{
- c_tag = "Permabrig West";
- network = list("SS13","Security")
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
- },
-/area/security/permabrig)
-"osx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/junction{
+/obj/item/radio/intercom{
dir = 4;
- tag = "icon-pipe-j1 (EAST)"
+ pixel_x = 28;
+ pixel_y = -28
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple"
- },
-/area/toxins/misc_lab)
-"osE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "dark"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/junction{
- dir = 8;
- tag = "icon-pipe-j1 (EAST)"
+/area/toxins/server)
+"tSv" = (
+/turf/simulated/shuttle/wall{
+ dir = 1;
+ icon_state = "diagonalWall3"
},
+/area/shuttle/syndicate_sit)
+"tSz" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/cmo)
+"tSD" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "ai1";
+ name = "Turret Shutters"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"osU" = (
-/obj/structure/closet/secure_closet/security,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
+/area/turret_protected/aisat_interior)
+"tSH" = (
+/obj/structure/bed,
+/obj/item/bedsheet/brown,
+/obj/effect/landmark/start{
+ name = "Chaplain"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/chapel/office)
+"tTD" = (
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkred"
+ dir = 1;
+ icon_state = "yellowcorner"
},
-/area/security/prisonershuttle)
-"oth" = (
+/area/hallway/primary/port)
+"tTG" = (
/obj/machinery/camera{
- armor = list("melee" = 50, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 100, "bio" = 0, "rad" = 0, "fire" = 90, "acid" = 50);
- c_tag = "Research Toxins Test Chamber South";
+ c_tag = "Gravity Generation";
dir = 1;
- network = list("Toxins","Research","SS13")
- },
-/obj/machinery/light,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"otJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/se)
-"oud" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/med_data/laptop,
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"oum" = (
-/turf/simulated/wall/r_wall,
-/area/medical/virology/lab)
-"ouw" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
- dir = 8
+ network = list("SS13","Engineering")
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/lobby)
-"ouL" = (
-/obj/structure/closet/firecloset,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/sw)
-"ouO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+/area/engine/gravitygenerator)
+"tTI" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/sign/electricshock{
+ pixel_y = -32
},
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"ovg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/engine/gravitygenerator)
+"tTR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/mechanic_workshop/hanger)
-"ovK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/turret_protected/aisat)
+"tTW" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
},
-/obj/structure/closet/crate/freezer,
-/obj/item/tank/emergency_oxygen/engi/empty,
-/obj/item/tank/emergency_oxygen/engi/empty,
-/obj/item/reagent_containers/iv_bag/blood/AMinus,
-/obj/item/reagent_containers/iv_bag/blood/APlus,
-/obj/item/reagent_containers/iv_bag/blood/BMinus,
-/obj/item/reagent_containers/iv_bag/blood/BPlus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/machinery/iv_drip,
-/obj/item/reagent_containers/iv_bag/salglu,
-/obj/effect/decal/warning_stripes/blue/hollow,
-/obj/structure/extinguisher_cabinet{
- pixel_y = -30
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/medical/sleeper)
-"ovT" = (
+/area/medical/medbay3)
+"tUd" = (
+/obj/structure/closet/firecloset,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central/nw)
+"tUh" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/ward)
-"owd" = (
-/obj/machinery/light{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/window/reinforced,
-/obj/structure/table,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/obj/item/paper/deltainfo,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"owl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
+/turf/simulated/floor/plating,
+/area/crew_quarters/locker)
+"tUB" = (
+/obj/machinery/vending/snack,
+/obj/effect/decal/warning_stripes/red/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/assembly/robotics)
-"owm" = (
-/obj/structure/window/reinforced{
dir = 1
},
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior Arrivals";
- dir = 6;
- network = list("SS13","MiniSat")
+/area/security/brigstaff)
+"tUH" = (
+/obj/structure/chair{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
- },
-/area/construction/hallway)
-"owM" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"owP" = (
+/area/crew_quarters/fitness)
+"tUI" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Virology";
- name = "Virology Shutters"
+ dir = 8;
+ id_tag = "Chemistry2";
+ name = "Chemistry Privacy Shutter"
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
-/area/medical/virology/lab)
-"oyh" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/medical/chemistry)
+"tUR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/library)
+"tUT" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/effect/decal/warning_stripes/south,
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"tUW" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = -30
},
/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
+"tUX" = (
+/turf/simulated/floor/engine/insulated/vacuum,
/area/toxins/mixing)
-"oyr" = (
+"tVr" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/engine/break_room)
+"tVu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -118383,99 +115765,74 @@
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/brig)
-"oyt" = (
-/obj/machinery/door/airlock/research/glass{
- name = "Toxin Mixing";
- req_access_txt = "47"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/engine/break_room)
+"tVz" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"oyP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/effect/decal/warning_stripes/northeastcorner,
+/obj/effect/decal/warning_stripes/southeastcorner,
+/turf/simulated/floor/plasteel{
dir = 8;
- initialize_directions = 11
+ icon_state = "neutralfull"
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A16";
- location = "A15"
+/area/maintenance/electrical)
+"tVC" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/chair{
+ dir = 1
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/north)
-"ozi" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall/r_wall,
-/area/security/processing)
-"ozv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+ dir = 0;
+ icon_state = "green"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"ozQ" = (
+/area/hallway/secondary/exit)
+"tVP" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering";
+ req_access_txt = "32"
},
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"ozW" = (
-/obj/structure/closet,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "neutralfull"
},
-/area/security/evidence)
-"oAg" = (
-/obj/structure/rack,
+/area/engine/break_room)
+"tVV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -118483,257 +115840,328 @@
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
+/obj/effect/landmark{
+ name = "lightsout"
},
-/area/security/permabrig)
-"oBd" = (
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"oBf" = (
-/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "green"
- },
-/area/hydroponics)
-"oBj" = (
-/obj/structure/closet/secure_closet/security,
-/obj/structure/window/reinforced{
- dir = 4
+ icon_state = "neutralfull"
},
+/area/engine/break_room)
+"tWj" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/fsmaint)
+"tWn" = (
+/turf/simulated/wall,
+/area/security/execution)
+"tWL" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno4";
+ name = "Creature Cell #4";
+ opacity = 0
},
-/obj/item/clothing/mask/balaclava,
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"tWM" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/customs)
-"oBM" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"oCt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/maintenance/electrical)
+"tXf" = (
+/turf/simulated/wall,
+/area/assembly/robotics)
+"tXp" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/engine/engineering)
+"tXq" = (
+/obj/machinery/light{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellowcorner"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/obj/structure/disposalpipe/junction{
- dir = 1;
- tag = "icon-pipe-j1 (EAST)"
+/area/hallway/primary/port/west)
+"tXC" = (
+/obj/structure/closet/paramedic,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/security/prison/cell_block/A)
-"oCA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/paramedic)
+"tXF" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/power/apc{
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 1;
- name = "north bump";
- pixel_y = 24
+ id_tag = "HoSPriv";
+ name = "HoS Office Privacy Shutters"
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/turf/simulated/floor/plating,
+/area/security/hos)
+"tXG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/south)
-"oCG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+ icon_state = "red"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+/area/crew_quarters/courtroom)
+"tXP" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 25
},
-/area/security/lobby)
-"oCU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/library/abandoned)
+"tXR" = (
+/obj/item/flag/med,
+/turf/simulated/floor/plasteel{
+ icon_state = "cmo"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"tXT" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (WEST)"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/area/medical/virology)
+"tXZ" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/toy/figure/secofficer,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -28
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/turf/simulated/floor/plasteel{
dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/area/security/reception)
+"tYb" = (
+/obj/machinery/door/window/brigdoor/westleft{
+ color = "#d70000";
+ dir = 1;
+ req_access_txt = "104"
},
-/area/medical/sleeper)
-"oDx" = (
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"tYf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel";
+ req_access = null;
+ req_access_txt = "57"
},
-/area/chapel/main)
-"oEb" = (
-/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"tYg" = (
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 0;
+ icon_state = "yellow"
},
-/area/construction/hallway)
-"oEj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/maintenance/electrical)
+"tYi" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
},
-/obj/machinery/light{
+/area/security/checkpoint)
+"tYo" = (
+/obj/structure/chair/office/dark{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/permabrig)
-"oEk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin2)
+"tYx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ dir = 4
},
-/area/security/permabrig)
-"oGg" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/turret_protected/ai)
-"oHd" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
},
+/area/chapel/main)
+"tYG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 4;
+ icon_state = "neutral"
},
-/area/security/brig)
-"oHL" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/storage/tech)
+"tYK" = (
+/turf/simulated/wall/r_wall,
+/area/medical/ward)
+"tYL" = (
+/obj/structure/table/wood,
+/obj/machinery/status_display{
+ pixel_x = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Captain's Office"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/captain)
+"tYM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/turret_protected/aisat_interior)
+"tYU" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
+ d1 = 2;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "2-8"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "First Surgery Theatre";
- name = "Surgery Shutters"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/turf/simulated/floor/plating,
-/area/medical/surgery1)
-"oId" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
-/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/sleep)
-"oIk" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/area/storage/tech)
+"tZg" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "yellow"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"oIq" = (
+/area/maintenance/electrical)
+"tZh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkyellow"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/engine/mechanic_workshop/hanger)
-"oIV" = (
+/area/medical/surgery2)
+"tZs" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/turf/simulated/floor/wood,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"tZI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"tZN" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"tZR" = (
+/obj/machinery/pipedispenser,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"tZU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/cable{
@@ -118741,170 +116169,148 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
- },
-/area/turret_protected/aisat_interior)
-"oJn" = (
-/obj/machinery/hydroponics/soil,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
- },
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"oJF" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/barricade/wooden,
-/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"oJO" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/scrubber,
+/area/toxins/explab)
+"ual" = (
/obj/item/radio/intercom{
pixel_y = 24
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "escape"
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research/nhallway)
+"uaF" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -28
},
-/area/crew_quarters/locker)
-"oJT" = (
-/obj/structure/closet/firecloset,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/light,
+/obj/structure/closet/secure_closet/personal/patient,
/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/ne)
-"oJX" = (
-/obj/structure/chair/comfy/teal{
- dir = 8
+/area/medical/virology)
+"uaK" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 100;
+ on = 1
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 8;
+ icon_state = "neutral"
},
-/area/medical/medbay)
-"oKl" = (
-/obj/structure/disposalpipe/segment{
+/area/storage/tech)
+"ubg" = (
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/processing)
+"ubu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"ubA" = (
+/obj/structure/table,
+/obj/item/clipboard,
+/obj/item/airlock_electronics,
+/obj/item/stack/sheet/glass,
+/obj/item/assembly/signaler,
+/obj/machinery/light{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "whitepurplecorner"
},
-/area/hallway/primary/central/south)
-"oKR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/medical/research{
+ name = "Research Division"
+ })
+"ubI" = (
+/obj/machinery/keycard_auth{
+ pixel_x = 24
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkredcorners"
+/turf/simulated/floor/wood,
+/area/blueshield)
+"ubJ" = (
+/obj/structure/grille,
+/obj/structure/window/full/shuttle,
+/turf/simulated/floor/plating,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"ubP" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/area/security/prisonershuttle)
-"oKS" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 7
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/item/pen{
- pixel_x = 4;
- pixel_y = 4
+/area/hallway/secondary/exit)
+"ubT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/area/crew_quarters/locker)
+"ubV" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"ucf" = (
+/obj/machinery/disposal,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
},
+/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHEAST)"
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/area/medical/ward)
-"oLb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/surgery1)
+"ucx" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/wall,
-/area/quartermaster/delivery)
-"oLr" = (
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/chapel/main)
+"ucJ" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "Perma1";
- name = "Inner Perma Access Bolts";
- normaldoorcontrol = 1;
- pixel_x = -6;
- pixel_y = -13;
- req_access_txt = "2";
- specialfunctions = 4
+/obj/machinery/camera{
+ c_tag = "Primary Tool Storage";
+ dir = 4
},
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "Perma11";
- name = "First Cell Brig Bolts";
- normaldoorcontrol = 1;
- pixel_x = 6;
- pixel_y = 7;
- req_access_txt = "2";
- specialfunctions = 4
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/janitorialcart,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"ucN" = (
+/obj/machinery/camera{
+ c_tag = "Rec Room Center";
+ dir = 4;
+ pixel_y = -22
},
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "Perma12";
- name = "First Cell Perma Bolts";
- normaldoorcontrol = 1;
- pixel_x = -6;
- pixel_y = 7;
- req_access_txt = "2";
- specialfunctions = 4
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "Perma22";
- name = "Second Cell Perma Bolts";
- normaldoorcontrol = 1;
- pixel_x = -6;
- pixel_y = -3;
- req_access_txt = "2";
- specialfunctions = 4
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "Perma21";
- name = "Second Cell Brig Bolts";
- normaldoorcontrol = 1;
- pixel_x = 6;
- pixel_y = -3;
- req_access_txt = "2";
- specialfunctions = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "Perma2";
- name = "Outer Perma Access Bolts";
- normaldoorcontrol = 1;
- pixel_x = 6;
- pixel_y = -13;
- req_access_txt = "2";
- specialfunctions = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/obj/structure/cable{
d1 = 4;
@@ -118912,684 +116318,631 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkred"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/fitness)
+"ucR" = (
+/obj/structure/rack{
+ dir = 1
},
-/area/security/permabrig)
-"oMk" = (
/obj/structure/window/reinforced{
dir = 8
},
-/obj/structure/window/reinforced{
- dir = 4
+/obj/structure/window/reinforced,
+/obj/item/tank/jetpack/oxygen,
+/obj/item/tank/oxygen,
+/obj/item/clothing/shoes/magboots,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/camera{
+ c_tag = "Brig Pilot Office";
+ dir = 1;
+ network = list("SS13","Security")
},
-/area/construction/hallway)
-"oMz" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/xenozoo)
-"oMF" = (
-/obj/effect/decal/warning_stripes/north,
+/area/security/podbay)
+"ude" = (
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
},
+/obj/structure/closet/wardrobe/pink,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "neutralcorner"
},
-/area/security/securearmoury)
-"oMH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/crew_quarters/locker)
+"udm" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"oNp" = (
-/obj/machinery/flasher{
- desc = "A wall-mounted punk-sorting device. Its bulb seems to have extra power running through it.";
- id = "permaflash";
- name = "Mounted Prison flash";
- range = 3
- },
-/turf/simulated/wall,
-/area/security/permabrig)
-"oNx" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = -30
- },
-/obj/item/stack/tape_roll,
-/obj/item/stack/tape_roll{
- pixel_x = -4;
- pixel_y = 4
+/area/medical/research/nhallway)
+"udw" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
-/obj/item/stack/tape_roll{
- pixel_x = 4;
- pixel_y = 4
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/obj/machinery/camera{
- c_tag = "Briefing Room 2";
- dir = 1;
- network = list("SS13","Security")
+/area/crew_quarters/serviceyard)
+"udI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 1;
+ icon_state = "yellowcorner"
},
-/area/security/main)
-"oNJ" = (
+/area/storage/primary)
+"udO" = (
+/obj/machinery/hologram/holopad,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
+ },
+/area/medical/reception)
+"udT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "cautioncorner"
+ },
+/area/hallway/primary/starboard/east)
+"udZ" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/fitness)
+"uek" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
+ dir = 4;
initialize_directions = 11
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/brig)
-"oOf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/area/teleporter)
+"ueo" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/obj/structure/closet,
+/area/medical/paramedic)
+"uex" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 3;
name = "3maintenance loot spawner"
},
+/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"oOr" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- tag = "icon-pipe-j1 (EAST)"
+/area/maintenance/asmaint2)
+"uey" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/library)
+"uez" = (
+/obj/structure/sign/greencross,
+/turf/simulated/wall,
+/area/medical/ward)
+"ueJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"ueQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/hallway/primary/central/south)
-"oOZ" = (
-/turf/simulated/wall/r_wall,
-/area/toxins/misc_lab)
-"oPi" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/area/turret_protected/ai)
-"oPH" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "Virology";
- name = "Virology Shutters"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
},
-/turf/simulated/floor/plating,
-/area/medical/virology/lab)
-"oPZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/east,
-/obj/item/radio/intercom{
- pixel_x = 30
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"oQz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"ufg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/permabrig)
-"oRe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"oRf" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/power/apc{
dir = 4;
- name = "east bump";
- pixel_x = 24
+ icon_state = "neutralcorner"
},
-/obj/structure/cable{
+/area/bridge/vip)
+"ufl" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ d1 = 1;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "1-8"
},
+/obj/effect/decal/warning_stripes/northwestcorner,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"ufn" = (
+/obj/structure/window/reinforced,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "darkblue"
},
-/area/medical/ward)
-"oRr" = (
+/area/construction/hallway)
+"ufo" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/customs)
-"oRM" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/assembly/robotics)
-"oSL" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood{
- icon_state = "wood-broken6";
- tag = "icon-wood-broken6"
- },
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"oTu" = (
+/area/hallway/primary/central/nw)
+"ufp" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/newscaster{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"oTI" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f5";
- tag = "icon-swall_f5"
+ icon_state = "1-8"
},
-/area/shuttle/pod_4)
-"oTL" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
- icon_state = "1-4";
- tag = ""
+ icon_state = "1-4"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/starboard)
-"oUh" = (
-/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/cmo)
+"ufw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/range)
+"ufD" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Virology";
- name = "Virology Shutters"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/medical/virology)
-"oUQ" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkbluecorners"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/construction/hallway)
-"oVF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"ufG" = (
/obj/machinery/light/small{
- dir = 8
+ dir = 1
},
/turf/space,
/area/aisat{
name = "\improper AI Satellite Hallway"
})
-"oWg" = (
-/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SE"
+"ufP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/space,
-/area/space/nearstation)
-"oWk" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/machinery/portable_atmospherics/canister/sleeping_agent,
-/turf/simulated/floor/plating,
-/area/security/execution)
-"oWB" = (
-/obj/structure/window/full/shuttle,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"oWV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = -32
+/area/medical/ward)
+"ufR" = (
+/obj/structure/table/reinforced,
+/obj/item/airalarm_electronics,
+/obj/item/firealarm_electronics{
+ pixel_x = 4;
+ pixel_y = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+/obj/item/stack/cable_coil/random,
+/obj/item/stock_parts/cell/high,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/storage/secure)
+"ufU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/medbay3)
-"oXm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "neutral"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/main)
-"oXn" = (
-/obj/structure/chair/wood,
+/area/crew_quarters/fitness)
+"uga" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"oXx" = (
-/obj/structure/window/reinforced{
dir = 1
},
+/area/security/reception)
+"ugf" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/bridge)
+"ugg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
+/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "darkblue"
- },
-/area/construction/hallway)
-"oXC" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/wall/r_wall/coated,
-/area/toxins/storage)
-"oXK" = (
-/obj/machinery/hydroponics/constructable{
- desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays.";
- name = "Prison hydroponics tray";
- using_irrigation = 1
- },
-/obj/item/seeds/wheat/rice,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/permabrig)
-"oXV" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/medical/medbay2)
-"oYk" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,
-/turf/simulated/wall/r_wall/coated,
-/area/toxins/mixing)
-"oYt" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ icon_state = "pipe-c"
},
-/area/security/permabrig)
-"oZd" = (
-/obj/item/twohanded/required/kirbyplants,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"ugi" = (
+/obj/structure/table/reinforced,
+/obj/item/folder{
+ pixel_x = -4
},
-/area/turret_protected/aisat)
-"oZz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/folder/red{
+ pixel_y = 3
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"oZS" = (
-/mob/living/simple_animal/pig{
- name = "Саня"
+/obj/item/folder/blue{
+ pixel_x = 5
},
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"pbg" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/folder/yellow{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stamp/law,
+/obj/item/pen/multi,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/lawoffice)
+"ugl" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "ai2";
- name = "Turret Shutters"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"pbw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hallway/primary/central/ne)
+"ugu" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
},
-/obj/item/radio/intercom{
- pixel_y = 24
+/obj/structure/cable{
+ icon_state = "0-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ dir = 4;
+ icon_state = "whitered"
},
-/area/medical/medbay)
-"pbz" = (
-/obj/effect/decal/warning_stripes/northeast,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
+/area/security/medbay)
+"ugy" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/medical/research{
+ name = "Research Division"
+ })
+"ugH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "redcorner"
},
-/area/medical/morgue)
-"pbM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/main)
+"ugN" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"ugW" = (
+/obj/structure/grille,
+/obj/structure/window/full/shuttle{
+ icon_state = "8"
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/arrival/station)
+"ugX" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/firealarm{
+/obj/item/radio/intercom{
+ pixel_x = -28;
pixel_y = 24
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/bridge/vip)
-"pcr" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"pcM" = (
-/obj/item/radio/beacon,
-/obj/machinery/camera{
- armor = list("melee" = 50, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 100, "bio" = 0, "rad" = 0, "fire" = 90, "acid" = 50);
- c_tag = "Research Toxins Test Chamber East";
- dir = 4;
- network = list("Toxins","Research","SS13")
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel/airless/indestructible,
-/area/toxins/test_area)
-"pcV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 8;
- frequency = 1379;
- id_tag = "solar_chapel_pump"
- },
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "solar_chapel_airlock";
- pixel_y = 25;
- req_access_txt = "13";
- tag_airpump = "solar_chapel_pump";
- tag_chamber_sensor = "solar_chapel_sensor";
- tag_exterior_door = "solar_chapel_outer";
- tag_interior_door = "solar_chapel_inner"
+ icon_state = "4-8"
},
-/obj/machinery/airlock_sensor{
- id_tag = "solar_chapel_sensor";
- pixel_y = 32
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"pda" = (
+/area/hallway/primary/central/se)
+"uhk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/cleanable/vomit,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"pdE" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/light{
- dir = 8
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "green"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/hallway/secondary/exit)
-"pen" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/bridge/vip)
+"uhn" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"uhI" = (
+/obj/machinery/mass_driver{
+ id_tag = "chapelgun"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"peE" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Mass Driver";
+ req_access_txt = "22"
},
-/obj/machinery/light{
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/table,
-/obj/item/lighter,
-/obj/item/storage/fancy/cigarettes/cigpack_robust,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+/turf/simulated/floor/plating,
+/area/chapel/main)
+"uhP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/security/processing)
-"pfr" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "2-4"
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A34";
- location = "A33"
+/turf/simulated/floor/plasteel{
+ dir = 1
},
+/area/security/reception)
+"uhY" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "redcorner"
},
-/area/hallway/primary/central/east)
-"pfs" = (
-/obj/effect/spawner/window/reinforced,
+/area/security/securehallway)
+"uip" = (
/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "hosp";
- name = "HoS Privacy Shutters"
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
+/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plating,
-/area/security/hos)
-"pfE" = (
-/obj/effect/decal/warning_stripes/north,
+/area/maintenance/starboardsolar)
+"uiA" = (
+/obj/machinery/photocopier,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 26
+ },
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"pgv" = (
-/obj/machinery/power/terminal{
- dir = 1
+ icon_state = "0-8"
},
-/obj/effect/decal/warning_stripes/blue/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/ai)
-"pgG" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"pgO" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+ dir = 5;
+ icon_state = "red"
},
-/turf/simulated/floor/plasteel{
+/area/security/reception)
+"uiX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- icon_state = "cmo"
+ initialize_directions = 11
},
-/area/medical/cmo)
-"phg" = (
-/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = 32
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"piJ" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
+ },
+/area/security/brig)
+"ujh" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/obj/item/radio/intercom{
dir = 4;
+ pixel_x = 28
+ },
+/obj/item/flashlight/lamp,
+/obj/item/paper/monitorkey,
+/turf/simulated/floor/plasteel{
icon_state = "whitepurplecorner"
},
-/area/toxins/explab)
-"pjj" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/crew_quarters/hor)
+"ujn" = (
+/obj/structure/chair{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/area/security/prisonlockers)
-"pjr" = (
-/obj/machinery/computer/arcade/battle,
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"pjP" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Armory";
- req_access_txt = "3";
- security_level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"uju" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/wall,
+/area/medical/virology/lab)
+"ujB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -119598,545 +116951,689 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/securearmoury)
-"pjV" = (
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"ujV" = (
/obj/structure/cable{
- d1 = 2;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/starboard)
+"ukb" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "neutralfull"
},
-/area/security/permabrig)
-"pkf" = (
-/obj/item/radio/intercom{
- pixel_x = -28
+/area/hallway/primary/port/west)
+"ukf" = (
+/obj/structure/sign/directions/engineering{
+ dir = 1;
+ pixel_y = 8
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/aisat_interior)
-"pkE" = (
+/obj/structure/sign/directions/science{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/sign/directions/evac{
+ pixel_y = -8
+ },
+/turf/simulated/wall,
+/area/bridge/checkpoint/south)
+"ukt" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"ukv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"ukA" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken3";
+ tag = "icon-wood-broken3"
+ },
+/area/maintenance/fsmaint)
+"ulb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
+ },
+/area/medical/medbay2)
+"ult" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaCellsLockdown";
+ name = "Perma Cells Lockdown"
},
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"umd" = (
+/obj/effect/decal/warning_stripes/northwestcorner,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"umr" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/light/small{
+/obj/machinery/light{
dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/retractor{
- pixel_x = 4;
- pixel_y = 11
- },
-/obj/item/hemostat{
- pixel_x = -5;
- pixel_y = 7
+/obj/machinery/camera{
+ c_tag = "Cremator";
+ dir = 8
},
-/obj/item/mmi{
- pixel_x = 1;
- pixel_y = -9
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/chapel/office)
+"umy" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
+ dir = 1;
+ icon_state = "red"
},
-/area/security/processing)
-"pkH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/security/securehallway)
+"umL" = (
/obj/structure/sign/poster/official/random{
- pixel_x = -32
+ pixel_x = 32
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/magistrateoffice)
+"umX" = (
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway West 3";
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/west)
+"unk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "E.V.A.";
+ req_one_access_txt = "18"
+ },
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"unn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/medbay2)
-"pkQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
+ },
+/area/medical/surgery2)
+"unx" = (
+/obj/structure/sign/botany,
+/turf/simulated/wall,
+/area/hydroponics)
+"unE" = (
+/obj/structure/chair/office/dark{
+ dir = 1
},
-/area/hallway/primary/central/south)
-"pln" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "bcarpet05"
+ },
+/area/blueshield)
+"unM" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Warden's Office";
+ req_access_txt = "3"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/area/security/prisonershuttle)
-"plW" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/muffin{
- pixel_y = 9
+/obj/structure/cable{
+ icon_state = "2-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/chapel/main)
-"pmr" = (
-/obj/machinery/door/airlock/external{
- name = "Toxins Test Chamber"
+/area/security/warden)
+"unN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating/airless,
-/area/toxins/test_area)
-"pmu" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"pmP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/medical/sleeper)
-"pnb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/security/main)
+"uob" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/radio/intercom{
- pixel_x = -28
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/hallway/primary/central/east)
-"pnr" = (
-/obj/effect/decal/cleanable/blood/xeno,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/gambling_den)
-"pnF" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
- dir = 1
+/area/security/warden)
+"uoA" = (
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/tcommsat/chamber)
-"pnM" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
},
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/podbay)
+"uoI" = (
+/obj/structure/transit_tube{
+ icon_state = "D-SE";
+ tag = "icon-D-SE"
+ },
+/turf/space,
+/area/space/nearstation)
+"uoK" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"uoL" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"uoW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/brig)
-"poa" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/security/processing)
-"pob" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ dir = 8;
+ icon_state = "darkred"
},
-/area/security/lobby)
-"poq" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
+/area/security/warden)
+"uoY" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/obj/machinery/door/firedoor,
+/area/medical/research/restroom)
+"upr" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/toxins/mixing)
+"upx" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/medical/paramedic)
+"upN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/prisonershuttle)
-"pot" = (
+/area/security/warden)
+"upS" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "orangecorner"
+ },
+/area/hallway/primary/aft)
+"upW" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/dropper/precision,
+/obj/item/reagent_containers/dropper/precision,
+/obj/item/reagent_containers/dropper/precision,
+/obj/item/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/box/syringes,
+/obj/item/storage/box/syringes,
+/obj/item/storage/box/iv_bags{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/iv_bags{
+ pixel_x = 4;
+ pixel_y = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/junction{
+/turf/simulated/floor/plasteel{
dir = 1;
- tag = "icon-pipe-j1 (EAST)"
+ icon_state = "whiteyellow"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/chemistry)
+"upZ" = (
+/turf/simulated/shuttle/wall{
+ dir = 8;
+ icon_state = "diagonalWall3"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/area/shuttle/syndicate_sit)
+"uqq" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/suit_storage_unit/engine,
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"uqu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/area/medical/sleeper)
-"ppG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
},
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/structure/cable,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ dir = 8;
+ icon_state = "darkred"
},
-/area/medical/medbay)
-"pqN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/security/securearmoury)
+"uqM" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A21";
- location = "A20"
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/item/gun/energy/gun/advtaser{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/gun/advtaser,
+/obj/item/gun/energy/gun/advtaser{
+ pixel_x = 3;
+ pixel_y = -3
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/hallway/primary/central/west)
-"pqZ" = (
+/area/security/securearmoury)
+"uqO" = (
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/port)
+"urn" = (
+/obj/structure/rack{
dir = 8;
- icon_state = "neutralfull"
+ layer = 2.9
},
-/area/hallway/primary/central/nw)
-"prU" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 5;
- pixel_y = 24
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/recharger{
- pixel_y = 2
+/obj/item/grenade/barrier{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/grenade/barrier,
+/obj/item/grenade/barrier{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/grenade/barrier{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/structure/window/reinforced{
+ dir = 1
},
+/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/customs)
-"prX" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/security/securearmoury)
+"urA" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkblue"
},
+/area/construction/hallway)
+"urC" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,
+/turf/simulated/wall/r_wall/coated,
+/area/toxins/mixing)
+"usd" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/barricade/wooden,
+/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plating,
-/area/security/evidence)
-"psk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"usx" = (
+/obj/machinery/light/small,
+/obj/item/radio/intercom{
+ pixel_y = -30
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/security/range)
+"usy" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 1
},
-/area/medical/ward)
-"psH" = (
+/area/security/customs)
+"usM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/light{
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"usN" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/plasteel,
+/area/medical/cmo)
+"usO" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+/turf/simulated/floor/plasteel{
+ icon_state = "carpet"
+ },
+/area/crew_quarters/courtroom)
+"utb" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"utf" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
},
+/area/solar/starboard)
+"utt" = (
+/turf/simulated/wall/r_wall,
+/area/storage/secure)
+"uty" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/processing)
-"pts" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"utB" = (
+/obj/machinery/vending/coffee,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = 28
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ dir = 1
},
-/area/medical/ward)
-"puv" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/brig,
+/area/security/brigstaff)
+"utI" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/brig)
-"pvb" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "green"
+ icon_state = "white"
+ },
+/area/medical/medbay3)
+"utT" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "RoboPrivat";
+ name = "Robotics Privacy Shutter"
+ },
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"uud" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/girder,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"uue" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/secondary/exit)
-"pwt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry/commercial)
-"pwH" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 8
- },
-/obj/structure/window/plasmareinforced,
-/obj/structure/window/plasmareinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"pwU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/alarm{
+/obj/structure/disposalpipe/junction{
dir = 4;
- pixel_x = -22
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j2 (EAST)"
},
/turf/simulated/floor/plasteel{
- dir = 8;
+ dir = 4;
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/east)
-"pxR" = (
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"pyO" = (
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"pzJ" = (
-/obj/machinery/light/small{
- dir = 1
- },
+/area/bridge/vip)
+"uuo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
})
-"pzW" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
- },
+"uuu" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
+ icon_state = "purplecorner"
},
-/area/medical/surgery2)
-"pAg" = (
+/area/hallway/primary/aft)
+"uuw" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/xenozoo)
-"pAL" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/showcase,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/ai)
-"pBl" = (
-/obj/machinery/vending/security,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 26
+ dir = 4;
+ icon_state = "vault"
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkred"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"uuA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/security/evidence)
-"pBp" = (
-/obj/structure/closet/bombcloset,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"pBu" = (
-/obj/structure/table,
-/obj/item/dice/d20,
-/obj/item/instrument/harmonica,
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/permabrig)
-"pCn" = (
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1;
- icon_state = "red"
- },
-/area/security/permabrig)
-"pCx" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = -32
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"pCB" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -120144,236 +117641,205 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/sleep)
+"uuD" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Geneticist"
},
-/area/medical/research{
- name = "Research Division"
- })
-"pCL" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/southwest,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "whitepurple"
},
-/area/engine/mechanic_workshop/hanger)
-"pCQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/medical/genetics)
+"uuH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/lobby)
-"pDi" = (
-/turf/simulated/wall/r_wall,
-/area/security/warden)
-"pDW" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/asmaint2)
-"pEt" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
+ icon_state = "dark"
},
-/obj/structure/showcase{
- layer = 5
+/area/chapel/office)
+"uuK" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
-/area/turret_protected/aisat)
-"pEC" = (
-/obj/machinery/firealarm{
- pixel_x = -28;
- pixel_y = -28
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"uuQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "arrival"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/secondary/entry/commercial)
-"pFy" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/meter,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"pFP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (WEST)"
},
-/obj/machinery/light/small{
+/area/medical/medbay3)
+"uuY" = (
+/obj/machinery/light{
dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"pFW" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/structure/table/glass,
+/obj/item/storage/box/disks{
+ pixel_x = 4;
+ pixel_y = 4
},
-/obj/machinery/door_timer{
- dir = 1;
- id = "Cell 6";
- name = "Cell 6"
+/obj/item/storage/box/disks,
+/obj/machinery/door_control{
+ id = "Genetics";
+ name = "Genetic Privacy Shutters Control";
+ pixel_y = 26
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "red"
+ icon_state = "whitepurple"
},
-/area/security/processing)
-"pGI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/medical/genetics)
+"uve" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+/obj/machinery/disposal,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/security/permabrig)
-"pGY" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"uvp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/security/processing)
-"pHr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/security/range)
+"uvs" = (
+/obj/structure/sign/mech{
+ pixel_y = 32
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay3)
-"pIb" = (
-/obj/structure/table/reinforced,
-/obj/item/wrench,
-/obj/item/crowbar,
-/obj/item/mmi,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "2-4"
},
-/area/turret_protected/ai)
-"pIy" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/camera{
+ c_tag = "Brig Staff Room";
+ network = list("SS13","Security")
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 9;
+ icon_state = "red"
},
-/area/security/processing)
-"pKk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/brigstaff)
+"uvt" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/obj/item/radio/intercom{
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"uvC" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/westarrival)
+"uvG" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
pixel_y = 24
},
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whitehall"
+ dir = 5;
+ icon_state = "red"
},
-/area/toxins/xenobiology)
-"pKE" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/light{
- dir = 1
+/area/security/brigstaff)
+"uvJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"uvO" = (
+/obj/structure/delta_statue/nw,
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
},
-/area/security/prisonlockers)
-"pKP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/bridge/vip)
+"uvT" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/camera{
+ c_tag = "Library West";
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+/turf/simulated/floor/wood,
+/area/library)
+"uvW" = (
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding1"
},
-/area/hallway/secondary/entry/commercial)
-"pLb" = (
-/obj/machinery/camera{
- c_tag = "Cabin 4";
- dir = 9
+/obj/effect/decal/warning_stripes/west{
+ icon = 'icons/turf/floors.dmi';
+ icon_state = "siding2"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/cabin4)
-"pLy" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno2";
- name = "Creature Cell #4";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"pLB" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"pLM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "4-8"
},
-/area/medical/medbay2)
-"pLY" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -120381,282 +117847,281 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry/commercial)
-"pMh" = (
-/obj/machinery/suit_storage_unit/security,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
+ icon_state = "asteroid";
+ tag = "icon-asteroid (NORTH)"
},
-/area/security/securearmoury)
-"pMi" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+/area/hydroponics)
+"uwp" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"uws" = (
+/obj/machinery/vending/cola,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/radio/intercom{
+ pixel_x = -28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/crew_quarters/hor)
-"pMo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/crew_quarters/fitness)
+"uwI" = (
+/obj/machinery/field/generator{
+ anchored = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"uwP" = (
+/obj/structure/chair,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -24
+/area/construction/hallway)
+"uwZ" = (
+/obj/machinery/ai_slipper,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "vault"
},
-/area/hallway/primary/central/north)
-"pMH" = (
-/obj/effect/decal/warning_stripes/yellow,
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"uxe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"uxj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"pMV" = (
+/area/toxins/xenobiology)
+"uxy" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door_timer/cell_2{
- pixel_y = 0
- },
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/prison/cell_block/A)
-"pNk" = (
-/obj/structure/disposalpipe/segment{
+/area/turret_protected/aisat)
+"uxz" = (
+/obj/machinery/light/small,
+/obj/structure/chair/wood{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/newscaster{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/morgue)
-"pNr" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"pNG" = (
-/obj/structure/lattice,
-/obj/structure/transit_tube,
-/turf/space,
-/area/space/nearstation)
-"pNO" = (
-/obj/structure/table,
-/obj/item/clothing/under/color/orange/prison,
-/obj/item/clothing/shoes/orange,
-/obj/item/restraints/handcuffs,
-/obj/machinery/light,
-/obj/item/radio/intercom{
- pixel_y = -30
- },
+/area/chapel/main)
+"uxL" = (
+/obj/machinery/recharge_station,
+/obj/effect/decal/warning_stripes/red/hollow,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "brown"
- },
-/area/security/prisonlockers)
-"pOK" = (
-/obj/structure/chair{
- dir = 4
+ dir = 1
},
+/area/security/brigstaff)
+"uxS" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/genetics)
+"uye" = (
+/obj/item/radio/intercom{
+ pixel_x = 28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 100;
+ on = 1
},
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/processing)
-"pOL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 4;
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (EAST)"
},
+/area/medical/medbay3)
+"uyo" = (
/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4"
+ icon_state = "0-4"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "execution"
},
-/area/medical/medbay2)
-"pOP" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "execution"
},
-/obj/machinery/light{
- on = 1;
- pixel_y = 7
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "execution"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plating,
+/area/security/execution)
+"uyr" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/construction/hallway)
-"pPu" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/area/turret_protected/ai)
-"pPK" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/table/wood,
-/obj/item/storage/fancy/candle_box{
- pixel_x = 2;
- pixel_y = 3
+/turf/simulated/floor/engine,
+/area/security/execution)
+"uyD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/storage/fancy/candle_box,
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ icon_state = "white"
},
-/area/chapel/main)
-"pQd" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"pQP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/west,
+/area/toxins/mixing)
+"uyI" = (
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"pTj" = (
+/area/engine/engineering)
+"uyQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/effect/landmark/start{
+ name = "Cyborg"
},
-/area/hallway/primary/central/south)
-"pTJ" = (
-/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "darkbluefull"
},
-/area/engine/mechanic_workshop/hanger)
-"pTP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/turret_protected/aisat)
+"uzj" = (
+/obj/structure/sign/redcross{
+ desc = "The Star of Life, a symbol of Medical Aid.";
+ icon_state = "lifestar";
+ name = "Medbay"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/wall,
+/area/medical/reception)
+"uzl" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/area/security/brig)
-"pUb" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
/obj/machinery/camera{
- c_tag = "Minisat AI Core East";
- dir = 8;
- network = list("Minisat","SS13")
+ c_tag = "HoS Office";
+ network = list("SS13","Security")
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/ai)
-"pUL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/office/light{
- dir = 8
+/area/security/hos)
+"uzy" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"pVo" = (
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"pVM" = (
-/obj/structure/table/reinforced,
-/obj/item/stock_parts/matter_bin,
-/obj/item/stock_parts/micro_laser,
+/area/gateway)
+"uAd" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/toy/figure/hos,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+ icon_state = "grimy"
},
-/area/turret_protected/aisat)
-"pVP" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/area/security/hos)
+"uAe" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/aienter)
-"pWK" = (
-/obj/machinery/porta_turret,
-/obj/machinery/ai_status_display{
- pixel_x = -32
+/area/turret_protected/aisat)
+"uAf" = (
+/obj/machinery/conveyor/west{
+ id = "QMLoad2"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/turret_protected/ai)
-"pXD" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/quartermaster/storage)
+"uAh" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/blood/OPlus,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/radio/intercom{
+ pixel_y = 28
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/camera{
+ c_tag = "Virology Work Area";
+ network = list("Medical","SS13")
+ },
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"uAm" = (
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_access_txt = "6"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/door/poddoor{
density = 0;
@@ -120665,769 +118130,473 @@
name = "Quarantine Lockdown";
opacity = 0
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "Genetics";
- name = "Genetics Privacy Shutters"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/medical/genetics)
-"pXO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay)
-"pXS" = (
-/obj/structure/lattice,
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/space,
-/area/space/nearstation)
-"pYe" = (
-/obj/structure/table,
-/obj/item/camera{
- desc = "A one use - polaroid camera. 30 photos left.";
- name = "Camera";
- pictures_left = 30
+ icon_state = "dark"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/medical/morgue)
+"uAn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"uAC" = (
+/turf/simulated/wall,
+/area/medical/cmo)
+"uAL" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/unary/outlet_injector/on{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/area/security/processing)
-"pYt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/engine,
+/area/security/execution)
+"uAX" = (
+/turf/simulated/wall/r_wall,
+/area/construction/hallway)
+"uBr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
+/area/security/securehallway)
+"uBz" = (
/obj/item/radio/intercom{
- pixel_y = -28
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
+ dir = 4;
icon_state = "red"
},
-/area/security/lobby)
-"pYJ" = (
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "neutral"
- },
-/area/security/main)
-"pZl" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/security/securehallway)
+"uBD" = (
+/obj/machinery/door/airlock/command{
+ name = "Head of Security";
+ req_access_txt = "58"
},
-/area/hallway/secondary/exit)
-"pZH" = (
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"qbv" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/hallway/secondary/entry/westarrival)
-"qbE" = (
-/obj/machinery/door/airlock/external,
-/turf/simulated/floor/plating,
-/area/construction/hallway)
-"qbM" = (
-/turf/simulated/wall,
-/area/security/medbay)
-"qcd" = (
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
- },
-/area/turret_protected/aisat)
-"qcB" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"qcG" = (
+/area/security/hos)
+"uBQ" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/medbay3)
-"qcW" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"qcX" = (
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"qeJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/radio/intercom{
- pixel_x = -28
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/ne)
-"qfb" = (
+/area/toxins/mixing)
+"uBS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/processing)
-"qfe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/area/medical/morgue)
-"qfg" = (
-/obj/machinery/computer/brigcells,
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkred"
- },
-/area/security/warden)
-"qgu" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "Interrogation";
- name = "Interrogation Privacy Shutters"
+ icon_state = "neutralfull"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/area/hallway/primary/central/west)
+"uBX" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/floodlight,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/security/processing)
-"qgz" = (
+/area/security/permahallway)
+"uBY" = (
+/turf/simulated/wall,
+/area/bridge/checkpoint/south)
+"uCn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/security/brig)
-"qhf" = (
-/obj/structure/closet/l3closet/scientist,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"uCs" = (
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/power/terminal{
+ dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"uCv" = (
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/suit_storage_unit/security,
+/obj/structure/window/reinforced{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
- })
-"qhw" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1
+/area/security/prisonershuttle)
+"uCM" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/turret_protected/aisat_interior)
+"uCN" = (
+/turf/simulated/wall,
+/area/hallway/secondary/entry/commercial)
+"uCO" = (
+/obj/structure/chair/wood/wings,
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken5";
+ tag = "icon-wood-broken5"
},
-/area/security/main)
-"qiv" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/maintenance/abandonedbar)
+"uCS" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f6"
},
-/obj/structure/disposalpipe/segment,
+/area/shuttle/siberia)
+"uDa" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/aft)
+"uDd" = (
+/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/brig)
-"qiB" = (
-/obj/machinery/newscaster{
- pixel_x = -28
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"qiD" = (
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Service Bay";
- req_access_txt = "75"
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"uDf" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"qiF" = (
+/area/security/range)
+"uDx" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"qiU" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/grass,
-/area/medical/medbay)
-"qjp" = (
-/obj/structure/table,
-/obj/item/book/manual/security_space_law{
- pixel_x = -3;
- pixel_y = 5
- },
-/obj/machinery/camera{
- c_tag = "Permabrig 1";
- dir = 1;
- network = list("SS13","Security")
- },
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/permabrig)
-"qjr" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
+/area/maintenance/fsmaint)
+"uDz" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
-/area/security/lobby)
-"qjW" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/closet/walllocker/emerglocker/north{
- pixel_x = 32;
- pixel_y = 0
+ icon_state = "whitepurplecorner"
},
+/area/medical/research/nhallway)
+"uDH" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkyellow"
- },
-/area/engine/mechanic_workshop/hanger)
-"qjY" = (
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "cabin4";
- name = "Door Bolt Control";
- normaldoorcontrol = 1;
- pixel_y = 24;
- specialfunctions = 4
- },
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/cabin4)
-"qkv" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/walllocker/emerglocker/north{
- pixel_y = -32
+ icon_state = "neutral"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/crew_quarters/fitness)
+"uDP" = (
+/obj/structure/grille,
+/obj/structure/window/full/shuttle{
+ icon_state = "window4"
},
-/area/hydroponics)
-"qkL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plating,
+/area/shuttle/siberia)
+"uDV" = (
+/obj/structure/grille,
+/obj/structure/window/full/shuttle{
+ dir = 10;
+ icon_state = "9"
},
+/turf/simulated/floor/plating,
+/area/shuttle/siberia)
+"uEq" = (
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "red"
},
-/area/medical/sleeper)
-"qlg" = (
+/area/security/main)
+"uEr" = (
+/obj/structure/closet/bombclosetsecurity,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel,
+/area/security/range)
+"uEP" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/hallway/primary/central/east)
-"qmn" = (
-/obj/structure/chair/office/dark{
+/area/construction/hallway)
+"uEV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Botanist"
- },
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/landmark/start{
- name = "Botanist"
+ icon_state = "1-2"
},
+/obj/item/radio/beacon,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hydroponics)
-"qmu" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+ dir = 1
},
-/obj/item/pen,
+/area/security/main)
+"uEZ" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/wall/r_wall,
+/area/toxins/lab)
+"uFk" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
+/area/medical/medbay)
+"uFl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Virology";
+ req_access_txt = "39"
},
-/area/security/evidence)
-"qnc" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/quartermaster/delivery)
-"qni" = (
-/turf/simulated/wall/r_wall,
-/area/turret_protected/aisat_interior)
-"qnB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/lobby)
-"qnC" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/chair/e_chair,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plasteel,
+/area/medical/virology)
+"uFo" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"uFp" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/engine,
-/area/security/execution)
-"qqb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "purple"
- },
-/area/maintenance/xenozoo)
-"qqO" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/obj/machinery/camera{
- c_tag = "Permabrig Cells";
- network = list("SS13","Security")
- },
-/obj/item/radio/intercom{
- pixel_x = 28;
- pixel_y = 24
+ icon_state = "0-4"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
- },
-/area/security/permabrig)
-"qrT" = (
-/turf/simulated/wall/r_wall,
-/area/tcommsat/chamber)
-"qrV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/turretid/stun{
- control_area = "\improper AI Satellite Antechamber";
- name = "AI Antechamber Turret Control";
- pixel_y = 28;
- req_access_txt = "75"
- },
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Briefing";
+ name = "Briefing Room Shutters"
},
-/area/turret_protected/aisat)
-"qtp" = (
-/turf/simulated/wall,
-/area/medical/virology/lab)
-"qtK" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/turret_protected/aisat_interior)
-"qtZ" = (
/obj/machinery/door/poddoor{
density = 0;
icon_state = "open";
- id_tag = "soltradeship_north";
- name = "Security Doors";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
opacity = 0
},
-/obj/machinery/door/airlock/shuttle/glass{
- id_tag = "soltrader_north";
- name = "trader shuttle airlock";
- req_access_txt = "160";
- security_level = 6
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"quc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"qui" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/sw)
-"qut" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/medbay3)
-"quV" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on,
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/permabrig)
-"qvB" = (
-/obj/structure/disposaloutlet{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
+/area/security/main)
+"uFy" = (
+/obj/structure/grille,
+/obj/structure/window/full/shuttle{
+ icon_state = "window8"
},
/turf/simulated/floor/plating,
+/area/shuttle/siberia)
+"uFL" = (
+/obj/structure/lattice,
+/turf/simulated/wall/r_wall,
/area/space/nearstation)
-"qvN" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
+"uFM" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/light{
- dir = 4;
- pixel_x = -6
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/construction/hallway)
-"qvY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/area/security/processing)
+"uFO" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/surgery2)
-"qwi" = (
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/permabrig)
-"qws" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry/commercial)
-"qwy" = (
-/obj/effect/decal/warning_stripes/northwestsouth,
-/obj/structure/bed/amb_trolley{
- dir = 4
+"uFV" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/portable_atmospherics/canister,
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"uFX" = (
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"uFZ" = (
+/obj/structure/curtain/open/shower/security,
+/obj/item/restraints/handcuffs/pinkcuffs,
+/obj/machinery/shower{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "freezerfloor"
},
-/area/medical/paramedic)
-"qwX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/security/brigstaff)
+"uGh" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "bluecorner"
- },
-/area/hydroponics)
-"qwZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "darkbluecorners"
},
-/area/medical/medbay2)
-"qxv" = (
-/obj/effect/decal/warning_stripes/south,
+/area/tcommsat/chamber)
+"uGt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/prisonlockers)
-"qxG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
-/area/crew_quarters/fitness)
-"qyd" = (
-/obj/structure/bed,
+/area/library/abandoned)
+"uGu" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- on = 1
- },
-/obj/item/radio/intercom{
- pixel_x = 30
- },
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+ id_tag = "ai1";
+ name = "Turret Shutters"
},
-/area/security/prison/cell_block/A)
-"qyj" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/turf/simulated/floor/plating,
+/area/turret_protected/aisat_interior)
+"uGF" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/quartermaster/storage)
-"qyy" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -121435,147 +118604,150 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteredcorner"
+ icon_state = "dark"
},
-/area/security/medbay)
-"qyC" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "RoboPrivat";
- name = "Robotics Privacy Shutter"
+/area/engine/mechanic_workshop/hangar)
+"uGH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/turf/simulated/wall,
+/area/quartermaster/delivery)
+"uHc" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f10";
+ tag = "icon-swall_f10"
},
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"qza" = (
-/obj/structure/chair,
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/shuttle/siberia)
+"uHf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
dir = 8;
- on = 1
+ icon_state = "neutralfull"
},
-/obj/machinery/light{
- dir = 4
+/area/crew_quarters/locker)
+"uHk" = (
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
},
-/obj/item/radio/intercom{
- pixel_x = 31
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "red"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"qzk" = (
-/obj/machinery/biogenerator,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/security/reception)
+"uHl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/flasher{
+ id = null;
+ pixel_y = -24
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "red"
+ icon_state = "darkblue"
},
-/area/security/permabrig)
-"qzl" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/turf/simulated/floor/bluegrid,
-/area/tcommsat/chamber)
-"qzn" = (
-/obj/structure/table/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/area/turret_protected/aisat_interior)
+"uHq" = (
+/obj/structure/bed,
+/obj/item/bedsheet/rainbow,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
})
-"qBc" = (
-/obj/item/twohanded/required/kirbyplants,
+"uHt" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 1
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 4
+ },
+/obj/structure/window/plasmareinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"uHu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/motion{
+ c_tag = "Minisat Hallway South";
+ dir = 1;
+ network = list("Minisat","SS13")
+ },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "darkblue"
},
-/area/chapel/main)
-"qBC" = (
-/obj/item/radio/intercom/custom{
- pixel_y = 25
- },
-/obj/item/radio/intercom{
- pixel_x = -28
- },
-/obj/item/radio/intercom/private{
- pixel_y = -28
+/area/turret_protected/aisat_interior)
+"uHv" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
-/obj/effect/landmark{
- name = "tripai"
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = 32
},
-/obj/machinery/door/window/southright{
- dir = 4;
- name = "AI Intercom";
- req_access_txt = "16"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
-"qCK" = (
-/obj/structure/chair{
+/area/crew_quarters/chief)
+"uHA" = (
+/turf/simulated/wall/r_wall,
+/area/medical/research/nhallway)
+"uHP" = (
+/obj/machinery/light{
dir = 8
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
+/obj/machinery/alarm{
dir = 4;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"qDq" = (
-/obj/machinery/door/airlock/hatch/gamma{
- locked = 1;
- req_access_txt = "1";
- use_power = 0
+ pixel_x = -23
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/bed/dogbed{
+ name = "kitty basket"
},
-/obj/structure/fans/tiny,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/mob/living/simple_animal/pet/cat/Runtime,
+/turf/simulated/floor/plasteel,
+/area/medical/cmo)
+"uHW" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Security ballistic weapons";
+ req_access = list(1)
},
-/turf/simulated/floor/engine,
-/area/security/brig)
-"qDK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/item/gun/projectile/automatic/pistol/enforcer/security{
+ pixel_x = -3;
+ pixel_y = 3
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/item/gun/projectile/automatic/pistol/enforcer/security,
+/obj/item/gun/projectile/automatic/pistol/enforcer/security{
+ pixel_x = 3;
+ pixel_y = -3
},
-/area/hallway/primary/central/south)
-"qEx" = (
-/obj/effect/landmark{
- name = "carpspawn"
+/obj/item/gun/projectile/automatic/pistol/enforcer/security{
+ pixel_x = 6;
+ pixel_y = -6
},
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"qEK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/light,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/effect/decal/warning_stripes/south,
/obj/item/radio/intercom{
- pixel_y = -28
+ pixel_x = -28;
+ pixel_y = -30
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"qFN" = (
+/area/security/armoury)
+"uIx" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 8;
@@ -121583,1041 +118755,855 @@
},
/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- id_tag = "Virology";
- name = "Virology Shutters"
+ id_tag = "Warden";
+ name = "Warden Privacy Shutters"
},
/turf/simulated/floor/plating,
-/area/medical/virology/lab)
-"qFV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door_control{
- id = "paramedic";
- name = "Garage Door Control";
- pixel_y = 24;
- req_access_txt = "66"
- },
-/obj/machinery/door/poddoor/shutters{
- dir = 8;
- id_tag = "paramedic";
- name = "Paramedic Garage"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/medical/paramedic)
-"qGg" = (
+/area/security/warden)
+"uIF" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central/south)
-"qGv" = (
-/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A21";
+ location = "A20"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/engineering)
-"qGO" = (
+/area/hallway/primary/central/west)
+"uIH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
+/obj/machinery/ai_status_display{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/bar)
-"qHo" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 4
+ icon_state = "dark"
},
-/obj/machinery/portable_atmospherics/canister/sleeping_agent,
-/obj/machinery/atmospherics/unary/portables_connector,
+/area/crew_quarters/chief)
+"uIQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"qIk" = (
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = -28
- },
/obj/machinery/camera{
- c_tag = "South Medbey Hallway";
+ c_tag = "Mech Lab";
dir = 1;
- network = list("Medical","SS13")
+ network = list("Research","SS13")
},
-/obj/structure/chair/comfy/teal{
- dir = 8
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"uIT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/landmark/start{
- name = "Medical Doctor"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"uJd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/decal/remains/human,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "dark"
},
-/area/medical/medbay3)
-"qIs" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"qIy" = (
-/obj/structure/chair{
- dir = 8
+/area/maintenance/gambling_den)
+"uJi" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"uJj" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "engineering_east_airlock";
+ name = "exterior access button";
+ pixel_x = 20;
+ pixel_y = 20;
+ req_access_txt = "10;13"
+ },
+/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
- },
-/area/medical/surgery2)
-"qIF" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"uJo" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/engine/hardsuitstorage)
-"qIQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"qJo" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
-"qJQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera/motion{
- c_tag = "Minisat Hallway South";
- dir = 1;
- network = list("Minisat","SS13")
- },
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
- },
-/area/turret_protected/aisat_interior)
-"qKj" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
- },
-/area/turret_protected/ai)
-"qKv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
-/obj/item/radio/intercom{
- pixel_x = 30
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"qKK" = (
-/obj/machinery/ai_status_display{
- pixel_y = -32
- },
-/obj/machinery/ai_slipper,
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
- },
-/area/turret_protected/ai)
-"qKS" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
- },
-/area/medical/surgery1)
-"qLE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"qLS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "white"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/medical/research/nhallway)
+"uJw" = (
+/obj/structure/table/wood/poker,
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
+/area/maintenance/gambling_den)
+"uJx" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- id = "Cell 2";
- name = "Cell 2";
- req_access_txt = "2"
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"uJA" = (
+/obj/structure/table/wood,
+/obj/item/kitchen/utensil/spoon{
+ pixel_x = 7
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/item/kitchen/utensil/fork{
+ pixel_x = 7
},
-/area/security/prison/cell_block/A)
-"qLZ" = (
-/turf/simulated/wall,
-/area/clownoffice)
-"qMp" = (
-/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"uJJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
/obj/machinery/newscaster{
- pixel_x = -32
+ pixel_y = 32
},
+/obj/item/gps/engineering,
+/obj/item/lighter/zippo/ce,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
-"qMM" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/area/crew_quarters/chief)
+"uKk" = (
+/obj/structure/table/reinforced,
+/obj/item/bikehorn{
+ pixel_x = -1;
+ pixel_y = 13
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"qNP" = (
-/obj/machinery/porta_turret,
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/aisat)
-"qNY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"qPH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
- dir = 8
+/obj/item/instrument/bikehorn{
+ pixel_y = -2
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
+/obj/item/kitchen/utensil/spoon{
+ pixel_x = -3;
+ pixel_y = 18
},
-/area/turret_protected/aisat_interior)
-"qQk" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/item/kitchen/utensil/fork{
+ pixel_x = -4;
+ pixel_y = 18
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/hardsuitstorage)
-"qQu" = (
-/turf/simulated/wall/r_wall,
-/area/security/hos)
-"qQS" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/syringe{
- pixel_x = -1;
- pixel_y = -11
- },
-/obj/item/reagent_containers/syringe/calomel{
- pixel_x = -1;
- pixel_y = -6
+ icon_state = "darkred"
},
-/obj/item/reagent_containers/syringe/heparin{
- pixel_x = -1;
- pixel_y = -1
+/area/security/processing)
+"uKo" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/firealarm{
+ pixel_x = 28
},
-/obj/item/reagent_containers/glass/bottle/reagent/hairgrownium{
- pixel_x = -6;
- pixel_y = 8
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner (WEST)"
},
-/obj/item/reagent_containers/glass/bottle/frostoil{
- pixel_x = 5;
- pixel_y = 8
+/area/medical/surgery1)
+"uKu" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/item/reagent_containers/glass/bottle/mutagen{
- pixel_y = 6
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"uKw" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
},
+/area/security/brig)
+"uKK" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkred"
+ dir = 5;
+ icon_state = "darkblue"
},
-/area/security/processing)
-"qRt" = (
-/obj/structure/table,
-/obj/item/camera{
- name = "Autopsy Camera";
- pixel_x = -2;
- pixel_y = -2
+/area/medical/surgery2)
+"uKN" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/item/storage/box/gloves{
- pixel_y = 8
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/obj/item/storage/box/bodybags{
- pixel_x = 3;
- pixel_y = 3
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"uKQ" = (
+/obj/structure/table/wood/poker,
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"uKR" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
},
-/obj/item/storage/box/bodybags,
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
+/turf/simulated/floor/bluegrid,
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"uKT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
+/obj/structure/rack,
+/obj/item/crowbar,
+/obj/item/storage/toolbox/mechanical,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
},
-/area/medical/morgue)
-"qRy" = (
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/south,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/xenozoo)
-"qRI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/area/crew_quarters/chief)
+"uKU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/firealarm{
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "dark"
},
-/area/medical/ward)
-"qRK" = (
+/area/crew_quarters/chief)
+"uLp" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkred"
- },
-/area/security/evidence)
-"qST" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/engine,
-/area/security/brig)
-"qTv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ dir = 0;
+ icon_state = "red"
},
+/area/security/customs)
+"uLv" = (
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/medbay)
-"qTE" = (
-/obj/structure/table,
-/obj/item/storage/box/donkpockets,
-/turf/simulated/floor/plasteel{
+"uLw" = (
+/obj/machinery/light{
dir = 1;
- icon_state = "red"
- },
-/area/security/permabrig)
-"qTP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ in_use = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway South 3"
},
-/obj/item/radio/intercom{
- pixel_y = -28
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "neutralcorner"
},
-/area/security/lobby)
-"qUh" = (
-/obj/structure/lattice,
-/obj/structure/transit_tube{
- icon_state = "NW-SE"
- },
-/turf/space,
-/area/space/nearstation)
-"qUL" = (
-/obj/structure/lattice,
-/obj/structure/transit_tube{
- icon_state = "NE-SW"
- },
-/turf/space,
-/area/space/nearstation)
-"qUR" = (
-/obj/structure/lattice/catwalk,
+/area/hallway/primary/central/south)
+"uLD" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "1-8"
},
-/turf/space,
-/area/solar/auxstarboard)
-"qVc" = (
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"qVm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
-/turf/simulated/wall/r_wall,
-/area/tcommsat/chamber)
-"qVt" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"uLR" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Clown";
- name = "Clown Privacy Shutters"
- },
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plating,
-/area/clownoffice)
-"qVC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/turf/simulated/floor/plating,
+/area/crew_quarters/chief)
+"uLT" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/medical/research{
+ name = "Research Division"
+ })
+"uLW" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "whitegreen"
},
-/area/hallway/primary/central/south)
-"qVE" = (
-/obj/structure/morgue,
-/obj/effect/decal/warning_stripes/northwest,
-/obj/effect/landmark{
- name = "revenantspawn"
+/area/medical/virology)
+"uLX" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"uLY" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/mmi{
+ pixel_x = 1;
+ pixel_y = -9
+ },
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 4;
+ pixel_y = 7
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ dir = 4;
+ icon_state = "darkred"
},
-/area/medical/morgue)
-"qWf" = (
+/area/security/processing)
+"uMC" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/chair/office/dark,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"uMU" = (
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"uNi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/port/east)
-"qWu" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/construction/hallway)
+"uNn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/power/emitter,
+/obj/effect/decal/warning_stripes/west,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/greengrid,
-/area/engine/controlroom)
-"qXe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"uNE" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = 30;
+ pixel_y = 30
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance,
-/obj/structure/barricade/wooden,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/ward)
+"uNG" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/security/brigstaff)
+"uNV" = (
+/obj/structure/chair/wood/wings{
+ dir = 8;
+ tag = "icon-wooden_chair_wings (WEST)"
+ },
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2{
name = "Tourist Area Maintenance"
})
-"qXC" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Mime";
- name = "Mime Privacy Shutters"
- },
-/turf/simulated/floor/plating,
-/area/mimeoffice)
-"qXH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"uNZ" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitegreencorner"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/virology)
+"uOb" = (
+/obj/structure/table,
+/obj/item/storage/box/donkpockets,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
dir = 1
},
-/area/security/processing)
-"qYh" = (
-/obj/effect/decal/cleanable/blood,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"qYr" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/tank/emergency_oxygen,
-/obj/item/clothing/mask/breath,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
+/area/security/brigstaff)
+"uOm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+ icon_state = "darkbluefull"
},
-/area/turret_protected/ai)
-"qYR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/construction/hallway)
+"uOt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/turf/simulated/wall/r_wall,
+/area/security/evidence)
+"uOu" = (
+/obj/structure/chair/comfy/red{
+ dir = 4
},
-/area/medical/genetics_cloning)
-"qZe" = (
-/obj/item/trash/liquidfood,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"qZt" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/medical/biostorage)
-"qZv" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/plasteel{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/area/security/brigstaff)
+"uOE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ dir = 4;
+ icon_state = "yellow"
+ },
+/area/engine/break_room)
+"uOJ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
-"qZG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/turf/space,
+/area/space/nearstation)
+"uPa" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/engine/aienter)
+"uPb" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ dir = 8;
+ icon_state = "darkred"
},
-/area/security/lobby)
-"ras" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/security/permabrig)
+"uPh" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whitepurplecorner"
},
-/area/quartermaster/storage)
-"raC" = (
-/obj/structure/dresser,
-/obj/structure/mirror{
- pixel_x = 32
+/area/crew_quarters/hor)
+"uPo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/medical/cmo)
-"raO" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/maintenance/xenozoo)
-"raW" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"uPv" = (
+/obj/machinery/hydroponics/soil,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"uPB" = (
+/obj/structure/dresser,
+/obj/machinery/vending/wallmed{
+ pixel_x = 26
},
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/area/security/permabrig)
-"rba" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/area/crew_quarters/hor)
+"uPX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/rack{
- dir = 1
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/grille,
+/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"rbh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/maintenance/gambling_den)
+"uQb" = (
+/obj/structure/disposalpipe/sortjunction{
+ name = "CE's Junction";
+ sortType = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "yellow"
},
-/area/toxins/lab)
-"rbA" = (
-/obj/structure/rack,
+/area/engine/break_room)
+"uQo" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/item/radio/intercom{
- pixel_x = -28;
- pixel_y = -8
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/permabrig)
-"rbH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/engine/aienter)
+"uQp" = (
+/obj/machinery/vending/tool,
+/obj/item/radio/intercom{
+ dir = 0;
+ pixel_x = -28
},
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"rcp" = (
-/obj/structure/flora/ausbushes/sunnybush,
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"uQq" = (
+/obj/structure/table/reinforced,
+/obj/item/ashtray/bronze{
+ pixel_x = -1;
+ pixel_y = 1
},
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"rcv" = (
-/obj/structure/safe/floor,
-/obj/item/melee/cultblade,
-/obj/item/restraints/legcuffs/bola/cult,
-/obj/item/whetstone/cult,
+/obj/item/storage/fancy/cigarettes/cigpack_robust,
+/obj/item/stack/tape_roll,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library/abandoned)
-"rcP" = (
-/obj/structure/chair/stool/bar,
-/turf/simulated/floor/carpet,
-/area/maintenance/abandonedbar)
-"rcX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ dir = 1
},
+/area/security/main)
+"uQr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"uQy" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/flashlight,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"uQL" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/hud/diagnostic{
+ pixel_x = 2;
+ pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/clothing/glasses/hud/diagnostic{
+ pixel_x = 2;
+ pixel_y = 5
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/item/clothing/glasses/hud/diagnostic{
+ pixel_x = 2;
+ pixel_y = 5
},
-/area/security/warden)
-"rdB" = (
-/obj/structure/toilet{
- dir = 8
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
},
-/obj/machinery/door/window{
- dir = 8
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
},
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = -7
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
-/obj/machinery/light{
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/assembly/robotics)
+"uQO" = (
+/obj/structure/chair/comfy/shuttle{
dir = 4
},
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = -26
+ },
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ dir = 1;
+ icon_state = "bot"
},
-/area/security/permabrig)
-"ref" = (
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"uQR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"rfs" = (
-/obj/structure/lattice,
-/turf/simulated/wall,
-/area/chapel/main)
-"rfA" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 8
+ icon_state = "1-2"
},
-/obj/structure/window/plasmareinforced,
-/obj/structure/window/plasmareinforced{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/obj/structure/window/plasmareinforced{
- dir = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "redcorner"
},
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"rfB" = (
-/obj/effect/decal/warning_stripes/southeastcorner,
+/area/security/range)
+"uQU" = (
+/obj/structure/bookcase,
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"uQV" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/assembly/robotics)
+"uQY" = (
+/obj/effect/landmark{
+ name = "lightsout"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
- },
-/area/security/securearmoury)
-"rfK" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ icon_state = "neutralfull"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Interrogation";
- name = "Interrogation Privacy Shutters"
+/area/hallway/primary/aft)
+"uRn" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/chem_heater,
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/security/processing)
-"rho" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"rhx" = (
-/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/camera{
+ c_tag = "Chemical Toxins Lab";
+ network = list("Research","SS13")
+ },
+/turf/simulated/floor/engine,
+/area/toxins/misc_lab)
+"uRr" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/engine/mechanic_workshop/hanger)
-"rhD" = (
-/obj/effect/spawner/window/reinforced,
+/area/crew_quarters/locker)
+"uRB" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/security/prisonlockers)
-"rhX" = (
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/aisat_interior)
-"riI" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 4;
- location = "Mime"
- },
-/obj/structure/plasticflaps{
- opacity = 1
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j2"
},
-/area/mimeoffice)
-"rjs" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- on = 1
- },
-/obj/item/radio/intercom{
- pixel_x = 30
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+ icon_state = "white"
},
-/area/security/prison/cell_block/A)
-"rkC" = (
-/obj/effect/spawner/lootdrop/trade_sol/sec,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"rkD" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Morgue Maintenance";
- req_access_txt = "6"
+/area/medical/virology)
+"uRG" = (
+/obj/structure/chair{
+ desc = "Этот красивый стул был отлит из двух трофейных боргов синдиката.";
+ name = "Дизайнерский стул"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/shower{
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/blood/old,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/asmaint)
-"rkS" = (
-/obj/structure/statue/gold/hop{
- desc = "Золотая литая статуя, посвящённая великому ХоПу - Михаилу Калинину, который продолжал исполнять свой долг даже в самых критических ситуациях";
- name = "Статуя Михаила Калинина"
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/heads/hop)
-"rlj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ dir = 8;
+ icon_state = "vault"
},
/area/security/processing)
-"rlp" = (
-/turf/simulated/shuttle/wall{
- icon_state = "diagonalWall3"
+"uRI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/science{
+ pixel_x = -32;
+ pixel_y = 32
},
-/area/shuttle/syndicate_sit)
-"rlu" = (
-/obj/structure/table/reinforced,
-/obj/item/tank/jetpack/carbondioxide{
- pixel_x = -3;
- pixel_y = 3
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "purplecorner"
},
-/obj/item/tank/jetpack/carbondioxide,
-/obj/item/radio/intercom{
- pixel_y = 24
+/area/hallway/primary/aft)
+"uRL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28
},
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
+ },
+/area/medical/genetics_cloning)
+"uRQ" = (
+/obj/structure/chair/office/light,
+/obj/effect/landmark/start{
+ name = "Geneticist"
},
-/area/engine/hardsuitstorage)
-"rna" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/item/radio/intercom{
- pixel_y = -28
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"rnv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 4;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/turf/simulated/wall,
-/area/maintenance/asmaint2)
-"rnS" = (
-/obj/effect/decal/warning_stripes/west,
+/area/medical/genetics)
+"uSm" = (
+/obj/effect/decal/warning_stripes/southeastcorner,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"uSt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -122625,1041 +119611,1243 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/radio/intercom{
- pixel_x = -30;
- pixel_y = -3
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/obj/machinery/light{
- dir = 8
+/area/medical/research/nhallway)
+"uSv" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/lawoffice)
+"uSR" = (
+/obj/machinery/alarm{
dir = 8;
- icon_state = "vault"
+ pixel_x = 25
},
-/area/security/securearmoury)
-"rnY" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/machinery/light/small{
dir = 4;
- on = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ tag = "icon-bulb1 (EAST)"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/prisonershuttle)
-"roo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 8;
+ icon_state = "vault"
},
-/obj/machinery/light{
+/area/engine/aienter)
+"uST" = (
+/obj/structure/window/reinforced{
dir = 1;
- on = 1
+ layer = 2.9
},
-/obj/structure/closet/walllocker/emerglocker/north,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/mob/living/carbon/human/monkey,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "dark"
+ },
+/area/medical/genetics)
+"uSY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/hallway/primary/port)
-"rop" = (
/turf/simulated/floor/plasteel{
- icon_state = "darkredcorners"
- },
-/area/security/warden)
-"rpw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "red"
},
+/area/security/processing)
+"uTb" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/warden)
-"rpB" = (
-/obj/item/radio/intercom/custom{
- pixel_y = 25
- },
-/obj/item/radio/intercom{
- pixel_x = 28
- },
-/obj/item/radio/intercom/private{
- pixel_y = -28
- },
-/obj/effect/landmark{
- name = "tripai"
- },
-/obj/machinery/door/window/southright{
- dir = 8;
- name = "AI Intercom";
- req_access_txt = "16"
+ icon_state = "darkbluefull"
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
-"rpY" = (
-/obj/structure/window/reinforced,
+/area/construction/hallway)
+"uTm" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/wood,
+/area/library/abandoned)
+"uTp" = (
/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 13";
- dir = 8;
- network = list("SS13","MiniSat")
- },
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+ dir = 10;
+ icon_state = "yellow"
},
-/area/construction/hallway)
-"rqh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/engine/hardsuitstorage)
+"uTr" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"uTP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
+ d1 = 2;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "white"
},
-/area/crew_quarters/sleep)
-"rqF" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
+/area/medical/medbay3)
+"uTS" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkred"
},
+/area/security/securearmoury)
+"uUa" = (
+/obj/structure/chair/wood,
/obj/machinery/light{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Mechanic Office";
- dir = 8;
- network = list("Engineering","SS13");
- pixel_y = -1
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
+/obj/machinery/firealarm{
dir = 4;
- icon_state = "yellow"
- },
-/area/engine/mechanic_workshop)
-"rqW" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"rrI" = (
-/obj/effect/landmark/start{
- name = "Security Officer"
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "chapel"
},
-/area/security/customs)
-"rrR" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+/area/chapel/main)
+"uUx" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/item/radio/intercom{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
+ dir = 0;
+ icon_state = "yellow"
},
-/area/security/prison/cell_block/A)
-"rsK" = (
+/area/maintenance/electrical)
+"uUy" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "1-2"
},
-/area/hallway/primary/central/west)
-"rsV" = (
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"ruT" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/l3closet/scientist,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+/obj/machinery/door_control{
+ id = "brig_detprivacy";
+ name = "Detective Privacy Shutters Control";
+ pixel_x = -28;
+ pixel_y = 26
},
-/area/toxins/mixing)
-"rvh" = (
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"uUI" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/main)
-"rvG" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "ai1";
+ name = "Turret Shutters"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plating,
+/area/turret_protected/aisat_interior)
+"uUW" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Research Division Access";
+ req_access_txt = "47"
},
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/medical/research/nhallway)
+"uVh" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Chapel Office";
+ req_access_txt = "22"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"rwl" = (
-/obj/structure/table,
-/obj/item/storage/box/evidence{
- pixel_x = 2;
- pixel_y = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/main)
+"uVl" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/carpet,
+/area/maintenance/fsmaint)
+"uVw" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
+ },
+/area/medical/sleeper)
+"uVC" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
dir = 1
},
-/area/security/processing)
-"rwz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"uVI" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/aft)
+"uVS" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"uWb" = (
+/obj/structure/window/reinforced,
+/obj/structure/shuttle/engine/heater{
+ dir = 1;
+ tag = "icon-heater (NORTH)"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"uWd" = (
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"uWf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/crew_quarters/chief)
+"uWi" = (
+/obj/structure/closet/secure_closet/psychiatrist,
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/mask/muzzle,
+/obj/item/clothing/mask/muzzle,
+/obj/item/clipboard{
+ pixel_x = -5
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"uWl" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
dir = 1
},
-/area/security/main)
-"rwW" = (
-/obj/machinery/light{
+/turf/space,
+/area/space/nearstation)
+"uWr" = (
+/obj/structure/window/plasmareinforced{
+ color = "#FF0000";
+ dir = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"uWG" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
dir = 8
},
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"rxr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/radio/intercom{
- pixel_x = 28
+/obj/structure/showcase{
+ layer = 5
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"rxs" = (
-/obj/structure/bed,
-/obj/item/bedsheet/syndie,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/permabrig)
-"rxE" = (
-/obj/structure/table/wood,
-/obj/item/kitchen/utensil/fork,
-/obj/item/kitchen/utensil/spoon,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"rxJ" = (
-/obj/structure/lattice,
-/obj/structure/window/reinforced{
- dir = 8
+/area/tcommsat/chamber)
+"uWH" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
-/turf/space,
-/area/space/nearstation)
-"ryt" = (
-/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"uWM" = (
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/door/poddoor/shutters/preopen{
+/obj/machinery/power/apc{
dir = 1;
- id_tag = "Warden";
- name = "Warden Privacy Shutters"
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"uWW" = (
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plating,
-/area/security/warden)
-"ryy" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
/area/maintenance/fsmaint)
-"ryO" = (
+"uXc" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Experimentation Lab Office";
+ network = list("Research","SS13")
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/telepad_cargo,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"uXf" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/hallway/secondary/exit)
-"rzU" = (
-/obj/structure/chair{
- dir = 8
+/area/crew_quarters/chief)
+"uXj" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
- dir = 8;
+ dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"uXl" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
},
-/area/security/main)
-"rBg" = (
-/obj/structure/closet/wardrobe/white,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/ward)
-"rBk" = (
-/obj/machinery/light/small{
- dir = 4
+ dir = 8;
+ icon_state = "cmo"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"rBA" = (
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"rCi" = (
-/obj/structure/chair/office/light{
- dir = 8
+/area/medical/cmo)
+"uXu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/door_control{
- id = "psychoffice";
- name = "Privacy Shutters Control";
- pixel_x = 28
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light_switch{
- pixel_x = 37;
- pixel_y = 1
+ pixel_x = 26;
+ pixel_y = 26
},
-/obj/effect/landmark/start{
- name = "Psychiatrist"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/wood,
-/area/medical/psych)
-"rCV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/bridge/meeting_room)
+"uXz" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/hallway/primary/central/ne)
+"uXN" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = 24
},
-/obj/structure/cable{
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"uXS" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"uXU" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/cleanable/cobweb,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"uXX" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/machinery/light_switch{
+ pixel_x = 8;
+ pixel_y = 26
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"uYb" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/security/prison/cell_block/A)
-"rDf" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 4;
+ icon_state = "2-4"
},
+/turf/simulated/floor/plating,
+/area/engine/engineering/monitor)
+"uYe" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"rDr" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/pen,
-/obj/item/radio/intercom{
- pixel_x = -28
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/wood,
-/area/library)
-"rDM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/area/crew_quarters/captain)
+"uYk" = (
+/obj/structure/grille,
+/turf/simulated/wall/r_wall,
+/area/atmos)
+"uYt" = (
+/obj/structure/table,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/eastsouthwest,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/flashlight,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/maintenance/electrical)
+"uYw" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/hallway/secondary/exit)
-"rDZ" = (
+/area/ai_monitored/storage/eva)
+"uYG" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/chair,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"rEd" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ dir = 1;
+ icon_state = "green"
},
-/area/security/brig)
-"rEq" = (
-/obj/effect/spawner/window/reinforced,
+/area/hallway/secondary/exit)
+"uYP" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+ icon_state = "1-8"
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"rEx" = (
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
- },
-/area/security/prisonershuttle)
-"rEK" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+ icon_state = "grimy"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/area/library/abandoned)
+"uYS" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/hallway/secondary/exit)
-"rFB" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/sign/nosmoking_1,
-/turf/simulated/floor/plating,
-/area/medical/genetics_cloning)
-"rFG" = (
-/obj/structure/table,
-/obj/item/storage/fancy/rollingpapers,
-/obj/item/seeds/tobacco,
-/obj/item/storage/box/matches,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
+/obj/structure/window/reinforced{
dir = 1
},
-/area/security/permabrig)
-"rGw" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
- },
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ dir = 9;
+ icon_state = "darkblue"
},
-/area/security/prison/cell_block/A)
-"rGL" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/trinary/mixer{
- req_access = null
+/area/construction/hallway)
+"uYT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/area/toxins/mixing)
-"rGM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ tag = "icon-pipe-j1 (EAST)"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plating,
-/area/security/brig)
-"rHh" = (
-/obj/structure/lattice/catwalk,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/space,
-/area/space/nearstation)
-"rHq" = (
-/obj/structure/chair/office/dark{
- dir = 8
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+ dir = 1
},
-/area/turret_protected/ai)
-"rJr" = (
-/obj/structure/closet/secure_closet/security,
-/obj/structure/window/reinforced{
- dir = 8
+/area/security/main)
+"uYX" = (
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"uZl" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/light,
-/obj/item/clothing/mask/balaclava,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/customs)
-"rJJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+/area/hallway/primary/port)
+"uZn" = (
+/obj/machinery/computer/crew,
+/obj/machinery/light_switch{
+ pixel_x = 26
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/processing)
-"rKQ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 8;
- icon_state = "open";
- id_tag = "psychoffice";
- name = "Privacy Shutters";
- opacity = 0
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/turf/simulated/floor/plating,
-/area/medical/psych)
-"rKZ" = (
+/area/medical/ward)
+"uZs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/brig)
-"rLl" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/area/security/brig)
-"rLv" = (
-/obj/structure/grille{
- layer = 1
+/area/medical/research/nhallway)
+"uZv" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"uZJ" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door/poddoor{
- id_tag = "exspace";
- name = "Execution Blast Door"
+/obj/machinery/door/airlock/glass{
+ name = "Courtroom";
+ req_access_txt = "63"
},
-/turf/simulated/floor/plating,
-/area/security/execution)
-"rLF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/courtroom)
+"uZR" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Cyborg"
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
- },
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"rMN" = (
-/mob/living/simple_animal/hostile/retaliate/carp/koi{
- name = "Jeremy"
+ dir = 4;
+ icon_state = "redcorner"
},
-/turf/simulated/floor/beach/water{
- icon_state = "seadeep"
+/area/hallway/primary/starboard/east)
+"uZU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/crew_quarters/fitness)
-"rNo" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/poddoor/shutters{
+/area/security/main)
+"vad" = (
+/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
- id_tag = "paramedic";
- name = "Paramedic Garage"
+ external_pressure_bound = 100;
+ on = 1
},
-/turf/simulated/floor/plasteel,
-/area/medical/paramedic)
-"rNJ" = (
-/obj/machinery/door/morgue{
- name = "Dungeon";
- req_access_txt = "63"
+/turf/simulated/floor/wood,
+/area/library)
+"vai" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
-/obj/machinery/door/firedoor,
+/area/maintenance/fsmaint)
+"val" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/processing)
-"rOf" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/area/security/permabrig)
+"vam" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Telescience"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"vat" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "arrival_south_inner";
+ locked = 1;
+ name = "Arrivals External Access";
+ req_access = null
},
-/area/hallway/secondary/entry/commercial)
-"rOm" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'BOMB RANGE";
- name = "BOMB RANGE"
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"vaH" = (
+/obj/structure/chair/office/light{
+ dir = 4
},
-/turf/simulated/wall/r_wall,
-/area/toxins/test_area)
-"rOG" = (
-/obj/machinery/light/small{
- dir = 8
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"vbc" = (
+/obj/structure/morgue,
+/obj/effect/decal/warning_stripes/southwest,
+/obj/effect/landmark{
+ name = "revenantspawn"
},
-/turf/simulated/floor/wood{
- icon_state = "wood-broken";
- tag = "icon-wood-broken"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkblue"
},
-/area/maintenance/abandonedbar)
-"rOY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/medical/morgue)
+"vbh" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
+/obj/item/pen,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"vbq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "1-8"
},
-/obj/machinery/ai_slipper,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/ai)
-"rPi" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- id_tag = "Warden";
- name = "Warden Privacy Shutters"
+ icon_state = "neutralfull"
},
+/area/hallway/primary/port)
+"vbw" = (
/turf/simulated/floor/plating,
-/area/security/warden)
-"rPP" = (
+/area/maintenance/gambling_den)
+"vbJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Maintenance";
+ req_access_txt = "12;24"
+ },
/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"rQd" = (
-/turf/simulated/floor/plasteel{
+/area/maintenance/electrical)
+"vbL" = (
+/obj/structure/sign/bobross{
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"vbO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain/bedroom)
+"vbR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack{
dir = 8;
- icon_state = "neutralfull"
+ layer = 2.9
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
-/area/hallway/primary/port/east)
-"rRs" = (
-/obj/machinery/vending/boozeomat,
/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"rRy" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/obj/item/clothing/glasses/hud/hydroponic,
-/obj/item/clothing/glasses/hud/hydroponic,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/area/maintenance/asmaint)
+"vcb" = (
/obj/machinery/status_display{
- pixel_x = -32
+ pixel_y = 32
},
-/obj/machinery/light{
- dir = 8
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"vcj" = (
+/obj/effect/decal/cleanable/vomit,
+/obj/effect/landmark{
+ name = "blobstart"
},
+/obj/item/flag/syndi,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/hydroponics)
-"rRH" = (
+/area/maintenance/gambling_den)
+"vcq" = (
+/obj/machinery/power/smes,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/eastnorthwest,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 8;
+ icon_state = "0-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+ icon_state = "dark"
},
-/area/security/permabrig)
-"rSH" = (
-/obj/structure/window/reinforced{
- dir = 1
+/area/maintenance/electrical)
+"vct" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/power/port_gen/pacman,
+/obj/machinery/light,
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 1";
+/area/engine/hardsuitstorage)
+"vcw" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/vending/wallmed{
+ pixel_x = 26
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"vcx" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/window/reinforced,
+/obj/structure/table,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
+/obj/item/paper/deltainfo,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"vcG" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"vcX" = (
+/turf/simulated/floor/plasteel{
dir = 1;
- network = list("SS13","MiniSat")
+ icon_state = "red"
},
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"rTA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/junction{
+/area/security/main)
+"vdd" = (
+/obj/structure/chair/sofa/right{
dir = 1
},
-/obj/item/radio/intercom{
- pixel_x = 28
- },
/turf/simulated/floor/plasteel{
- icon_state = "orangecorner"
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/west)
+"vdu" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Xeno Containment 6";
+ network = list("Research","SS13")
},
-/area/hallway/primary/aft)
-"rTF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/radiation,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"rUa" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/area/toxins/xenobiology)
+"vdz" = (
+/obj/item/flag/nt,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/tcommsat/chamber)
+"vdJ" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Armory_North";
+ location = "Armory_sprava"
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "red"
+ icon_state = "darkred"
},
-/area/security/brig)
-"rUs" = (
+/area/security/securearmoury)
+"vdX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm{
- pixel_y = 26
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/item/flag/nt,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
+ },
+/area/medical/ward)
+"vec" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Paramedic"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/area/turret_protected/aisat)
-"rVw" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/area/medical/paramedic)
+"veO" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xenosecure";
+ name = "Secure Creature Cell";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced/plasma,
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"vfa" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/morgue)
-"rVy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/construction/hallway)
+"vfb" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Briefing Room";
+ req_access_txt = "63"
},
-/turf/simulated/floor/carpet,
-/area/hallway/secondary/entry/louge)
-"rXc" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/main)
+"vfc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/door/airlock/command{
+ name = "CMO's Office";
+ req_access_txt = "40"
+ },
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/mob/living/carbon/human/monkey,
-/obj/machinery/atmospherics/unary/outlet_injector{
- dir = 4;
- frequency = 1443;
- icon_state = "on";
- id = "air_in";
- on = 1
- },
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"rXU" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light,
-/obj/machinery/door_control{
- id = "ArmorySecAccess";
- name = "Armory Security Access Control";
- pixel_x = 9;
- pixel_y = -2;
- req_access_txt = "3"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/door_control{
- id = "ArmoryBrif";
- name = "Armory Briefing Window Control";
- pixel_x = -9;
- pixel_y = -2;
- req_access_txt = "3"
+/area/medical/cmo)
+"vfh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door_control{
- id = "Warden";
- name = "Warden Privacy Shutters Control";
- pixel_x = -9;
- pixel_y = 7;
- req_access_txt = "3"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door_control{
- id = "ArmorySec";
- name = "Armory Security Window Control";
- pixel_x = 9;
- pixel_y = 7;
- req_access_txt = "3"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "darkred"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/warden)
-"rZe" = (
+/area/hallway/primary/port)
+"vfE" = (
/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/prison/cell_block/A)
+"vfH" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "ai2";
- name = "Turret Shutters"
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
+ },
+/area/maintenance/electrical)
+"vfK" = (
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate_sit)
+"vga" = (
+/obj/machinery/computer/general_air_control{
+ frequency = 1222;
+ name = "Bomb Mix Monitor";
+ sensors = list("burn_sensor" = "Burn Mix")
+ },
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutral"
+ },
+/area/toxins/mixing)
+"vgb" = (
+/obj/structure/table/wood,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/item/stack/wrapping_paper,
+/obj/item/reagent_containers/food/snacks/grown/wheat,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/turf/simulated/floor/wood,
+/area/civilian/pet_store)
+"vge" = (
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = "GeneticsDoor";
+ name = "Genetics";
+ req_access_txt = "9"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
+/area/medical/genetics)
+"vgk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"rZx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/chief)
+"vgu" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"vgF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteyellow"
+ },
+/area/medical/chemistry)
+"vgG" = (
/obj/structure/grille,
/obj/structure/window/plasmareinforced{
- dir = 1
+ dir = 8
},
/obj/structure/window/plasmareinforced{
dir = 4
},
-/obj/structure/window/plasmareinforced,
-/obj/structure/cable,
/turf/simulated/floor/plating,
/area/toxins/mixing)
-"rZU" = (
-/obj/machinery/door/airlock{
- id_tag = "toilet2";
- name = "Toilet"
+"vgI" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f10"
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"rZV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/shuttle/pod_3)
+"vgP" = (
+/turf/simulated/wall/r_wall,
+/area/assembly/showroom)
+"vgU" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
+/area/crew_quarters/locker)
+"vhp" = (
+/obj/structure/bed,
+/obj/item/radio/intercom{
+ pixel_y = -28
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"vhD" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/brig)
-"sak" = (
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"saY" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/central/sw)
-"sbf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+/area/hallway/primary/port/east)
+"vhI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- tag = "icon-pipe-j1 (EAST)"
+/obj/structure/cable{
+ icon_state = "1-4"
},
+/obj/structure/chair,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "grimy"
},
-/area/medical/research{
- name = "Research Division"
- })
-"sci" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/mechanical,
-/obj/machinery/camera{
- c_tag = "Minisat AI Core West";
- dir = 4;
- network = list("Minisat","SS13")
+/area/security/hos)
+"vhQ" = (
+/obj/machinery/light/small,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/recharge_station,
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "toilet3";
+ name = "Toilet Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_y = -25;
+ specialfunctions = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"vhR" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/turret_protected/ai)
-"scx" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/grass,
+/area/medical/genetics)
+"vhV" = (
+/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/southeast,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = -30
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"vhW" = (
+/obj/structure/chair/stool,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/turf/simulated/floor/engine,
-/area/security/execution)
-"scD" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -123670,622 +120858,640 @@
d2 = 8;
icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/main)
-"scT" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteredcorner"
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"vib" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/medbay)
-"scZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 9
+ },
+/obj/effect/landmark/start{
+ name = "Research Director"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 5
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "purplefull"
+ },
+/area/crew_quarters/hor)
+"vic" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
/area/security/main)
-"sda" = (
+"vik" = (
/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/door/firedoor,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/item/hand_labeler,
-/obj/machinery/light{
- dir = 8
+/obj/item/camera,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/area/maintenance/xenozoo)
+"viq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/camera{
- c_tag = "Medbay Reception";
- dir = 5;
- network = list("Medical","SS13")
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/hallway/primary/aft)
+"viE" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "bluefull"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/medical/reception)
-"sdF" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "RoboPrivat";
- name = "Robotics Privacy Shutter"
+/area/lawoffice)
+"viX" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
},
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"seF" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry/eastarrival)
-"seM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/library)
+"vjp" = (
+/obj/machinery/computer/mech_bay_power_console,
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/crew_quarters/kitchen)
-"sfU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"vjr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/prisonershuttle)
-"sgu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"sgK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/security/permabrig)
+"vjx" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/bridge/vip)
+"vjQ" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
},
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"vkb" = (
/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -28
+ dir = 8;
+ pixel_x = -28
},
-/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "grimy"
+ },
+/area/crew_quarters/cabin1)
+"vkj" = (
+/obj/structure/table/reinforced,
+/obj/item/toy/russian_revolver,
+/obj/item/stamp/warden{
+ pixel_y = 10
},
-/area/security/processing)
-"sgM" = (
-/turf/simulated/wall,
-/area/medical/medbay3)
-"shA" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "darkred"
},
-/area/security/prisonershuttle)
-"sid" = (
-/obj/machinery/door/poddoor{
- id_tag = "chapelgun";
- name = "Chapel Launcher Door";
- protected = 0
+/area/security/warden)
+"vkl" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner (WEST)"
},
-/obj/effect/decal/warning_stripes/south,
-/obj/effect/decal/warning_stripes/north,
+/area/medical/genetics)
+"vkm" = (
+/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plating,
-/area/chapel/main)
-"sio" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/maintenance/xenozoo)
+"vku" = (
+/turf/simulated/wall,
+/area/security/permahallway)
+"vkC" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"vkS" = (
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/medbay2)
-"six" = (
-/obj/machinery/space_heater,
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"siH" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
})
-"siM" = (
-/obj/structure/table,
-/obj/item/flashlight/lamp{
- pixel_x = 1;
- pixel_y = 3
+"vkV" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/obj/machinery/newscaster{
+/obj/structure/sign/deathsposal{
pixel_x = -32
},
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"vkX" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken5";
+ tag = "icon-wood-broken5"
+ },
+/area/maintenance/fsmaint)
+"vlc" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/newscaster{
+ pixel_y = -28
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
},
-/area/security/processing)
-"sjd" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/firecloset,
-/obj/machinery/camera{
- c_tag = "Toxin Equipment Storage";
- dir = 1;
- network = list("Research","SS13")
+/area/medical/genetics)
+"vlf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "xeno2";
+ name = "Creature Cell #4";
+ opacity = 0
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ name = "Creature Pen";
+ req_access_txt = "47"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ icon_state = "dark"
},
-/area/toxins/mixing)
-"sjs" = (
-/turf/simulated/wall/rust,
-/area/maintenance/abandonedbar)
-"sjW" = (
-/obj/structure/safe,
-/obj/item/stack/ore/bluespace_crystal,
-/obj/item/stack/ore/bluespace_crystal,
-/obj/item/stack/ore/bluespace_crystal,
-/obj/item/stack/ore/bluespace_crystal,
-/obj/item/stack/ore/bluespace_crystal,
-/obj/item/grown/bananapeel/bluespace,
-/obj/item/slime_extract/bluespace,
-/obj/item/stack/telecrystal,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"skp" = (
+/area/toxins/xenobiology)
+"vlh" = (
+/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/turret_protected/aisat)
-"skB" = (
+/area/hallway/primary/central/south)
+"vli" = (
/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"vly" = (
+/obj/machinery/suit_storage_unit/engine,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/xenozoo)
-"sln" = (
+/area/engine/hardsuitstorage)
+"vlD" = (
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/security/securehallway)
+"vlG" = (
+/turf/simulated/wall,
+/area/toxins/mixing)
+"vlN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"vlP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/toxins/mixing)
-"smb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"smu" = (
-/obj/item/clothing/mask/cigarette,
-/turf/simulated/floor/plating/airless,
-/area/toxins/test_area)
-"smD" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/commercial)
-"snq" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"snJ" = (
-/obj/structure/chair,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "whitepurple"
},
-/area/construction/hallway)
-"snP" = (
-/obj/structure/barricade/wooden,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"snQ" = (
-/obj/structure/disposalpipe/segment{
+/area/medical/genetics)
+"vlU" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin/nanotrasen,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/wall,
-/area/maintenance/gambling_den)
-"soV" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"vmb" = (
+/obj/structure/table/wood,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "NT Representative's Office"
+ },
+/turf/simulated/floor/wood,
+/area/ntrep)
+"vmj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
+ dir = 1
},
-/area/security/brig)
-"spC" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/security/processing)
+"vmn" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/security/brig)
-"spH" = (
/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -25
+ name = "south bump";
+ pixel_y = -28
},
+/mob/living/carbon/human/monkey,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/south,
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/genetics)
+"vmq" = (
+/obj/machinery/firealarm{
dir = 4;
- icon_state = "neutralcorner"
+ pixel_x = 28
},
-/area/toxins/mixing)
-"spK" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry/eastarrival)
-"spV" = (
-/obj/structure/window/reinforced{
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin2)
+"vmx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/area/construction/hallway)
-"sqj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/area/medical/medbay3)
+"vmL" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"vmP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10;
+ initialize_directions = 10
},
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"sqI" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"vmX" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/reception)
+"vnq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- on = 1
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/assembly/robotics)
-"sqO" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/area/crew_quarters/hor)
+"vns" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube{
+ icon_state = "E-W-Pass"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/space,
+/area/space/nearstation)
+"vnu" = (
+/obj/structure/chair{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"srA" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whitepurplecorner"
},
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"srH" = (
-/obj/structure/disposalpipe/segment{
+/area/medical/research/nhallway)
+"vnH" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/main)
+"vnI" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "neutralfull"
},
+/area/assembly/chargebay)
+"vnQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/ward)
-"sss" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/medical/virology)
+"vnS" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/starboard)
-"stl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 100;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/checkpoint2)
-"stA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
+/area/medical/genetics)
+"vof" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central/se)
-"stI" = (
-/obj/structure/disposaloutlet,
-/obj/structure/disposalpipe/trunk{
- dir = 2
- },
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"svD" = (
-/obj/effect/decal/remains/xeno,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
-"sxJ" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = 24
+ icon_state = "shutter0";
+ id_tag = "hopqueueshutters";
+ name = "Queue Shutters";
+ opacity = 0
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop)
-"sxM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -26
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 4
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/ticket_machine{
+ layer = 4;
+ pixel_y = 32
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/primary/central/east)
-"sxO" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
-"sxQ" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
+/area/hallway/primary/central/west)
+"vom" = (
+/obj/structure/sink{
dir = 1
},
-/obj/structure/window/plasmareinforced{
- dir = 8
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/window/plasmareinforced{
- dir = 4
+/area/medical/genetics)
+"vor" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/structure/window/plasmareinforced,
-/obj/structure/cable,
+/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"sxS" = (
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"vos" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/experimentor,
+/obj/item/healthanalyzer,
+/obj/effect/decal/warning_stripes/northwestcorner,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"vov" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start{
- name = "Coroner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/area/medical/morgue)
-"sxZ" = (
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"voL" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 1
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/security/prison/cell_block/A)
-"szc" = (
-/obj/structure/closet/secure_closet/security,
-/obj/structure/window/reinforced{
- dir = 8
+ icon_state = "purplefull"
},
+/area/toxins/xenobiology)
+"voP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ icon_state = "1-2"
},
-/obj/item/clothing/mask/balaclava,
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 1
},
-/area/security/customs)
-"sBl" = (
-/obj/structure/table/reinforced,
-/obj/item/analyzer,
-/obj/item/assembly/signaler,
+/area/security/reception)
+"vpc" = (
/turf/simulated/floor/plasteel{
- dir = 6;
icon_state = "darkblue"
},
-/area/turret_protected/ai)
-"sBx" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/medical/surgery2)
+"vpi" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/item/storage/box/buck{
+ pixel_x = 3
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/item/storage/box/buck{
+ pixel_y = 3
},
-/obj/machinery/light{
- dir = 1
+/obj/item/storage/box/slug{
+ pixel_x = -3;
+ pixel_y = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Secure Armory East";
+ dir = 8;
+ network = list("SS13","Security")
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 28
},
-/area/security/permabrig)
-"sBI" = (
-/obj/structure/table/reinforced,
-/obj/item/dice/d10,
-/obj/item/dice/d20,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/xenozoo)
-"sBL" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "MiniSat Maintenance";
- req_access_txt = "75"
+/area/security/securearmoury)
+"vpu" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"sCb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
},
+/area/security/brig)
+"vpz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"vpA" = (
+/obj/structure/window/reinforced,
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 7";
+ dir = 4;
+ network = list("SS13","MiniSat")
},
-/area/medical/sleeper)
-"sCf" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkblue"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "Warden";
- name = "Warden Privacy Shutters"
+/area/construction/hallway)
+"vpM" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/toy/figure/md,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/turf/simulated/floor/plating,
-/area/security/warden)
-"sCh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/medical/reception)
+"vpP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/cable{
@@ -124297,722 +121503,785 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/sleeper)
-"sCy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
+"vpV" = (
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/wood,
+/area/maintenance/fsmaint)
+"vpW" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/fore)
-"sCY" = (
-/obj/machinery/light/spot,
-/obj/effect/spawner/lootdrop/trade_sol/serv,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"sDu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "blue"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/hydroponics)
-"sDY" = (
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "red"
},
-/area/medical/sleeper)
-"sEO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/security/brig)
+"vqg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/door/airlock/medical/glass{
- id_tag = "";
- name = "Staff Room";
- req_access_txt = "5"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/ward)
-"sEZ" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/maintenance/electrical)
-"sFQ" = (
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 3";
- name = "Cell 3 Locker"
- },
-/obj/machinery/flasher{
- id = "Cell 3"
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/west)
+"vqK" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/area/security/prison/cell_block/A)
-"sGl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "cmo"
},
-/area/hallway/primary/central/east)
-"sHq" = (
+/area/medical/cmo)
+"vqL" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Interrogation";
- name = "Interrogation Privacy Shutters"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+ id_tag = "Second Surgery Window";
+ name = "Surgery Shutters"
},
/turf/simulated/floor/plating,
-/area/security/processing)
-"sHI" = (
-/obj/structure/disposalpipe/segment,
-/obj/item/radio/intercom{
- pixel_x = 29
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+/area/medical/surgery2)
+"vqM" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/security/brig)
-"sHT" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
},
-/obj/structure/window/reinforced,
-/obj/item/storage/box/buck{
- pixel_x = 3
- },
-/obj/item/storage/box/buck{
- pixel_y = 3
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/door/window{
+ dir = 2;
+ name = "Secure Armory";
+ req_access_txt = "1"
},
-/obj/item/storage/box/slug{
- pixel_x = -3;
- pixel_y = 6
+/obj/structure/window/reinforced{
+ dir = 8
},
+/obj/item/clothing/suit/armor/riot,
+/obj/item/shield/riot,
+/obj/item/clothing/head/helmet/riot,
/turf/simulated/floor/plasteel{
- icon_state = "darkred"
+ icon_state = "dark"
},
/area/security/securearmoury)
-"sIy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+"vqY" = (
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/security/brigstaff)
+"vrg" = (
+/obj/structure/window/plasmareinforced{
+ color = "#FF0000";
+ dir = 1
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"vru" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/quartermaster/office)
-"sIX" = (
-/obj/machinery/recharge_station,
+/area/library)
+"vrx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 10;
+ dir = 4;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
+ },
+/area/medical/sleeper)
+"vrH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"vrL" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
icon_state = "red"
},
-/area/security/main)
-"sIZ" = (
-/obj/machinery/light{
- dir = 4
+/area/security/prisonershuttle)
+"vrN" = (
+/obj/machinery/computer/shuttle/labor,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28
+/area/shuttle/siberia)
+"vsb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ dir = 1
},
-/area/toxins/mixing)
-"sJL" = (
+/area/security/brig)
+"vse" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/hallway/primary/central/west)
+"vsn" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"vsp" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"sJQ" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/area/security/prison/cell_block/A)
-"sKK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 5
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTH)"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/toxins/misc_lab)
-"sKT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/medical/cmo)
+"vsA" = (
+/obj/machinery/atmospherics/unary/portables_connector{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
+/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "neutralcorner"
},
-/area/bridge/vip)
-"sLa" = (
-/obj/machinery/alarm{
- pixel_y = 24
+/area/toxins/mixing)
+"vsE" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/doppler_array{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"vsF" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep)
+"vsH" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/hor)
+"vsM" = (
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/southeast,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/engine,
+/area/medical/chemistry)
+"vsN" = (
+/turf/simulated/wall/r_wall,
+/area/engine/mechanic_workshop/hangar)
+"vsT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"vte" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"vtj" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_x = -32
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"vtm" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/engine/engineering)
+"vtu" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/area/security/prison/cell_block/A)
-"sLl" = (
-/obj/structure/rack{
+/area/medical/sleeper)
+"vtK" = (
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 14";
dir = 8;
- layer = 2.9
+ network = list("SS13","MiniSat")
},
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/turf/space,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"vtR" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/item/gun/energy/gun{
- pixel_x = -3;
- pixel_y = 3
+/obj/structure/rack,
+/obj/item/stack/sheet/metal{
+ amount = 50
},
-/obj/item/gun/energy/gun,
-/obj/item/gun/energy/gun{
+/obj/item/stack/sheet/glass{
+ amount = 50;
pixel_x = 3;
- pixel_y = -3
+ pixel_y = 3
},
-/obj/effect/decal/warning_stripes/southwest,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/clothing/head/welding,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"vtW" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkred"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/security/securearmoury)
-"sMs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 6
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"sMt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
- },
-/area/security/lobby)
-"sMF" = (
-/obj/structure/closet/wardrobe/pjs,
-/obj/machinery/light{
- dir = 8
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"vud" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "BrigRight";
+ name = "Brig";
+ req_access_txt = "63"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 9;
+ dir = 1;
icon_state = "red"
},
-/area/security/permabrig)
-"sNa" = (
+/area/security/brig)
+"vuo" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"vup" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/area/medical/medbay3)
-"sOI" = (
-/obj/machinery/message_server,
-/obj/machinery/power/apc{
- cell_type = 5000;
- name = "south bump Important Area";
- pixel_y = -24
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/security/hos)
+"vur" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/bluegrid,
-/area/tcommsat/chamber)
-"sOQ" = (
-/turf/simulated/wall/r_wall,
-/area/construction/hallway)
-"sOW" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"sPi" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurple"
+/area/security/checkpoint)
+"vuD" = (
+/obj/effect/decal/warning_stripes/yellow/partial,
+/mob/living/simple_animal/pet/dog/corgi/borgi,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/area/toxins/misc_lab)
-"sPl" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
+/turf/simulated/floor/plasteel,
+/area/assembly/robotics)
+"vuE" = (
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 8;
+ icon_state = "vault"
},
-/area/security/main)
-"sQZ" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/area/security/securearmoury)
+"vvh" = (
+/obj/structure/bed,
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/area/security/medbay)
-"sRk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"vvn" = (
+/obj/machinery/kitchen_machine/grill,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/hallway/secondary/entry/commercial)
-"sRo" = (
+/area/crew_quarters/kitchen)
+"vvz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/wall/r_wall,
-/area/engine/aienter)
-"sRr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/locker)
-"sRM" = (
+/area/turret_protected/aisat)
+"vvG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"sSH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A24";
- location = "A23"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/mob/living/simple_animal/bot/secbot/beepsky{
- name = "Officer Beepsky 1"
+/area/security/detectives_office)
+"vvP" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"vvX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"sSS" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/hallway/primary/central/west)
+"vvY" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 8
},
-/obj/structure/closet/radiation,
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = 28
},
-/area/medical/research{
- name = "Research Division"
- })
-"sUp" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
+/obj/item/stock_parts/cell/high,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"vwj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
+/obj/structure/disposalpipe/junction,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkred"
+ initialize_directions = 11
},
-/area/security/permabrig)
-"sVH" = (
-/obj/effect/decal/warning_stripes/southeastcorner,
-/obj/machinery/atmospherics/unary/tank/air,
-/turf/simulated/floor/plating,
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"sWL" = (
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/starboard)
-"sWX" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"sYj" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"sZN" = (
-/obj/structure/morgue,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/chapel/office)
-"tbK" = (
+/area/medical/virology)
+"vwq" = (
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Antechamber";
+ req_access_txt = "75"
+ },
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/turret_protected/aisat)
+"vww" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/hallway/primary/central/west)
+"vwy" = (
+/obj/machinery/vending/clothing,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/warden)
-"tci" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "RoboDesk";
- name = "Robotics Privacy Shutter"
+/area/crew_quarters/locker)
+"vwD" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/structure/cable,
+/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"tda" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/security/glass{
- name = "High Sec Area";
- req_access_txt = "1"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"vwH" = (
+/obj/structure/table/wood,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Head of Personnel's Desk";
+ departmentType = 5;
+ name = "Head of Personnel Requests Console";
+ pixel_y = 30
},
-/area/security/brig)
-"tdt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/item/paper_bin,
+/obj/item/stamp/hop,
+/obj/item/pen/fancy,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"vwQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 1
+ },
+/area/security/securehallway)
+"vwV" = (
+/obj/structure/chair/comfy/shuttle,
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 26
},
-/area/security/brig)
-"tdH" = (
-/turf/simulated/wall/r_wall,
-/area/engine/engineering/monitor)
-"tdT" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "red"
+ icon_state = "bot"
},
-/area/security/processing)
-"teK" = (
-/obj/structure/window/reinforced,
-/obj/machinery/photocopier,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 8
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"vwX" = (
+/obj/structure/table/wood,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/item/storage/fancy/donut_box,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+ icon_state = "dark"
+ },
+/area/library)
+"vxe" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/area/medical/morgue)
-"tfE" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/requests_console{
- department = "Mechanic";
- departmentType = 2;
- name = "Mechanic's Workshop Requests Console";
- pixel_y = -32
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "yellow"
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/aft)
+"vxf" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
},
-/area/engine/mechanic_workshop)
-"tfK" = (
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/sleeper)
-"tgH" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 8
+"vxh" = (
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 6";
+ dir = 4;
+ network = list("SS13","MiniSat")
+ },
+/turf/space,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"vxk" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Librarian"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"vxs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/item/robot_parts/chest,
-/obj/item/robot_parts/r_arm,
-/obj/item/robot_parts/l_arm,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/turret_protected/ai)
-"tiq" = (
-/obj/machinery/hologram/holopad,
+/area/medical/medbay3)
+"vxJ" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"vxO" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "ai_airlock";
+ name = "exterior access button";
+ pixel_x = 25;
+ pixel_y = -25;
+ req_access_txt = "75;13"
+ },
+/turf/space,
+/area/space/nearstation)
+"vxP" = (
+/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"tix" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "vault"
},
-/obj/machinery/alarm{
- pixel_y = 24
+/area/engine/aienter)
+"vxU" = (
+/obj/structure/cable{
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "darkredcorners"
},
-/area/hallway/primary/central/south)
-"tiH" = (
+/area/security/warden)
+"vxW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
+ },
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
+/area/crew_quarters/heads/hop)
+"vye" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
+ },
+/area/medical/research/nhallway)
+"vyh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/hallway/primary/central/north)
-"tiL" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/area/hallway/primary/central/east)
-"tiZ" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "neutralfull"
},
-/area/security/main)
-"tjf" = (
-/turf/simulated/floor/mech_bay_recharge_floor,
-/area/assembly/robotics)
-"tjR" = (
-/obj/structure/table,
-/obj/item/flashlight/lamp{
- pixel_x = 3;
- pixel_y = 5
+/area/hallway/primary/central/west)
+"vyi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
/area/security/processing)
-"tjW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+"vyq" = (
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/se)
-"tkf" = (
-/obj/structure/rack{
dir = 8;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/clothing/suit/armor/riot,
-/obj/item/shield/riot,
-/obj/item/clothing/head/helmet/riot,
-/obj/machinery/door/window{
- dir = 2;
- name = "Secure Armory";
- req_access_txt = "1"
+ icon_state = "red"
},
-/obj/structure/window/reinforced{
+/area/security/customs)
+"vyB" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/securearmoury)
-"tkg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/chair/office/dark{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
/obj/structure/cable{
@@ -125021,949 +122290,824 @@
icon_state = "1-4"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "purplefull"
},
-/area/turret_protected/ai)
-"tmF" = (
-/obj/structure/rack{
- dir = 1
+/area/medical/research/nhallway)
+"vyD" = (
+/obj/structure/bookcase,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"tmI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/chapel/main)
+"vyF" = (
+/mob/living/simple_animal/slime,
+/turf/simulated/floor/greengrid,
+/area/toxins/xenobiology)
+"vyN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"tmW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/camera{
- c_tag = "High Security Cells";
- dir = 1;
- network = list("SS13","Security")
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Prisoner Processing";
- req_access_txt = "1"
+/obj/effect/landmark/start{
+ name = "Cyborg"
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/prison/cell_block/A)
-"tnr" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+ icon_state = "darkbluefull"
},
-/obj/item/pen,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/turret_protected/aisat)
+"vyW" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/hos)
+"vzv" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/machinery/light{
- dir = 8
+/area/hallway/primary/central/south)
+"vzx" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"vzz" = (
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkred"
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/area/security/warden)
-"tnw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 8;
+ icon_state = "vault"
},
-/area/medical/medbay2)
-"tnF" = (
-/obj/machinery/door/firedoor,
+/area/engine/aienter)
+"vzE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/security/glass{
- id_tag = null;
- name = "Brig";
- req_access_txt = "63"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/east)
+"vzF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "solar_xeno_airlock";
+ name = "exterior access button";
+ pixel_x = -25;
+ pixel_y = 25;
+ req_access_txt = "13"
},
-/area/security/brig)
-"tnM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/starboard)
+"vzN" = (
+/obj/structure/chair/wood{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"tnT" = (
-/obj/structure/table,
-/obj/item/storage/box/prisoner{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/storage/box/prisoner,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/prisonlockers)
-"tou" = (
-/turf/space,
-/area/shuttle/gamma/station)
-"toS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"vzV" = (
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 2;
+ icon_state = "rightsecure";
+ id = "Cell 4";
+ name = "Cell 4";
+ req_access_txt = "2"
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/execution)
-"toY" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/structure/sign/poster/official/report_crimes{
- pixel_y = -32
+/area/security/prison/cell_block/A)
+"vzW" = (
+/obj/machinery/door/firedoor,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
},
-/turf/simulated/floor/plating,
-/area/security/checkpoint)
-"tpv" = (
-/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/mechanic_workshop/hanger)
-"tpA" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/medical/psych)
-"tqf" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/closet/secure_closet/brig,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
+/area/medical/sleeper)
+"vAa" = (
+/obj/structure/bedsheetbin,
+/obj/structure/table,
/obj/machinery/light{
dir = 8
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "arrival"
},
-/area/security/brig)
-"tqL" = (
+/area/crew_quarters/sleep)
+"vAb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/area/security/brig)
-"tsi" = (
-/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
-"tud" = (
+/area/engine/aienter)
+"vAj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/processing)
-"tuv" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/vending/medical,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/area/medical/genetics_cloning)
-"tuZ" = (
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 6";
- dir = 4;
- network = list("SS13","MiniSat")
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"twh" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/area/medical/reception)
+"vAm" = (
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "s_docking_airlock";
+ name = "Escape Pod Hatch"
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkred"
+/obj/docking_port/mobile/pod{
+ dir = 8;
+ id = "pod4";
+ name = "escape pod 4"
},
-/area/security/processing)
-"twl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/shuttle/floor,
+/area/shuttle/pod_4)
+"vAr" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/rack{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"two" = (
-/obj/machinery/power/apc{
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"vAC" = (
+/obj/machinery/firealarm{
dir = 4;
- name = "east bump";
- pixel_x = 24
+ pixel_x = 28
},
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"twN" = (
-/obj/item/stack/sheet/mineral/plasma{
- amount = 5
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "whiteyellow"
- },
-/area/medical/chemistry)
-"twU" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ dir = 8;
+ icon_state = "vault"
},
+/area/engine/aienter)
+"vAN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/photocopier,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkred"
- },
-/area/security/warden)
-"txb" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"vAZ" = (
+/obj/machinery/light{
dir = 8
},
-/obj/structure/window/plasmareinforced{
- dir = 4
+/obj/structure/table/reinforced,
+/obj/item/enginepicker{
+ layer = 3.1
},
-/obj/structure/window/plasmareinforced{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"txI" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"tzb" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
+/area/crew_quarters/chief)
+"vBg" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 8
},
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/security/execution)
-"tzg" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/fsmaint)
+"vBi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "robotics_solar_outer";
+ locked = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
},
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"tzp" = (
-/obj/machinery/vending/autodrobe,
-/obj/machinery/firealarm{
- pixel_y = 32
+/area/maintenance/portsolar)
+"vBm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/machinery/light_switch{
- pixel_x = -22;
- pixel_y = -8
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_regular_floor = "yellowsiding";
- icon_state = "tranquillite"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/mimeoffice)
-"tzt" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/cabin4)
-"tzI" = (
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"vBp" = (
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"vBr" = (
/obj/structure/window/reinforced{
- dir = 1
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
},
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"tzX" = (
-/obj/structure/flora/ausbushes/sunnybush,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
/obj/structure/window/reinforced{
- dir = 1
+ dir = 1;
+ layer = 2.9
},
-/obj/structure/disposalpipe/segment,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/genericbush,
/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"tAs" = (
+/area/medical/cryo)
+"vBt" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken6";
+ tag = "icon-wood-broken6"
+ },
+/area/maintenance/fsmaint)
+"vBE" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/light,
+/obj/machinery/flasher{
+ id = "Cell 5";
+ pixel_y = -28
},
-/area/crew_quarters/fitness)
-"tAz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/item/radio/intercom{
+ pixel_y = -42
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central/west)
-"tAB" = (
-/obj/machinery/door/airlock/research/glass{
- heat_proof = 1;
- name = "Chemical Testing Room";
- req_access_txt = "47"
+ icon_state = "red"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/security/prison/cell_block/A)
+"vBG" = (
+/obj/machinery/light_switch{
+ pixel_x = 10;
+ pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/wood,
+/area/security/hos)
+"vBQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "RnDChem";
- name = "Biohazard Shutter";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
+/area/crew_quarters/chief)
+"vBX" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"tBr" = (
-/obj/structure/table,
-/obj/item/clothing/shoes/orange,
-/obj/item/clothing/under/color/orange/prison,
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "darkred"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/prisonershuttle)
-"tBB" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"tCj" = (
-/obj/structure/cable{
+/area/engine/break_room)
+"vCh" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/junction{
- dir = 8;
- tag = "icon-pipe-j1 (EAST)"
- },
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"vCj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/area/security/brig)
-"tCX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkblue"
+ icon_state = "neutralfull"
},
-/area/turret_protected/aisat_interior)
-"tEo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/engine/break_room)
+"vCl" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/sleeper)
-"tFR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"tGi" = (
-/mob/living/simple_animal/cow{
- name = "Betsy"
+ icon_state = "white"
},
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"tGu" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/medical/biostorage)
+"vCr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"tGE" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"tGG" = (
+/obj/structure/table/wood,
+/obj/item/folder/yellow,
+/obj/item/pen,
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"vCt" = (
+/obj/structure/sign/securearea,
/turf/simulated/wall/r_wall,
-/area/maintenance/starboardsolar)
-"tGM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/medical/virology)
+"vCx" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/prisonershuttle)
-"tHb" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "hosp";
- name = "HoS Privacy Shutters"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+ icon_state = "grimy"
},
-/turf/simulated/floor/plating,
-/area/security/hos)
-"tHn" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced,
-/obj/structure/window/plasmareinforced{
+/area/chapel/office)
+"vCW" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/grass,
+/area/hallway/secondary/exit)
+"vCY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/window/plasmareinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"tHC" = (
-/obj/structure/closet/secure_closet/security,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"vCZ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/engine/engineering/monitor)
+"vDd" = (
+/obj/structure/table/reinforced,
+/obj/item/tank/jetpack/carbondioxide{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/item/clothing/mask/balaclava,
+/obj/item/tank/jetpack/carbondioxide,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "yellowfull"
},
-/area/security/customs)
-"tHH" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/area/engine/hardsuitstorage)
+"vDe" = (
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = -26
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = 38;
+ pixel_y = -26
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/security/brig)
-"tHP" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/area/medical/cmo)
+"vDy" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/ai_status_display{
+ pixel_x = -32
},
-/obj/structure/table,
-/obj/random/plushie,
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness)
-"tIh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/storage/tech)
+"vDA" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall13"
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- name = "Security Junction";
- sortType = 8
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"vDO" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8;
+ layer = 4
},
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "neutralcorner"
},
-/area/security/brig)
-"tIP" = (
+/area/bridge/vip)
+"vEb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"tJg" = (
+/turf/simulated/floor/plasteel,
+/area/medical/cmo)
+"vEd" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "SKPP"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "eslock";
- name = "Escape Shuttle Lockdown"
- },
-/turf/simulated/floor/plating,
-/area/bridge/checkpoint/south)
-"tJk" = (
-/obj/item/radio/intercom,
-/turf/simulated/wall,
-/area/medical/ward)
-"tKE" = (
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"tLH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- id = "Cell 5";
- name = "Cell 5";
- req_access_txt = "2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/security/prison/cell_block/A)
-"tLN" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall/rust,
-/area/maintenance/asmaint)
-"tMi" = (
-/turf/simulated/floor/plasteel{
- icon_state = "purplecorner"
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"vEh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/janitor)
-"tMj" = (
-/obj/machinery/flasher/portable,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkred"
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"vEo" = (
+/turf/simulated/wall,
+/area/assembly/chargebay)
+"vEu" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
},
-/area/security/securearmoury)
-"tMy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/light_switch{
+ pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
-"tML" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "Virology";
- name = "Virology Shutters"
+/area/security/main)
+"vEw" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/medical/virology)
-"tMO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/engine/mechanic_workshop/hangar)
+"vEN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"vEU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/landmark/start{
- name = "Medical Doctor"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"vEZ" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"vFe" = (
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/machinery/vending/assist,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"vFi" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "red"
},
-/area/medical/surgery1)
-"tOj" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4
+/area/security/brigstaff)
+"vFl" = (
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = -26
},
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f10"
+/obj/machinery/camera{
+ c_tag = "Captain's Desk";
+ dir = 1
},
-/area/shuttle/pod_4)
-"tOs" = (
-/obj/effect/spawner/random_spawners/wall_rusted_probably,
-/turf/simulated/wall,
-/area/maintenance/gambling_den)
-"tPd" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/captain)
+"vFr" = (
+/obj/item/radio/intercom{
+ pixel_x = -28
},
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/aisat_interior)
+"vFy" = (
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "neutralcorner"
},
-/area/security/brig)
-"tPh" = (
-/turf/simulated/wall,
-/area/maintenance/xenozoo)
-"tPv" = (
-/turf/simulated/wall/r_wall,
-/area/bridge/vip)
-"tQe" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A9";
- location = "A8"
+/area/hallway/primary/central/se)
+"vFG" = (
+/obj/structure/table,
+/obj/machinery/microscope{
+ pixel_y = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
+ dir = 6;
+ icon_state = "darkblue"
},
-/area/hallway/secondary/entry)
-"tQo" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 4
+/area/security/detectives_office)
+"vFU" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/turret_protected/ai)
-"tQL" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
/area/medical/ward)
-"tRE" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/door/poddoor/multi_tile/two_tile_ver{
- id_tag = "mechanicgate"
- },
-/obj/structure/spacepoddoor{
- luminosity = 3
+"vGf" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32
},
-/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop)
-"tSc" = (
-/obj/effect/decal/warning_stripes/southwestcorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/light{
+ dir = 8
},
+/obj/structure/window/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/engine/hardsuitstorage)
-"tSz" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 8
+/area/library)
+"vGi" = (
+/obj/structure/sign/poster/contraband/missing_gloves{
+ pixel_x = 32
},
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/simulated/floor/plating,
-/area/security/execution)
-"tTD" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/wood,
+/obj/machinery/recharger,
/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"tTR" = (
-/obj/structure/window/reinforced{
- dir = 4
+/area/maintenance/fsmaint)
+"vGv" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkred"
},
-/obj/structure/window/reinforced,
-/obj/structure/showcase,
+/area/security/permabrig)
+"vGw" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
+ icon_state = "neutralfull"
},
-/area/turret_protected/aisat)
-"tUT" = (
-/obj/structure/window/reinforced{
+/area/storage/primary)
+"vGz" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/trade/sol)
+"vGN" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
dir = 8
},
-/obj/structure/window/reinforced,
-/obj/structure/showcase,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 1
},
-/area/turret_protected/aisat)
-"tUW" = (
-/obj/structure/table,
-/obj/item/storage/box/evidence{
- pixel_y = 4
+/area/security/customs)
+"vHg" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "grimy"
},
-/area/security/processing)
-"tVr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/crew_quarters/captain)
+"vHh" = (
+/obj/machinery/door/airlock/glass{
+ name = "Cabin"
},
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"tVP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "bar"
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/sleep)
+"vHi" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/recharge_station,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"vHs" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
-/area/clownoffice)
-"tWM" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/structure/window/plasmareinforced{
+ dir = 4
+ },
+/obj/structure/window/plasmareinforced,
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/medical/cmo)
-"tXj" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/assembly/signaler,
-/obj/item/assembly/signaler{
- pixel_x = -8;
- pixel_y = 5
+/area/toxins/mixing)
+"vHA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/assembly/signaler{
- pixel_x = 8;
- pixel_y = 5
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/assembly/signaler{
- pixel_y = 13
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple"
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/starboard/east)
+"vHG" = (
+/obj/machinery/atmospherics/unary/passive_vent{
+ dir = 8
},
+/turf/simulated/floor/engine/insulated/vacuum,
/area/toxins/mixing)
-"tYg" = (
+"vIi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -125975,1162 +123119,835 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/brig)
-"tYG" = (
-/obj/machinery/tcomms/core/station,
-/obj/machinery/flasher{
- id = null;
- pixel_y = -24
+/area/hallway/primary/starboard/east)
+"vIl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/camera/motion{
- c_tag = "Minisat Telecommunications";
- dir = 1;
- network = list("Minisat","SS13")
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/bluegrid,
-/area/tcommsat/chamber)
-"tYL" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/computer/podtracker,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "yellow"
- },
-/area/engine/mechanic_workshop)
-"tYM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/camera{
- c_tag = "Minisat Hallway North";
- network = list("Minisat","SS13")
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+ icon_state = "neutralfull"
},
-/area/turret_protected/aisat_interior)
-"tZg" = (
+/area/crew_quarters/courtroom)
+"vIm" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
+ icon_state = "dark"
},
/area/security/permabrig)
-"tZI" = (
-/obj/structure/chair/wood/wings{
- dir = 1;
- tag = "icon-wooden_chair_wings (NORTH)"
+"vIt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"tZN" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
- dir = 1
+/obj/effect/landmark/start{
+ name = "Brig Physician"
},
-/obj/structure/disposalpipe/junction,
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "green"
- },
-/area/hallway/secondary/exit)
-"uaK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+ icon_state = "white"
},
-/obj/structure/disposalpipe/segment,
+/area/security/medbay)
+"vIC" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id_tag = "meetroomshutters";
+ name = "Meeting Room Shutters";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "BridgeLockdown";
+ name = "Bridge Lockdown"
+ },
+/turf/simulated/floor/plating,
+/area/bridge/meeting_room)
+"vJn" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
},
+/area/security/securehallway)
+"vJr" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"ubr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/structure/table/wood,
+/obj/item/clothing/mask/cigarette/cigar{
+ pixel_x = -5;
+ pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+/obj/item/clothing/mask/cigarette/cigar{
+ pixel_x = -2;
+ pixel_y = 3
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/machinery/door_control{
+ id = "meetroomshutters";
+ name = "Privacy Shutters";
+ pixel_x = 6;
+ pixel_y = -2;
+ req_one_access_txt = "18"
},
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"vJv" = (
+/obj/effect/decal/warning_stripes/north,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/toxins/mixing)
-"ubu" = (
-/obj/structure/table,
-/obj/item/taperecorder{
- pixel_y = 6
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/security/processing)
-"ubV" = (
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"vJw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+ dir = 4
},
-/turf/simulated/floor/carpet,
-/area/medical/psych)
-"ucA" = (
-/obj/effect/landmark/start{
- name = "Security Officer"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+ dir = 8;
+ icon_state = "whitegreencorner"
},
-/area/security/customs)
-"ucF" = (
-/obj/machinery/vending/coffee,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+/area/medical/virology)
+"vJJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/lobby)
-"ucJ" = (
-/turf/simulated/floor/plasteel{
- icon_state = "darkbluecorners"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/construction/hallway)
-"ude" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"udw" = (
-/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "1-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"udT" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
},
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
-"uez" = (
+/area/security/processing)
+"vJQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/cryo)
-"ueD" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/showcase{
- layer = 5
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "white"
},
-/area/turret_protected/aisat)
-"ufq" = (
+/area/medical/virology/lab)
+"vJX" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkbluefull"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/construction/hallway)
-"ufH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel{
+/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/sleeper)
-"ufN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"vKJ" = (
+/turf/simulated/wall/r_wall,
/area/security/detectives_office)
-"ufP" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/coffee,
-/turf/simulated/floor/plasteel{
+"vLk" = (
+/obj/machinery/light/spot{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ tag = "icon-tube1 (EAST)"
},
-/area/medical/medbay)
-"ufZ" = (
+/obj/structure/closet/crate,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport)
+"vLq" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/plating,
+/area/medical/ward)
+"vLr" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
-/obj/machinery/door/poddoor/shutters/preopen{
+/obj/structure/sink{
dir = 8;
- id_tag = "ai1";
- name = "Turret Shutters"
+ pixel_x = -12;
+ pixel_y = 2
},
-/turf/simulated/floor/plating,
-/area/turret_protected/aisat_interior)
-"ugi" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/light/small{
- dir = 4
- },
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"ugu" = (
-/obj/machinery/camera{
- armor = list("melee" = 50, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 100, "bio" = 0, "rad" = 0, "fire" = 90, "acid" = 50);
- c_tag = "Research Toxins Test Chamber North";
- network = list("Toxins","Research","SS13")
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"ugx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/structure/disposalpipe/junction{
- dir = 4;
- tag = "icon-pipe-j1 (EAST)"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/lobby)
-"ugH" = (
-/turf/simulated/floor/plasteel{
dir = 1
},
-/area/security/main)
-"ugW" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/item/radio/intercom{
- pixel_x = 30
- },
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"uhP" = (
-/obj/structure/transit_tube,
-/obj/structure/lattice/catwalk,
+/area/medical/virology)
+"vLs" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"vLA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/space,
-/area/space/nearstation)
-"uiu" = (
-/obj/machinery/newscaster{
- pixel_x = 28
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/engine/hardsuitstorage)
+"vLQ" = (
+/obj/structure/table/wood,
+/obj/item/kitchen/utensil/fork,
+/obj/item/kitchen/utensil/spoon,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
+"vLR" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
- })
-"uiA" = (
-/obj/structure/lattice/catwalk,
+/area/bridge/meeting_room)
+"vMe" = (
+/obj/machinery/porta_turret,
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
+"vMk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/space,
-/area/space/nearstation)
-"ujh" = (
-/obj/machinery/atmospherics/binary/pump{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/area/toxins/mixing)
-"ulT" = (
-/obj/structure/disposalpipe/segment,
+/area/medical/medbay3)
+"vMK" = (
+/turf/simulated/wall/r_wall,
+/area/security/processing)
+"vMV" = (
+/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"ulY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+ icon_state = "whitepurple"
},
-/area/engine/hardsuitstorage)
-"umy" = (
-/obj/effect/spawner/window/reinforced,
+/area/assembly/robotics)
+"vMY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"umQ" = (
-/obj/effect/decal/warning_stripes/southeast,
+/area/security/range)
+"vMZ" = (
+/obj/structure/dresser,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/xenozoo)
-"unk" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
+/area/medical/virology)
+"vNi" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- icon_state = "neutralcorner"
+ id_tag = "First Surgery Window";
+ name = "Surgery Shutters"
},
-/area/hallway/primary/central/sw)
-"unx" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
+/turf/simulated/floor/plating,
+/area/medical/surgery1)
+"vNk" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel,
-/area/hydroponics)
-"uoL" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "green"
+ icon_state = "neutralfull"
},
-/area/hallway/secondary/exit)
-"uoM" = (
-/turf/simulated/wall,
-/area/security/processing)
-"uoW" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/security/checkpoint)
+"vNl" = (
+/obj/structure/chair/comfy/shuttle,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "BridgeLockdown";
- name = "Bridge Lockdown"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
},
-/turf/simulated/floor/plating,
-/area/bridge)
-"upm" = (
-/obj/machinery/door/airlock/external{
- id_tag = "s_docking_airlock";
- name = "Shuttle Airlock";
- req_access_txt = "150"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"vNo" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
},
-/obj/machinery/door_control{
- id = "syndicate_sit_1";
- name = "Blast Doors";
- pixel_x = -25;
- req_access_txt = "150"
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
+"vNO" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube{
+ icon_state = "D-NW";
+ tag = "icon-D-NW"
},
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "syndicate_sit_1";
- name = "Front Hull Door";
- opacity = 0;
- req_access_txt = "150"
+/turf/space,
+/area/space/nearstation)
+"vNP" = (
+/obj/structure/computerframe,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"vNU" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "RoboDesk";
+ name = "Robotics Privacy Shutter"
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/syndicate_sit)
-"upr" = (
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"vNX" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/securearmoury)
+"vNZ" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "purplefull"
},
-/area/security/prisonlockers)
-"uqb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/hallway/primary/aft)
+"vOa" = (
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 7
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/item/pen,
+/obj/structure/table/glass,
+/obj/item/radio/intercom{
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 4;
+ icon_state = "whitepurple"
},
-/area/toxins/mixing)
-"urC" = (
-/obj/structure/chair{
+/area/medical/genetics)
+"vOc" = (
+/obj/structure/chair/comfy/shuttle{
dir = 4
},
-/turf/simulated/floor/plasteel{
+/obj/item/radio/intercom{
dir = 8;
- icon_state = "red"
- },
-/area/security/lobby)
-"usE" = (
-/obj/effect/decal/warning_stripes/northwestcorner,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/mechanic_workshop/hanger)
-"usJ" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/landmark/start{
- name = "Scientist"
+ pixel_x = -28
},
+/turf/simulated/shuttle/floor4,
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"vOe" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
- },
-/area/toxins/mixing)
-"usN" = (
-/obj/structure/chair{
- dir = 8
+ icon_state = "neutralcorner"
},
-/obj/item/radio/intercom{
- pixel_x = 29
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"vOF" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaCellsLockdown";
+ name = "Perma Cells Lockdown"
},
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"vOJ" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+/turf/space,
+/area/space/nearstation)
+"vOX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/surgery1)
-"usO" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
+ d2 = 8;
+ icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/central/east)
-"uty" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hallway/primary/starboard/east)
+"vPl" = (
+/obj/machinery/vending/coffee,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
+/area/medical/ward)
+"vPn" = (
+/obj/structure/table/wood,
+/obj/item/toy/russian_revolver,
+/turf/simulated/floor/carpet,
+/area/maintenance/fsmaint)
+"vPt" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/prison/cell_block/A)
+"vPu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/hallway/secondary/entry/commercial)
-"utE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/toxins/mixing)
-"utI" = (
+/area/turret_protected/ai_upload)
+"vPC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/surgery1)
-"utT" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1
},
/area/security/processing)
-"utY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/bridge/checkpoint/south)
-"uuu" = (
-/turf/simulated/floor/carpet,
-/area/medical/psych)
-"uuD" = (
-/obj/machinery/computer/prisoner,
+"vPO" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central/ne)
+"vPS" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/warden)
-"uvs" = (
-/obj/machinery/light/small{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"uvC" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry/westarrival)
-"uvW" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/wall,
-/area/hydroponics)
-"uwZ" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
+/area/maintenance/gambling_den)
+"vQn" = (
+/obj/machinery/camera/motion{
+ c_tag = "AI Upload Chamber"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/light_switch{
+ pixel_x = -5;
+ pixel_y = 26
},
/turf/simulated/floor/bluegrid,
-/area/turret_protected/aisat_interior)
-"uxy" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera{
- c_tag = "Minisat AI Control Room";
- dir = 1;
- network = list("Minisat","SS13")
- },
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
- },
-/area/turret_protected/ai)
-"uxS" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/prison/cell_block/A)
-"uyQ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/area/turret_protected/ai_upload)
+"vQs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"vQt" = (
+/obj/machinery/computer/operating,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "darkblue"
},
/area/medical/surgery2)
-"uzn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
+"vQz" = (
+/obj/machinery/vending/boozeomat,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay2)
-"uzr" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
-/turf/simulated/floor/engine/insulated/vacuum,
-/area/toxins/mixing)
-"uAc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/westarrival)
-"uAe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/crew_quarters/captain)
+"vQG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
- },
-/obj/machinery/door/airlock/maintenance{
- req_one_access_txt = "12;39"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"uAf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/warning_stripes/yellow/partial,
-/obj/effect/decal/warning_stripes/arrow,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"uAC" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/main)
-"uAL" = (
-/obj/machinery/light,
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 1
},
/area/security/brig)
-"uAX" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"uBv" = (
-/obj/machinery/light/small{
- dir = 1
+"vQJ" = (
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_one_access_txt = "6;5"
},
-/turf/simulated/floor/plating/airless,
-/area/toxins/test_area)
-"uBY" = (
-/turf/simulated/wall,
-/area/bridge/checkpoint/south)
-"uCM" = (
-/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "ai1";
- name = "Turret Shutters"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/medical/morgue)
+"vQL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/turret_protected/aisat_interior)
-"uCN" = (
-/obj/effect/spawner/lootdrop/trade_sol/sci,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"uCO" = (
-/obj/structure/door_assembly,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"uCS" = (
-/obj/machinery/door/poddoor/shutters{
- id_tag = "janitorshutters";
- name = "Janitor Shutters"
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel{
- icon_state = "purple"
- },
-/area/janitor)
-"uDx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/medbay)
-"uDV" = (
-/turf/simulated/floor/carpet,
-/area/maintenance/abandonedbar)
-"uEP" = (
-/obj/machinery/computer/security{
- network = list("SS13","Mining Outpost")
+/area/hallway/primary/starboard/east)
+"vQQ" = (
+/obj/machinery/bodyscanner{
+ dir = 4
},
-/turf/simulated/floor/bluegrid,
-/area/tcommsat/chamber)
-"uEQ" = (
-/obj/effect/decal/warning_stripes/southwest,
-/obj/structure/window/plasmareinforced{
- dir = 8
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
},
-/obj/structure/window/plasmareinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
-/turf/simulated/floor/engine,
-/area/toxins/misc_lab)
-"uEZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"uFV" = (
-/obj/machinery/light/small{
- dir = 8
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/hallway/secondary/entry/eastarrival)
-"uGo" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = -32
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "South Surgery";
+ dir = 1;
+ network = list("SS13","Medical");
+ pixel_x = 30
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/medical/cmo)
-"uGu" = (
+/area/medical/surgery2)
+"vQX" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/turret_protected/aisat_interior)
-"uGF" = (
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"uGH" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/bar/atrium)
-"uHt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"uHu" = (
-/obj/structure/table/reinforced,
-/obj/item/radio{
- pixel_x = -4
- },
-/obj/item/radio{
- pixel_x = -4;
- pixel_y = 5
- },
-/obj/item/radio{
- pixel_x = 4
- },
-/obj/item/radio{
- pixel_x = 4;
- pixel_y = 5
+/area/medical/medbay2)
+"vQY" = (
+/obj/machinery/mech_bay_recharge_port{
+ dir = 8
},
-/obj/machinery/alarm{
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plating,
+/area/assembly/chargebay)
+"vRb" = (
+/obj/structure/shuttle/engine/propulsion{
dir = 1;
- pixel_y = -25
+ icon_state = "propulsion_l";
+ tag = "icon-propulsion_l (NORTH)"
},
-/obj/machinery/camera{
- c_tag = "Security Equipment";
- dir = 1;
- network = list("SS13","Security")
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate_sit)
+"vRl" = (
+/obj/structure/table/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/customs)
-"uHv" = (
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 2";
- name = "Cell 2 Locker"
- },
-/obj/machinery/flasher{
- id = "Cell 2"
+ icon_state = "white"
},
+/area/medical/sleeper)
+"vSm" = (
+/obj/structure/closet/wardrobe/white,
/turf/simulated/floor/plasteel{
- icon_state = "bcarpet05"
- },
-/area/security/prison/cell_block/A)
-"uHA" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xeno3";
- name = "Creature Cell #3";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/toxins/xenobiology)
-"uHU" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Watchroom";
- name = "Watch Room Privacy Shutters"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"uIi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/west,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/medical/ward)
+"vSn" = (
+/obj/structure/table/glass,
+/obj/item/defibrillator/loaded{
+ pixel_y = 5
},
/obj/structure/cable{
- d1 = 1;
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"uIF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/surgery2)
+"vSt" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/hallway/primary/port/east)
-"uIT" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
},
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/door/window{
+ dir = 2;
+ name = "Secure Armory";
+ req_access_txt = "1"
+ },
/obj/structure/window/reinforced{
dir = 4
},
-/obj/item/clothing/suit/armor/bulletproof,
-/obj/item/clothing/head/helmet/alt,
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+/obj/item/clothing/suit/armor/riot,
+/obj/item/shield/riot,
+/obj/item/clothing/head/helmet/riot,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/securearmoury)
-"uJw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"vSA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"uJx" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"uKb" = (
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 8";
- dir = 6;
- network = list("SS13","MiniSat")
- },
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"uKQ" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/securearmoury)
-"uKR" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/navbeacon{
- codes_txt = "delivery";
- location = "Chemistry"
- },
-/obj/structure/plasticflaps{
- opacity = 1
+ icon_state = "grimy"
},
+/area/crew_quarters/captain)
+"vSD" = (
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/medical/chemistry)
-"uLd" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Genetics";
- name = "Genetics Privacy Shutters"
+/area/crew_quarters/locker)
+"vSE" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/medical/genetics)
-"uLi" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"vSK" = (
+/obj/machinery/suit_storage_unit/engine,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/southwest,
/obj/structure/extinguisher_cabinet{
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkred"
+ icon_state = "dark"
+ },
+/area/engine/hardsuitstorage)
+"vSU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"vSV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/area/security/prisonershuttle)
-"uLv" = (
-/obj/item/roller,
-/obj/effect/decal/warning_stripes/blue/partial,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/sleeper)
-"uLP" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+/area/medical/genetics)
+"vTf" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger{
+ pixel_y = 3
+ },
+/turf/simulated/floor/carpet,
+/area/maintenance/fsmaint)
+"vTk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/lobby)
+"vTw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -127140,292 +123957,284 @@
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/evidence)
-"uNi" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-22";
- tag = "icon-plant-22"
+/area/chapel/office)
+"vTC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"vTF" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
+/turf/simulated/floor/plating,
+/area/security/reception)
+"vTG" = (
/obj/machinery/light{
- dir = 8
+ dir = 1;
+ on = 1
},
-/obj/machinery/vending/wallmed{
- pixel_y = 30
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/table/reinforced,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/obj/machinery/camera{
+ c_tag = "Permabrig Office North";
+ network = list("Prison","SS13")
+ },
+/obj/machinery/door_control{
+ id = "PermaLockdown";
+ name = "Perma Lockdown";
+ pixel_x = 4;
+ pixel_y = 6;
+ req_access_txt = "2"
+ },
+/obj/machinery/door_control{
+ id = "PermaCellsLockdown";
+ name = "Perma Cells Lockdown";
+ pixel_x = 4;
+ pixel_y = -3;
+ req_access_txt = "2"
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/lobby)
-"uOm" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25
+/area/security/permabrig)
+"vTI" = (
+/obj/machinery/gateway{
+ dir = 5
},
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/area/library/abandoned)
-"uOJ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/light{
- dir = 8
+/area/gateway)
+"vTL" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/security/hos)
+"vTW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light/small{
+ dir = 8
},
-/area/medical/medbay3)
-"uOY" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"vTX" = (
+/obj/structure/closet/secure_closet/detective,
+/obj/item/hand_labeler,
+/obj/item/storage/box/evidence,
+/obj/item/storage/box/evidence,
+/obj/item/camera{
+ desc = "A one use - polaroid camera. 30 photos left.";
+ name = "detectives camera";
+ pictures_left = 30
+ },
+/obj/item/restraints/handcuffs,
+/obj/item/flash,
+/obj/item/radio/intercom{
+ pixel_x = -28
},
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"vUc" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"vUh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/brig)
-"uPa" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkbluecorners"
+ icon_state = "white"
},
-/area/turret_protected/aisat)
-"uPm" = (
-/obj/machinery/computer/security{
- network = list("SS13","Research Outpost","Mining Outpost")
+/area/medical/ward)
+"vUq" = (
+/obj/structure/table/wood,
+/obj/item/camera_film,
+/obj/item/book/manual/security_space_law,
+/obj/item/reagent_containers/food/drinks/flask/detflask,
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/camera{
- c_tag = "Permabrig Watch Room";
- dir = 4;
- network = list("SS13","Security")
+/obj/machinery/requests_console{
+ name = "Detective Requests Console";
+ pixel_x = -32
},
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"vUu" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkred"
- },
-/area/security/permabrig)
-"uPv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j2s";
- name = "Hydroponics Junction";
- sortType = 21
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"uPB" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/securearmoury)
-"uQV" = (
-/obj/machinery/door/airlock{
- id_tag = "PermaBath";
- name = "Bathroom"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/security/permabrig)
-"uRI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ icon_state = "white"
},
-/obj/machinery/light{
+/area/medical/medbay3)
+"vUF" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "red"
- },
-/area/security/permabrig)
-"uRQ" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ icon_state = "redcorner"
},
-/obj/structure/table/reinforced,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/area/hallway/primary/starboard/east)
+"vUJ" = (
+/obj/machinery/light_switch{
+ pixel_x = -26;
+ pixel_y = 26
},
-/obj/item/pen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/secure_closet/engineering_electrical,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/permabrig)
-"uSK" = (
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
+ dir = 4;
+ icon_state = "yellow"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/engine/engineering)
+"vUL" = (
+/obj/structure/chair/office/dark{
dir = 4
},
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"uST" = (
-/obj/structure/chair/office/dark,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/warden)
-"uTb" = (
-/obj/structure/window/reinforced{
- dir = 1
+/area/maintenance/starboardsolar)
+"vUZ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/requests_console{
+ department = "Internal Affairs Office";
+ name = "Internal Affairs Requests Console";
+ pixel_y = 28
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/construction/hallway)
-"uTk" = (
+/area/lawoffice)
+"vVe" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-2"
},
+/turf/simulated/floor/plating,
+/area/security/checkpoint2)
+"vVp" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkredcorners"
+ icon_state = "4-8"
},
-/area/security/permabrig)
-"uTu" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+/turf/simulated/wall,
+/area/maintenance/electrical)
+"vVr" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/area/medical/sleeper)
-"uTD" = (
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "diagonalWall3"
+/obj/structure/sign/poster/contraband/power_people{
+ pixel_y = 32
},
-/area/shuttle/syndicate_sit)
-"uTP" = (
-/obj/structure/bed/roller,
-/mob/living/carbon/human/monkey,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreen"
- },
-/area/medical/virology)
-"uTR" = (
-/obj/machinery/hydroponics/constructable{
- desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays.";
- name = "Prison hydroponics tray";
- using_irrigation = 1
+ icon_state = "showroomfloor"
},
-/obj/item/seeds/orange,
+/area/maintenance/fsmaint)
+"vVv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/permabrig)
-"uTT" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- on = 1
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/hallway/primary/starboard/east)
+"vVL" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"vVR" = (
+/obj/structure/closet/coffin,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/light/small{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/aisat_interior)
-"uUI" = (
-/obj/machinery/ai_slipper,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/chapel/main)
+"vWa" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "bot"
},
-/area/turret_protected/aisat_interior)
-"uVC" = (
-/obj/machinery/door/airlock/security{
- name = "Execution Room";
- req_access = null;
- req_access_txt = "1"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"vWf" = (
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ desc = "Труба ведёт газ на фильтрацию";
+ name = "Труба на фильтрацию"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ desc = "Труба содержит дыхательную смесь для подачи на станцию";
+ dir = 4;
+ name = "Труба дыхательной смеси"
+ },
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"vWg" = (
+/obj/machinery/bodyscanner{
+ dir = 4
},
/obj/structure/cable{
d1 = 2;
@@ -127437,2626 +124246,2763 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/camera{
+ c_tag = "North Surgery";
+ network = list("SS13","Medical");
+ pixel_x = 32
},
-/area/security/execution)
-"uVD" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/area/medical/cmo)
-"uVS" = (
+/area/medical/surgery1)
+"vWq" = (
+/obj/machinery/computer/prisoner,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
+ dir = 10;
icon_state = "darkred"
},
-/area/security/evidence)
-"uWf" = (
-/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"uWl" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
- },
-/area/construction/hallway)
-"uWH" = (
-/obj/machinery/camera{
- c_tag = "Medbay South East Hallway";
- dir = 8;
- network = list("SS13","Medical")
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 26
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/security/warden)
+"vWy" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"vWz" = (
+/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ icon_state = "red"
},
-/area/medical/medbay3)
-"uWM" = (
-/obj/machinery/atm{
- pixel_y = 32
+/area/security/lobby)
+"vWE" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ name = "Security Reception";
+ req_access_txt = "1"
},
-/obj/structure/chair/comfy/shuttle{
- dir = 8
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"uXf" = (
-/obj/effect/spawner/lootdrop/trade_sol/vehicle,
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"uXj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 6";
- name = "Cell 6 Locker"
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/machinery/flasher{
- id = "Cell 6"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+ dir = 1
},
-/area/security/prison/cell_block/A)
-"uYl" = (
-/obj/structure/closet,
-/obj/structure/window/reinforced{
+/area/security/reception)
+"vWF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"vWI" = (
+/obj/machinery/light/small,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault"
- },
-/area/security/evidence)
-"uYt" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Medbay Maintenance";
- req_access_txt = "5"
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"uYE" = (
+/area/hallway/secondary/entry/commercial)
+"vWO" = (
/obj/machinery/disposal,
+/obj/structure/sign/deathsposal{
+ pixel_y = 32
+ },
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 28
- },
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 9;
+ icon_state = "red"
},
-/area/medical/medbay)
-"uYS" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/construction/hallway)
-"uZl" = (
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 4;
- height = 11;
- id = "trade_sol";
- name = "sol trade shuttle";
- roundstart_move = "trade_sol_base";
- width = 9
+/area/security/processing)
+"vWQ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/door/airlock/shuttle/glass{
- id_tag = "s_docking_airlock"
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/toxins/xenobiology)
+"vWS" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 4;
- height = 11;
- id = "trade_dock";
- name = "port bay 5 at Kerberos";
- width = 9
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "Warden";
+ name = "Warden Privacy Shutters"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"uZv" = (
-/turf/simulated/wall/r_wall,
-/area/space/nearstation)
-"uZP" = (
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "ArmoryLock";
+ name = "Armory Lockdown";
+ opacity = 0
},
-/area/medical/sleeper)
-"uZX" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/bodybags,
-/obj/item/assembly/signaler{
- code = 6;
- frequency = 1445
+/turf/simulated/floor/plating,
+/area/security/warden)
+"vXH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/structure/cable{
+ icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- dir = 8;
+ dir = 10;
icon_state = "darkred"
},
-/area/security/execution)
-"vaC" = (
-/obj/structure/chair/office/light{
- dir = 4;
- pixel_y = 3
+/area/security/securearmoury)
+"vXL" = (
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
+/area/hallway/primary/central/south)
+"vYj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/carpet,
-/area/medical/psych)
-"vbq" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/electrical,
-/obj/item/clothing/head/welding,
-/turf/simulated/floor/bluegrid,
-/area/tcommsat/chamber)
-"vbw" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/permabrig)
-"vbR" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/item/radio/intercom{
- pixel_y = -30
- },
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/morgue)
-"vcj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+ dir = 4
},
-/area/security/main)
-"vcy" = (
-/obj/structure/flora/ausbushes/palebush,
-/obj/structure/flora/ausbushes/brflowers,
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"vcG" = (
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
+"vYk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkred"
},
-/area/crew_quarters/fitness)
-"vdG" = (
-/obj/structure/window/reinforced,
-/obj/structure/lattice,
-/obj/machinery/light/small{
- dir = 1
+/area/security/securearmoury)
+"vYr" = (
+/obj/machinery/light{
+ dir = 8
},
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"veG" = (
-/obj/machinery/door/airlock/external{
- id_tag = "trade_dock"
+/obj/machinery/porta_turret,
+/obj/machinery/status_display{
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkblue"
},
-/area/hallway/secondary/entry/commercial)
-"vfa" = (
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "blue"
+/area/tcommsat/chamber)
+"vYt" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/area/hydroponics)
-"vfH" = (
-/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 10;
+ icon_state = "darkredfull"
},
-/area/medical/ward)
-"vga" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 8
+/area/security/securearmoury)
+"vYK" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/structure/window/plasmareinforced,
-/obj/structure/window/plasmareinforced{
- dir = 4
+/area/chapel/office)
+"vYL" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/structure/window/plasmareinforced{
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"vgk" = (
-/obj/machinery/door_control{
- id = "transitlock";
- name = "Transit Tube Lockdown Control";
- pixel_x = 24;
- pixel_y = -8;
- req_access_txt = "11"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/door/window{
dir = 8;
- icon_state = "vault"
- },
-/area/engine/aienter)
-"vgG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ name = "Secure Armory";
+ req_access_txt = "1"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- id = "Cell 6";
- name = "Cell 6";
- req_access_txt = "2"
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/item/storage/lockbox/mindshield,
+/obj/item/storage/box/trackimp,
+/obj/item/storage/box/chemimp{
+ pixel_x = 4;
+ pixel_y = 3
},
+/obj/item/lock_buster,
/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+ icon_state = "dark"
},
-/area/security/prison/cell_block/A)
-"vhD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/security/securearmoury)
+"vYT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central/sw)
-"vhZ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "GYM";
- name = "Dungeon Privacy Shutters"
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+ icon_state = "red"
},
-/turf/simulated/floor/plating,
-/area/security/processing)
-"vib" = (
-/obj/machinery/vending/wallmed{
- pixel_y = -30
+/area/security/brigstaff)
+"vZi" = (
+/obj/structure/table/glass,
+/obj/item/folder/white,
+/obj/item/pen/red,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/syringe/antiviral,
+/obj/item/reagent_containers/glass/beaker,
+/obj/item/reagent_containers/dropper/precision,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
+/turf/simulated/floor/plasteel,
+/area/medical/virology)
+"vZk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkyellow"
+ dir = 4;
+ icon_state = "red"
},
-/area/engine/mechanic_workshop/hanger)
-"viQ" = (
+/area/security/main)
+"vZl" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
dir = 8;
- on = 1
+ id = "execution"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "execution"
},
-/area/crew_quarters/fitness)
-"vlc" = (
-/turf/simulated/shuttle/wall{
+/obj/structure/window/reinforced/polarized{
dir = 4;
- icon_state = "wall3"
- },
-/area/toxins/test_area)
-"vlh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"vlP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ id = "execution"
},
+/turf/simulated/floor/plating,
+/area/security/execution)
+"vZn" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/permabrig)
-"vmn" = (
-/obj/structure/table,
-/obj/item/camera{
- desc = "A one use - polaroid camera. 30 photos left.";
- name = "Camera";
- pictures_left = 30
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -32
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ icon_state = "grimy"
},
-/area/security/processing)
-"vmX" = (
-/obj/machinery/ai_slipper,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/library/abandoned)
+"vZo" = (
+/obj/machinery/light{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+/obj/structure/ore_box,
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -30
},
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"vni" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/medical/sleeper)
-"vnq" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 4
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 26
},
-/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/toxins/mixing)
-"vnI" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "dark"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/security/prisonershuttle)
+"vZy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/crew_quarters/hor)
-"vnS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "red"
},
-/area/security/brig)
-"vom" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/security/prison/cell_block/A)
-"von" = (
+/area/security/customs)
+"vZG" = (
+/obj/structure/chair/office/dark,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin3)
+"wap" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/window/brigdoor{
- base_state = "rightsecure";
- dir = 2;
- icon_state = "rightsecure";
- id = "Cell 3";
- name = "Cell 3";
- req_access_txt = "2"
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"wav" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/security/prison/cell_block/A)
-"vos" = (
-/obj/machinery/reagentgrinder,
-/obj/structure/table/reinforced,
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"waG" = (
+/obj/structure/fans/tiny,
+/obj/machinery/door/airlock/shuttle{
+ id_tag = "s_docking_airlock";
+ name = "Labor Shuttle Airlock";
+ req_access_txt = "2"
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitepurple"
+/area/shuttle/siberia)
+"waI" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/toxins/misc_lab)
-"vpc" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle,
-/turf/simulated/shuttle/plating,
-/area/shuttle/pod_3)
-"vpp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"waL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/atmos)
-"vpC" = (
-/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/hydroponics)
-"vqL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"vrM" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"vse" = (
-/obj/machinery/atmospherics/unary/vent_pump{
+/turf/simulated/floor/plasteel{
dir = 1;
- on = 1
+ icon_state = "darkblue"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/area/chapel/main)
+"waQ" = (
+/obj/machinery/light/small{
+ dir = 4
},
-/area/aisat/maintenance{
- name = "\improper AI Satellite Service"
+/turf/space,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
})
-"vsp" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/radio/intercom{
- pixel_x = -28
+"waS" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
+/obj/structure/window/reinforced,
+/obj/structure/showcase,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "vault"
},
-/area/hallway/primary/aft)
-"vsF" = (
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"vsH" = (
-/obj/machinery/computer/general_air_control{
- frequency = 1222;
- name = "Bomb Mix Monitor";
- sensors = list("burn_sensor" = "Burn Mix")
+/area/turret_protected/aisat)
+"waY" = (
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_x = 30;
+ pixel_y = 0
},
-/obj/effect/decal/warning_stripes/east,
+/obj/item/flag/med,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
-/area/toxins/mixing)
-"vsN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ icon_state = "cmo"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"vsT" = (
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"wbi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"wbl" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 9;
+ icon_state = "darkblue"
},
-/area/medical/ward)
-"vtu" = (
-/obj/structure/disposalpipe/segment{
+/area/turret_protected/aisat)
+"wbr" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/window/reinforced{
dir = 1;
- icon_state = "pipe-c"
+ layer = 2.9
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"wbx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/item/flag/nt,
+/obj/machinery/light{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ on = 1
},
-/area/medical/sleeper)
-"vtW" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 1;
+ icon_state = "darkblue"
},
-/area/medical/ward)
-"vuN" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 9
+/area/turret_protected/aisat)
+"wbP" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/engine/insulated/vacuum,
-/area/toxins/mixing)
-"vvG" = (
-/obj/structure/chair{
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "rdprivacy";
+ name = "Research Director Office Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/hor)
+"wbR" = (
+/obj/machinery/atmospherics/unary/portables_connector{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ name = "Riot Control";
+ req_access_txt = "2"
+ },
+/obj/machinery/light{
dir = 1;
on = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+/obj/item/wrench,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
},
-/area/security/processing)
-"vwj" = (
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"wbZ" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "Virology";
- name = "Virology Shutters"
- },
/turf/simulated/floor/plating,
-/area/medical/virology/lab)
-"vww" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/obj/item/stamp/warden{
- pixel_x = 12
+/area/security/checkpoint)
+"wck" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/space,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"wcl" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "ai_outer";
+ locked = 1;
+ name = "MiniSat External Access";
+ req_one_access_txt = "75;13;19;32"
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkred"
+ icon_state = "dark"
},
-/area/security/warden)
-"vxc" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/pump,
-/obj/structure/extinguisher_cabinet{
+/area/construction/hallway)
+"wcr" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "station_ai_airlock";
+ name = "exterior access button";
+ pixel_x = 24;
+ pixel_y = 24;
+ req_access_txt = "10;13"
+ },
+/turf/space,
+/area/space/nearstation)
+"wcw" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "station_ai_outer";
+ locked = 1;
+ name = "Minisat Access";
+ req_access = null;
+ req_access_txt = "10;13"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/aienter)
+"wcz" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"wcE" = (
+/obj/machinery/light,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"wcN" = (
+/obj/structure/table/wood,
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"wcO" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 32
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/computer/cryopod/robot{
pixel_y = 28
},
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"wcP" = (
+/obj/machinery/recharge_station/ert,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/locker)
-"vxs" = (
-/obj/machinery/door/airlock/medical{
- name = "Operating Theatre";
- req_access_txt = "45"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"wcS" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 2
},
-/obj/machinery/door/firedoor,
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"wdd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/holosign/surgery{
- id = "surgery1"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
-/area/medical/surgery1)
-"vxJ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/security/brig)
+"wds" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"vxO" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/area/medical/reception)
+"wdx" = (
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/library/abandoned)
+"wdz" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Kitchen";
+ req_access_txt = "28"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "Kitchen Hall Windows";
+ name = "Kitchen Shutters"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/security/warden)
-"vxP" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/crew_quarters/kitchen)
+"wdC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/hardsuitstorage)
-"vxT" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/area/crew_quarters/fitness)
+"wdH" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"wdW" = (
+/obj/item/storage/secure/safe{
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkred"
+ icon_state = "neutralcorner"
},
-/area/security/execution)
-"vyF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/crew_quarters/locker)
+"weg" = (
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "station_ai_airlock";
+ pixel_y = -57;
+ req_access_txt = "10;13";
+ tag_airpump = "station_ai_pump";
+ tag_chamber_sensor = "station_ai_sensor";
+ tag_exterior_door = "station_ai_outer";
+ tag_interior_door = "station_ai_inner"
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/obj/machinery/airlock_sensor{
+ id_tag = "station_ai_sensor";
+ pixel_y = -66
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"vyN" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 8
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "station_ai_pump"
},
-/obj/item/reagent_containers/spray/cleaner/drone,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/turret_protected/aisat)
-"vzv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/engine/aienter)
+"wek" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "vault"
},
-/area/hallway/primary/central/south)
-"vzx" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/area/tcommsat/chamber)
+"wep" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "station_ai_inner";
+ locked = 1;
+ name = "Minisat Access";
+ req_access = null;
+ req_access_txt = "10;13"
},
-/area/security/customs)
-"vzz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair/office/dark{
+/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/engine/aienter)
+"weY" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ dir = 4;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (EAST)"
},
-/area/turret_protected/ai)
-"vzN" = (
+/area/toxins/mixing)
+"weZ" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "red"
},
-/area/hallway/primary/port/east)
-"vzY" = (
+/area/security/armoury)
+"wfs" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/toxins/mixing)
+"wfN" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_y = -30
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "neutral"
},
-/area/medical/medbay3)
-"vAb" = (
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"wfQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/hallway/primary/central/south)
+"wfV" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
+ },
+/area/crew_quarters/chief)
+"wga" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
/obj/structure/cable{
- d1 = 2;
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cabin3)
+"wgm" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "engineering_west_inner";
+ locked = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"wgt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"wgX" = (
+/obj/structure/window/reinforced{
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay2)
-"vAm" = (
-/obj/machinery/light,
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/obj/machinery/status_display{
- layer = 4;
- pixel_y = 32
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/pod_4)
-"vAr" = (
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 2";
dir = 1;
- network = list("SS13","MiniSat")
+ icon_state = "darkblue"
},
-/turf/space,
-/area/space/nearstation)
-"vAZ" = (
-/obj/effect/spawner/window/reinforced,
+/area/construction/hallway)
+"whc" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Watchroom";
- name = "Watch Room Privacy Shutters"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"vBr" = (
/turf/simulated/floor/plasteel{
icon_state = "whitebluefull";
tag = "icon-whitebluefull"
},
-/area/medical/sleeper)
-"vBQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/medical/medbay3)
+"whh" = (
+/obj/machinery/light,
+/obj/machinery/light_switch{
+ pixel_y = -26
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal{
+ amount = 10
},
-/area/security/permabrig)
-"vCg" = (
-/obj/structure/disposalpipe/junction{
- dir = 8;
- tag = "icon-pipe-j1 (EAST)"
+/obj/item/stack/sheet/glass{
+ amount = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+/turf/simulated/floor/plasteel{
+ dir = 7;
+ icon_state = "yellow"
},
+/area/engine/break_room)
+"whO" = (
+/turf/simulated/wall/r_wall/coated,
+/area/crew_quarters/hor)
+"wio" = (
+/obj/item/flag/species,
+/obj/effect/decal/warning_stripes/red,
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
dir = 1
},
-/area/security/lobby)
-"vCq" = (
-/obj/structure/cable,
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/starboard)
-"vCF" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/item/transfer_valve{
- pixel_x = 8;
- pixel_y = -6
+/area/security/main)
+"wir" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/obj/item/transfer_valve{
- pixel_x = 6;
- pixel_y = -4
+/area/crew_quarters/hor)
+"wiM" = (
+/turf/simulated/floor/plasteel{
+ dir = 7;
+ icon_state = "yellow"
},
-/obj/item/transfer_valve{
- pixel_x = 4;
- pixel_y = -2
+/area/engine/break_room)
+"wiT" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"wiW" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/item/transfer_valve{
- pixel_x = 2
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/transfer_valve{
- pixel_y = 2
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/item/transfer_valve{
- pixel_x = -2;
- pixel_y = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/item/transfer_valve{
- pixel_x = -4;
- pixel_y = 6
+/area/assembly/robotics)
+"wiY" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
},
-/obj/item/transfer_valve{
- pixel_x = -6;
- pixel_y = 8
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/medical/research/nhallway)
+"wiZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 7;
+ icon_state = "yellow"
},
-/area/toxins/mixing)
-"vCZ" = (
-/obj/structure/table/reinforced,
+/area/engine/break_room)
+"wjc" = (
+/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
dir = 4
},
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28;
+ pixel_y = 6
},
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-8"
+ },
+/obj/machinery/door_control{
+ id = "RoboPrivat";
+ name = "Robotics Privacy Shutters Control";
+ pixel_x = 24;
+ pixel_y = -9
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+ dir = 4;
+ icon_state = "whitepurple"
},
-/area/turret_protected/ai)
-"vDe" = (
-/obj/structure/chair{
- dir = 8
+/area/assembly/robotics)
+"wjj" = (
+/turf/simulated/wall/rust,
+/area/library/abandoned)
+"wjl" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/chair/comfy/brown{
+ dir = 1
},
-/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
- },
-/area/medical/surgery1)
-"vDg" = (
-/obj/structure/window/reinforced{
- dir = 4
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 4";
+/area/hallway/primary/central/west)
+"wjn" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/security/hos)
+"wjo" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- network = list("SS13","MiniSat")
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"vEb" = (
-/obj/structure/table/glass,
-/obj/item/storage/box/gloves{
- pixel_x = 3;
- pixel_y = 3
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
},
-/obj/item/storage/box/masks,
-/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"
+/area/medical/sleeper)
+"wjF" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/construction/hallway)
+"wjI" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/asmaint2)
+"wjV" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/camera{
- c_tag = "First Surgery Room";
- dir = 1;
- network = list("Medical","SS13");
- pixel_x = -5
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/engine/engineering/monitor)
+"wka" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_y = -32
+ pixel_x = -28
+ },
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/storage/toolbox/electrical,
+/obj/item/multitool,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/storage/tech)
+"wkc" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "darkblue"
},
-/area/medical/surgery1)
-"vEw" = (
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"wkl" = (
+/obj/structure/closet/secure_closet/warden,
+/obj/item/megaphone,
+/obj/item/book/manual/security_space_law,
+/obj/item/clothing/accessory/holster,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "darkred"
},
-/area/engine/mechanic_workshop/hanger)
-"vEZ" = (
+/area/security/warden)
+"wkn" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 8;
+ icon_state = "darkred"
},
/area/security/permabrig)
-"vFe" = (
-/obj/structure/window/reinforced{
+"wkt" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/light/small{
dir = 1
},
-/obj/item/flag/nt{
- pixel_y = -6
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkblue"
},
-/area/construction/hallway)
-"vFl" = (
-/obj/structure/transit_tube{
- icon_state = "E-W-Pass"
+/area/medical/morgue)
+"wkB" = (
+/turf/simulated/wall/r_wall,
+/area/engine/mechanic_workshop)
+"wkE" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
},
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/crew_quarters/fitness)
+"wkK" = (
+/turf/simulated/wall/r_wall,
+/area/lawoffice)
+"wlk" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
},
-/turf/space,
-/area/space/nearstation)
-"vFr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
+ dir = 1;
+ icon_state = "red"
},
-/area/turret_protected/aisat_interior)
-"vFw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall,
-/area/medical/research{
- name = "Research Division"
+/area/security/brig)
+"wlr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
})
-"vFU" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+"wlx" = (
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
+"wlE" = (
+/obj/effect/decal/warning_stripes/eastnorthwest,
+/obj/structure/chair/comfy/purp,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research/restroom)
+"wlH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/cryo)
-"vFY" = (
-/obj/item/flag/nt,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+/area/crew_quarters/sleep)
+"wlX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/chair/wood{
+ dir = 8
},
-/area/tcommsat/chamber)
-"vGx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"wmd" = (
/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/window/plasmareinforced{
+ dir = 8
+ },
+/obj/structure/window/plasmareinforced,
+/obj/structure/window/plasmareinforced{
dir = 4
},
+/obj/structure/window/plasmareinforced{
+ dir = 1
+ },
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"vHg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/west,
+/area/toxins/mixing)
+"wmD" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera{
+ c_tag = "Minisat AI Control Room";
+ dir = 1;
+ network = list("Minisat","SS13")
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "darkblue"
},
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/area/turret_protected/ai)
+"wmH" = (
+/obj/machinery/status_display/supply_display,
+/turf/simulated/wall,
+/area/quartermaster/storage)
+"wmI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/item/crowbar/red,
+/obj/item/wrench,
+/obj/item/clothing/head/welding,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
})
-"vHh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"wmL" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/library/abandoned)
+"wmW" = (
+/obj/machinery/vending/coffee,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/hallway/secondary/entry)
+"wna" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "darkbluecorners"
},
-/area/crew_quarters/sleep)
-"vHs" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/area/turret_protected/aisat)
+"wnb" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "engineering_east_pump"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"wnc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "bluecorner"
},
-/area/medical/ward)
-"vHG" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/hallway/primary/central/south)
+"wnd" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/metal/fifty{
+ pixel_x = -2;
+ pixel_y = 3
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"wnh" = (
+/obj/structure/closet/wardrobe/robotics_black,
+/obj/item/radio/headset/headset_sci{
+ pixel_x = -3
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "whitepurple"
+ },
+/area/assembly/robotics)
+"wns" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"wnD" = (
+/obj/structure/table/reinforced,
+/obj/item/taperecorder,
+/obj/item/megaphone,
+/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/security/customs)
-"vHW" = (
-/obj/machinery/door/airlock{
- id_tag = "toilet1";
- name = "Toilet"
+/area/magistrateoffice)
+"wnE" = (
+/obj/machinery/recharge_station,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -28
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
-"vIC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Briefing Room South";
+ dir = 4;
+ network = list("SS13","Security")
},
-/turf/simulated/wall/r_wall,
-/area/tcommsat/chamber)
-"vLq" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/palebush,
-/obj/structure/window/reinforced{
- dir = 8
+/turf/simulated/floor/plasteel{
+ dir = 1
},
+/area/security/main)
+"wnX" = (
/obj/structure/window/reinforced{
- dir = 4
+ dir = 8
},
/obj/structure/window/reinforced,
+/obj/structure/showcase,
/obj/machinery/light{
- dir = 1;
- on = 1
+ dir = 4
},
-/turf/simulated/floor/grass,
-/area/medical/medbay)
-"vLX" = (
-/obj/machinery/suit_storage_unit/security,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/warden)
+"wob" = (
/obj/structure/window/reinforced{
dir = 8
},
-/obj/structure/window/reinforced{
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"wop" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"wou" = (
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "yellow"
+ },
+/area/storage/primary)
+"woA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Labor Camp Security Room";
- dir = 1;
- network = list("SS13","Security")
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "darkred"
- },
-/area/security/prisonershuttle)
-"vMe" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/east,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- external_pressure_bound = 100;
- on = 1
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"woE" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Second Surgery Window";
+ name = "Surgery Shutters"
},
+/turf/simulated/floor/plating,
+/area/medical/surgery2)
+"woF" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/hardsuitstorage)
-"vMt" = (
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/hallway/secondary/exit)
+"woL" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
dir = 5
},
-/obj/item/paper,
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/permabrig)
-"vMV" = (
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/customs)
-"vMZ" = (
-/obj/structure/sign/nosmoking_2,
-/turf/simulated/wall,
-/area/medical/virology/lab)
-"vNg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"vNk" = (
-/obj/structure/closet,
+"wpk" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/wood,
+/area/security/hos)
+"wpn" = (
+/obj/structure/transit_tube,
/obj/structure/window/reinforced{
dir = 8
},
-/obj/item/stack/sheet/cardboard,
-/obj/item/stack/sheet/cardboard,
-/obj/item/stack/sheet/cardboard,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkred"
+ dir = 8;
+ icon_state = "vault"
},
-/area/security/evidence)
-"vNo" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/engine/aienter)
+"wps" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/closet/firecloset,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"vNU" = (
-/obj/item/soap,
+/area/security/prisonershuttle)
+"wpA" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
scrub_Toxins = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/security/permabrig)
-"vNZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "red"
- },
-/area/security/brig)
-"vOg" = (
-/obj/machinery/defibrillator_mount/loaded{
- pixel_y = 24
+ icon_state = "darkred"
},
+/area/security/podbay)
+"wpC" = (
+/obj/structure/bookcase,
/obj/machinery/light{
dir = 1;
on = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/sleeper)
-"vOT" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/quartermaster/delivery)
-"vOX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/junction{
- dir = 1
+/obj/structure/window/reinforced{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "orangecorner"
- },
-/area/hallway/primary/aft)
-"vPl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "dark"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/chapel/main)
+"wpK" = (
+/obj/structure/chair/comfy/shuttle,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_y = 30
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "bot"
},
-/area/medical/medbay)
-"vPu" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"wpN" = (
+/obj/structure/transit_tube,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
+/area/engine/aienter)
+"wpP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "cautioncorner"
},
-/area/security/securearmoury)
-"vPH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/storage/primary)
+"wpY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/wall,
-/area/maintenance/asmaint2)
-"vPS" = (
-/obj/effect/decal/remains/xeno,
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/maintenance/gambling_den)
-"vQs" = (
-/obj/structure/chair/office/light{
- dir = 1
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/ward)
-"vQt" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/security/prison/cell_block/A)
-"vQz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/medical/medbay3)
+"wqd" = (
+/obj/structure/table,
+/obj/item/paper/deltainfo,
+/obj/machinery/camera{
+ c_tag = "Brig Lobby";
+ dir = 8
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "red"
},
-/area/crew_quarters/sleep)
-"vQJ" = (
+/area/security/lobby)
+"wqh" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "RoboDesk";
- name = "Robotics Privacy Shutter"
- },
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"vQL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"vQQ" = (
+/area/security/securehallway)
+"wqt" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"vRl" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/teleporter)
+"wqx" = (
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/mob/living/simple_animal/bot/medbot,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/reception)
-"vRH" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"wqy" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"wqC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A22";
+ location = "A21"
},
-/obj/machinery/light{
- dir = 8
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
- },
-/area/security/permabrig)
-"vSn" = (
-/obj/machinery/camera{
- c_tag = "Brig North Hallway";
- dir = 8;
- network = list("SS13","Security")
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel{
- icon_state = "red"
+/area/hallway/primary/central/sw)
+"wqD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/security/brig)
-"vSA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"vSC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
+/area/maintenance/fsmaint)
+"wqU" = (
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "wall3"
+ },
+/area/shuttle/syndicate_sit)
+"wrb" = (
+/obj/structure/transit_tube/station/reverse{
+ dir = 1
+ },
+/obj/structure/transit_tube_pod{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "vault"
},
-/area/hallway/secondary/entry/louge)
-"vSD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/engine/aienter)
+"wrc" = (
+/obj/structure/table/wood,
+/obj/item/gavelblock,
+/obj/item/gavelhammer,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "blue"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/crew_quarters/courtroom)
+"wrm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/photocopier,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "blue"
},
+/area/bridge/checkpoint/north)
+"wrB" = (
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
-/area/crew_quarters/locker)
-"vSI" = (
+/area/bridge/vip)
+"wrC" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
},
-/obj/effect/decal/cleanable/vomit,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"vSN" = (
-/obj/effect/decal/cleanable/fungus,
+/area/security/armoury)
+"wrH" = (
/turf/simulated/wall,
-/area/maintenance/asmaint2)
-"vTg" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/security/medbay)
+"wrP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"vUu" = (
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"wrQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/maintenance/asmaint)
+"wsa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowcorner"
+ },
+/area/storage/primary)
+"wsf" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+ dir = 6;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (SOUTHEAST)"
},
-/area/security/prison/cell_block/A)
-"vUL" = (
+/area/medical/reception)
+"wsg" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/sw)
+"wsr" = (
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "yellow"
+ },
+/area/storage/primary)
+"wss" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/starboard)
-"vVe" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A11";
- location = "A10"
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/security/customs)
+"wsA" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/electrical,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/flashlight,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"wsC" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/muffin{
+ pixel_y = 9
},
-/area/hallway/secondary/entry)
-"vWg" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "darkblue"
},
-/area/medical/medbay)
-"vWy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/barricade/wooden,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedbar)
-"vWz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/chapel/main)
+"wsG" = (
+/obj/machinery/light/small{
dir = 4
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j2s";
- name = "Med. CMO";
- sortType = 10
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/trunk{
+ dir = 2
},
/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
+ dir = 4;
+ icon_state = "whitegreencorner"
},
-/area/hallway/primary/central/south)
-"vWI" = (
-/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
+/area/medical/virology)
+"wsK" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"vYp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
+/obj/item/flag/nt{
+ pixel_y = -6
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
},
+/area/construction/hallway)
+"wsN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/solar/starboard)
-"vYT" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/photocopier,
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"wsP" = (
/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/magistrateoffice)
+"wti" = (
+/obj/structure/disposalpipe/trunk{
dir = 1
},
-/area/security/brig)
-"vZl" = (
-/obj/structure/table/reinforced,
-/obj/item/camera,
+/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/xenozoo)
-"wap" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/magistrateoffice)
+"wtj" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
+/obj/machinery/computer/sm_monitor,
/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/main)
-"waQ" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 4
+ icon_state = "dark"
},
-/obj/structure/window/plasmareinforced{
- dir = 8
+/area/crew_quarters/chief)
+"wtk" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/window/plasmareinforced{
- dir = 1
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "ai1";
+ name = "Turret Shutters"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/turf/simulated/floor/plating,
+/area/turret_protected/aisat_interior)
+"wtq" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/item/radio/intercom{
+ pixel_y = -28
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "RnDChem";
- name = "Biohazard Shutter";
- opacity = 0
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/insulated{
+/area/crew_quarters/chief)
+"wts" = (
+/obj/machinery/light{
dir = 4
},
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"wbl" = (
-/obj/structure/chair/office/dark{
+/obj/machinery/vending/cigarette,
+/obj/machinery/camera{
+ c_tag = "Uplink Terminal";
dir = 8
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/prisonershuttle)
-"wbx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/bridge/meeting_room)
+"wtu" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/camera{
+ c_tag = "Captain's Meet Room";
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/medical{
- name = "Operating Theatre"
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/surgery2)
-"wcc" = (
-/obj/item/restraints/handcuffs/pinkcuffs,
-/turf/simulated/floor/plating,
-/area/security/securearmoury)
-"wck" = (
-/obj/structure/chair/stool,
+/area/crew_quarters/captain)
+"wtv" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/lobby)
-"weg" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_y = 32
+ icon_state = "yellowcorner"
},
+/area/hallway/primary/port)
+"wtR" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "yellowcorner"
},
-/area/engine/mechanic_workshop/hanger)
-"wek" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/hallway/primary/port)
+"wtZ" = (
+/obj/effect/decal/cleanable/blood/xeno,
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"wua" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "whitepurple"
},
-/area/tcommsat/chamber)
-"weY" = (
-/obj/effect/spawner/window/reinforced,
+/area/crew_quarters/hor)
+"wuc" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"wuf" = (
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/security/main)
-"wfI" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/processing)
+"wuv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "grimy"
},
-/area/medical/research{
- name = "Research Division"
- })
-"wgX" = (
-/obj/structure/window/reinforced{
- dir = 8
+/area/security/hos)
+"wuP" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "sw_maint2_airlock";
+ name = "exterior access button";
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/space,
/area/space/nearstation)
-"whM" = (
-/obj/machinery/newscaster{
- pixel_y = 32
+"wuY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 8;
icon_state = "red"
},
-/area/security/brig)
-"whO" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/area/security/prisonershuttle)
+"wvd" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "briglock";
- name = "Brig Lockdown"
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/turf/simulated/floor/plating,
-/area/security/processing)
-"wir" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
},
-/obj/effect/landmark/start{
- name = "Warden"
+/area/security/range)
+"wvA" = (
+/obj/item/radio/intercom{
+ pixel_y = -30
},
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 0;
+ icon_state = "red"
},
-/area/security/warden)
-"wiC" = (
+/area/security/permahallway)
+"wvC" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/library)
+"wvL" = (
+/obj/structure/table/wood,
+/obj/item/clothing/mask/cigarette/cigar,
+/obj/item/clothing/mask/cigarette/cigar,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/captain)
+"wvQ" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 5
},
-/obj/structure/disposalpipe/segment{
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"wvS" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/main)
-"wiM" = (
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"wwg" = (
+/obj/structure/bed/dogbed,
+/mob/living/simple_animal/pet/dog/detective,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"wwp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkbluecorners"
+/obj/item/radio/intercom{
+ pixel_y = 24
},
-/area/medical/morgue)
-"wiW" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "solar_chapel_airlock";
- name = "exterior access button";
- pixel_x = -25;
- pixel_y = -25;
- req_access_txt = "10;13"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/space,
-/area/solar/auxstarboard)
-"wjc" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor{
- armor = list("melee" = 60, "bullet" = 70, "laser" = 70, "energy" = 70, "bomb" = 40, "bio" = 100, "rad" = 100, "fire" = 70, "acid" = 100);
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/vip)
+"wwu" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"wwI" = (
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "medcabin2";
+ name = "Door Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 7;
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "medcabin1";
+ name = "Door Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -6;
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
dir = 1;
- name = "Secure Armory";
- req_access_txt = "1"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/obj/machinery/door/window/brigdoor{
- armor = list("melee" = 60, "bullet" = 70, "laser" = 70, "energy" = 70, "bomb" = 40, "bio" = 100, "rad" = 100, "fire" = 70, "acid" = 100);
- dir = 2;
- name = "Secure Armory";
- req_access_txt = "3"
+/area/medical/ward)
+"wwK" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "ArmoryBrif";
- name = "Armory Security Shutters"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/securearmoury)
-"wjr" = (
+/area/crew_quarters/fitness)
+"wwM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/customs)
+"wwO" = (
+/obj/machinery/photocopier,
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = 30
},
-/area/security/warden)
-"wjF" = (
-/obj/structure/chair,
/turf/simulated/floor/plasteel{
- dir = 8;
+ dir = 5;
icon_state = "red"
},
/area/security/processing)
-"wkc" = (
-/obj/structure/lattice,
-/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+"wwZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/space,
-/area/space/nearstation)
-"wkt" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Armory_sprava";
+ location = "Armory_South"
},
-/turf/simulated/floor/plating,
-/area/security/prisonlockers)
-"wkB" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/light,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"wkE" = (
-/obj/machinery/door_control{
- desiredstate = 1;
- id = "cabin2";
- name = "Door Bolt Control";
- normaldoorcontrol = 1;
- pixel_y = -25;
- specialfunctions = 4
+/mob/living/simple_animal/bot/secbot/armsky{
+ auto_patrol = 1
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/cabin2)
-"wmn" = (
-/turf/simulated/wall/r_wall,
-/area/security/evidence)
-"wmB" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkred"
},
-/area/bridge/checkpoint/south)
-"wmD" = (
-/obj/effect/spawner/window/reinforced,
+/area/security/securearmoury)
+"wxt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "ai2";
- name = "Turret Shutters"
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowcorner"
+ },
+/area/hallway/primary/port)
+"wxC" = (
+/turf/simulated/wall/r_wall,
+/area/security/prisonershuttle)
+"wxD" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "darkred"
},
+/area/security/permabrig)
+"wxH" = (
+/obj/machinery/space_heater,
+/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"wmH" = (
+/area/maintenance/fsmaint)
+"wxS" = (
+/obj/structure/girder,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j2s";
- name = "Disposals Maint";
- sortType = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"wmW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"wna" = (
-/obj/structure/closet,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"wxT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/area/security/evidence)
-"wns" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/bed/roller,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitered"
+ icon_state = "grimy"
},
-/area/security/medbay)
-"wnO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/area/security/detectives_office)
+"wxU" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"wob" = (
-/obj/structure/window/reinforced{
+/area/library/abandoned)
+"wyv" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба служит для подачу горючей смеси в турбину для её работы";
+ dir = 10;
+ name = "Труба турбины"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+ dir = 1;
+ icon_state = "caution"
},
-/area/construction/hallway)
-"wou" = (
+/area/atmos)
+"wyy" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkred"
+ icon_state = "neutralcorner"
},
-/area/security/evidence)
-"woE" = (
-/obj/structure/disposalpipe/segment,
+/area/hallway/primary/port)
+"wyD" = (
+/turf/simulated/wall/r_wall,
+/area/security/podbay)
+"wyI" = (
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/locker)
+"wyQ" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/flask/gold,
+/obj/item/razor,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/captain/bedroom)
+"wyT" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"wyV" = (
/obj/machinery/light{
dir = 8
},
-/obj/machinery/camera{
- c_tag = "Brig Middle Hallway";
- dir = 4;
- network = list("SS13","Security")
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "chapel"
},
-/area/security/brig)
-"wpn" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/area/chapel/main)
+"wze" = (
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/grass,
/area/hallway/secondary/exit)
-"wpL" = (
-/obj/structure/window/reinforced{
- dir = 4
+"wzl" = (
+/obj/structure/chair/office/dark{
+ dir = 8
},
-/obj/structure/window/reinforced,
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"wpP" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/effect/landmark/start{
+ name = "Internal Affairs Agent"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/security/brig)
-"wqx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/lawoffice)
+"wzs" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/landmark/start{
+ name = "Internal Affairs Agent"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"wzK" = (
+/obj/structure/chair{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "red"
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/area/security/customs)
-"wqy" = (
-/obj/machinery/computer/secure_data,
/obj/structure/cable{
- d1 = 1;
d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = -32
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkred"
+ dir = 8;
+ icon_state = "red"
},
-/area/security/warden)
-"wqD" = (
-/obj/machinery/flasher{
- desc = "A wall-mounted punk-sorting device. Its bulb seems to have extra power running through it.";
- id = "permaflash";
- name = "Mounted Prison flash";
- range = 3
+/area/security/lobby)
+"wAb" = (
+/turf/simulated/wall,
+/area/medical/medbay2)
+"wAe" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/item/pen,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
},
-/turf/simulated/wall,
-/area/security/permabrig)
-"wrm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/security/lobby)
+"wAh" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plating,
+/area/security/reception)
+"wAp" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/wood,
+/area/maintenance/fsmaint)
+"wAs" = (
+/obj/structure/table/reinforced,
+/obj/item/paicard,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"wAv" = (
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ icon_state = "0-8"
},
-/area/hallway/secondary/entry)
-"wrJ" = (
/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"wAE" = (
+/obj/machinery/power/solar{
+ name = "Aft Starboard Solar Panel"
},
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/starboard)
+"wAH" = (
+/obj/machinery/vending/coffee,
+/obj/machinery/firealarm{
dir = 1;
- icon_state = "red"
+ pixel_y = -24
},
-/area/security/prison/cell_block/A)
-"wsA" = (
-/obj/structure/chair/wood/wings{
- dir = 4;
- tag = "icon-wooden_chair_wings (EAST)"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -32
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/carpet,
-/area/maintenance/abandonedbar)
-"wsE" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 8;
- id_tag = "hangar";
- name = "Hangar Gate"
+/area/crew_quarters/courtroom)
+"wAM" = (
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/mechanic_workshop/hanger)
-"wtj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/storage/secure)
-"wtk" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- locked = 1;
- name = "MiniSat Maintenance";
- req_access_txt = "75"
- },
-/turf/simulated/floor/plating,
-/area/turret_protected/aisat_interior)
-"wts" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -28
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "darkredcorners"
},
-/area/hallway/primary/central/se)
-"wtu" = (
-/turf/simulated/floor/plating/airless,
-/area/toxins/test_area)
-"wtR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/security/warden)
+"wBf" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
},
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "solar_chapel_inner";
- locked = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "13"
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/area/shuttle/syndicate_sit)
+"wBo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"wua" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
+/obj/item/paper_bin,
+/obj/structure/table/wood,
+/obj/item/pen,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/mixing)
-"wve" = (
-/obj/machinery/power/solar{
- name = "Aft Starboard Solar Panel"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/turf/simulated/floor/carpet,
+/area/chapel/office)
+"wBq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
- },
-/area/solar/starboard)
-"wyy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/security/permabrig)
-"wzK" = (
-/obj/effect/decal/warning_stripes/northeast,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/light{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/engine,
-/area/security/execution)
-"wAb" = (
+/area/engine/mechanic_workshop/hangar)
+"wBr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/morgue)
-"wAE" = (
-/obj/machinery/power/solar{
- name = "Aft Starboard Solar Panel"
- },
-/obj/structure/cable,
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
- },
-/area/solar/starboard)
-"wAM" = (
-/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "AI Satellite Exterior 11";
- network = list("SS13","MiniSat")
- },
-/turf/space,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
})
-"wBq" = (
+"wCd" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ icon_state = "1-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "Warden";
+ name = "Warden Privacy Shutters"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "ArmoryLock";
+ name = "Armory Lockdown";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/engine/mechanic_workshop/hanger)
-"wCd" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/security/warden)
+"wCm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/heads/hop)
+"wCp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+ dir = 4;
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/security/prisonershuttle)
-"wCm" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
+/area/crew_quarters/heads/hop)
"wCy" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
+/obj/machinery/atmospherics/unary/cold_sink/freezer{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes/eastsouthwest,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
"wCD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
dir = 1;
- name = "north bump";
- pixel_y = 24
+ icon_state = "neutralcorner"
},
+/area/crew_quarters/serviceyard)
+"wCE" = (
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"wCE" = (
-/obj/structure/computerframe,
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
- })
-"wDC" = (
-/obj/structure/closet/radiation,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
-"wEh" = (
-/obj/structure/toilet{
- desc = "Старый грязный туалет, по какой-то причине стоящий в техах. У вас нет ни единого понятия откуда он здесь.";
- name = "Параша"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"wFb" = (
-/obj/structure/window/reinforced{
- dir = 4
+/area/toxins/mixing)
+"wCG" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/structure/window/reinforced{
- dir = 8
+/area/crew_quarters/heads/hop)
+"wCH" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "darkred"
},
+/area/security/securearmoury)
+"wCS" = (
/obj/machinery/light{
- dir = 4;
- pixel_x = -6
+ dir = 8
},
+/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/construction/hallway)
-"wFg" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12
+/area/medical/medbay2)
+"wDg" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 4
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 8
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 1
},
/obj/structure/cable{
- d1 = 2;
d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "0-8"
},
-/area/medical/surgery1)
-"wFR" = (
-/obj/machinery/light{
- dir = 8
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "RnDChem";
+ name = "Biohazard Shutter";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"wDh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/book/manual/security_space_law,
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/area/medical/medbay)
-"wFU" = (
-/obj/structure/chair/office/light{
- dir = 8
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/effect/landmark/start{
- name = "Geneticist"
+/turf/simulated/floor/plasteel{
+ dir = 1
},
+/area/security/prison/cell_block/A)
+"wDs" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j2"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A30";
+ location = "A29"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple"
+ icon_state = "neutralfull"
},
-/area/medical/genetics)
-"wGm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
+/area/crew_quarters/fitness)
+"wDx" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/reedbush,
+/turf/simulated/floor/grass,
+/area/hallway/secondary/exit)
+"wDC" = (
+/turf/simulated/wall,
+/area/medical/medbay3)
+"wDS" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Solitary Confinement";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"wDT" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- icon_state = "green"
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/hydroponics)
-"wGM" = (
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"wEb" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/westleft{
+ name = "Research Lab Desk";
+ req_access_txt = "47"
+ },
+/obj/machinery/door/window/eastleft,
+/obj/item/folder,
+/obj/item/pen,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id_tag = "researchdesk2";
+ name = "Research Desk Shutters";
+ opacity = 0
+ },
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -130067,268 +127013,311 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"wEh" = (
+/turf/simulated/wall/r_wall,
+/area/medical/research/restroom)
+"wEm" = (
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/brig)
-"wGN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ dir = 1;
+ icon_state = "redcorner"
},
+/area/security/brigstaff)
+"wEr" = (
+/obj/structure/table/wood,
+/obj/item/newspaper,
/turf/simulated/floor/plasteel{
- icon_state = "darkbluefull"
+ icon_state = "grimy"
},
-/area/turret_protected/aisat)
-"wHK" = (
-/obj/machinery/door/poddoor/multi_tile/four_tile_ver{
- id_tag = "secpodbay"
+/area/library)
+"wEA" = (
+/obj/structure/rack,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/north,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
},
-/obj/structure/spacepoddoor{
- luminosity = 3
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/engine/mechanic_workshop/hanger)
-"wHM" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/emergency,
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"wJA" = (
+/area/engine/hardsuitstorage)
+"wEJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay3)
-"wJB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"wJG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
- },
-/area/security/lobby)
-"wJK" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall13"
+ icon_state = "purplefull"
},
-/area/shuttle/trade/sol)
-"wJR" = (
-/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NW"
+/area/medical/research/nhallway)
+"wEK" = (
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "sw_maint_airlock";
+ name = "interior access button";
+ pixel_x = -24;
+ pixel_y = 24
},
-/turf/space,
-/area/space/nearstation)
-"wKp" = (
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"wKB" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 1
- },
-/obj/structure/window/plasmareinforced{
- dir = 8
- },
-/obj/structure/window/plasmareinforced,
-/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/toxins/mixing)
-"wLt" = (
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"wEP" = (
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"wEY" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "HoSPriv";
+ name = "HoS Office Privacy Shutters"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/turf/simulated/floor/plating,
+/area/security/hos)
+"wFb" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 32
+ },
+/obj/machinery/vending/cart/free,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"wFd" = (
+/obj/machinery/light{
dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -26
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/security/permabrig)
-"wLE" = (
-/turf/simulated/wall,
-/area/hallway/secondary/entry/commercial)
-"wMm" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"wMp" = (
-/obj/structure/table,
-/obj/item/assembly/timer{
- pixel_y = -1;
- pixel_z = 3
+/area/hallway/primary/central/west)
+"wFJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/item/flash{
- pixel_y = 3
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "darkred"
+ icon_state = "grimy"
},
-/area/security/prisonershuttle)
-"wMU" = (
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"wNc" = (
-/obj/effect/decal/warning_stripes/south,
+/area/crew_quarters/heads/hop)
+"wFR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
-/area/security/securearmoury)
-"wOc" = (
-/obj/structure/closet,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+/area/medical/ward)
+"wFU" = (
+/obj/machinery/bodyscanner{
dir = 4
},
+/obj/machinery/light_switch{
+ pixel_x = -23
+ },
+/obj/machinery/requests_console{
+ department = "Morgue";
+ departmentType = 5;
+ name = "Morgue Requests Console";
+ pixel_y = 30
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 9;
+ icon_state = "darkblue"
},
-/area/security/evidence)
-"wOh" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance,
-/obj/structure/barricade/wooden,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"wOF" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/medical/morgue)
+"wFY" = (
+/obj/machinery/light/small{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"wGd" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "freezerfloor"
},
-/area/medical/research{
- name = "Research Division"
- })
-"wPh" = (
+/area/security/brigstaff)
+"wGm" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"wGs" = (
+/turf/simulated/floor/bluegrid,
+/area/assembly/chargebay)
+"wGH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
+/obj/effect/decal/cleanable/blood,
/turf/simulated/floor/plasteel{
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "dark"
+ },
+/area/maintenance/gambling_den)
+"wGM" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/northeastsouth,
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"wGU" = (
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/recharge_station,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"wGW" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/area/crew_quarters/kitchen)
-"wPK" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"wPU" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "ai2";
- name = "Turret Shutters"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/securehallway)
+"wHp" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"wHz" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"wQq" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/northwest,
+/area/maintenance/asmaint2)
+"wHC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1
},
-/area/engine/mechanic_workshop/hanger)
-"wQu" = (
-/obj/machinery/atmospherics/unary/cold_sink/freezer,
-/turf/simulated/floor/plasteel{
+/area/security/securehallway)
+"wHF" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/backpack/medic,
+/obj/item/storage/belt/medical,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 29;
+ pixel_y = 30
+ },
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_y = 30
+ },
+/obj/machinery/light/spot{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ tag = "icon-tube1 (NORTH)"
},
-/area/medical/genetics_cloning)
-"wQF" = (
-/obj/machinery/vending/snack,
+/turf/simulated/floor/plasteel{
+ icon_state = "cmo"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"wHM" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/wall/r_wall/coated,
+/area/toxins/storage)
+"wHR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 1;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/securehallway)
+"wId" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "whitepurplecorner"
@@ -130336,529 +127325,467 @@
/area/medical/research{
name = "Research Division"
})
-"wQV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+"wJs" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry/louge)
-"wRB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ dir = 9;
+ icon_state = "red"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/security/prisonershuttle)
+"wJy" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
},
+/area/medical/sleeper)
+"wJB" = (
+/obj/effect/decal/warning_stripes/west,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/medbay)
-"wRH" = (
+/area/assembly/robotics)
+"wJC" = (
/obj/machinery/door/airlock/maintenance_hatch{
- locked = 1;
name = "MiniSat Maintenance";
req_access_txt = "75"
},
/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"wRP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"wJG" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/obj/machinery/firealarm{
- pixel_y = 26
+/area/assembly/robotics)
+"wJK" = (
+/obj/machinery/computer/rdconsole/robotics,
+/obj/machinery/requests_console{
+ department = "Robotics";
+ departmentType = 2;
+ name = "Robotics Requests Console";
+ pixel_x = 30
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ dir = 5;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (SOUTHWEST)"
},
-/area/crew_quarters/locker)
-"wRT" = (
+/area/assembly/robotics)
+"wJP" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/hallway/primary/central/north)
-"wRU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+/area/chapel/main)
+"wJR" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "MiniSat Maintenance";
+ req_access_txt = "75"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"wKe" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/main)
-"wSx" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/fitness)
-"wTf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"wKp" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/space,
+/area/space/nearstation)
+"wKr" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"wKA" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+/obj/structure/fans/tiny,
+/obj/machinery/door/window/brigdoor/southright{
+ dir = 8;
+ req_access_txt = "17;75"
},
-/area/medical/research{
- name = "Research Division"
- })
-"wTn" = (
-/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"wTs" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/blue,
-/obj/item/robot_parts/r_leg,
-/obj/item/robot_parts/l_leg,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/ai)
-"wTD" = (
+/area/construction/hallway)
+"wKB" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "rdprivacy";
+ name = "Research Director Office Shutters";
+ opacity = 0
},
+/turf/simulated/floor/plating,
+/area/crew_quarters/hor)
+"wKZ" = (
+/obj/structure/closet/masks,
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 4;
+ icon_state = "neutral"
},
-/area/security/permabrig)
-"wTQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/crew_quarters/fitness)
+"wLd" = (
+/obj/effect/spawner/random_spawners/wall_rusted_probably,
+/turf/simulated/wall,
+/area/maintenance/gambling_den)
+"wLu" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "BrigLeft";
+ name = "Brig";
+ req_access_txt = "63"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+ dir = 1;
+ icon_state = "red"
},
-/area/crew_quarters/hor)
-"wUu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/security/brig)
+"wLw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/turf/simulated/wall/r_wall,
-/area/maintenance/xenozoo)
-"wVc" = (
-/obj/structure/bookcase,
-/obj/structure/closet/walllocker/emerglocker/north{
- pixel_y = -32
- },
-/turf/simulated/floor/wood,
-/area/library)
-"wVe" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "darkblue"
- },
-/area/construction/hallway)
-"wVk" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-2"
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/obj/machinery/hologram/holopad,
+/obj/effect/landmark/start{
+ name = "Head of Security"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
-/area/bridge/vip)
-"wVn" = (
+/area/security/hos)
+"wLC" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/l3closet/scientist,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "blue"
- },
-/area/hydroponics)
-"wVu" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/sleeper)
-"wVA" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ dir = 1;
+ icon_state = "neutral"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/toxins/mixing)
+"wLE" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "ai_pump"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "ai_airlock";
+ pixel_x = 28;
+ tag_airpump = "ai_pump";
+ tag_chamber_sensor = "ai_sensor";
+ tag_exterior_door = "ai_outer";
+ tag_interior_door = "ai_inner"
},
-/area/medical/medbay2)
-"wVK" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
+/obj/machinery/airlock_sensor{
+ id_tag = "ai_sensor";
+ pixel_x = -28
},
-/obj/machinery/computer/area_atmos/area,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "darkred"
+ dir = 8;
+ icon_state = "vault"
},
-/area/security/permabrig)
-"wVQ" = (
+/area/construction/hallway)
+"wMm" = (
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/navbeacon{
- codes_txt = "delivery";
- location = "Hydroponics"
+ codes_txt = "delivery;dir=4";
+ location = "Janitor"
},
/obj/structure/plasticflaps{
opacity = 1
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/janitor)
+"wMn" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "neutralcorner"
},
-/area/hydroponics)
-"wVT" = (
+/area/bridge/vip)
+"wMq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"wWu" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1;
- pixel_y = -7
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"wMw" = (
+/turf/simulated/wall,
+/area/security/interrogation)
+"wMx" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall11"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"wMA" = (
+/obj/machinery/newscaster{
+ pixel_x = 32
},
-/area/construction/hallway)
-"wWN" = (
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/evidence)
-"wXd" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/eastarrival)
-"wXh" = (
-/obj/structure/chair/stool/bar,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar/atrium)
-"wYr" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "burst_r"
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/trade/sol)
-"wYS" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "magistrate";
- name = "Magistrate Privacy Shutters";
- opacity = 0
+/area/library)
+"wMB" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
},
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/magistrateoffice)
-"wYX" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/turf/simulated/floor/carpet,
+/area/assembly/showroom)
+"wMC" = (
+/obj/machinery/photocopier,
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/turret_protected/ai)
-"xbk" = (
-/obj/effect/landmark/start{
- name = "Security Officer"
+/area/security/hos)
+"wML" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/hallway/primary/central/east)
+"wMO" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/unary/vent_pump{
+/area/turret_protected/ai_upload)
+"wMS" = (
+/obj/machinery/iv_drip,
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
- on = 1
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/customs)
-"xbn" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"xbA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 5";
- name = "Cell 5 Locker"
+ dir = 6;
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (SOUTHEAST)"
},
-/obj/machinery/flasher{
- id = "Cell 5"
+/area/medical/virology)
+"wMU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+ icon_state = "neutralcorner"
},
-/area/security/prison/cell_block/A)
-"xci" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/area/hallway/primary/central/east)
+"wMW" = (
+/turf/simulated/floor/greengrid,
+/area/toxins/xenobiology)
+"wMY" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Paramedic"
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 8;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner (WEST)"
},
-/area/medical/ward)
-"xcG" = (
+/area/medical/paramedic)
+"wNc" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+ dir = 4;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
},
-/area/security/main)
-"xdb" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/area/medical/medbay2)
+"wNw" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/library,
+/obj/machinery/light_switch{
+ pixel_x = 4;
+ pixel_y = 26
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
-"xdo" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/area/library)
+"wNB" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "Singularity";
+ layer = 2.7;
+ name = "Singularity Blast Doors";
+ opacity = 0
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "ai1";
- name = "Turret Shutters"
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/turret_protected/aisat_interior)
-"xdz" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 5
+/area/engine/engineering)
+"wNN" = (
+/obj/machinery/light,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/engine/insulated/vacuum,
-/area/toxins/mixing)
-"xdE" = (
-/obj/structure/reagent_dispensers/fueltank,
+/area/toxins/explab)
+"wNO" = (
+/obj/machinery/portable_atmospherics/canister/sleeping_agent,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"xdH" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/fore{
- name = "Hangar Maintenance"
- })
-"xeQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/security/permabrig)
+"wNR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "neutralcorner"
},
-/area/crew_quarters/kitchen)
-"xeT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = ""
+/area/hallway/primary/starboard/east)
+"wOc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plating/airless,
-/area/toxins/test_area)
-"xfc" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
},
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "neutralcorner"
},
-/area/medical/medbay)
-"xgu" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
+/area/hallway/primary/starboard/east)
+"wOf" = (
+/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "pipe-c"
},
-/area/hallway/primary/port)
-"xgz" = (
-/obj/machinery/camera{
- c_tag = "Gravity Generation";
- dir = 1;
- network = list("SS13","Engineering")
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/area/engine/gravitygenerator)
-"xgF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A3";
- location = "A2"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
+ icon_state = "white"
},
-/area/hallway/secondary/entry)
-"xgP" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/medical/research/restroom)
+"wOn" = (
+/obj/structure/chair/stool/bar,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
-/area/medical/cryo)
-"xhi" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 1;
- on = 1
+/area/maintenance/gambling_den)
+"wOo" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering";
+ req_access_txt = "10"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteredcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/medbay)
-"xhp" = (
+/turf/simulated/floor/plasteel,
+/area/engine/engineering/monitor)
+"wOF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/closet/secure_closet/paramedic,
-/obj/item/defibrillator/loaded,
-/obj/item/clothing/glasses/hud/health,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/medical/paramedic)
-"xhy" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai)
-"xhK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"xhR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -130866,274 +127793,255 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/bridge/vip)
-"xit" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "whitepurplecorner"
},
-/area/hallway/primary/central/se)
-"xiu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/medical/research/shallway)
+"wPc" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"xiz" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"wPh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/prison/cell_block/A)
-"xiH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/south,
-/obj/effect/landmark/start{
- name = "Station Engineer"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "redcorner"
+ },
+/area/hallway/primary/starboard/east)
+"wPi" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/storage/toolbox/electrical,
+/obj/item/multitool,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/storage/tech)
+"wPv" = (
+/obj/structure/table/reinforced,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/assembly/voice,
+/obj/item/assembly/voice,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/storage/tech)
+"wPH" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/area/engine/hardsuitstorage)
-"xjj" = (
-/turf/simulated/wall,
-/area/medical/cryo)
-"xjm" = (
/obj/structure/cable{
- d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "0-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/xenozoo)
-"xjZ" = (
-/turf/space,
-/area/space/nearstation)
-"xkm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/area/security/prison/cell_block/A)
+"wPK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"xlL" = (
-/obj/structure/table/reinforced,
-/obj/item/radio/electropack,
-/obj/item/assembly/signaler,
-/obj/item/healthanalyzer,
-/obj/machinery/light{
- dir = 8
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple"
+ icon_state = "redcorner"
},
-/area/toxins/misc_lab)
-"xme" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
+/area/hallway/primary/starboard/east)
+"wPQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
- })
-"xmM" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall/rust,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"xnC" = (
-/obj/machinery/autolathe,
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- id = "Autolathe";
- name = "Autolathe Access";
- req_access_txt = "31"
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- icon_state = "L1"
- },
-/area/quartermaster/office)
-"xnD" = (
-/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/sleeper)
-"xoj" = (
-/obj/structure/chair{
+/area/hallway/primary/central/se)
+"wPU" = (
+/obj/machinery/light/small{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research{
- name = "Research Division"
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
})
-"xou" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+"wQj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/storage/tech)
+"wQq" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/window/eastright{
dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/nw)
-"xpn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ name = "Mime Delivery";
+ req_access_txt = "46"
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
+ icon_regular_floor = "yellowsiding";
+ icon_state = "tranquillite"
},
-/area/medical/medbay3)
-"xpv" = (
+/area/mimeoffice)
+"wQr" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Brig Equipment Storage";
+ sortType = 8
},
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 1
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
},
/area/security/brig)
-"xpQ" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
+"wQu" = (
+/obj/machinery/optable,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/disposal,
-/obj/machinery/atmospherics/pipe/simple/hidden,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/shower{
+ pixel_x = -3;
+ pixel_y = 3
+ },
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkred"
+ icon_state = "dark"
},
-/area/security/permabrig)
-"xpU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/medical/surgery1)
+"wQA" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"wQJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/crew_quarters/fitness)
+"wQO" = (
+/obj/machinery/power/solar{
+ name = "Aft Starboard Solar Panel"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/structure/cable,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- id = "Cell 1";
- name = "Cell 1";
- req_access_txt = "2"
+/area/solar/starboard)
+"wQP" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/suit_storage_unit/engine,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"wQV" = (
+/turf/simulated/wall,
+/area/security/checkpoint2)
+"wRq" = (
+/obj/structure/table/wood,
+/obj/machinery/fishtank/bowl{
+ pixel_y = 5
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Pet Shop";
+ dir = 9
+ },
+/turf/simulated/floor/carpet,
+/area/civilian/pet_store)
+"wRu" = (
+/obj/structure/chair/comfy/shuttle{
dir = 1
},
-/area/security/prison/cell_block/A)
-"xqb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard{
- name = "Engineering Maintenance"
+/turf/simulated/shuttle/floor4,
+/area/shuttle/escape{
+ parallax_movedir = 2
})
-"xqg" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/navbeacon{
- codes_txt = "delivery";
- dir = 8;
- location = "Library"
+"wRw" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/structure/plasticflaps{
- opacity = 1
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
},
-/turf/simulated/floor/wood,
-/area/library)
-"xqJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"xrn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/area/medical/research/nhallway)
+"wRz" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "darkbluecorners"
},
-/area/security/lobby)
-"xrA" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+/area/construction/hallway)
+"wRB" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = -26
},
-/obj/item/clothing/suit/armor/bulletproof,
-/obj/item/clothing/head/helmet/alt,
-/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/storage/tech)
+"wRH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -131142,849 +128050,936 @@
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/securearmoury)
-"xrC" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"xsK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/area/tcommsat/chamber)
+"wRP" = (
+/obj/structure/table/reinforced,
+/obj/machinery/newscaster{
+ pixel_y = -32
},
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "Mime";
- name = "Mime Privacy Shutters"
+/obj/item/wrench,
+/obj/item/crowbar,
+/obj/item/paicard,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/storage/tech)
+"wRT" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/flashlight,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/area/storage/tech)
+"wRU" = (
+/obj/machinery/recharge_station,
+/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
/turf/simulated/floor/plating,
-/area/mimeoffice)
-"xsS" = (
-/obj/structure/chair{
- desc = "Этот красивый стул был отлит из двух трофейных боргов синдиката.";
- name = "Дизайнерский стул"
- },
-/obj/machinery/shower{
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"wRX" = (
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/processing)
-"xtb" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/structure/disposalpipe/segment,
+/area/medical/surgery2)
+"wSc" = (
+/obj/structure/table/wood/poker,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/hallway/secondary/exit)
-"xte" = (
-/turf/simulated/wall,
-/area/medical/sleeper)
-"xtw" = (
+/area/maintenance/gambling_den)
+"wSo" = (
+/obj/machinery/hydroponics/constructable{
+ desc = "These are connected with an irrigation tube. You see a little pipe connecting the trays.";
+ name = "Prison hydroponics tray";
+ using_irrigation = 1
+ },
+/obj/item/seeds/nymph,
+/obj/item/seeds/nymph,
+/obj/item/seeds/nymph,
+/obj/effect/decal/warning_stripes/red/hollow,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/structure/table/reinforced,
-/obj/item/restraints/handcuffs,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/main)
-"xtz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/door_control{
- desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyerPort";
- name = "Medbay Doors Control";
- normaldoorcontrol = 1;
- pixel_x = -26;
- pixel_y = -26;
- req_access_txt = null
- },
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "dark"
},
-/area/medical/sleeper)
-"xtH" = (
-/obj/effect/decal/warning_stripes/southeastcorner,
+/area/security/permabrig)
+"wSx" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/multitool,
+/obj/item/multitool,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"xtO" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"xuv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/storage/primary)
+"wSC" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central/south)
-"xuF" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/plasteel{
- amount = 10
+ icon_state = "bot"
},
-/obj/item/wrench,
-/obj/item/crowbar,
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
+/area/shuttle/escape{
+ parallax_movedir = 2
})
-"xvo" = (
-/obj/structure/chair{
- dir = 8
+"wSO" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaCellsLockdown";
+ name = "Perma Cells Lockdown"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"wST" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
+/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/surgery1)
-"xvt" = (
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint)
+"wSW" = (
+/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "dark"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/area/engine/controlroom)
-"xvy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/area/medical/paramedic)
+"wTf" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "white"
},
-/area/medical/medbay2)
-"xwd" = (
+/area/medical/reception)
+"wTn" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"wTs" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"wTz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=A25";
- location = "A24"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central/south)
-"xwf" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/table,
-/obj/item/flashlight,
-/obj/item/reagent_containers/spray/cleaner,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"xwq" = (
-/obj/structure/closet/secure_closet/security,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/door/airlock/medical{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "viro_lab_airlock_interior";
+ locked = 1;
+ name = "Virology Lab Internal Airlock";
+ req_access_txt = "39"
},
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "viro_lab_airlock_control";
+ name = "Virology Lab Access Button";
+ pixel_y = -24;
+ req_access_txt = "39"
},
-/obj/item/clothing/mask/balaclava,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/customs)
-"xwX" = (
-/obj/structure/table/reinforced,
-/obj/item/radio,
-/obj/item/t_scanner,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/turret_protected/ai)
-"xxb" = (
-/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel,
+/area/medical/virology)
+"wTJ" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "green"
+ dir = 10;
+ icon_state = "darkred"
},
-/area/hallway/secondary/exit)
-"xxi" = (
+/area/security/permabrig)
+"wTQ" = (
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+/obj/machinery/power/smes,
+/obj/machinery/light/small{
+ dir = 1
},
-/area/security/permabrig)
-"xxy" = (
-/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
+"wTW" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
-/turf/space,
-/area/space/nearstation)
-"xyK" = (
-/obj/structure/disposalpipe/segment{
+/area/library/abandoned)
+"wTX" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"wUg" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/siberia)
+"wUr" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"wUu" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
dir = 4
},
-/turf/simulated/wall,
-/area/medical/reception)
-"xzK" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "Second Surgery Window";
- name = "Surgery Shutters"
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/medical/surgery2)
-"xAj" = (
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/stack/tape_roll,
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
+"wUB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start{
+ name = "Station Engineer"
},
-/obj/machinery/flasher/portable,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkred"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/securearmoury)
-"xBg" = (
+/area/engine/engineering)
+"wUC" = (
+/obj/machinery/shieldgen,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"wUE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/safe/floor,
+/obj/item/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/reagent_containers/food/drinks/bottle/vodka,
+/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,
+/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,
+/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,
+/obj/item/reagent_containers/food/drinks/bottle/gin,
+/obj/item/reagent_containers/food/drinks/bottle/patron,
+/obj/item/reagent_containers/food/drinks/bottle/patron,
+/obj/item/reagent_containers/food/drinks/bottle/cognac,
+/obj/item/reagent_containers/food/drinks/bottle/tequila,
+/obj/item/reagent_containers/food/drinks/bottle/tequila,
+/obj/item/reagent_containers/food/drinks/bottle/patron,
+/turf/simulated/floor/wood,
+/area/maintenance/fsmaint)
+"wUT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ icon_state = "dark"
},
-/area/medical/cmo)
-"xBE" = (
-/obj/machinery/newscaster{
+/area/security/permabrig)
+"wUX" = (
+/obj/machinery/status_display{
pixel_y = 32
},
+/obj/structure/sign/fire,
+/turf/simulated/wall/r_wall/coated,
+/area/toxins/test_chamber)
+"wVc" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
-"xBT" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/security_space_law,
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"wVd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ icon_state = "white"
},
-/area/medical/cmo)
-"xDv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/medical/medbay)
+"wVe" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/obj/structure/window/reinforced{
+ dir = 8
},
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"wVn" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/security/evidence)
-"xDD" = (
-/obj/structure/chair{
- dir = 8
+/area/hallway/primary/central/north)
+"wVA" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube{
+ icon_state = "E-NW";
+ tag = "icon-E-NW"
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/turf/space,
+/area/space/nearstation)
+"wVP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/security/processing)
-"xDG" = (
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"wVQ" = (
+/obj/machinery/door/airlock/research/glass{
+ name = "Toxin Mixing";
+ req_access_txt = "47"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/item/radio/beacon,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"xDU" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"wVT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/area/security/processing)
-"xEf" = (
-/obj/structure/closet/secure_closet/security,
-/obj/structure/window/reinforced{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"wWk" = (
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 12";
+ network = list("SS13","MiniSat")
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/space,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"wWu" = (
+/obj/effect/landmark/start{
+ name = "Cyborg"
},
-/obj/item/clothing/mask/balaclava,
/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/customs)
-"xEr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "darkbluefull"
},
+/area/construction/hallway)
+"wWK" = (
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
-"xFk" = (
-/obj/machinery/porta_turret,
-/obj/machinery/light{
- dir = 1;
- on = 1
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
},
-/obj/machinery/status_display{
- layer = 4;
- pixel_y = 32
+/area/medical/medbay2)
+"wWP" = (
+/obj/structure/closet/crate/medical,
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/o2{
+ pixel_x = 2;
+ pixel_y = -2
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/item/storage/firstaid/toxin{
+ pixel_x = -2;
+ pixel_y = 4
},
-/area/turret_protected/ai)
-"xFp" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "neutral"
+ icon_state = "bot"
},
/area/shuttle/escape{
parallax_movedir = 2
})
-"xFI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
+"wWW" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ id_tag = "Virology";
+ name = "Virology Shutters"
},
-/area/medical/sleeper)
-"xFL" = (
-/mob/living/simple_animal/hostile/mimic,
-/obj/item/paper/researchnotes,
-/turf/simulated/floor/greengrid,
-/area/maintenance/xenozoo)
-"xGa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plating,
+/area/medical/virology)
+"wWZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/biostorage)
+"wXd" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/hallway/primary/central/north)
-"xGk" = (
-/obj/structure/rack{
- dir = 1
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/item/extinguisher,
-/obj/item/storage/belt/utility,
-/obj/item/storage/toolbox/electrical,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal{
+ amount = 50
},
-/obj/item/radio{
- pixel_y = 6
+/obj/item/stack/sheet/glass{
+ amount = 50
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/light{
- dir = 8
+/obj/item/stack/rods{
+ amount = 50
},
-/obj/machinery/light_switch{
- pixel_x = -23
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 30
},
-/obj/item/weldingtool/largetank,
+/obj/item/clothing/gloves/color/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
+ dir = 1;
icon_state = "yellow"
},
/area/engine/mechanic_workshop)
-"xGL" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+"wXh" = (
+/obj/structure/lattice,
+/turf/simulated/wall,
+/area/maintenance/apmaint)
+"wXm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/obj/machinery/door/window/eastleft{
+ dir = 1;
+ req_access_txt = "10"
+ },
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry/additional)
-"xHa" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
+/area/engine/engineering)
+"wXp" = (
+/obj/effect/decal/warning_stripes/southwest,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"wXI" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 100;
on = 1
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
+"wXY" = (
+/obj/structure/transit_tube{
+ icon_state = "D-SW";
+ tag = "icon-D-SW"
},
-/area/security/brig)
-"xHb" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
+/turf/space,
+/area/space/nearstation)
+"wYh" = (
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 5
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"xHA" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 1;
- id_tag = "Mime";
- name = "Mime Privacy Shutters"
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"wYr" = (
+/obj/structure/window/full/shuttle,
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "trader_privacy";
+ name = "Privacy Shutters";
+ opacity = 0
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 2;
- id_tag = "Clown";
- name = "Clown Privacy Shutters"
+/turf/simulated/shuttle/plating,
+/area/shuttle/trade/sol)
+"wYL" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "sw_maint_airlock";
+ name = "exterior access button";
+ pixel_x = 24;
+ pixel_y = 24
},
-/turf/simulated/floor/plating,
-/area/mimeoffice)
-"xHM" = (
-/obj/structure/bed,
-/obj/item/bedsheet/brown,
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"wYM" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/decal/warning_stripes/red/hollow,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+ dir = 1
},
-/area/security/permabrig)
-"xHS" = (
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"xHW" = (
-/obj/machinery/suit_storage_unit/security,
-/obj/machinery/camera{
- c_tag = "Armory East";
- dir = 8;
- network = list("SS13","Security")
+/area/security/customs)
+"wYQ" = (
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/maintenance/fsmaint)
+"wYX" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
+ icon_state = "dark"
},
-/area/security/securearmoury)
-"xIm" = (
-/obj/structure/window/reinforced{
+/area/turret_protected/ai_upload)
+"wYY" = (
+/obj/machinery/vending/coffee,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/main)
+"wZo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkblue"
+ icon_state = "dark"
},
-/area/construction/hallway)
-"xJv" = (
+/area/turret_protected/ai_upload)
+"wZF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- on = 1
+ initialize_directions = 11
},
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/medical/research{
- name = "Research Division"
- })
-"xKE" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
- dir = 8
+/obj/structure/table/wood,
+/obj/item/paicard,
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"wZL" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/toxins/explab)
+"wZR" = (
+/obj/machinery/iv_drip,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/machinery/light{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "green"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/hallway/secondary/exit)
-"xKH" = (
-/obj/machinery/door/airlock/external{
- id_tag = "laborcamp_home";
- name = "Labor Camp Airlock";
- req_access_txt = "2"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
},
-/obj/structure/fans/tiny,
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/security/prisonlockers)
-"xKL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/central/sw)
-"xKT" = (
-/obj/structure/bed,
-/obj/item/bedsheet/patriot,
+/area/medical/surgery2)
+"xan" = (
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"xLt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/security/permabrig)
+"xat" = (
+/obj/machinery/light{
+ dir = 1
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/camera{
+ c_tag = "Library Starboard"
},
-/area/medical/medbay3)
-"xLH" = (
-/obj/machinery/smartfridge/drying_rack,
+/obj/structure/bookcase,
+/turf/simulated/floor/wood,
+/area/library)
+"xaE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 9;
+ dir = 4;
icon_state = "red"
},
-/area/security/permabrig)
-"xLU" = (
-/obj/machinery/flasher{
- desc = "A wall-mounted punk-sorting device. Its bulb seems to have extra power running through it.";
- id = "permaflash";
- name = "Mounted Prison flash";
- range = 3
+/area/security/prisonershuttle)
+"xbh" = (
+/obj/machinery/light/small,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"xbk" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
+"xbn" = (
+/turf/simulated/wall/r_wall/coated,
+/area/toxins/mixing)
+"xbr" = (
+/obj/item/aiModule/freeform,
+/obj/structure/table/glass,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/wall,
-/area/security/permabrig)
-"xLY" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 4
+/area/turret_protected/ai_upload)
+"xbA" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 8
},
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 27
+/obj/structure/window/plasmareinforced,
+/obj/structure/window/plasmareinforced{
+ dir = 1
},
-/obj/machinery/door_control{
- id = "Watchroom";
- name = "Watch Room Privacy Shutters Control";
- pixel_x = -6;
- pixel_y = 9;
+/turf/simulated/floor/plating,
+/area/toxins/storage)
+"xbB" = (
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 1;
+ icon_state = "rightsecure";
+ id = "Cell 3";
+ name = "Cell 3";
req_access_txt = "2"
},
-/obj/machinery/door_control{
- id = "PermaBath";
- name = "Perma Bathroom Bolts";
- normaldoorcontrol = 1;
- pixel_x = 6;
- pixel_y = 9;
- req_access_txt = "2";
- specialfunctions = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/door_control{
- id = "PermaLockdown";
- name = "Perma Lockdown";
- pixel_x = -6;
- pixel_y = -1;
- req_access_txt = "2"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/door_control{
- id = "PermaCellsLockdown";
- name = "Perma Cells Lockdown";
- pixel_x = 6;
- pixel_y = -1;
- req_access_txt = "2"
+/area/security/prison/cell_block/A)
+"xbJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkred"
+ icon_state = "grimy"
},
-/area/security/permabrig)
-"xMf" = (
+/area/chapel/main)
+"xbO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"xbS" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/plating,
-/area/maintenance/port{
- name = "Brig Maintenance"
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
})
-"xMu" = (
-/obj/structure/closet/secure_closet/brigdoc,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitered"
- },
-/area/security/medbay)
-"xMw" = (
+"xcb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/customs)
-"xME" = (
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"xOq" = (
-/obj/structure/lattice,
-/turf/space,
-/area/space)
-"xOy" = (
+/area/hallway/primary/central/south)
+"xci" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"xct" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light_switch{
+ pixel_y = -25
+ },
+/obj/machinery/light,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/turf/simulated/floor/plating,
+/area/maintenance/electrical)
+"xcu" = (
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/virology)
-"xPe" = (
-/obj/structure/closet/secure_closet/guncabinet{
- name = "Пистолеты Доминатор";
- req_access = list(1)
- },
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
+/area/medical/sleeper)
+"xcz" = (
/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+/obj/structure/rack,
+/obj/item/tank/jetpack/carbondioxide{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/tank/jetpack/carbondioxide{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/door/window/southright{
+ dir = 4;
+ name = "EVA Equipment"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ai_monitored/storage/eva)
+"xcF" = (
+/turf/simulated/floor/plasteel{
dir = 1;
- layer = 2.9
+ icon_state = "neutral"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"xcG" = (
+/obj/machinery/recharge_station,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"xcU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/northwest,
+/obj/structure/closet/secure_closet/brig,
+/obj/structure/window/reinforced{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/customs)
-"xPY" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
+/area/security/prisonershuttle)
+"xcV" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/library/abandoned)
+"xdb" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/firedoor,
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -131994,1342 +128989,5618 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/assembly/robotics)
+"xdo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 4;
+ icon_state = "darkbluefull"
},
-/area/security/prisonlockers)
-"xQj" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating/airless,
-/area/toxins/test_area)
-"xRu" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "trader_privacy";
- name = "Privacy Shutters";
- opacity = 0
+/area/turret_protected/aisat_interior)
+"xds" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"xRU" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- on = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/exit)
-"xSf" = (
-/obj/structure/flora/ausbushes/fernybush,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
+ icon_state = "red"
},
-/obj/structure/window/reinforced{
- dir = 1
+/area/security/range)
+"xdz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/grass,
-/area/hallway/secondary/exit)
-"xSn" = (
-/obj/machinery/power/port_gen/pacman,
-/turf/simulated/floor/plating,
-/area/aisat{
- name = "\improper AI Satellite Hallway"
- })
-"xSu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/photocopier,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/hor)
+"xdB" = (
+/obj/machinery/processor{
+ desc = "A machine used to process slimes and retrieve their extract.";
+ name = "Slime Processor"
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"xdE" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/machinery/newscaster{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"xdP" = (
+/obj/structure/bed/roller,
+/mob/living/carbon/human/monkey,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whitegreen"
+ },
+/area/medical/virology)
+"xdT" = (
+/obj/structure/chair/comfy/brown,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/area/medical/sleeper)
-"xSP" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/toxins/mixing)
-"xSX" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"xdX" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/camera{
- c_tag = "Arrivals Port Bay 4"
- },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "arrival"
+ icon_state = "rampbottom";
+ tag = "icon-stage_stairs"
},
-/area/hallway/secondary/entry/commercial)
-"xTh" = (
+/area/medical/research{
+ name = "Research Division"
+ })
+"xed" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/sleeper)
-"xUv" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 28
- },
-/turf/simulated/floor/plasteel{
- icon_state = "purplecorner"
- },
-/area/hallway/primary/aft)
-"xUz" = (
-/obj/structure/table/wood,
-/turf/simulated/floor/wood{
- icon_state = "wood-broken";
- tag = "icon-wood-broken"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 1
},
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"xUA" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/item/taperecorder,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"xek" = (
+/obj/machinery/power/smes,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/eastnorthwest,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/ai)
-"xUL" = (
-/obj/machinery/porta_turret,
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
-"xUN" = (
-/obj/structure/window/reinforced{
+/area/maintenance/electrical)
+"xen" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin/nanotrasen,
+/obj/item/pen,
+/obj/machinery/light{
dir = 8
},
-/obj/machinery/portable_atmospherics/scrubber/huge/stationary,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/permabrig)
-"xUV" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "execution";
- name = "Execution Privacy Shutters"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"xWn" = (
-/obj/structure/window/reinforced,
-/obj/structure/lattice,
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"xWr" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/area/lawoffice)
+"xex" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/wood,
+/area/library/abandoned)
+"xeE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "ai2";
- name = "Turret Shutters"
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
+/area/library)
+"xeK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"xWx" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/decal/warning_stripes/south,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/engine/mechanic_workshop/hanger)
-"xWJ" = (
-/obj/machinery/camera{
- c_tag = "Cabin 1";
- dir = 5
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Toxins Storage";
+ req_access_txt = "8"
},
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -28
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"xeP" = (
+/obj/machinery/door/window/brigdoor{
+ name = "Creature Pen"
},
-/area/crew_quarters/cabin1)
-"xXf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
+/obj/machinery/door/window/brigdoor{
dir = 8;
- icon_state = "cmo"
- },
-/area/medical/cmo)
-"xXm" = (
-/obj/effect/spawner/lootdrop/trade_sol/med,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"xXq" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
+ name = "Creature Pen"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "dark"
},
-/area/security/lobby)
-"xXC" = (
-/obj/item/target,
-/turf/simulated/floor/plasteel/airless,
-/area/toxins/test_area)
-"xYg" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/area/maintenance/xenozoo)
+"xeQ" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"xeT" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "neutralfull"
},
-/area/security/prison/cell_block/A)
-"xYq" = (
-/obj/structure/lattice,
-/obj/structure/lattice,
-/obj/structure/window/reinforced{
- dir = 1
+/area/assembly/robotics)
+"xfd" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/turf/space,
-/area/space/nearstation)
-"xYy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"xfo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
},
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"xfr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/brig)
-"xYF" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/chair{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "green"
- },
-/area/hallway/secondary/exit)
-"xYM" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/plating/airless,
-/area/toxins/test_area)
-"xYU" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/structure/cable{
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "darkredcorners"
},
-/area/toxins/lab)
-"xZk" = (
-/obj/effect/decal/warning_stripes/west,
+/area/security/permabrig)
+"xfy" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/medical{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "viro_lab_airlock_exterior";
+ locked = 1;
+ name = "Virology Lab External Airlock";
+ req_access_txt = "39"
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ layer = 3.6;
+ master_tag = "viro_lab_airlock_control";
+ name = "Virology Lab Access Button";
+ pixel_x = -24;
+ req_access_txt = "39"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/assembly/robotics)
-"xZm" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "soltradeship_south";
- name = "Security Doors";
- opacity = 0
+/area/medical/virology)
+"xfE" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/door/airlock/shuttle/glass{
- id_tag = "soltrader_south";
- name = "trader shuttle airlock";
- req_access_txt = "160";
- security_level = 6
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"xZu" = (
-/obj/machinery/door/airlock/security/glass{
- id_tag = "BrigRight";
- name = "Brig";
- req_access_txt = "63"
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
+/area/lawoffice)
+"xfH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/mapping_helpers/airlock/unres{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"xfR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"xfT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/chair/comfy/brown{
dir = 1
},
-/area/security/brig)
-"xZv" = (
-/obj/structure/window/reinforced{
- dir = 8
+/turf/simulated/floor/carpet/black,
+/area/bridge/vip)
+"xfV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/light{
- dir = 8;
- pixel_x = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"xfX" = (
+/obj/effect/decal/warning_stripes/northwest,
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/area/construction/hallway)
-"xZw" = (
-/obj/machinery/flasher/portable,
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "darkred"
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"xgb" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/area/security/securearmoury)
-"yah" = (
-/obj/structure/chair{
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"xgc" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkblue"
+ dir = 1
+ },
+/area/security/range)
+"xgm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/area/medical/surgery2)
-"yai" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/hydroponics)
-"yal" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = -32
+/area/security/permabrig)
+"xgu" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
-/turf/simulated/shuttle/floor4,
-/area/shuttle/escape{
- parallax_movedir = 2
- })
-"yaz" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Evidence Storage";
- req_access = null;
- req_access_txt = "63"
+/obj/item/flashlight/lamp/green{
+ on = 0;
+ pixel_x = -3;
+ pixel_y = 8
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/evidence)
-"ybx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"xgy" = (
+/obj/machinery/gateway{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/status_display{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival"
+ icon_state = "dark"
},
-/area/hallway/secondary/entry)
-"ybC" = (
-/obj/structure/table/reinforced,
+/area/gateway)
+"xgz" = (
/obj/machinery/light{
dir = 4
},
-/obj/item/lightreplacer,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
- },
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/turret_protected/aisat)
-"ycn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
+/area/hallway/primary/central/ne)
+"xgF" = (
+/obj/machinery/vending/cigarette/free,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"yct" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"xgP" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"ycV" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light{
- dir = 4
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/computer/guestpass{
- pixel_x = 32
+/turf/simulated/floor/grass,
+/area/medical/medbay)
+"xhi" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ icon_state = "white"
},
-/area/security/brig)
-"ydv" = (
+/area/assembly/robotics)
+"xhn" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"xhp" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/turf/simulated/floor/plating,
+/area/medical/genetics_cloning)
+"xhy" = (
+/obj/machinery/turretid/lethal{
+ check_synth = 1;
+ name = "AI Chamber Turret Control";
+ pixel_x = -2;
+ pixel_y = 28;
+ req_access_txt = "75"
},
-/area/security/permabrig)
-"ydS" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 4
+/obj/machinery/camera{
+ c_tag = "Minisat AI Core Centre";
+ network = list("Minisat","SS13")
},
-/obj/structure/window/plasmareinforced{
- dir = 8
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "RnDChem";
- name = "Biohazard Shutter";
- opacity = 0
+/obj/machinery/door_control{
+ id = "ai1";
+ name = "Turret Hallway Shutters Control";
+ pixel_x = -8;
+ pixel_y = 40
},
-/turf/simulated/floor/engine,
-/area/toxins/test_chamber)
-"yeB" = (
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/door_control{
+ id = "ai2";
+ name = "Turret AI Core Shutters Control";
+ pixel_x = 8;
+ pixel_y = 40
},
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai)
+"xhC" = (
+/obj/structure/sign/poster/random{
+ pixel_x = 32
},
-/area/construction/hallway)
-"yeI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
-/area/hallway/primary/central/sw)
-"yeL" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/medical/virology)
-"yff" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/area/hallway/primary/central/se)
+"xhK" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ desc = "Труба содержит газ для обработки и после возвращает его обратно в трубу смешивания";
+ name = "Труба обработки"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/medical/sleeper)
-"yfD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/radio/intercom{
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/atmos)
+"xhR" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"xhV" = (
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
-/area/bridge/vip)
-"yfG" = (
+/area/crew_quarters/sleep)
+"xik" = (
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "arrival"
+ dir = 8;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner (WEST)"
},
-/area/hallway/secondary/entry/commercial)
-"yfK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/vending/chinese,
+/area/medical/sleeper)
+"xit" = (
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "neutralcorner"
},
-/area/medical/medbay3)
-"ygf" = (
+/area/crew_quarters/locker)
+"xiu" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "red"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/main)
-"ygC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/radio/intercom{
- pixel_x = -28
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"xiz" = (
+/obj/structure/sign/vacuum{
+ pixel_x = -32
},
+/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "vault"
},
-/area/hallway/primary/central/sw)
-"ygW" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 3
+/area/engine/aienter)
+"xiA" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/courtroom)
+"xiB" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/drinks/mug,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/item/reagent_containers/food/drinks/britcup,
-/obj/item/screwdriver,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/area/medical/ward)
-"yhz" = (
-/obj/structure/chair/comfy/teal,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/area/lawoffice)
+"xiC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/wall,
+/area/crew_quarters/fitness)
+"xiE" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ dir = 8;
+ icon_state = "red"
},
-/area/medical/ward)
-"yhO" = (
-/obj/structure/closet/secure_closet/security,
+/area/security/brig)
+"xiH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"xiR" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
d2 = 4;
- icon_state = "1-4"
+ icon_state = "2-4"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"xjd" = (
+/obj/item/radio/intercom{
+ pixel_x = -28
+ },
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/plasteel,
+/area/bridge/vip)
+"xji" = (
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"xjj" = (
+/obj/structure/chair/comfy/teal{
+ dir = 1
},
-/obj/item/clothing/mask/balaclava,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
-/area/security/customs)
-"yhS" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_y = 32
+/area/medical/medbay)
+"xjl" = (
+/obj/structure/morgue,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/machinery/light,
-/obj/structure/chair/comfy/shuttle{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/shuttle/floor,
-/area/shuttle/pod_3)
-"yhX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2{
- name = "Tourist Area Maintenance"
- })
-"yhY" = (
-/obj/effect/spawner/window/reinforced,
+/area/chapel/office)
+"xjm" = (
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/obj/machinery/door/poddoor/preopen{
- id_tag = "PermaLockdown";
- name = "Perma Lockdown"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "execution";
- name = "Execution Privacy Shutters"
+/area/maintenance/xenozoo)
+"xjw" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/chapel/office)
+"xjZ" = (
+/obj/structure/chair{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"yiu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/landmark/start{
+ name = "Cyborg"
},
/turf/simulated/floor/plasteel{
- icon_state = "darkbluefull"
- },
-/area/turret_protected/aisat)
-"yjg" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j2s";
- name = "Brig Physician";
- sortType = 24
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/area/construction/hallway)
+"xkm" = (
+/obj/structure/disposalpipe/segment{
dir = 1;
- on = 1
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 1
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/brig)
-"yjn" = (
+/area/hallway/secondary/exit)
+"xkY" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/security/podbay)
+"xld" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f5";
+ tag = "icon-swall_f5"
+ },
+/area/shuttle/pod_4)
+"xlq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "green"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/hydroponics)
-"yjp" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular,
-/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel{
- dir = 1
- },
-/area/security/permabrig)
-"yjq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ icon_state = "cult";
+ tag = "icon-cult"
},
-/obj/structure/closet/walllocker/emerglocker/north,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+/area/lawoffice)
+"xlF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/medical/research{
- name = "Research Division"
- })
-"yka" = (
+/turf/simulated/floor/carpet,
+/area/civilian/pet_store)
+"xlL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/effect/landmark{
+ name = "blobstart"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+ icon_state = "dark"
},
-/area/security/permabrig)
-"ykx" = (
-/mob/living/simple_animal/hostile/carp/megacarp{
- desc = "Странная космическая акула, летающая неподалёку от станции. Многие поговаривают, что данное существо - аватар могущественного блю-спейс божества";
- faction = list("carp","neutral");
- name = "Странная Космическая Акула"
+/area/medical/morgue)
+"xlY" = (
+/obj/machinery/door/window/westleft{
+ dir = 1;
+ name = "Robotic Delivery";
+ req_access_txt = "29"
},
-/turf/space,
-/area/space)
-"yky" = (
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/mechanic_workshop/hanger)
-"ylQ" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/area/assembly/robotics)
+"xmf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "darkred"
+ icon_state = "dark"
},
-/area/security/warden)
-
-(1,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(2,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(3,1,1) = {"
+/area/security/permabrig)
+"xmh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"xmo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Internal Affairs Office South";
+ dir = 1;
+ network = list("SS13","Security")
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/lawoffice)
+"xmw" = (
+/obj/machinery/computer/mech_bay_power_console,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/securearmoury)
+"xmM" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/morgue)
+"xne" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"xnf" = (
+/turf/simulated/wall,
+/area/engine/engineering/monitor)
+"xnm" = (
+/obj/structure/chair/office/light{
+ dir = 4;
+ pixel_y = 3
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/medical/psych)
+"xno" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/lawoffice)
+"xnx" = (
+/turf/simulated/wall,
+/area/lawoffice)
+"xnC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining{
+ name = "Mining Dock";
+ req_access_txt = "48"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
+"xnD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay)
+"xnH" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"xnM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"xnO" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (EAST)"
+ },
+/area/toxins/misc_lab)
+"xnT" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Exp_lockdown";
+ name = "Expedition Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/gateway)
+"xnX" = (
+/turf/simulated/wall/r_wall,
+/area/security/reception)
+"xoj" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "rdprivacy";
+ name = "Research Director Office Shutters";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/crew_quarters/hor)
+"xol" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"xon" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/computer/aifixer,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/crew_quarters/hor)
+"xou" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/showcase,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/warden)
+"xoK" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"xoP" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/fitness)
+"xpj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/aft)
+"xpr" = (
+/obj/effect/decal/cleanable/blood/old,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/processing)
+"xpv" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/morgue)
+"xpx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/warden)
+"xpz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/processing)
+"xpD" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced{
+ dir = 8
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 4
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"xpQ" = (
+/obj/effect/landmark/start{
+ name = "Coroner"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/morgue)
+"xpU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay3)
+"xpW" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/security/reception)
+"xqb" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/securehallway)
+"xqg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ tag = "icon-pipe-j1 (EAST)"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/securehallway)
+"xqm" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "Virology";
+ name = "Virology Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/medical/virology)
+"xqr" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Brig_lockdown";
+ name = "Brig Lockdown";
+ opacity = 0
+ },
+/obj/structure/spacepoddoor{
+ luminosity = 3
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/podbay)
+"xqu" = (
+/turf/simulated/wall/r_wall,
+/area/security/range)
+"xqC" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/decal/warning_stripes/northeastcorner,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"xqJ" = (
+/obj/structure/chair/office/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/vacantoffice)
+"xqW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/prisonershuttle)
+"xqX" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/security/checkpoint)
+"xqY" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/securehallway)
+"xrn" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/carpet,
+/area/medical/psych)
+"xrx" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"xrA" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/maintenance/fsmaint)
+"xrC" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/xenozoo)
+"xsa" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ icon_state = "right";
+ name = "Core Modules";
+ req_access_txt = "20"
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/aiModule/crewsimov,
+/obj/item/aiModule/freeformcore,
+/obj/item/aiModule/corp,
+/obj/item/aiModule/paladin,
+/obj/item/aiModule/robocop,
+/obj/structure/table/glass,
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
+"xsc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/toxins/xenobiology)
+"xsj" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "yellow"
+ },
+/area/engine/engineering)
+"xsv" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/robotics_cyborgs{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/item/clipboard,
+/obj/item/toy/figure/roboticist,
+/obj/machinery/door_control{
+ id = "RoboDesk";
+ name = "Robotics Desc Privacy Shutters Control";
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (SOUTHWEST)"
+ },
+/area/assembly/robotics)
+"xsI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/secondary/exit)
+"xsK" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/hydroponics)
+"xsS" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ pixel_x = 28
+ },
+/obj/machinery/camera{
+ c_tag = "Brig Labor Camp Airlock North";
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/prisonershuttle)
+"xtb" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Virologist"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitegreencorner"
+ },
+/area/medical/virology/lab)
+"xte" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
+ },
+/area/medical/sleeper)
+"xtj" = (
+/obj/structure/lattice,
+/turf/simulated/wall/r_wall,
+/area/construction/hallway)
+"xts" = (
+/obj/effect/decal/warning_stripes/southeastcorner,
+/obj/machinery/atmospherics/unary/tank/air,
+/turf/simulated/floor/plating,
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"xtw" = (
+/obj/machinery/atmospherics/trinary/filter{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/toxins/mixing)
+"xtz" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 26
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"xtH" = (
+/obj/structure/chair/comfy/shuttle,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"xtL" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/power/smes{
+ charge = 5e+006
+ },
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/sign/electricshock{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"xtO" = (
+/obj/structure/chair/office/light,
+/obj/effect/landmark/start{
+ name = "Detective"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "darkbluecorners"
+ },
+/area/security/detectives_office)
+"xua" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/cult/archives,
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"xue" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating/airless,
+/area/toxins/test_area)
+"xuj" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/chapel/main)
+"xun" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/crew_quarters/fitness)
+"xuq" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/effect/decal/warning_stripes/southeast,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"xus" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/assembly/robotics)
+"xut" = (
+/obj/machinery/door/poddoor{
+ id_tag = "ToxinsVenting";
+ name = "Toxins Venting Bay Door";
+ use_power = 0
+ },
+/turf/simulated/floor/engine/insulated/vacuum,
+/area/toxins/mixing)
+"xuv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "bluecorner"
+ },
+/area/hallway/primary/central/south)
+"xux" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "lawyer";
+ name = "Internal Affairs Privacy Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/lawoffice)
+"xuA" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Local Armory";
+ req_access_txt = "1"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/armoury)
+"xuF" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "lawyer";
+ name = "Internal Affairs Privacy Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/lawoffice)
+"xuG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"xuK" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Kitchen Dinner Windows";
+ name = "Kitchen Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/item/clothing/head/cakehat,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/crew_quarters/kitchen)
+"xuL" = (
+/obj/machinery/newscaster{
+ pixel_x = 28
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"xuX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellow"
+ },
+/area/engine/hardsuitstorage)
+"xva" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/regular,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/fitness)
+"xvh" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkred"
+ },
+/area/security/permabrig)
+"xvo" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/chair/office/light,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/cmo)
+"xvs" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/reagent_containers/spray/cleaner/drone,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/turret_protected/aisat)
+"xvt" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"xvv" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/item/clothing/suit/leathercoat,
+/obj/item/clothing/head/fedora,
+/obj/item/clothing/under/blacktango,
+/obj/item/clothing/head/bowlerhat,
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/cabin1)
+"xvy" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "First Surgery Window";
+ name = "Surgery Shutters"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/medical/surgery1)
+"xvB" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal/fifty,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/apc_electronics,
+/obj/item/airlock_electronics,
+/turf/simulated/floor/plasteel,
+/area/storage/secure)
+"xvG" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkbluecorners"
+ },
+/area/turret_protected/aisat)
+"xvO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/office)
+"xvX" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkbluecorners"
+ },
+/area/turret_protected/aisat)
+"xwc" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/landmark/start{
+ name = "Warden"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/warden)
+"xwd" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = -4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/toxins/mixing)
+"xwf" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/bombcloset,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "neutral"
+ },
+/area/toxins/mixing)
+"xwq" = (
+/obj/structure/grille,
+/obj/structure/window/plasmareinforced,
+/obj/structure/window/plasmareinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/toxins/storage)
+"xwt" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/chem_master,
+/obj/structure/window/plasmareinforced,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/engine,
+/area/toxins/misc_lab)
+"xwx" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/port)
+"xwF" = (
+/obj/structure/window/reinforced,
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/camera{
+ c_tag = "AI Satellite Exterior 13";
+ dir = 8;
+ network = list("SS13","MiniSat")
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/construction/hallway)
+"xwM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/lobby)
+"xwO" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaCellsLockdown";
+ name = "Perma Cells Lockdown"
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"xwW" = (
+/obj/structure/bookcase,
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/floor/wood,
+/area/library/abandoned)
+"xwX" = (
+/obj/machinery/suit_storage_unit/captain,
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
+ },
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain/bedroom)
+"xxb" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/table,
+/obj/item/flashlight,
+/obj/item/reagent_containers/spray/cleaner,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"xxi" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -26
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/east)
+"xxk" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/transfer_valve{
+ pixel_x = 8;
+ pixel_y = -6
+ },
+/obj/item/transfer_valve{
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/obj/item/transfer_valve{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/obj/item/transfer_valve{
+ pixel_x = 2
+ },
+/obj/item/transfer_valve{
+ pixel_y = 2
+ },
+/obj/item/transfer_valve{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/transfer_valve{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/transfer_valve{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/toxins/mixing)
+"xxx" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"xxy" = (
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"xxF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "darkredcorners"
+ },
+/area/security/podbay)
+"xxG" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/permabrig)
+"xxI" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"xxJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/toxins/mixing)
+"xxK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/locker)
+"xyi" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/fitness)
+"xyp" = (
+/obj/structure/sign/directions/evac{
+ pixel_y = -8
+ },
+/obj/structure/sign/directions/medical,
+/obj/structure/sign/directions/security{
+ dir = 4;
+ pixel_y = 8
+ },
+/turf/simulated/wall,
+/area/crew_quarters/courtroom)
+"xyJ" = (
+/obj/machinery/teleport/hub,
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"xyK" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/turf/simulated/floor/engine/insulated/vacuum,
+/area/toxins/mixing)
+"xyS" = (
+/obj/machinery/computer/teleporter,
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"xyU" = (
+/obj/machinery/camera{
+ c_tag = "Chapel Backroom";
+ dir = 8
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/office)
+"xyW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkred"
+ },
+/area/security/prison/cell_block/A)
+"xza" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/library)
+"xzg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/simulated/floor/plasteel,
+/area/maintenance/fsmaint)
+"xzi" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2";
+ tag = "icon-pipe-j2 (EAST)"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
+ },
+/area/security/securehallway)
+"xzk" = (
+/obj/structure/bookcase,
+/obj/item/book/manual/sop_engineering,
+/obj/item/book/manual/sop_medical,
+/obj/item/book/manual/sop_security,
+/obj/item/book/manual/sop_service,
+/obj/item/book/manual/sop_supply,
+/obj/item/book/manual/sop_general,
+/obj/item/book/manual/sop_legal,
+/obj/item/book/manual/sop_command,
+/obj/item/book/manual/sop_science,
+/obj/item/book/manual/security_space_law,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/magistrateoffice)
+"xzo" = (
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"xzK" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/computer/area_atmos,
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"xAb" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "execution"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "execution"
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "execution"
+ },
+/turf/simulated/floor/plating,
+/area/security/execution)
+"xAj" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research/shallway)
+"xAp" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 26
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"xAs" = (
+/obj/structure/window/reinforced,
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/space/nearstation)
+"xAu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"xAB" = (
+/turf/simulated/wall,
+/area/security/armoury)
+"xAH" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/ai_monitored/storage/eva)
+"xAV" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"xBo" = (
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/machinery/recharge_station,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/library)
+"xBx" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "magistrate";
+ name = "Magistrate Privacy Shutters";
+ opacity = 0
+ },
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/magistrateoffice)
+"xBC" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/crew_quarters/kitchen)
+"xBE" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "ai_inner";
+ locked = 1;
+ name = "MiniSat External Access";
+ req_one_access_txt = "75;13;19;32"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway)
+"xBS" = (
+/obj/effect/decal/warning_stripes/northeastcorner,
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 100;
+ on = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/engine/hardsuitstorage)
+"xBT" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube{
+ icon_state = "E-SW";
+ tag = "icon-E-SW"
+ },
+/turf/space,
+/area/space/nearstation)
+"xCj" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/showcase{
+ layer = 5
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/turret_protected/aisat)
+"xCt" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/security/execution)
+"xCD" = (
+/obj/machinery/mass_driver{
+ dir = 8;
+ id_tag = "toxinsdriver"
+ },
+/turf/simulated/floor/plating,
+/area/toxins/mixing)
+"xCP" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube{
+ icon_state = "W-SE";
+ tag = "icon-W-SE"
+ },
+/turf/space,
+/area/space/nearstation)
+"xCQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"xDk" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/cobweb,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/plating,
+/area/library/abandoned)
+"xDp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/securehallway)
+"xDv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
+ },
+/area/medical/research/shallway)
+"xDB" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"xDD" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research/shallway)
+"xDG" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "whitepurple"
+ },
+/area/toxins/explab)
+"xDL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Primary Security Hallway"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/starboard/east)
+"xDU" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/assembly/robotics)
+"xEf" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/machine{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/machine{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/firstaid/machine,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurple"
+ },
+/area/assembly/robotics)
+"xEr" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/aisat)
+"xEA" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (NORTHWEST)"
+ },
+/area/medical/research/restroom)
+"xEF" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/medical/surgery1)
+"xEM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
+ },
+/area/security/lobby)
+"xEP" = (
+/obj/structure/chair/sofa{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Port Hallway Middle";
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/west)
+"xFd" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/warning_stripes/yellow/partial{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/assembly/robotics)
+"xFk" = (
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/machinery/ai_slipper,
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/turret_protected/ai)
+"xFp" = (
+/obj/structure/morgue,
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/morgue)
+"xFr" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube{
+ icon_state = "D-SW";
+ tag = "icon-D-SW"
+ },
+/turf/space,
+/area/space/nearstation)
+"xFt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/aisat)
+"xFw" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_x = 11;
+ pixel_y = 13
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_x = -4
+ },
+/turf/simulated/floor/carpet,
+/area/maintenance/fsmaint)
+"xFF" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/cryo)
+"xFL" = (
+/obj/structure/chair,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/main)
+"xFN" = (
+/obj/machinery/computer/emergency_shuttle,
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"xFU" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay3)
+"xGa" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/hydroponics)
+"xGf" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/flashlight,
+/turf/simulated/floor/plasteel{
+ dir = 7;
+ icon_state = "yellow"
+ },
+/area/engine/engineering)
+"xGk" = (
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Transit Tube";
+ req_one_access_txt = "32;19"
+ },
+/obj/machinery/door/poddoor{
+ icon_state = "open";
+ id_tag = "transitlock";
+ name = "Transit Tube Blast Doors"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/aienter)
+"xGB" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/reception)
+"xGL" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/morgue)
+"xGN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"xHa" = (
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/medical/morgue)
+"xHb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
+ },
+/area/crew_quarters/chief)
+"xHe" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central/east)
+"xHm" = (
+/obj/effect/landmark/battle_mob_point,
+/turf/simulated/floor/engine{
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/alphadeck)
+"xHs" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "purplecorner"
+ },
+/area/hallway/primary/aft)
+"xHA" = (
+/obj/machinery/light,
+/obj/structure/closet/gmcloset,
+/obj/item/wrench,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/cable_coil/random{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil/random,
+/obj/item/storage/firstaid/aquatic_kit/full,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/crew_quarters/bar)
+"xHM" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
+ },
+/area/medical/medbay2)
+"xHR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/toy/figure/ce,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/chief)
+"xHS" = (
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"xHT" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/securehallway)
+"xHW" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/medbay3)
+"xHY" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/wardrobe/engineering_yellow,
+/obj/machinery/light,
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/hardsuitstorage)
+"xIm" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/bed,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint{
+ name = "AI Maintenance"
+ })
+"xIo" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastright{
+ dir = 1;
+ name = "Chemistry Desk";
+ req_access_txt = "33"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id_tag = "Chemistry1";
+ name = "Chemistry Privacy Shutter"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/medical/chemistry)
+"xIw" = (
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = "medcabin2";
+ name = "Patients Room"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (WEST)"
+ },
+/area/medical/ward)
+"xIB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"xIF" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/ce,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/chief)
+"xIZ" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/fitness)
+"xJf" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
+ },
+/area/medical/research/shallway)
+"xJj" = (
+/turf/simulated/wall/r_wall,
+/area/security/customs)
+"xJv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research/nhallway)
+"xJC" = (
+/obj/structure/rack,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/northeast,
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/hardsuitstorage)
+"xJK" = (
+/obj/effect/spawner/random_spawners/wall_rusted_maybe,
+/turf/simulated/wall/rust,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"xJW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"xKd" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/assembly/showroom)
+"xKf" = (
+/obj/structure/dresser,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/chief)
+"xKm" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "SecPilotPriv"
+ },
+/turf/simulated/floor/plating,
+/area/security/podbay)
+"xKp" = (
+/obj/structure/table,
+/obj/item/taperecorder,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull";
+ tag = "icon-redfull (NORTHWEST)"
+ },
+/area/security/processing)
+"xKu" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/light,
+/turf/simulated/floor/plasteel,
+/area/medical/research/nhallway)
+"xKw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "bluefull"
+ },
+/area/bridge/checkpoint/south)
+"xKC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
+ },
+/area/medical/sleeper)
+"xKE" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "open";
+ id_tag = "psychoffice";
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/medical/psych)
+"xKF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/maintenance/gambling_den)
+"xKH" = (
+/obj/structure/closet/secure_closet/engineering_chief,
+/obj/machinery/camera{
+ c_tag = "Chief Engineer's Quarters";
+ network = list("Engineering","SS13")
+ },
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 26
+ },
+/obj/machinery/door_control{
+ id = "ceprivacy";
+ name = "Privacy Shutters";
+ pixel_x = 24
+ },
+/obj/effect/decal/warning_stripes/northwest,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/chief)
+"xKL" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 27
+ },
+/obj/structure/cable,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"xKP" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research/nhallway)
+"xKT" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube{
+ icon_state = "NW-SE"
+ },
+/turf/space,
+/area/space/nearstation)
+"xLa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance{
+ name = "Teleporter Maintenance";
+ req_access_txt = "17"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/maintenance/maintcentral)
+"xLj" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/radiation,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"xLB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/security/execution)
+"xLG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/locker)
+"xLH" = (
+/turf/simulated/wall/rust,
+/area/maintenance/fsmaint)
+"xLJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/light,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ icon_state = "darkred"
+ },
+/area/security/permabrig)
+"xLK" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/siberia)
+"xLL" = (
+/obj/structure/window/reinforced,
+/obj/structure/closet/coffin,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/main)
+"xLU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"xLY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"xMc" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel,
+/area/medical/research/nhallway)
+"xMd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"xMf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"xMi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/south)
+"xMs" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellow"
+ },
+/area/engine/engineering/monitor)
+"xMC" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/carpet,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"xME" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"xMX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ name = "Engineering Junction";
+ sortType = 4
+ },
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"xNa" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/hallway/secondary/exit)
+"xNb" = (
+/obj/structure/table/glass,
+/obj/item/folder/blue,
+/obj/item/radio/intercom{
+ pixel_y = 28
+ },
+/obj/item/clothing/glasses/hud/health,
+/obj/item/stamp/cmo,
+/turf/simulated/floor/plasteel,
+/area/medical/cmo)
+"xNt" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
+ },
+/area/engine/engineering)
+"xNu" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/unary/portables_connector{
+ layer = 2
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/toxins/mixing)
+"xNy" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/machinery/camera{
+ c_tag = "Virology Main Hall";
+ dir = 9;
+ network = list("Medical","SS13")
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitegreen";
+ tag = "icon-whitegreen (EAST)"
+ },
+/area/medical/virology)
+"xNL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/engine/engineering/monitor)
+"xOk" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/cans/beer{
+ pixel_x = -4
+ },
+/obj/item/reagent_containers/food/drinks/cans/beer{
+ pixel_x = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/brigstaff)
+"xOq" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/cold_sink/freezer{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"xOx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/atmos)
+"xOy" = (
+/turf/simulated/wall,
+/area/medical/virology)
+"xOD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteyellowcorner"
+ },
+/area/medical/chemistry)
+"xOM" = (
+/obj/effect/decal/warning_stripes/southeastcorner,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"xOP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/sleep)
+"xOX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = "";
+ name = "Staff Room";
+ req_access_txt = "5"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/ward)
+"xPa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/bridge/checkpoint/south)
+"xPe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ name = "Toxin Test Firing Range";
+ req_access_txt = "47"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"xPg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/starboard/east)
+"xPm" = (
+/obj/structure/table/reinforced,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Chief Engineer's Office"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/chief)
+"xPq" = (
+/obj/machinery/camera{
+ c_tag = "Port Hallway South";
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellowcorner"
+ },
+/area/hallway/primary/port/west)
+"xPw" = (
+/obj/machinery/light/small,
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/office)
+"xPL" = (
+/obj/structure/table/wood,
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/obj/item/storage/briefcase,
+/obj/item/storage/secure/briefcase,
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"xPP" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/fore)
+"xPY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
+ },
+/area/toxins/mixing)
+"xQb" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"xQd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"xQi" = (
+/obj/structure/bookcase,
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -28
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"xQj" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed{
+ pixel_x = 26
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/storage)
+"xQt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"xQv" = (
+/obj/machinery/camera{
+ c_tag = "Command Meeting Room";
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"xQx" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/item/paper_bin,
+/obj/item/pen/fancy,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/captain)
+"xQz" = (
+/obj/structure/closet{
+ icon_closed = "cabinet_closed";
+ icon_opened = "cabinet_open";
+ icon_state = "cabinet_closed"
+ },
+/obj/item/reagent_containers/food/drinks/bottle/whiskey,
+/obj/item/reagent_containers/food/drinks/drinkingglass,
+/obj/item/reagent_containers/food/drinks/drinkingglass,
+/turf/simulated/floor/wood,
+/area/blueshield)
+"xQB" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/sop_science,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/storage/belt/utility,
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = 28
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/assembly/robotics)
+"xQE" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/chapel/main)
+"xQG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/aft)
+"xQH" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/structure/closet/l3closet,
+/obj/item/clothing/mask/gas,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
+ },
+/area/medical/biostorage)
+"xQM" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/prisonershuttle)
+"xQS" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "green"
+ },
+/area/hallway/secondary/exit)
+"xQW" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/mob/living/simple_animal/mouse/brown,
+/turf/simulated/floor/plating,
+/area/maintenance/engrooms)
+"xQY" = (
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"xQZ" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research/nhallway)
+"xRq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/sw)
+"xRC" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/security/podbay)
+"xRL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"xRU" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/medical/virology/lab)
+"xRX" = (
+/obj/structure/table/glass,
+/obj/machinery/vending/wallmed{
+ layer = 3.3;
+ name = "Emergency NanoMed";
+ pixel_y = -32
+ },
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Chief Medical Officer's Office"
+ },
+/turf/simulated/floor/plasteel,
+/area/medical/cmo)
+"xSf" = (
+/turf/simulated/wall/r_wall,
+/area/toxins/server)
+"xSn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"xSG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"xSP" = (
+/obj/machinery/r_n_d/server/core,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/bluegrid{
+ icon_state = "gcircuit";
+ name = "Mainframe Floor";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/toxins/server)
+"xTb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"xTd" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/construction/hallway)
+"xTh" = (
+/obj/machinery/camera{
+ c_tag = "Server Room";
+ dir = 8;
+ network = list("SS13","Research")
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ name = "server vent";
+ on = 1;
+ pressure_checks = 0
+ },
+/turf/simulated/floor/bluegrid{
+ icon_state = "gcircuit";
+ name = "Mainframe Floor";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/toxins/server)
+"xTn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/security{
+ name = "Detective";
+ req_access = null;
+ req_access_txt = "4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"xTp" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/lobby)
+"xTJ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/reception)
+"xTL" = (
+/obj/effect/decal/warning_stripes/southwest,
+/obj/structure/closet/secure_closet/brig,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/prisonershuttle)
+"xUv" = (
+/obj/machinery/vending/medical,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (SOUTHWEST)"
+ },
+/area/medical/genetics)
+"xUz" = (
+/obj/structure/table/reinforced,
+/obj/item/crowbar,
+/obj/item/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/healthanalyzer,
+/obj/item/healthanalyzer,
+/obj/item/healthanalyzer,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/assembly/robotics)
+"xUA" = (
+/obj/item/radio/intercom{
+ pixel_x = 28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"xUD" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1;
+ pixel_y = -7
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/construction/hallway)
+"xUL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random_spawners/cobweb_left_frequent,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"xUN" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/aft)
+"xUP" = (
+/turf/simulated/wall/r_wall,
+/area/security/securehallway)
+"xUR" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitegreencorner"
+ },
+/area/medical/virology)
+"xUV" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "bluecorner"
+ },
+/area/hallway/primary/aft)
+"xVr" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"xVs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitegreen";
+ tag = "icon-whitehall (WEST)"
+ },
+/area/medical/medbay3)
+"xWh" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"xWm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/airlock/public/glass{
+ id_tag = "KPPN"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "eslock";
+ name = "Escape Shuttle Lockdown"
+ },
+/turf/simulated/floor/plasteel,
+/area/bridge/checkpoint/south)
+"xWn" = (
+/obj/structure/table/reinforced,
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/obj/item/razor,
+/obj/machinery/camera{
+ c_tag = "Barber Shop"
+ },
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "barber"
+ },
+/area/civilian/barber)
+"xWr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/wall/r_wall,
+/area/turret_protected/ai)
+"xWx" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/medical/morgue)
+"xWB" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/turf/simulated/floor/plasteel/airless,
+/area/toxins/test_area)
+"xWJ" = (
+/obj/machinery/cryopod,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/crew_quarters/sleep)
+"xWS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"xWZ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "Warden";
+ name = "Warden Privacy Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"xXf" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/table/glass,
+/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/item/reagent_containers/food/snacks/sliceable/braincake,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplefull"
+ },
+/area/medical/research/restroom)
+"xXi" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/item/radio/intercom{
+ pixel_y = -28
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"xXm" = (
+/obj/structure/morgue,
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/medical/morgue)
+"xXq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/morgue)
+"xXu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/maintenance/gambling_den)
+"xXA" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/main)
+"xXC" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Armory";
+ req_access_txt = "1";
+ security_level = 1
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "ArmorySecAccess";
+ name = "Armory Security Shutters"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "ArmoryLock";
+ name = "Armory Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/securearmoury)
+"xXP" = (
+/obj/structure/dresser,
+/turf/simulated/floor/plasteel{
+ icon_state = "barber"
+ },
+/area/civilian/barber)
+"xXZ" = (
+/obj/machinery/door_control{
+ id = "ArmorySecAccess";
+ name = "Armory Security Access Control";
+ pixel_x = -7;
+ pixel_y = -2;
+ req_access_txt = "3"
+ },
+/obj/machinery/door_control{
+ id = "ArmorySec";
+ name = "Armory Security Window Control";
+ pixel_x = 8;
+ pixel_y = -2;
+ req_access_txt = "3"
+ },
+/turf/simulated/wall/r_wall,
+/area/security/securearmoury)
+"xYa" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/pill/fakedeath{
+ pixel_x = -4;
+ pixel_y = 9
+ },
+/obj/item/reagent_containers/food/pill/morphine{
+ pixel_x = 7;
+ pixel_y = 9
+ },
+/obj/item/reagent_containers/syringe{
+ pixel_x = -3;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/syringe/capulettium_plus{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/execution)
+"xYg" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
+ },
+/area/medical/medbay3)
+"xYh" = (
+/obj/structure/closet/crate/internals,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/tank/emergency_oxygen/engi,
+/obj/item/tank/emergency_oxygen/engi,
+/obj/item/tank/emergency_oxygen/engi,
+/obj/item/tank/emergency_oxygen/engi,
+/obj/structure/reagent_dispensers/fueltank/chem{
+ pixel_y = -30
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"xYn" = (
+/obj/structure/table/wood,
+/obj/item/camera{
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/item/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"xYp" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/engine,
+/area/toxins/test_chamber)
+"xYq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain/bedroom)
+"xYt" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark";
+ temperature = 80
+ },
+/area/toxins/xenobiology)
+"xYw" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitegreencorner"
+ },
+/area/medical/virology)
+"xYy" = (
+/obj/structure/table/wood,
+/obj/item/phone{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/briefcase,
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"xYF" = (
+/obj/machinery/door/airlock/external{
+ hackProof = 1;
+ id_tag = "emergency_home";
+ name = "Escape Airlock"
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
+"xYM" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/machinery/photocopier,
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"xYU" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/reception)
+"xZc" = (
+/turf/simulated/floor/wood,
+/area/library/abandoned)
+"xZk" = (
+/obj/structure/morgue,
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/morgue)
+"xZm" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry/commercial)
+"xZs" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/security/main)
+"xZu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"xZv" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain/bedroom)
+"xZw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain/bedroom)
+"xZR" = (
+/turf/simulated/wall,
+/area/security/main)
+"xZT" = (
+/obj/machinery/light,
+/obj/machinery/vending/snack,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/se)
+"yae" = (
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "escape"
+ },
+/area/crew_quarters/locker)
+"yah" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/brigstaff)
+"yai" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Service Foyer"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/serviceyard)
+"yak" = (
+/obj/structure/table/wood,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Head of Security's Office"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/hos)
+"yal" = (
+/obj/machinery/status_display,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall13"
+ },
+/area/shuttle/escape{
+ parallax_movedir = 2
+ })
+"yap" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/vomit,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"yaz" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/maintenance/fsmaint)
+"ybx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/captain/bedroom)
+"ybC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/aisat{
+ name = "\improper AI Satellite Hallway"
+ })
+"ybH" = (
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/construction/hallway)
+"ybL" = (
+/obj/structure/table/reinforced,
+/obj/item/wrench,
+/obj/item/crowbar,
+/obj/item/clothing/mask/gas,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/explab)
+"ybN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"ybR" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"ybT" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/decal/warning_stripes/southeastcorner,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
+"ybU" = (
+/obj/structure/grille,
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating/airless,
+/area/engine/engineering)
+"ybW" = (
+/obj/machinery/computer/secure_data,
+/turf/simulated/floor/wood,
+/area/security/hos)
+"ycj" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/securehallway)
+"ycn" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/maintenance/asmaint2)
+"ycr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/prisonershuttle)
+"ycx" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/main)
+"ycE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+"ycJ" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin/nanotrasen,
+/obj/item/pen,
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Internal Affairs Desk";
+ req_access_txt = "38"
+ },
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "lawyer";
+ name = "Internal Affairs Privacy Shutters";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/lawoffice)
+"ycP" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/engine,
+/area/toxins/misc_lab)
+"ycU" = (
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "cabin4";
+ name = "Door Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cabin4)
+"ycV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/solar/starboard)
+"ydj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=A27";
+ location = "A26"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/se)
+"ydv" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/l3closet/scientist,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"ydy" = (
+/obj/structure/grille,
+/obj/structure/window/full/shuttle,
+/turf/simulated/floor/plating,
+/area/shuttle/siberia)
+"ydB" = (
+/obj/structure/table/wood,
+/obj/item/paper/deltainfo,
+/turf/simulated/floor/wood,
+/area/library/abandoned)
+"ydL" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/prize_counter,
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness)
+"ydO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurple"
+ },
+/area/toxins/xenobiology)
+"ydS" = (
+/turf/simulated/wall,
+/area/crew_quarters/courtroom)
+"yem" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/south)
+"yeA" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
+ },
+/obj/structure/cable,
+/obj/machinery/shower{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitebluecorner";
+ tag = "icon-whitebluecorner"
+ },
+/area/medical/surgery1)
+"yeB" = (
+/obj/effect/landmark/start{
+ name = "Cyborg"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"yeE" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/fitness)
+"yeI" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/vip)
+"yeK" = (
+/obj/machinery/door/poddoor{
+ id_tag = "chapelgun";
+ name = "Chapel Launcher Door";
+ protected = 0
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/chapel/main)
+"yeL" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"yeN" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "PermaLockdown";
+ name = "Perma Lockdown"
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"yeQ" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/siberia)
+"yff" = (
+/obj/machinery/bodyscanner,
+/obj/effect/decal/warning_stripes/blue/hollow,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/sleeper)
+"yfm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"yfp" = (
+/obj/machinery/pipedispenser,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/eastsouthwest,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/maintenance/electrical)
+"yfs" = (
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/library/abandoned)
+"yfD" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/plasteel,
+/area/bridge/vip)
+"yfG" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"yfK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"yfQ" = (
+/obj/machinery/suit_storage_unit/engine,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering Storage 2";
+ dir = 6;
+ network = list("Engineering","SS13")
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/hardsuitstorage)
+"ygb" = (
+/turf/simulated/wall,
+/area/hallway/secondary/exit)
+"ygf" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"ygy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance{
+ name = "Gambling Den"
+ },
+/obj/structure/barricade/wooden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/gambling_den)
+"ygC" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/ai_monitored/storage/eva)
+"ygD" = (
+/obj/machinery/dnaforensics,
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/security/detectives_office)
+"ygK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/port)
+"ygQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint)
+"ygS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurple";
+ tag = "icon-whitepurple (WEST)"
+ },
+/area/medical/research/restroom)
+"yhb" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f6"
+ },
+/area/shuttle/pod_4)
+"yhc" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"yhg" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 4
+ },
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_f10"
+ },
+/area/shuttle/pod_4)
+"yhz" = (
+/obj/structure/rack{
+ dir = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/port{
+ name = "Brig Maintenance"
+ })
+"yhA" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/brig)
+"yhG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay)
+"yhL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/security/hos)
+"yhO" = (
+/obj/machinery/light/small,
+/obj/effect/decal/warning_stripes/southwest,
+/obj/item/radio/intercom{
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing)
+"yhS" = (
+/obj/structure/sign/securearea,
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall/r_wall,
+/area/toxins/mixing)
+"yhX" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard{
+ name = "Engineering Maintenance"
+ })
+"yhY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/toxins/server)
+"yhZ" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Civilian"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/hallway/secondary/exit)
+"yio" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/gateway)
+"yiu" = (
+/obj/machinery/porta_turret,
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/aisat)
+"yiA" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/construction/hallway)
+"yiC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central/sw)
+"yiZ" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/chapel/main)
+"yjn" = (
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/simulated/floor/plating,
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"yjo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"yjq" = (
+/obj/structure/table/reinforced,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel,
+/area/toxins/lab)
+"yjv" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkblue"
+ },
+/area/construction/hallway)
+"yjA" = (
+/obj/structure/particle_accelerator/particle_emitter/left{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engine/engineering)
+"yjC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/bluegrid{
+ icon_state = "dark";
+ name = "Mainframe Floor";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/toxins/server)
+"yjD" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/firealarm{
+ pixel_y = -28
+ },
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Detective's Office";
+ dir = 1;
+ network = list("SS13","Security")
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"yjG" = (
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"yjJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/execution)
+"ykg" = (
+/turf/simulated/wall/r_wall,
+/area/security/prison/cell_block/A)
+"yko" = (
+/obj/machinery/optable,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/autopsy_scanner,
+/obj/item/scalpel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/medical/morgue)
+"ykx" = (
+/turf/simulated/wall/r_wall,
+/area/assembly/robotics)
+"yky" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/structure/closet/secure_closet/security,
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/security/customs)
+"ykz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "robotics_solar_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "robotics_solar_airlock";
+ pixel_y = -25;
+ req_access_txt = "13";
+ tag_airpump = "robotics_solar_pump";
+ tag_chamber_sensor = "robotics_solar_sensor";
+ tag_exterior_door = "robotics_solar_outer";
+ tag_interior_door = "robotics_solar_inner"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "robotics_solar_sensor";
+ pixel_x = 12;
+ pixel_y = -25
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/portsolar)
+"ykI" = (
+/obj/structure/cable,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "Interrogation"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "Interrogation"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "Interrogation"
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "Interrogation"
+ },
+/turf/simulated/floor/plating,
+/area/security/interrogation)
+"ykR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/command{
+ name = "Server Room";
+ req_access = null;
+ req_access_txt = "30"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/toxins/server)
+"ykW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "darkbluefull"
+ },
+/area/turret_protected/aisat)
+"ylm" = (
+/obj/structure/table/wood,
+/obj/item/clothing/under/soviet,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/maintenance/fsmaint)
+"ylo" = (
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "Perma22";
+ name = "Third Cell Perma Bolts";
+ normaldoorcontrol = 1;
+ pixel_x = 38;
+ pixel_y = 24;
+ req_access_txt = "2";
+ specialfunctions = 4
+ },
+/obj/machinery/door_control{
+ desiredstate = 1;
+ id = "Perma21";
+ name = "Third Cell Brig Bolts";
+ normaldoorcontrol = 1;
+ pixel_x = 26;
+ pixel_y = 24;
+ req_access_txt = "2";
+ specialfunctions = 4
+ },
+/obj/machinery/flasher_button{
+ id = "Perma2";
+ layer = 4;
+ name = "Prison Flasher";
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkred"
+ },
+/area/security/permabrig)
+"ylv" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "blue"
+ },
+/area/crew_quarters/courtroom)
+"ylx" = (
+/turf/space,
+/area/shuttle/gamma/station)
+"ylF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/aisat/maintenance{
+ name = "\improper AI Satellite Service"
+ })
+"ylJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/morgue)
+"ylM" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop)
+"ylQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom{
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/aft)
+"ylW" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/plating,
+/area/maintenance/fsmaint2{
+ name = "Tourist Area Maintenance"
+ })
+
+(1,1,1) = {"
aaa
aaa
aaa
@@ -133586,7 +134857,7 @@ aaa
aaa
aaa
"}
-(4,1,1) = {"
+(2,1,1) = {"
aaa
aaa
aaa
@@ -133843,7 +135114,7 @@ aaa
aaa
aaa
"}
-(5,1,1) = {"
+(3,1,1) = {"
aaa
aaa
aaa
@@ -134100,7 +135371,7 @@ aaa
aaa
aaa
"}
-(6,1,1) = {"
+(4,1,1) = {"
aaa
aaa
aaa
@@ -134357,7 +135628,7 @@ aaa
aaa
aaa
"}
-(7,1,1) = {"
+(5,1,1) = {"
aaa
aaa
aaa
@@ -134614,7 +135885,7 @@ aaa
aaa
aaa
"}
-(8,1,1) = {"
+(6,1,1) = {"
aaa
aaa
aaa
@@ -134871,7 +136142,7 @@ aaa
aaa
aaa
"}
-(9,1,1) = {"
+(7,1,1) = {"
aaa
aaa
aaa
@@ -135128,7 +136399,7 @@ aaa
aaa
aaa
"}
-(10,1,1) = {"
+(8,1,1) = {"
aaa
aaa
aaa
@@ -135385,7 +136656,7 @@ aaa
aaa
aaa
"}
-(11,1,1) = {"
+(9,1,1) = {"
aaa
aaa
aaa
@@ -135642,7 +136913,7 @@ aaa
aaa
aaa
"}
-(12,1,1) = {"
+(10,1,1) = {"
aaa
aaa
aaa
@@ -135899,7 +137170,7 @@ aaa
aaa
aaa
"}
-(13,1,1) = {"
+(11,1,1) = {"
aaa
aaa
aaa
@@ -136019,11 +137290,11 @@ aaa
aaa
aaa
aaa
+yhb
+fOk
+xld
aaa
aaa
-foE
-ooZ
-oTI
aaa
aaa
aaa
@@ -136156,7 +137427,7 @@ aaa
aaa
aaa
"}
-(14,1,1) = {"
+(12,1,1) = {"
aaa
aaa
aaa
@@ -136276,11 +137547,11 @@ aaa
aaa
aaa
aaa
+foE
+rqn
+foE
aaa
aaa
-jOd
-vAm
-jOd
aaa
aaa
aaa
@@ -136413,7 +137684,7 @@ aaa
aaa
aaa
"}
-(15,1,1) = {"
+(13,1,1) = {"
aaa
aaa
aaa
@@ -136532,13 +137803,13 @@ aaa
aaa
aaa
aaa
+uAX
+foE
+ooZ
+foE
+uAX
aaa
aaa
-sOQ
-jOd
-gkC
-jOd
-sOQ
aaa
aaa
aaa
@@ -136670,7 +137941,7 @@ aaa
aaa
aaa
"}
-(16,1,1) = {"
+(14,1,1) = {"
aaa
aaa
aaa
@@ -136789,13 +138060,13 @@ aaa
aaa
aaa
aaa
+uAX
+yhg
+vAm
+jOd
+uAX
aaa
aaa
-sOQ
-tOj
-heT
-eXp
-sOQ
aaa
aaa
aaa
@@ -136927,9 +138198,7 @@ aaa
aaa
aaa
"}
-(17,1,1) = {"
-aaa
-aaa
+(15,1,1) = {"
aaa
aaa
aaa
@@ -137048,11 +138317,11 @@ aaa
aaa
aaa
bvh
-iWC
-lKE
-hvi
-uYS
-iWC
+xtj
+oTI
+bdu
+wjF
+xtj
bvh
aaa
aaa
@@ -137183,10 +138452,10 @@ aaa
aaa
aaa
aaa
-"}
-(18,1,1) = {"
aaa
aaa
+"}
+(16,1,1) = {"
aaa
aaa
aaa
@@ -137297,7 +138566,7 @@ aaa
aaa
aaa
aaa
-pXS
+rTH
bvh
abj
bvh
@@ -137305,11 +138574,11 @@ bvh
abj
bvh
bvh
-sOQ
-hys
-qbE
-hys
-sOQ
+uAX
+tOj
+heT
+tOj
+uAX
bvh
bvh
abj
@@ -137440,10 +138709,10 @@ aaa
aaa
aaa
aaa
-"}
-(19,1,1) = {"
aaa
aaa
+"}
+(17,1,1) = {"
aaa
aaa
aaa
@@ -137555,25 +138824,25 @@ aaa
aaa
aaa
bvh
-xjZ
-brw
-bLU
-bLU
-brw
-bLU
-bLU
-bPC
-bDa
+jlK
+vAr
+dse
+dse
+vAr
+dse
+dse
+cZL
+uYS
bRE
-wVe
-brq
-bLU
-brw
-bLU
-brw
-bLU
-brw
-xjZ
+yjv
+lwR
+dse
+vAr
+dse
+vAr
+dse
+vAr
+jlK
bvh
aaa
aaa
@@ -137697,10 +138966,10 @@ aaa
aaa
aaa
aaa
-"}
-(20,1,1) = {"
aaa
aaa
+"}
+(18,1,1) = {"
aaa
aaa
aaa
@@ -137812,24 +139081,24 @@ aaa
aaa
aaa
abj
-csl
-bXF
-oMk
-oMk
-xZv
-oMk
-oMk
-oMk
+qUR
+dYa
+vfa
+vfa
+dxQ
+vfa
+vfa
+vfa
bRE
bRE
bRE
-oMk
-oMk
-oMk
-xZv
-oMk
-oMk
-lBn
+vfa
+vfa
+vfa
+dxQ
+vfa
+vfa
+mrV
bXR
abj
aaa
@@ -137954,19 +139223,10 @@ aaa
aaa
aaa
aaa
-"}
-(21,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
+"}
+(19,1,1) = {"
aaa
aaa
aaa
@@ -138000,6 +139260,15 @@ aaa
aaa
aaa
aaa
+ahB
+abz
+abz
+abz
+abz
+abz
+abz
+abz
+ady
aaa
aaa
aaa
@@ -138069,25 +139338,25 @@ aaa
aaa
aaa
bvh
-bgu
-kJc
-bRR
-wgX
-lyi
-wgX
+cgA
+sOt
+dtv
+wKp
+wob
+wKp
+wKp
+daj
wgX
-bwK
-uTb
bRE
-bVZ
-jba
-wgX
-lyi
-wgX
-lyi
-bwK
-kJc
-bUP
+ybH
+uWl
+wKp
+wob
+wKp
+wob
+daj
+sOt
+bUT
bvh
aaa
aaa
@@ -138211,23 +139480,10 @@ aaa
aaa
aaa
aaa
-"}
-(22,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
+"}
+(20,1,1) = {"
aaa
aaa
aaa
@@ -138257,6 +139513,19 @@ aaa
aaa
aaa
aaa
+ahB
+abz
+abz
+abz
+anx
+abz
+eRk
+ane
+aqr
+nBK
+asP
+apY
+auZ
aaa
aaa
aaa
@@ -138326,24 +139595,24 @@ aaa
aaa
aaa
bvh
-csl
-kJc
+qUR
+sOt
bXR
abj
abj
abj
abj
-csl
-yeB
+qUR
+yiA
bRE
-rpY
+xwF
bXR
abj
abj
abj
abj
-csl
-kJc
+qUR
+sOt
bXR
bvh
aaa
@@ -138468,14 +139737,10 @@ aaa
aaa
aaa
aaa
-"}
-(23,1,1) = {"
-aaa
-aaa
-aaa
-aaa
aaa
aaa
+"}
+(21,1,1) = {"
aaa
aaa
aaa
@@ -138505,15 +139770,19 @@ aaa
aaa
aaa
aaa
-acu
-abz
-abz
-abz
-abz
-abz
-abz
-abz
-acb
+anx
+afn
+aey
+asQ
+anx
+abB
+abB
+abB
+abB
+abB
+asW
+apY
+avw
aaa
aaa
aaa
@@ -138559,22 +139828,22 @@ bvh
bvh
abj
bvh
-xjZ
-brw
-bLU
-bLU
-brw
-bLU
-bLU
-brw
-bLU
-bLU
-brw
-bLU
-bLU
-bLU
-brw
-xjZ
+jlK
+vAr
+dse
+dse
+vAr
+dse
+dse
+vAr
+dse
+dse
+vAr
+dse
+dse
+dse
+vAr
+jlK
bvh
abj
bvh
@@ -138582,26 +139851,26 @@ bvh
bvh
aaa
aaa
-alW
-bgu
-kJc
-bUP
+iGw
+cgA
+sOt
+bUT
aaa
abj
aaa
aaa
cvf
cvf
-qiD
+eGC
cvf
cvf
aaa
abj
aaa
abj
-bgu
-kJc
-bUP
+cgA
+sOt
+bUT
bvh
bvh
abj
@@ -138725,8 +139994,10 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
"}
-(24,1,1) = {"
+(22,1,1) = {"
aaa
aaa
aaa
@@ -138756,21 +140027,19 @@ aaa
aaa
aaa
aaa
-acu
-abz
-abz
-abz
-abz
-abz
-abq
-aei
+anx
+akV
abB
-aeR
-afo
abB
-afS
-afV
-agr
+anx
+akn
+abB
+abB
+alL
+amV
+pqF
+apY
+afW
aaa
aaa
aaa
@@ -138809,63 +140078,63 @@ aaa
aaa
aaa
bvh
-xjZ
-brw
-bLU
-brw
-bLU
-bLU
-brw
-bPC
-bXF
-spV
-gXc
-spV
-spV
-spV
-spV
-spV
-spV
-gXc
-spV
-spV
-spV
-lBn
-bVf
-bLU
-brw
-bLU
-brw
+jlK
+vAr
+dse
+vAr
+dse
+dse
+vAr
+cZL
+dYa
+evl
+fkP
+evl
+evl
+evl
+evl
+evl
+evl
+fkP
+evl
+evl
+evl
+mrV
+dsq
+dse
+vAr
+dse
+vAr
abj
aaa
aaa
bvh
-bgu
-kJc
-bUP
+cgA
+sOt
+bUT
aaa
abj
aaa
cvf
cvf
-bRr
-bTx
-bLT
+yjn
+uty
+spv
cvf
cvf
abj
aaa
abj
-bgu
-kJc
-bVf
-bLU
-brw
-bLU
-brw
-bLU
-brw
-xjZ
+cgA
+sOt
+dsq
+dse
+vAr
+dse
+vAr
+dse
+vAr
+jlK
bvh
aaa
aaa
@@ -138982,8 +140251,10 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
"}
-(25,1,1) = {"
+(23,1,1) = {"
aaa
aaa
aaa
@@ -139013,23 +140284,21 @@ aaa
aaa
aaa
aaa
-abq
-acx
-acx
-acP
-acx
-acx
-abq
-aei
-abB
-abB
+anx
+alh
abB
+atc
+anx
+ako
+acb
abB
-afT
-afV
-ags
-aaa
+aqs
+abz
+abz
+abz
+adi
aaa
+aaq
aaa
aaa
aaa
@@ -139066,62 +140335,62 @@ aaa
aaa
aaa
abj
-csl
-bPP
-oMk
-xZv
-oMk
-oMk
-oMk
-oMk
-iof
-caV
-hae
-gzs
-bPV
-lyi
-lyi
-lyi
-lyi
-lyi
-hEs
-orI
-cZt
-bYJ
-spV
-gXc
-spV
-spV
-lBn
+qUR
+dlK
+vfa
+dxQ
+vfa
+vfa
+vfa
+vfa
+dYy
+ewS
+iGo
+fFm
+dSb
+wob
+wob
+wob
+wob
+wob
+kfX
+lin
+mbc
+diW
+evl
+fkP
+evl
+evl
+mrV
bXR
abj
bvh
bvh
-csl
-kJc
+qUR
+sOt
bXR
abj
abj
abj
cvf
-sVH
-bRs
-bTs
-bVH
-vse
+xts
+yjG
+mwf
+wkc
+hMj
cvf
cvf
abj
abj
-csl
-bRJ
-spV
-spV
-spV
-gXc
-spV
-spV
-bYm
+qUR
+dmx
+evl
+evl
+evl
+fkP
+evl
+evl
+dZj
bXR
abj
aaa
@@ -139239,8 +140508,153 @@ aaa
aaa
aaa
aaa
-"}
-(26,1,1) = {"
+aaa
+aaa
+"}
+(24,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahB
+abz
+abz
+abz
+ady
+aaa
+aaa
+aaa
+aaa
+aeP
+afo
+abB
+atM
+anx
+akt
+abB
+abB
+aqt
+anx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bvh
+cgA
+bNR
+wVe
+iGo
+wob
+wob
+iGo
+dSb
+wob
+abj
+abj
+btd
+btd
+btd
+btd
+btd
+btd
+btd
+dEP
+dEP
+iGw
+iGo
+wob
+wob
+wob
+oJo
+sOt
+dsq
+dse
+dse
+vAr
+cZL
+sOt
+tSb
+aaa
+vtK
+waQ
+cvf
+xtz
+ylF
+uwZ
+mMz
+wRU
+cvf
+cvf
+ejD
+abj
+jlK
+wob
+wKp
+wKp
+wob
+wKp
+wob
+daj
+sOt
+bUT
+bvh
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -139270,21 +140684,6 @@ aaa
aaa
aaa
aaa
-abq
-abB
-abB
-abB
-abB
-abB
-abq
-aej
-abB
-abB
-afU
-afD
-abB
-afV
-agt
aaa
aaa
aaa
@@ -139322,65 +140721,7 @@ aaa
aaa
aaa
aaa
-bvh
-bgu
-bPQ
-tzI
-hae
-lyi
-lyi
-hae
-bPV
-lyi
-abj
-abj
-btd
-btd
-btd
-btd
-btd
-btd
-btd
-cvg
-cvg
-alW
-hae
-lyi
-lyi
-lyi
-cHz
-kJc
-bVf
-bLU
-bLU
-brw
-bPC
-kJc
-fIn
aaa
-ejA
-ugi
-cvf
-kVR
-jDQ
-bTt
-rLF
-iil
-cvf
-cvf
-hkr
-abj
-xjZ
-lyi
-wgX
-wgX
-lyi
-wgX
-lyi
-bwK
-kJc
-bUP
-bvh
aaa
aaa
aaa
@@ -139426,6 +140767,8 @@ aaa
aaa
aaa
aaa
+"}
+(25,1,1) = {"
aaa
aaa
aaa
@@ -139446,6 +140789,26 @@ aaa
aaa
aaa
aaa
+abA
+acd
+abN
+ade
+anx
+abz
+abz
+abz
+abz
+abz
+abz
+agc
+abB
+anx
+abz
+aiO
+aeo
+ibN
+abz
+pvA
aaa
aaa
aaa
@@ -139485,8 +140848,65 @@ aaa
aaa
aaa
aaa
+bvh
+cgA
+bNR
+bUT
+abj
aaa
aaa
+btd
+btd
+btd
+btd
+btd
+btd
+bpo
+bpo
+bpo
+bpo
+bpo
+btd
+nsP
+dEP
+dEP
+dEP
+dEP
+dEP
+abj
+oKs
+diW
+evl
+evl
+fkP
+evl
+evl
+dYy
+tSj
+abj
+dEP
+dEP
+cvf
+xtL
+sLl
+sVH
+bRx
+bTs
+cvf
+dEP
+dEP
+wWk
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+qUR
+sOt
+bXR
+bvh
aaa
aaa
aaa
@@ -139496,8 +140916,6 @@ aaa
aaa
aaa
aaa
-"}
-(27,1,1) = {"
aaa
aaa
aaa
@@ -139520,28 +140938,8 @@ aaa
aaa
aaa
aaa
-aab
-abz
-abz
-abz
-acb
aaa
aaa
-abq
-abB
-acH
-abB
-abB
-abB
-abq
-aek
-acH
-abB
-afp
-abz
-abz
-abz
-acd
aaa
aaa
aaa
@@ -139579,65 +140977,8 @@ aaa
aaa
aaa
aaa
-bvh
-bgu
-bPQ
-bUP
-abj
aaa
aaa
-btd
-btd
-btd
-btd
-btd
-btd
-bpo
-bpo
-bpo
-bpo
-bpo
-btd
-joA
-cvg
-cvg
-cvg
-cvg
-cvg
-abj
-xWn
-bYJ
-spV
-spV
-gXc
-spV
-spV
-iof
-xYq
-abj
-cvg
-cvg
-cvf
-bPG
-bRx
-lfh
-cxN
-ccx
-cvf
-cvg
-cvg
-iAK
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-csl
-kJc
-bXR
-bvh
aaa
aaa
aaa
@@ -139683,6 +141024,8 @@ aaa
aaa
aaa
aaa
+"}
+(26,1,1) = {"
aaa
aaa
aaa
@@ -139703,100 +141046,26 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(28,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abq
-abA
-abN
-abS
-abq
-aaa
-aaa
-abq
-acy
-acI
-acQ
+abC
+afU
abB
abB
-abq
-ael
+anx
+adE
+aiX
+aeC
+aeC
+aeC
+aeJ
abB
abB
-afq
-abq
-aaa
+aiX
+akw
+abB
+abB
+aqx
+apY
+auZ
aaa
aaa
aaa
@@ -139837,11 +141106,11 @@ aaa
aaa
aaa
abj
-csl
-bPQ
+qUR
+bNR
bXR
-alW
-aVk
+iGw
+fXN
btd
btd
bpo
@@ -139855,45 +141124,45 @@ btd
btd
bpo
btd
-pyO
-snq
+kgz
+pIb
xHS
-eGd
+mth
xHS
-cvg
-cvg
+dEP
+dEP
abj
-hcA
-lyi
-lyi
-lyi
-lyi
-lyi
-rxJ
+jiQ
+wob
+wob
+wob
+wob
+wob
+twU
abj
-cvg
-cvg
-cvg
+dEP
+dEP
+dEP
cvf
-bPH
-bSr
-bTv
-nVL
-cgI
+xuq
+tjW
+kVR
+jDQ
+bTt
cvf
-cvg
-cvg
-cvg
-cvg
-cvg
-cvg
+dEP
+dEP
+dEP
+dEP
+dEP
+dEP
aaa
abj
aaa
abj
-bgu
-kJc
-bUP
+cgA
+sOt
+bUT
abj
aaa
aaa
@@ -140010,10 +141279,10 @@ aaa
aaa
aaa
aaa
-"}
-(29,1,1) = {"
aaa
aaa
+"}
+(27,1,1) = {"
aaa
aaa
aaa
@@ -140034,30 +141303,30 @@ aaa
aaa
aaa
aaa
-abr
+abC
+abD
+acu
abB
+adn
abB
-abT
-abq
-abz
-abz
-abz
-abz
-abz
-abz
-adj
-adA
-abq
-abz
-aeD
-aeS
-abz
-abz
-abz
acb
+abB
+abB
+abB
+abB
+abB
+abB
+abB
+abB
+abB
+abB
+acH
+apY
+avw
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -140094,9 +141363,9 @@ aaa
aaa
aaa
bvh
-bgu
-igS
-bUP
+cgA
+bPT
+bUT
abj
aaa
btd
@@ -140108,49 +141377,49 @@ btd
btd
btd
btd
-qBC
+hvg
btd
btd
btd
btd
btd
-wRH
+gxg
btd
xHS
-lLb
-cvg
-cvg
-cvg
-cvg
-cvg
-cvg
-cvg
-cvg
-cvg
-cvg
-cvg
-nXE
+nQv
+dEP
+dEP
+dEP
+dEP
+dEP
+dEP
+dEP
+dEP
+dEP
+dEP
+dEP
+vtR
xHS
-sBL
-uiu
-bTx
+wJC
+xuL
+uty
+yeB
+dcS
lfh
-bVL
-chu
-sBL
-xHS
-cvg
-cvg
-nSf
-iXx
-cvg
-cvg
+cxN
+iDS
+dEP
+dEP
+xIm
+kEj
+dEP
+dEP
abj
aaa
abj
-bgu
-pOP
-bUP
+cgA
+cwK
+bUT
bvh
bvh
aaa
@@ -140267,10 +141536,10 @@ aaa
aaa
aaa
aaa
-"}
-(30,1,1) = {"
aaa
aaa
+"}
+(28,1,1) = {"
aaa
aaa
aaa
@@ -140291,27 +141560,27 @@ aaa
aaa
aaa
aaa
-abs
abC
+abF
abB
+adg
+anx
+adE
abB
-abq
-acm
-acs
-acs
-acs
-acs
-acR
-abB
+aeC
+aeC
+aeC
+abs
+acI
abB
-adS
-aem
abB
+dLB
abB
-afr
abB
-afV
-agr
+aqx
+apY
+afW
+aaa
aaa
aaa
aaa
@@ -140351,63 +141620,63 @@ aaa
aaa
bvh
bvh
-bgu
-bPQ
-bUP
-bPT
+cgA
+bNR
+bUT
+ccx
btd
btd
bpo
btd
btd
-wTs
-fzq
-brs
-iXK
+exV
+flo
+fFw
+goS
+gQS
sci
-byd
-tgH
-bzD
-pWK
-fGt
-wPU
-bfi
+ieY
+dTo
+jqE
+khy
+dXH
+pyO
btd
-snq
+pIb
xHS
-tFR
-eGq
+ftG
+oKS
xHS
-snq
-tFR
-pyO
+pIb
+ftG
+kgz
xHS
-eAJ
-snq
-snq
-pyO
-snq
+sEG
+pIb
+pIb
+kgz
+pIb
xHS
cvf
cvf
-bUD
-hXj
-bVM
+qXH
+bPH
+bSr
cvf
cvf
-uvs
+doZ
xHS
-mcz
+wJR
xHS
-snq
-kAF
-cvg
-cvg
-wAM
+pIb
+vNP
+dEP
+dEP
+kNO
abj
-csl
-kJc
-lwR
+qUR
+sOt
+tqu
abj
bvh
bvh
@@ -140524,10 +141793,10 @@ aaa
aaa
aaa
aaa
-"}
-(31,1,1) = {"
aaa
aaa
+"}
+(29,1,1) = {"
aaa
aaa
aaa
@@ -140548,29 +141817,29 @@ aaa
aaa
aaa
aaa
-abs
-abD
-abO
-abB
+abG
+acd
acc
abB
-abB
-abB
-abB
-abB
-abB
-abB
-abB
-abB
-abB
-abB
-abB
-afs
-afE
-afV
-ags
+anx
+abz
+abz
+abz
+abz
+abz
+abz
+agf
+ahw
+axw
+abz
+alD
+ano
+iLk
+abz
+pDS
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -140608,37 +141877,37 @@ aaa
abj
abj
abj
-bzw
-bPQ
+dew
+bNR
bXR
abj
btd
bpo
bpo
btd
-mYA
-rHq
-bhK
-bhK
-bhK
-pPu
-bhK
-bhK
-bhK
-cNA
-eoB
-rZe
-xUL
+dYC
+eyI
+qBC
+qBC
+qBC
+gRb
+qBC
+qBC
+qBC
+jqY
+khY
+liZ
+eEK
btd
qni
qni
qni
qni
-wtk
+jCN
qni
-qtK
+uCM
qni
-wtk
+jCN
qni
qni
qni
@@ -140648,8 +141917,8 @@ bJW
cvf
cvf
cvf
-bTy
-bVN
+bRr
+bTx
cvf
cvf
qrT
@@ -140662,11 +141931,11 @@ qrT
qrT
aaa
abj
-gtf
-nTn
-uWl
-brq
-xjZ
+hDH
+fLw
+eTv
+lwR
+jlK
abj
aaa
aaa
@@ -140781,8 +142050,10 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
"}
-(32,1,1) = {"
+(30,1,1) = {"
aaa
aaa
aaa
@@ -140803,29 +142074,27 @@ aaa
aaa
aaa
aaa
+aix
+abz
+abz
+abz
+adi
aaa
aaa
-abs
-abE
-abB
-abU
-abq
-acn
-act
-act
-act
-act
-abP
-adk
-abB
-abB
-abB
-abB
+aaa
+aaa
+anx
+aft
+afq
+afY
+anx
+akA
abB
-afr
abB
-afV
-agt
+aqz
+anx
+aaa
+aaa
aaa
aaa
aaa
@@ -140863,66 +142132,66 @@ aaa
aaa
aaa
bvh
-xjZ
-bPC
-bDa
-bRw
-bVf
+jlK
+cZL
+uYS
+cCD
+dsq
abj
btd
bpo
btd
btd
-bXG
-caX
-byd
-byf
-byf
-byf
-byf
-byd
-cqM
-wYX
+dYO
+ezj
+sci
+kPn
+kPn
+kPn
+dqD
+sci
+dHx
+jrq
btd
-xWr
-gCI
+eBy
+fGt
btd
qni
-rhX
-bEF
-pkf
-rhX
-rhX
-bEF
-rhX
-rhX
-jZL
-bEF
-rhX
+tFR
+oIV
+vFr
+tFR
+tFR
+oIV
+tFR
+tFR
+sEV
+oIV
+tFR
qni
bJW
-tTR
-qNP
-vyN
-kpV
-xEr
-bVI
-qNP
-pEt
+waS
+yiu
+xvs
+fKJ
+uxy
+bUD
+yiu
+xCj
qrT
qrT
qrT
-qzl
-mzI
-imX
+hdx
+vYr
+nIa
qrT
qrT
qrT
-vdG
-bDa
+llL
+uYS
bRE
-oUQ
-wVe
+aof
+yjv
bXR
bvh
aaa
@@ -141038,8 +142307,10 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
"}
-(33,1,1) = {"
+(31,1,1) = {"
aaa
aaa
aaa
@@ -141062,28 +142333,26 @@ aaa
aaa
aaa
aaa
-abt
-abF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aeQ
abB
+afs
+ade
+anx
+akC
abB
-abq
-abz
-abz
-acv
-abz
-abz
-acS
-adl
-adB
-abq
-abz
-aeE
-aeT
+abB
+alV
abz
abz
abz
-acd
-aaa
+ady
aaa
aaa
aaa
@@ -141120,67 +142389,67 @@ aaa
aaa
aaa
bvh
-csl
-bnM
-bJO
+qUR
+cZQ
+deA
bRE
-bVs
+dsw
bXR
btd
bpo
btd
-bWc
-bXL
-caY
-cmx
-bpm
-cpd
-cqK
-umy
-bwI
-cMc
-dqC
-bmr
-qYr
-iWe
+dTl
+dhS
+cBK
+mYA
+rHq
+gpE
+gRY
+dHA
+igc
+iDr
+dQd
+dYl
+jlk
+eoB
btd
qni
-xdo
-nUs
-kjC
-lke
-lke
-lke
-lke
-lke
-lke
-lke
-nEP
+nQG
+opF
+oLb
+wtk
+wtk
+wtk
+wtk
+wtk
+wtk
+wtk
+tSD
qni
bJW
-lVO
-qcd
-bPM
-bRy
-bTA
-bVO
-qcd
-iox
+wbl
+bTy
+xvG
+gjm
+xFt
+wna
+bTy
+obc
qrT
-eaH
-ceL
-cgA
-ccU
-fIH
-sOI
+tQX
+jfj
+heF
+pOg
+jlj
+qYG
qrT
qrT
-csl
-vFe
+qUR
+wsK
bRE
-snJ
-bVZ
-bUP
+uwP
+ybH
+bUT
bvh
aaa
aaa
@@ -141295,8 +142564,10 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
"}
-(34,1,1) = {"
+(32,1,1) = {"
aaa
aaa
aaa
@@ -141319,28 +142590,26 @@ aaa
aaa
aaa
aaa
-abq
-abF
-abP
-abV
-abq
aaa
aaa
aaa
aaa
-abq
-acT
-adm
-adC
-abq
-aen
-abB
-abB
-aft
-abq
aaa
aaa
aaa
+aeS
+abB
+afs
+abB
+anx
+akG
+abB
+abB
+abB
+aiX
+abB
+apY
+auZ
aaa
aaa
aaa
@@ -141377,66 +142646,66 @@ aaa
aaa
aaa
bvh
-bgu
+cgA
+wgX
+dht
uTb
-bJP
-hOy
-bVZ
+ybH
bXR
btd
bpo
btd
-bzD
-bXL
-dqC
-xhy
-gbp
-xBE
-lzW
+dTo
+dhS
+dQd
+bXG
+fGE
+qKj
+gSG
btd
btd
-bBg
-cnY
-wmD
-tkg
-bmp
-bnQ
-tYM
-tCX
-tCX
-iwT
-tCX
-tCX
-tCX
-tCX
-tCX
-qPH
-bED
-tCX
-bLO
-ngW
-rUs
-iUR
-iUR
-bTB
-wGN
-bVP
-bXJ
-cjv
+iFw
+dPJ
+cqM
+ljn
+eDD
+xWr
+mGx
+rhX
+rhX
+jZL
+rhX
+rhX
+rhX
+rhX
+rhX
+sGz
+nuj
+rhX
+uHl
+vvz
+wbx
+tTR
+tTR
+qZG
+vyN
+kpV
+xEr
+sNY
qrT
qrT
-vFY
-ccU
-chV
-mjG
-cnV
+vdz
+pOg
+cRz
+qzl
+uWG
qrT
qrT
-csl
+qUR
+wgX
uTb
-hOy
-snJ
-bVZ
+uwP
+ybH
bXR
bvh
aaa
@@ -141552,8 +142821,10 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
"}
-(35,1,1) = {"
+(33,1,1) = {"
aaa
aaa
aaa
@@ -141576,31 +142847,29 @@ aaa
aaa
aaa
aaa
-aac
-abz
-abz
-abz
-acd
aaa
aaa
aaa
aaa
-acJ
-acT
-adm
-adC
-abq
-aeo
-acH
-abB
-afu
-abz
-abz
-abz
-acb
aaa
aaa
aaa
+aeT
+aft
+aoX
+afY
+anx
+akJ
+abB
+abB
+abB
+abB
+abB
+apY
+avw
+aaq
+aaa
+aaa
aaa
aaa
aaa
@@ -141634,67 +142903,67 @@ aaa
aaa
aaa
abj
-csl
-uTb
-bJQ
+qUR
+wgX
+bEm
bRE
-lJr
-rSH
+dsQ
+cHH
btd
bpo
btd
+dTC
+dhO
xFk
-ngy
-qKK
btd
-cpb
-pgv
-oGg
-bmq
+cSF
+cmx
+bpm
+cpd
btd
-bpq
-jlk
-muo
-rOY
-kkd
-iWM
-uGu
-uGu
-uTT
-krO
-uUI
-uGu
-gDd
-uGu
-uUI
-njz
-cRN
-uGu
-uGu
-jTa
-bTF
-bTF
-bSo
-bRA
-bTC
-bVQ
-cjF
-cjF
-ceN
-iXX
-ceN
-wek
-fBl
-eHJ
-tYG
-lhS
+dJS
+bwI
+dra
+dYj
+bmr
+qYr
+oXx
+oXx
+nEP
+xdo
+nUs
+oXx
+qiU
+oXx
+nUs
+sGJ
+txk
+oXx
+oXx
+vwq
+lVO
+lVO
+bVO
+qcd
+bPM
+bRy
+bTA
+bTA
+wRH
+dxt
+wRH
+iox
+ceL
+pXf
+hKe
+fIH
qrT
-jYY
-fYB
-oEb
-nbH
-bVZ
-bUP
+fKE
+xUD
+xTd
+mpn
+ybH
+bUT
abj
aaa
aaa
@@ -141809,10 +143078,10 @@ aaa
aaa
aaa
aaa
-"}
-(36,1,1) = {"
aaa
aaa
+"}
+(34,1,1) = {"
aaa
aaa
aaa
@@ -141842,19 +143111,19 @@ aaa
aaa
aaa
aaa
-acK
-acT
-adn
-adD
-abq
-aep
-abB
-abB
-abB
-abB
+aix
+abz
+abz
+abz
+anx
+abz
+atO
+atO
+atO
+atO
+atO
+apY
afW
-afV
-agr
aaa
aaa
aaa
@@ -141890,90 +143159,92 @@ aaa
aaa
aaa
aaa
-bvh
-bgu
-uTb
-bJX
-hOy
-bVZ
-bXR
-btd
-bpo
-btd
-bzD
-bXL
-ccW
-btd
-hnX
-lNO
-fxJ
-btd
-xhy
-bvv
-cEJ
-pbg
-vzz
-uxy
-bBf
-gRL
-vFr
-ibf
-oIV
-vFr
-vFr
-vFr
-vFr
-vFr
-glt
-vFr
-vFr
-qJQ
-ggX
-qrV
-bPL
-bPL
-bTD
-yiu
-bVR
-bXJ
-bZh
-qrT
-qrT
-vFY
-ccU
-chW
-mjG
-cKl
-qVm
-qrT
-csl
-uTb
-hOy
-snJ
-bVZ
-bXR
-bvh
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+bvh
+cgA
+wgX
+xjZ
+uTb
+ybH
+bXR
+btd
+bpo
+btd
+dTo
+dhS
+eAm
+btd
+dhI
+xhy
+gbp
+btd
+bXG
+iFO
+dPT
+bBg
+cnY
+wmD
+tkg
+bmp
+owm
+tYM
+oLC
+owm
+owm
+owm
+owm
+owm
+sHI
+owm
+owm
+uHu
+pkE
+bLO
+rUs
+rUs
+ykW
+uyQ
+bTB
+xEr
+bVP
+qrT
+qrT
+vdz
+pOg
+wek
+qzl
+mzI
+mjG
+qrT
+qUR
+wgX
+uTb
+uwP
+ybH
+bXR
+bvh
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -142067,7 +143338,7 @@ aaa
aaa
aaa
"}
-(37,1,1) = {"
+(35,1,1) = {"
aaa
aaa
aaa
@@ -142090,30 +143361,28 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
aaa
aaa
aaa
-acL
+aix
abz
abz
abz
-abq
-aeq
-acH
-abB
-abB
-abB
-afX
-afV
-ags
-aaa
+abz
+abz
+abz
+abz
+adi
aaa
+aaq
aaa
aaa
aaa
@@ -142148,67 +143417,67 @@ aaa
aaa
aaa
bvh
-csl
-bnP
-bJY
+qUR
+dai
+deW
bRE
-bVz
+dtd
bXR
btd
bpo
btd
-fCi
-bXL
-ceQ
-cnX
-cpc
-cpe
-cqL
-kPn
-bxZ
-cNx
-dqC
-bmr
-vCZ
-sBl
+dTM
+dhS
+cDD
+ngy
+fHi
+dAB
+cpb
+pgv
+oGg
+iFS
+dQd
+dYl
+eIw
+muo
btd
qni
-jtd
-ufZ
-uCM
-iWo
-iWo
-iWo
-iWo
-iWo
-iWo
-iWo
-lQj
+uGu
+oqw
+ihl
+uUI
+uUI
+uUI
+uUI
+uUI
+uUI
+uUI
+oAg
qni
bJW
-gsC
-skp
-uPa
-bRC
-bTE
-bVS
-skp
-pVM
+pOP
+jTa
+xvX
+tom
+bSo
+bRA
+jTa
+cjF
qrT
-uEP
-ceP
-eSz
-ccU
-mIQ
-ihB
-qVm
+iXX
+ceN
+uGh
+pOg
+fpl
+fBl
+mjG
qrT
-csl
-vFe
+qUR
+wsK
bRE
-snJ
-bVZ
-bUP
+uwP
+ybH
+bUT
bvh
aaa
aaa
@@ -142323,8 +143592,17 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
"}
-(38,1,1) = {"
+(36,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -142360,15 +143638,6 @@ aaa
aaa
aaa
aaa
-abq
-aer
-aeF
-aeU
-abB
-abB
-afY
-afV
-agt
aaa
aaa
aaa
@@ -142405,66 +143674,66 @@ aaa
aaa
aaa
bvh
-xjZ
-bwK
-bLS
-bRw
-bRR
+jlK
+daj
+dfo
+cCD
+dtv
abj
btd
bpo
btd
btd
-bYa
-chE
-byd
-bhK
-bhK
-bhK
-bhK
-byd
-bGq
-hZK
+dZh
+eBv
+sci
+qBC
+qBC
+qBC
+drM
+sci
+iGj
+dQl
btd
-ldR
-inF
+eUc
+pbg
btd
qni
-rhX
-bEF
-uwZ
-rhX
-rhX
-bEF
-rhX
-rhX
-eef
-bEF
-rhX
+tFR
+oIV
+iMk
+tFR
+tFR
+oIV
+tFR
+tFR
+sIS
+oIV
+tFR
qni
bJW
-tUT
-qNP
-ybC
-bRD
-lin
-oZd
-qNP
-ueD
+qbE
+yiu
+qrV
+fTD
+uAe
+bTD
+yiu
+eds
qrT
qrT
qrT
-iEb
-chX
-vbq
+hZa
+eIX
+fxz
qrT
-vIC
+qOo
qrT
-vdG
-wob
+llL
+sFJ
bRE
-ucJ
-gNU
+wRz
+dpQ
bXR
bvh
aaa
@@ -142580,8 +143849,10 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
"}
-(39,1,1) = {"
+(37,1,1) = {"
aaa
aaa
aaa
@@ -142613,19 +143884,17 @@ aaa
aaa
aaa
aaa
+aaq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
aaa
-acL
-abz
-abz
-abz
-abz
-abz
-abz
-abz
-acd
aaa
aaa
aaa
@@ -142664,37 +143933,37 @@ aaa
abj
abj
abj
+bEr
bNR
-bPQ
bXR
abj
btd
bpo
bpo
btd
-pAL
-bYa
-bdi
-byf
-byf
-qKj
-byf
-byf
-byf
-hjl
-xwX
-jde
-xUL
+cwF
+dZh
+dmX
+kPn
+kPn
+dqr
+kPn
+kPn
+kPn
+dUc
+kji
+lkN
+eEK
btd
qni
qni
qni
qni
-wtk
+jCN
qni
-qtK
+uCM
qni
-wtk
+jCN
qni
qni
qni
@@ -142704,8 +143973,8 @@ bJW
cvg
cvg
cvg
-bTG
-bVT
+sOI
+bRC
cvg
cvg
qrT
@@ -142715,14 +143984,14 @@ qrT
qrT
qrT
qrT
-lQJ
-pnF
+iZq
+ihB
abj
-bXm
-nTn
-xIm
-jba
-xjZ
+dUa
+fLw
+urA
+uWl
+jlK
abj
aaa
aaa
@@ -142837,10 +144106,10 @@ aaa
aaa
aaa
aaa
-"}
-(40,1,1) = {"
aaa
aaa
+"}
+(38,1,1) = {"
aaa
aaa
aaa
@@ -142921,63 +144190,63 @@ aaa
aaa
bvh
bvh
-bgu
-bPQ
-bUP
-bPT
+cgA
+bNR
+bUT
+ccx
btd
btd
bpo
btd
btd
-oPi
-xUA
-brs
-gCz
-pUb
-byd
-tQo
-gyu
-hlc
-pIb
-eyC
-bfi
+cDH
+bYa
+fFw
+gss
+gSY
+sci
+dAK
+iGM
+dQn
+bGq
+lmG
+pyO
btd
xHS
xHS
-tFR
-mey
+ftG
+wPU
xHS
-snq
-snq
-pyO
+pIb
+pIb
+kgz
xHS
-mey
-snq
-tFR
-pyO
+wPU
+pIb
+ftG
+kgz
xHS
-snq
+pIb
cvg
cvg
-bRF
-nxr
-ell
+rLv
+ybC
+bRD
cvg
cvg
-pzJ
-snq
-mcz
+wTn
+pIb
+wJR
xHS
-vQL
-xSn
-cvg
-cvg
-lhe
+wlr
+iEb
+dEP
+dEP
+tKL
abj
-csl
-kJc
-tzI
+qUR
+sOt
+wVe
abj
bvh
bvh
@@ -143094,12 +144363,10 @@ aaa
aaa
aaa
aaa
-"}
-(41,1,1) = {"
-aaa
-aaa
aaa
aaa
+"}
+(39,1,1) = {"
aaa
aaa
aaa
@@ -143135,6 +144402,7 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -143142,6 +144410,7 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -143178,9 +144447,9 @@ aaa
aaa
aaa
bvh
-bgu
-igS
-bUP
+cgA
+bPT
+bUT
abj
aaa
btd
@@ -143192,49 +144461,49 @@ btd
btd
btd
btd
-rpB
+dsV
btd
btd
btd
btd
btd
-wRH
+gxg
btd
-snq
-xuF
-cvg
-cvg
-cvg
-cvg
-cvg
-cvg
-cvg
-cvg
-cvg
-cvg
-cvg
-nDJ
-snq
-mcz
-iAw
-bVj
-bTI
-bVU
-qiB
-mcz
-snq
-cvg
-cvg
-bPA
-six
-cvg
-cvg
+pIb
+nRi
+dEP
+dEP
+dEP
+dEP
+dEP
+dEP
+dEP
+dEP
+dEP
+dEP
+dEP
+vwD
+pIb
+wJR
+xxy
+dns
+uuK
+wns
+bTG
+wJR
+pIb
+dEP
+dEP
+wmI
+mXt
+dEP
+dEP
abj
aaa
abj
-bgu
-pOP
-bUP
+cgA
+cwK
+bUT
bvh
bvh
aaa
@@ -143351,10 +144620,10 @@ aaa
aaa
aaa
aaa
-"}
-(42,1,1) = {"
aaa
aaa
+"}
+(40,1,1) = {"
aaa
aaa
aaa
@@ -143435,11 +144704,11 @@ aaa
aaa
aaa
abj
-csl
-bPQ
+qUR
+bNR
bXR
-alW
-vAr
+iGw
+chW
btd
btd
bpo
@@ -143454,44 +144723,44 @@ btd
bpo
btd
xHS
-tFR
-snq
-mey
+ftG
+pIb
+wPU
xHS
-cvg
-cvg
+dEP
+dEP
abj
-frL
-brw
-brw
-brw
-brw
-brw
-brw
+pjh
+vAr
+vAr
+vAr
+vAr
+vAr
+vAr
abj
+dEP
+dEP
+dEP
cvg
+xyJ
+tst
+teF
+tDB
+uKR
cvg
-cvg
-cvg
-bQC
-bTH
-bTL
-cxS
-bXM
-cvg
-cvg
-cvg
-cvg
-cvg
-cvg
-cvg
+dEP
+dEP
+dEP
+dEP
+dEP
+dEP
aaa
abj
aaa
abj
-bgu
-kJc
-bUP
+cgA
+sOt
+bUT
abj
aaa
aaa
@@ -143608,10 +144877,10 @@ aaa
aaa
aaa
aaa
-"}
-(43,1,1) = {"
aaa
aaa
+"}
+(41,1,1) = {"
aaa
aaa
aaa
@@ -143692,9 +144961,9 @@ aaa
aaa
aaa
bvh
-bgu
-bPQ
-bUP
+cgA
+bNR
+bUT
abj
aaa
aaa
@@ -143710,35 +144979,35 @@ bpo
bpo
bpo
btd
-hAX
-cvg
-cvg
-cvg
-cvg
-cvg
+kjS
+dEP
+dEP
+dEP
+dEP
+dEP
abj
-csl
-bXF
-oMk
-oMk
-qvN
-oMk
-oMk
-lBn
+qUR
+dYa
+vfa
+vfa
+dyk
+vfa
+vfa
+mrV
bXR
abj
+dEP
+dEP
cvg
-cvg
-cvg
-bQD
-dPa
-bTK
-vmX
-bXN
+qKK
+mcz
+iAw
+bVj
+bTI
cvg
cvg
cvg
-uKb
+mwH
abj
abj
abj
@@ -143746,8 +145015,8 @@ abj
abj
abj
abj
-csl
-kJc
+qUR
+sOt
bXR
bvh
aaa
@@ -143865,8 +145134,69 @@ aaa
aaa
aaa
aaa
-"}
-(44,1,1) = {"
+aaa
+aaa
+"}
+(42,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -143887,7 +145217,65 @@ aaa
aaa
aaa
aaa
+bvh
+cgA
+bNR
+dtA
+dxZ
+vAr
+vAr
+vAr
+dTT
+vAr
+abj
+abj
+btd
+btd
+btd
+btd
+btd
+btd
+btd
+dEP
+dEP
+abj
+vAr
+vAr
+vAr
+vAr
+dew
+bNR
+uWl
+wKp
+wKp
+wob
+daj
+sOt
+bXR
aaa
+vxh
+wck
+cvg
+xyS
+tst
+teF
+tDB
+nxr
+cvg
+cvg
+ufG
+abj
+jlK
+vAr
+dse
+dse
+vAr
+dse
+vAr
+hDH
+sOt
+bUT
+bvh
aaa
aaa
aaa
@@ -143948,65 +145336,7 @@ aaa
aaa
aaa
aaa
-bvh
-bgu
-bPQ
-wKp
-bVV
-brw
-brw
-brw
-bUJ
-brw
-abj
-abj
-btd
-btd
-btd
-btd
-btd
-btd
-btd
-cvg
-cvg
-abj
-brw
-brw
-brw
-brw
-bzw
-bPQ
-jba
-wgX
-wgX
-lyi
-bwK
-kJc
-bXR
aaa
-tuZ
-oVF
-cvg
-bRt
-bTH
-bTL
-cxS
-bXO
-cvg
-cvg
-hkr
-abj
-xjZ
-brw
-bLU
-bLU
-brw
-bLU
-brw
-gtf
-kJc
-bUP
-bvh
aaa
aaa
aaa
@@ -144063,6 +145393,8 @@ aaa
aaa
aaa
aaa
+"}
+(43,1,1) = {"
aaa
aaa
aaa
@@ -144122,8 +145454,6 @@ aaa
aaa
aaa
aaa
-"}
-(45,1,1) = {"
aaa
aaa
aaa
@@ -144144,6 +145474,65 @@ aaa
aaa
aaa
aaa
+abj
+qUR
+dmx
+vfa
+dyk
+vfa
+vfa
+vfa
+vfa
+dZj
+eER
+dxZ
+fHS
+dTT
+vAr
+vAr
+vAr
+vAr
+vAr
+klv
+dEZ
+mbT
+dYa
+vfa
+dyk
+evl
+vfa
+pjr
+bXR
+bvh
+bvh
+abj
+qUR
+sOt
+bXR
+abj
+abj
+abj
+cvg
+xAp
+tuZ
+bQD
+dPa
+bTK
+cvg
+cvg
+abj
+abj
+qUR
+dlK
+evl
+evl
+evl
+fmC
+evl
+evl
+pjr
+bXR
+abj
aaa
aaa
aaa
@@ -144205,65 +145594,6 @@ aaa
aaa
aaa
aaa
-abj
-csl
-bRJ
-oMk
-qvN
-oMk
-oMk
-oMk
-oMk
-bYm
-chS
-bVV
-ifS
-bUJ
-brw
-brw
-brw
-brw
-brw
-bUJ
-vDg
-wpL
-bXF
-oMk
-qvN
-spV
-oMk
-iOQ
-bXR
-bvh
-bvh
-abj
-csl
-kJc
-bXR
-abj
-abj
-abj
-cvg
-bPN
-cwA
-cxM
-cxU
-bXP
-cvg
-cvg
-abj
-abj
-csl
-bPP
-spV
-spV
-spV
-wFb
-spV
-spV
-iOQ
-bXR
-abj
aaa
aaa
aaa
@@ -144320,6 +145650,8 @@ aaa
aaa
aaa
aaa
+"}
+(44,1,1) = {"
aaa
aaa
aaa
@@ -144379,8 +145711,6 @@ aaa
aaa
aaa
aaa
-"}
-(46,1,1) = {"
aaa
aaa
aaa
@@ -144401,11 +145731,65 @@ aaa
aaa
aaa
aaa
+bvh
+jlK
+wob
+wKp
+wob
+wKp
+wKp
+wob
+dUa
+diW
+evl
+fmC
+evl
+evl
+evl
+evl
+evl
+evl
+fmC
+evl
+evl
+evl
+dYy
+uWl
+wKp
+wob
+wKp
+wob
+abj
aaa
aaa
+abj
+cgA
+sOt
+bUT
aaa
+abj
aaa
+cvg
+cvg
+rOG
+ybC
+sCL
+cvg
+cvg
+abj
aaa
+abj
+cgA
+sOt
+uWl
+wKp
+wob
+wKp
+wob
+wKp
+wob
+jlK
+bvh
aaa
aaa
aaa
@@ -144462,65 +145846,11 @@ aaa
aaa
aaa
aaa
-bvh
-xjZ
-lyi
-wgX
-lyi
-wgX
-wgX
-lyi
-bXm
-bYJ
-spV
-wFb
-spV
-spV
-spV
-spV
-spV
-spV
-wFb
-spV
-spV
-spV
-iof
-jba
-wgX
-lyi
-wgX
-lyi
-abj
aaa
aaa
-abj
-bgu
-kJc
-bUP
aaa
-abj
aaa
-cvg
-cvg
-cxI
-nxr
-czo
-cvg
-cvg
-abj
aaa
-abj
-bgu
-kJc
-jba
-wgX
-lyi
-wgX
-lyi
-wgX
-lyi
-xjZ
-bvh
aaa
aaa
aaa
@@ -144577,69 +145907,8 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(47,1,1) = {"
-aaa
-aaa
+"}
+(45,1,1) = {"
aaa
aaa
aaa
@@ -144727,22 +145996,22 @@ abj
bvh
bvh
abj
-xjZ
-lyi
-wgX
-wgX
-lyi
-wgX
-wgX
-lyi
-wgX
-wgX
-lyi
-wgX
-wgX
-wgX
-lyi
-xjZ
+jlK
+wob
+wKp
+wKp
+wob
+wKp
+wKp
+wob
+wKp
+wKp
+wob
+wKp
+wKp
+wKp
+wob
+jlK
bvh
bvh
bvh
@@ -144751,25 +146020,25 @@ abj
aaa
aaa
bvh
-bgu
-kJc
-bUP
+cgA
+sOt
+bUT
aaa
abj
aaa
aaa
cvg
cvg
-bTN
+tgH
cvg
cvg
aaa
abj
aaa
abj
-bgu
-kJc
-bUP
+cgA
+sOt
+bUT
bvh
bvh
abj
@@ -144893,10 +146162,10 @@ aaa
aaa
aaa
aaa
-"}
-(48,1,1) = {"
aaa
aaa
+"}
+(46,1,1) = {"
aaa
aaa
aaa
@@ -145008,24 +146277,24 @@ aaa
aaa
aaa
bvh
-csl
-kJc
+qUR
+sOt
bXR
abj
-alW
+iGw
abj
abj
-csl
-bRK
-chw
-bVW
+qUR
+rsY
+uNi
+vpA
bXR
abj
abj
abj
abj
-csl
-kJc
+qUR
+sOt
bXR
bvh
aaa
@@ -145150,10 +146419,10 @@ aaa
aaa
aaa
aaa
-"}
-(49,1,1) = {"
aaa
aaa
+"}
+(47,1,1) = {"
aaa
aaa
aaa
@@ -145265,25 +146534,25 @@ aaa
aaa
aaa
bvh
-bgu
-kJc
-brq
-bLU
-brw
-bLU
-bLU
-bPC
-oXx
-ufq
-bVZ
-brq
-bLU
-brw
-bLU
-brw
-gtf
-kJc
-bUP
+cgA
+sOt
+lwR
+dse
+vAr
+dse
+jlK
+cZL
+pUJ
+gXh
+ybH
+lwR
+jlK
+vAr
+dse
+vAr
+hDH
+sOt
+bUT
bvh
aaa
aaa
@@ -145407,10 +146676,10 @@ aaa
aaa
aaa
aaa
-"}
-(50,1,1) = {"
aaa
aaa
+"}
+(48,1,1) = {"
aaa
aaa
aaa
@@ -145522,24 +146791,24 @@ aaa
aaa
aaa
abj
-csl
-bYJ
-oMk
-oMk
-qvN
-oMk
-oMk
-oMk
-chw
+qUR
+diW
+vfa
+vfa
+dyk
+vfa
+wKA
+vfa
+uNi
bRE
bRE
-oMk
-oMk
-oMk
-qvN
-oMk
-oMk
-iof
+vfa
+wKA
+vfa
+dyk
+vfa
+vfa
+dYy
bXR
abj
aaa
@@ -145664,10 +146933,10 @@ aaa
aaa
aaa
aaa
-"}
-(51,1,1) = {"
aaa
aaa
+"}
+(49,1,1) = {"
aaa
aaa
aaa
@@ -145779,25 +147048,25 @@ aaa
aaa
aaa
bvh
-xjZ
-lyi
-wgX
-wgX
-lyi
-wgX
-wgX
-bwK
-oXx
+jlK
+wob
+wKp
+wKp
+wob
+wKp
+wKp
+daj
+pUJ
bRE
-bVZ
-jba
-wgX
-lyi
-wgX
-lyi
-wgX
-lyi
-xjZ
+ybH
+uWl
+wKp
+wob
+wKp
+wob
+wKp
+wob
+jlK
bvh
aaa
aaa
@@ -145921,10 +147190,10 @@ aaa
aaa
aaa
aaa
-"}
-(52,1,1) = {"
aaa
aaa
+"}
+(50,1,1) = {"
aaa
aaa
aaa
@@ -146043,10 +147312,10 @@ bvh
bvh
bvh
abj
-csl
+qUR
+jxQ
wWu
-hOy
-lJr
+dsQ
bXR
abj
bvh
@@ -146178,10 +147447,10 @@ aaa
aaa
aaa
aaa
-"}
-(53,1,1) = {"
aaa
aaa
+"}
+(51,1,1) = {"
aaa
aaa
aaa
@@ -146300,10 +147569,10 @@ aaa
abj
aaa
aaa
-bgu
-ifd
-maO
-bVZ
+cgA
+nWK
+uEP
+ybH
bXR
aaa
bvh
@@ -146435,10 +147704,10 @@ aaa
aaa
aaa
aaa
-"}
-(54,1,1) = {"
aaa
aaa
+"}
+(52,1,1) = {"
aaa
aaa
aaa
@@ -146557,10 +147826,10 @@ aaa
abj
gum
gum
-egm
-lQm
-chw
-bVZ
+xAs
+mzX
+uNi
+ybH
bXR
aaa
bvh
@@ -146616,6 +147885,15 @@ aaa
aaa
aaa
aaa
+abj
+abj
+fps
+fps
+fps
+fps
+fps
+abj
+abj
aaa
aaa
aaa
@@ -146655,14 +147933,7 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+mQL
aaa
aaa
aaa
@@ -146693,9 +147964,7 @@ aaa
aaa
aaa
"}
-(55,1,1) = {"
-aaa
-aaa
+(53,1,1) = {"
aaa
aaa
aaa
@@ -146811,13 +148080,13 @@ bCI
abj
abj
acF
-fhD
-bPU
-muS
-kmU
-bRO
-mCe
-bVZ
+vxO
+wcl
+wLE
+xBE
+puA
+uOm
+ybH
bXR
abj
abj
@@ -146873,13 +148142,15 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abj
+fps
+fps
+gOO
+mal
+gOO
+fps
+fps
+abj
aaa
aaa
aaa
@@ -146950,9 +148221,7 @@ aaa
aaa
aaa
"}
-(56,1,1) = {"
-aaa
-aaa
+(54,1,1) = {"
aaa
aaa
aaa
@@ -147072,9 +148341,9 @@ aaa
gum
gum
gum
-owm
-chw
-iuG
+sAI
+uNi
+ufn
bXR
aaa
bvh
@@ -147128,6 +148397,19 @@ aaa
aaa
aaa
aaa
+abj
+abj
+fps
+fps
+gOO
+gOO
+nlk
+gOO
+gOO
+fps
+fps
+abj
+abj
aaa
aaa
aaa
@@ -147178,17 +148460,6 @@ aaa
aaa
aaa
aaa
-dWd
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -147207,10 +148478,7 @@ aaa
aaa
aaa
"}
-(57,1,1) = {"
-aaa
-aaa
-aaa
+(55,1,1) = {"
aaa
aaa
aaa
@@ -147283,6 +148551,7 @@ aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -147328,11 +148597,11 @@ acF
abj
abj
abj
-bPW
-bRP
-gPR
-bWa
-bXS
+qVm
+muS
+kmU
+bRO
+kWh
abj
bvh
abj
@@ -147385,6 +148654,19 @@ aaa
aaa
aaa
aaa
+abj
+fps
+fps
+tcD
+gOO
+tja
+jIc
+pYt
+gOO
+tcD
+fps
+fps
+abj
aaa
aaa
aaa
@@ -147452,6 +148734,8 @@ aaa
aaa
aaa
aaa
+"}
+(56,1,1) = {"
aaa
aaa
aaa
@@ -147463,8 +148747,6 @@ aaa
aaa
aaa
aaa
-"}
-(58,1,1) = {"
aaa
aaa
aaa
@@ -147564,40 +148846,40 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+bCI
aaa
+acF
aaa
+bvh
aaa
+xBT
+kXY
+uOJ
+jXW
+wVA
aaa
+bvh
aaa
aaa
aaa
+abj
aaa
+bCI
aaa
aaa
aaa
aaa
aaa
-bCI
-abj
-bCI
aaa
-acF
aaa
-bvh
aaa
-bPX
-bRQ
-cjl
-bWb
-bXT
aaa
-bvh
aaa
aaa
aaa
-abj
aaa
-bCI
aaa
aaa
aaa
@@ -147627,6 +148909,23 @@ aaa
aaa
aaa
aaa
+abj
+abj
+fps
+fps
+tja
+jIc
+jIc
+rDp
+gOO
+nzh
+jIc
+jIc
+pYt
+fps
+fps
+abj
+abj
aaa
aaa
aaa
@@ -147692,6 +148991,8 @@ aaa
aaa
aaa
aaa
+"}
+(57,1,1) = {"
aaa
aaa
aaa
@@ -147720,8 +149021,6 @@ aaa
aaa
aaa
aaa
-"}
-(59,1,1) = {"
aaa
aaa
aaa
@@ -147796,7 +149095,38 @@ aaa
aaa
aaa
aaa
-aaZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bCI
+aaa
+bCI
+abj
+acF
+abj
+bvh
+abj
+vns
+abj
+tKX
+abj
+vns
+abj
+bvh
+bvh
+abj
+abj
+bCI
+aaa
+abj
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -147834,27 +149164,27 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-bCI
-abj
-acF
-abj
-bvh
-abj
-pNG
-abj
-uiA
abj
-pNG
abj
-bvh
-bvh
+fps
+fps
+gOO
+oFX
+gOO
+gOO
+gOO
+gOO
+gOO
+gOO
+gOO
+tni
+gOO
+fps
+fps
abj
abj
-bCI
aaa
-abj
aaa
aaa
aaa
@@ -147918,6 +149248,8 @@ aaa
aaa
aaa
aaa
+"}
+(58,1,1) = {"
aaa
aaa
aaa
@@ -147977,8 +149309,6 @@ aaa
aaa
aaa
aaa
-"}
-(60,1,1) = {"
aaa
aaa
aaa
@@ -148030,14 +149360,27 @@ aaa
aaa
aaa
aaa
+bCI
aaa
+abj
aaa
+acF
aaa
+bvh
aaa
+xCP
+tID
+tKX
+uoI
+cjl
aaa
+abj
aaa
aaa
aaa
+bCI
+abj
+bCI
aaa
aaa
aaa
@@ -148079,6 +149422,25 @@ aaa
aaa
aaa
aaa
+abj
+fps
+fps
+gOO
+gOO
+oFX
+gOO
+gOO
+uSm
+wHp
+pJm
+gOO
+gOO
+tni
+gOO
+gOO
+fps
+fps
+abj
aaa
aaa
aaa
@@ -148091,27 +149453,14 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-abj
aaa
-acF
aaa
-bvh
aaa
-bYl
-xxy
-uiA
-oWg
-oha
aaa
-abj
aaa
aaa
aaa
-bCI
-abj
-bCI
aaa
aaa
aaa
@@ -148156,6 +149505,8 @@ aaa
aaa
aaa
aaa
+"}
+(59,1,1) = {"
aaa
aaa
aaa
@@ -148222,6 +149573,13 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+bCI
+abj
+bCI
+bCI
+bCI
aaa
aaa
aaa
@@ -148234,8 +149592,6 @@ aaa
aaa
aaa
aaa
-"}
-(61,1,1) = {"
aaa
aaa
aaa
@@ -148261,15 +149617,27 @@ aaa
aaa
aaa
aaa
+abj
aaa
+bCI
aaa
+acF
aaa
+abj
aaa
+xFr
+xKT
+sPe
+iTF
+vNO
aaa
+abj
aaa
aaa
aaa
+bCI
aaa
+bCI
aaa
aaa
aaa
@@ -148311,6 +149679,25 @@ aaa
aaa
aaa
aaa
+abj
+fps
+gOO
+gOO
+tja
+rDp
+gOO
+gOO
+njv
+mal
+xWB
+gOO
+gOO
+nzh
+pYt
+gOO
+gOO
+fps
+abj
aaa
aaa
aaa
@@ -148348,27 +149735,15 @@ aaa
aaa
aaa
aaa
-abj
aaa
-bCI
aaa
-acF
aaa
-abj
aaa
-wkc
-qUh
-csr
-qUL
-oqv
aaa
-abj
aaa
aaa
aaa
-bCI
aaa
-bCI
aaa
aaa
aaa
@@ -148387,6 +149762,8 @@ aaa
aaa
aaa
aaa
+"}
+(60,1,1) = {"
aaa
aaa
aaa
@@ -148449,9 +149826,18 @@ aaa
aaa
aaa
aaa
+bCI
+bCI
+abj
+bCI
+bCI
aaa
+abj
aaa
+abj
aaa
+bCI
+bCI
aaa
aaa
aaa
@@ -148488,16 +149874,27 @@ aaa
aaa
aaa
aaa
+bCI
aaa
+bCI
aaa
+acF
aaa
-"}
-(62,1,1) = {"
+abj
aaa
+abj
+sHT
+bYl
+gkk
+abj
aaa
+abj
aaa
aaa
aaa
+bCI
+abj
+bCI
aaa
aaa
aaa
@@ -148530,6 +149927,7 @@ aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -148538,6 +149936,25 @@ aaa
aaa
aaa
aaa
+abj
+fps
+mal
+dtZ
+oFX
+gOO
+gOO
+gOO
+tni
+cCa
+oFX
+gOO
+gOO
+gOO
+tni
+hRY
+mal
+fps
+abj
aaa
aaa
aaa
@@ -148602,30 +150019,24 @@ aaa
aaa
aaa
aaa
+"}
+(61,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
-bCI
aaa
-bCI
aaa
-acF
aaa
-abj
aaa
-abj
-itZ
-gFR
-wJR
-abj
aaa
-abj
aaa
aaa
aaa
-bCI
-abj
-bCI
aaa
aaa
aaa
@@ -148643,6 +150054,7 @@ aaa
aaa
aaa
aaa
+aiZ
aaa
aaa
aaa
@@ -148671,15 +150083,18 @@ aaa
aaa
aaa
aaa
+bCI
aaa
abj
+aaa
abj
-cQY
-cQY
-cQY
-cQY
-cQY
+aaa
+boK
+bLA
+bvQ
+aaa
abj
+aaa
abj
aaa
aaa
@@ -148710,6 +150125,45 @@ aaa
aaa
aaa
aaa
+bvh
+bvh
+abj
+bvh
+bvh
+abj
+bCI
+abj
+bCI
+abj
+acF
+acF
+acF
+abj
+bvh
+abj
+tou
+abj
+bvh
+abj
+bvh
+bvh
+bvh
+abj
+bCI
+abj
+bCI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -148739,6 +150193,25 @@ aaa
aaa
aaa
aaa
+abj
+fps
+gOO
+gOO
+mka
+pJm
+gOO
+gOO
+tni
+qNR
+oFX
+gOO
+gOO
+uSm
+iwr
+gOO
+gOO
+fps
+abj
aaa
aaa
aaa
@@ -148748,8 +150221,6 @@ aaa
aaa
aaa
aaa
-"}
-(63,1,1) = {"
aaa
aaa
aaa
@@ -148805,6 +150276,8 @@ aaa
aaa
aaa
aaa
+"}
+(62,1,1) = {"
aaa
aaa
aaa
@@ -148862,41 +150335,28 @@ aaa
aaa
aaa
aaa
-bCI
-aaa
-bCI
-abj
-acF
-acF
-acF
-abj
-abj
-abj
-vFl
-abj
-bvh
-abj
-bvh
-bvh
-bvh
-abj
-abj
-aaa
-bCI
-aaa
-aaa
aaa
aaa
aaa
aaa
aaa
+bCI
aaa
+boK
+bLA
+bvQ
aaa
+boK
+aOK
+bvQ
aaa
+boK
+bLA
+bvQ
aaa
+abj
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -148922,25 +150382,48 @@ aaa
aaa
aaa
aaa
+bCI
aaa
+abj
aaa
+abj
aaa
aaa
+abj
aaa
+abj
aaa
+abj
+acF
aaa
+bvh
abj
-cQY
-cQY
-xME
-rwW
-xME
-cQY
-cQY
+toY
abj
+bvh
aaa
+bvh
aaa
+abj
+bCI
+bCI
+bCI
+bCI
+abj
+bCI
+bCI
+abj
+bCI
+bCI
+bCI
+bCI
+bCI
+bCI
+abj
+abj
+abj
aaa
+acF
aaa
aaa
aaa
@@ -148967,6 +150450,25 @@ aaa
aaa
aaa
aaa
+abj
+fRW
+fps
+gOO
+gOO
+oFX
+gOO
+gOO
+tni
+qNR
+oFX
+gOO
+gOO
+tni
+gOO
+gOO
+fps
+fRW
+abj
aaa
aaa
aaa
@@ -149005,8 +150507,6 @@ aaa
aaa
aaa
aaa
-"}
-(64,1,1) = {"
aaa
aaa
aaa
@@ -149033,6 +150533,8 @@ aaa
aaa
aaa
aaa
+"}
+(63,1,1) = {"
aaa
aaa
aaa
@@ -149095,10 +150597,21 @@ aaa
aaa
aaa
aaa
+abj
aaa
+boK
+aOK
+bvQ
aaa
+boK
+aOK
+bvQ
aaa
+boK
+aOK
+bvQ
aaa
+bCI
aaa
aaa
aaa
@@ -149119,84 +150632,70 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-abj
aaa
aaa
aaa
-acF
aaa
-bvh
aaa
-uhP
aaa
+bCI
abj
-aaa
-bvh
-aaa
-aaa
-aaa
+bCI
bCI
abj
bCI
+abj
+bCI
+bCI
+bvh
+bCI
+abj
+acF
+abj
+bvh
aaa
+rDm
aaa
+abj
aaa
+abj
aaa
+abj
aaa
aaa
+abj
aaa
aaa
aaa
+abj
aaa
aaa
aaa
+abj
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abj
aaa
aaa
aaa
aaa
abj
+acF
abj
-cQY
-cQY
-xME
-xME
-xME
-xME
-xME
-cQY
-cQY
abj
+bCI
+bCI
+bCI
abj
+bCI
+bCI
+bCI
+abj
+bCI
+bCI
+abj
+bCI
+bCI
aaa
aaa
aaa
@@ -149208,6 +150707,25 @@ aaa
aaa
aaa
aaa
+abj
+fps
+fps
+fps
+tcD
+oFX
+gOO
+gOO
+tni
+qNR
+oFX
+gOO
+gOO
+tni
+tcD
+fps
+fps
+abj
+abj
aaa
aaa
aaa
@@ -149262,16 +150780,6 @@ aaa
aaa
aaa
aaa
-"}
-(65,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -149282,6 +150790,8 @@ aaa
aaa
aaa
aaa
+"}
+(64,1,1) = {"
aaa
aaa
aaa
@@ -149344,6 +150854,21 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+boK
+aOK
+bvQ
+abj
+boK
+aOK
+bvQ
+abj
+boK
+aOK
+bvQ
+abj
+bCI
aaa
aaa
aaa
@@ -149371,30 +150896,61 @@ aaa
aaa
aaa
aaa
-aaZ
+abj
aaa
+bCI
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+acF
aaa
+abj
aaa
+rDm
aaa
+abj
+abj
+bCI
+bCI
bCI
abj
bCI
-aaa
-aaa
+bCI
+bCI
+abj
+bCI
+bCI
+bCI
+abj
+bCI
+bCI
+bCI
+abj
+bCI
+bCI
+bCI
+abj
aaa
acF
aaa
-bvh
-aaa
-uhP
+abj
aaa
-bvh
+abj
aaa
abj
aaa
+abj
aaa
+abj
aaa
abj
+abj
aaa
bCI
aaa
@@ -149408,6 +150964,24 @@ aaa
aaa
aaa
aaa
+abj
+abj
+fps
+fps
+fps
+fps
+rSa
+gOO
+tni
+qNR
+oFX
+gOO
+lXQ
+fps
+fps
+fps
+fps
+abj
aaa
aaa
aaa
@@ -149441,30 +151015,6 @@ aaa
aaa
aaa
aaa
-abj
-cQY
-cQY
-xXC
-xME
-eaJ
-eiG
-xbn
-xME
-xXC
-cQY
-cQY
-abj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -149497,6 +151047,8 @@ aaa
aaa
aaa
aaa
+"}
+(65,1,1) = {"
aaa
aaa
aaa
@@ -149519,8 +151071,6 @@ aaa
aaa
aaa
aaa
-"}
-(66,1,1) = {"
aaa
aaa
aaa
@@ -149561,10 +151111,21 @@ aaa
aaa
aaa
aaa
+bCI
aaa
+boK
+aOK
+bvQ
aaa
+boK
+aOK
+bvQ
aaa
+boK
+aOK
+bvQ
aaa
+abj
aaa
aaa
aaa
@@ -149592,17 +151153,63 @@ aaa
aaa
aaa
aaa
+bvh
aaa
+bCI
+abj
+bwN
+bwN
+bwN
+bwN
+bwN
+bwN
+bwN
+abj
+acF
+abj
+abj
+abj
+tuQ
+abj
+abj
+abj
aaa
+abj
aaa
+abj
aaa
+abj
aaa
+abj
aaa
+abj
aaa
+abj
aaa
+abj
aaa
+abj
aaa
+abj
aaa
+abj
+abj
+acF
+abj
+bCI
+bCI
+bCI
+abj
+bCI
+bCI
+bCI
+abj
+bCI
+abj
+bCI
+bCI
+abj
+abj
aaa
aaa
aaa
@@ -149615,6 +151222,23 @@ aaa
aaa
aaa
aaa
+abj
+fps
+qNR
+qNR
+jJU
+gOO
+gOO
+tni
+qNR
+oFX
+gOO
+gOO
+jJU
+qNR
+quy
+fps
+abj
aaa
aaa
aaa
@@ -149633,27 +151257,7 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-bCI
-abj
-bvh
-abj
-acF
-abj
-bvh
-abj
-vFl
-abj
-bvh
-abj
-abj
-bvh
-bvh
-abj
-bCI
-abj
-bCI
aaa
aaa
aaa
@@ -149696,27 +151300,12 @@ aaa
aaa
aaa
aaa
-abj
-abj
-cQY
-cQY
-eaJ
-eiG
-eiG
-njq
-xME
-uWf
-eiG
-eiG
-xbn
-cQY
-cQY
-abj
-abj
aaa
aaa
aaa
aaa
+"}
+(66,1,1) = {"
aaa
aaa
aaa
@@ -149776,12 +151365,24 @@ aaa
aaa
aaa
aaa
-"}
-(67,1,1) = {"
+bCI
+abj
+bCI
+bCI
aaa
+boK
+aOK
+bvQ
aaa
+abj
+bLT
+abj
aaa
+boK
+aOK
+bvQ
aaa
+abj
aaa
aaa
aaa
@@ -149796,6 +151397,7 @@ aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -149808,15 +151410,63 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+bCI
+abj
+bwN
+qTK
+cLx
+sIZ
+cLx
+cLx
+bwN
+abj
+acF
aaa
+bvh
aaa
+rDm
aaa
aaa
+bXU
+qEj
+qEj
+qEj
+bXU
+lnn
+lnn
+lnn
+bXU
+lnn
+lnn
+lnn
+bXU
+lnn
+lnn
+lnn
+bXU
+lnn
+lnn
+lnn
+bXU
aaa
+acF
aaa
+abj
aaa
+abj
+abj
+abj
aaa
+abj
+abj
+abj
aaa
+abj
+abj
+abj
+bCI
aaa
aaa
aaa
@@ -149829,6 +151479,23 @@ aaa
aaa
aaa
aaa
+abj
+lyk
+qNR
+mBE
+fps
+fps
+gOO
+tni
+qNR
+oFX
+gOO
+fps
+fps
+oFK
+qNR
+lyk
+abj
aaa
aaa
aaa
@@ -149840,7 +151507,6 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -149890,27 +151556,23 @@ aaa
aaa
aaa
aaa
-bCI
-abj
-bCI
aaa
aaa
aaa
-acF
-aaZ
-abj
aaa
-uhP
aaa
-bvh
+"}
+(67,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
-abj
aaa
aaa
aaa
-bCI
aaa
-abj
aaa
aaa
aaa
@@ -149952,25 +151614,39 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bCI
+aaa
abj
abj
-cQY
-cQY
-xME
-efA
-xME
-xME
-xME
-xME
-xME
-xME
-xME
-wCm
-xME
-cQY
-cQY
abj
abj
+bLT
+abj
+abj
+abj
+bvO
+abj
+abj
+abj
+bLT
+abj
+abj
+abj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -149991,6 +151667,65 @@ aaa
aaa
aaa
aaa
+bCI
+aaa
+abj
+abj
+bwN
+cLx
+cNZ
+ljm
+cNZ
+cLx
+bwN
+abj
+acF
+aaa
+bvh
+aaa
+rDm
+aaa
+abj
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+bXU
+abj
+wYL
+hsp
+hsp
+qGR
+iSO
+hsp
+nTk
+qGR
+hsp
+hsp
+iSO
+qGR
+hsp
+hsp
+abj
+bCI
+aaa
+aaa
aaa
aaa
aaa
@@ -150001,6 +151736,23 @@ aaa
aaa
aaa
aaa
+abj
+fps
+xue
+cZP
+fps
+fps
+fps
+tni
+qNR
+oFX
+fps
+fps
+fps
+qNR
+tGo
+fps
+baf
aaa
aaa
aaa
@@ -150033,8 +151785,6 @@ aaa
aaa
aaa
aaa
-"}
-(68,1,1) = {"
aaa
aaa
aaa
@@ -150068,6 +151818,8 @@ aaa
aaa
aaa
aaa
+"}
+(68,1,1) = {"
aaa
aaa
aaa
@@ -150127,6 +151879,37 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+bzY
+bCd
+bCd
+bCd
+bMg
+bvO
+bvO
+bvO
+bvO
+bvO
+bvO
+bvO
+bvO
+cBY
+bCd
+bCd
+bCd
+bMg
+bvO
+bvO
+bvO
+abj
+acF
+acF
+acF
+acF
+acF
+abj
+abj
aaa
aaa
aaa
@@ -150141,33 +151924,97 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+bCI
+abj
+bwN
+cLx
+ljm
+sJK
+nDV
+tTG
+bwN
+abj
+acF
+abj
+bvh
+abj
+tuQ
+abj
+abj
+bXU
+ybU
+ivy
+ybU
+bXU
+ldN
+fsc
+ldN
+bXU
+ldN
+fsc
+ldN
+bXU
+ldN
+fsc
+ldN
+bXU
+ldN
+fsc
+ldN
+bXU
+ePn
+cLL
+hsp
+qVB
+amQ
+ylW
+hsp
+qVB
+aKL
+oYl
+hsp
+qVB
+cpP
+tZs
+hsp
aaa
+bCI
aaa
aaa
aaa
aaa
aaa
-bCI
aaa
-abj
aaa
aaa
aaa
-acF
aaa
-bvh
aaa
-uhP
aaa
+baf
+fps
+fps
+pwK
+fps
+abj
+fps
+fps
+rFb
+fps
+fps
+abj
+fps
+jJU
+fps
+fps
abj
aaa
-bvh
aaa
aaa
aaa
-bCI
aaa
-bCI
aaa
aaa
aaa
@@ -150209,25 +152056,6 @@ aaa
aaa
aaa
aaa
-abj
-cQY
-cQY
-xME
-xME
-efA
-xME
-xME
-fIF
-ivV
-wTn
-xME
-xME
-wCm
-xME
-xME
-cQY
-cQY
-abj
aaa
aaa
aaa
@@ -150247,6 +152075,8 @@ aaa
aaa
aaa
aaa
+"}
+(69,1,1) = {"
aaa
aaa
aaa
@@ -150290,8 +152120,6 @@ aaa
aaa
aaa
aaa
-"}
-(69,1,1) = {"
aaa
aaa
aaa
@@ -150308,9 +152136,38 @@ aaa
aaa
aaa
aaa
+bCI
aaa
+abj
+abj
+abj
+abj
+aQI
+abj
+abj
+abj
+bvO
+abj
+abj
+abj
+aQI
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+dmB
+abj
+dyy
+abj
aaa
+abj
+acF
aaa
+abj
+abj
aaa
aaa
aaa
@@ -150324,21 +152181,63 @@ aaa
aaa
aaa
aaa
+abj
aaa
+bCI
+abj
+bwN
+cLx
+cNZ
+ljm
+cNZ
+cLx
+bwN
+abj
+acF
aaa
+abj
aaa
+rDm
aaa
+bXU
+bXU
+cbb
+abj
aaa
+elI
aaa
aaa
aaa
+jZI
aaa
aaa
aaa
+jZI
aaa
aaa
aaa
+cfL
aaa
+abj
+cbb
+bXU
+ePn
+naC
+iSO
+hWA
+kNU
+oss
+iSO
+pxR
+pxR
+txl
+hsp
+deX
+ete
+oss
+qGR
+abj
+abj
aaa
aaa
aaa
@@ -150351,6 +152250,23 @@ aaa
aaa
aaa
aaa
+abj
+abj
+abj
+tKX
+abj
+abj
+abj
+abj
+jlK
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
aaa
aaa
aaa
@@ -150360,13 +152276,6 @@ aaa
aaa
aaa
aaa
-bCI
-abj
-bCI
-abj
-bCI
-bCI
-bCI
aaa
aaa
aaa
@@ -150404,27 +152313,6 @@ aaa
aaa
aaa
aaa
-bCI
-abj
-bCI
-abj
-bvh
-abj
-acF
-abj
-bvh
-abj
-vFl
-abj
-bvh
-abj
-bvh
-bvh
-bvh
-abj
-bCI
-abj
-bCI
aaa
aaa
aaa
@@ -150444,6 +152332,8 @@ aaa
aaa
aaa
aaa
+"}
+(70,1,1) = {"
aaa
aaa
aaa
@@ -150466,25 +152356,6 @@ aaa
aaa
aaa
aaa
-abj
-cQY
-xME
-xME
-eaJ
-njq
-xME
-xME
-hwa
-vlc
-eEK
-xME
-xME
-uWf
-xbn
-xME
-xME
-cQY
-abj
aaa
aaa
aaa
@@ -150522,14 +152393,107 @@ aaa
aaa
aaa
aaa
+bCI
+bCI
+abj
+abj
aaa
+boK
+bMi
+bvQ
aaa
+abj
+aQI
+abj
aaa
+boK
+bMi
+bvQ
aaa
+abj
aaa
+abj
+abj
+cDK
+dmE
+cDK
+acF
+dDe
+dIE
+dDe
+dUm
+abj
+bCI
+abj
+abj
+bCI
+bCI
+bCI
+bCI
+bCI
+abj
+bCI
+bCI
+bCI
+bCI
+bCI
+abj
+bCI
+abj
+bCI
+abj
+bwN
+cLx
+rUa
+cJH
+nFA
+cLx
+bwN
+abj
+acF
aaa
+abj
aaa
+rDm
aaa
+bXU
+klb
+cbb
+rLd
+aaa
+xiR
+pnx
+pnx
+dJh
+pnx
+pnx
+goI
+pnx
+pnx
+nGC
+pnx
+pnx
+qlZ
+aaa
+hdZ
+cbb
+tzi
+bXU
+nGj
+avX
+uFo
+uFo
+lvo
+hsp
+pxR
+xMC
+uNV
+iSO
+uFo
+wUr
+rYz
+qGR
+abj
aaa
aaa
aaa
@@ -150546,11 +152510,13 @@ aaa
aaa
aaa
aaa
+cLs
aaa
-"}
-(70,1,1) = {"
aaa
aaa
+bvh
+jlK
+bvh
aaa
aaa
aaa
@@ -150613,21 +152579,9 @@ aaa
aaa
aaa
aaa
-bCI
-bCI
-abj
-bCI
-bCI
aaa
-abj
aaa
-abj
aaa
-bCI
-bCI
-abj
-bCI
-bCI
aaa
aaa
aaa
@@ -150635,6 +152589,8 @@ aaa
aaa
aaa
aaa
+"}
+(71,1,1) = {"
aaa
aaa
aaa
@@ -150661,30 +152617,20 @@ aaa
aaa
aaa
aaa
-abj
aaa
-abj
aaa
aaa
aaa
-acF
aaa
-abj
aaa
-uhP
aaa
-abj
aaa
-abj
aaa
aaa
aaa
-bCI
aaa
-abj
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -150707,40 +152653,103 @@ aaa
aaa
aaa
aaa
+bCI
aaa
+boK
+bMi
+bvQ
aaa
+boK
+bMi
+bvQ
aaa
+boK
+bMi
+bvQ
aaa
+bCI
aaa
+abj
+abj
+cDK
+dmK
+cDK
+acF
+aWR
+dII
+aWR
+dUo
+dZk
aaa
+abj
aaa
-aaZ
+abj
aaa
+abj
aaa
+abj
aaa
+abj
aaa
+abj
aaa
+abj
aaa
+abj
aaa
aaa
abj
-cQY
-txI
-ugu
-efA
-xME
-xME
-xME
-wCm
-pcM
-efA
-xME
-xME
-xME
-wCm
-oth
-txI
-cQY
+bwN
+qUh
+rUC
+sKP
+rUC
+tTI
+bwN
+abj
+acF
+abj
+abj
+abj
+rDm
+abj
+bXU
+klb
+cbb
+lEd
+abj
+efA
+nyX
+jsz
+lvh
+jsz
+jsz
+lvh
+jsz
+jsz
+lvh
+jsz
+tiz
+efA
+abj
+rfZ
+cbb
+tzi
+bXU
+wEK
+hsp
+uHq
+wUr
+pxR
+hsp
+kOD
+pLR
+egO
+nTk
+ive
+sbF
+oRQ
+hsp
abj
aaa
aaa
@@ -150758,9 +152767,13 @@ aaa
aaa
aaa
aaa
+cLs
aaa
aaa
aaa
+bvh
+jlK
+bvh
aaa
aaa
aaa
@@ -150804,13 +152817,6 @@ aaa
aaa
aaa
aaa
-"}
-(71,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -150840,8 +152846,9 @@ aaa
aaa
aaa
aaa
+"}
+(72,1,1) = {"
aaa
-adT
aaa
aaa
aaa
@@ -150870,21 +152877,12 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-abj
aaa
-abj
aaa
-ash
-asV
-atY
aaa
-abj
aaa
-abj
aaa
-bCI
aaa
aaa
aaa
@@ -150913,8 +152911,34 @@ aaa
aaa
aaa
bCI
+aaa
+boK
+bMi
+bvQ
+abj
+boK
+bMi
+bvQ
+abj
+boK
+bMi
+bvQ
+abj
bCI
abj
+abj
+cDK
+cDK
+dmR
+cDK
+aWR
+aWR
+cPi
+aWR
+aWR
+diY
+bCI
+bCI
bCI
bCI
bCI
@@ -150922,22 +152946,67 @@ abj
bCI
bCI
bCI
+bCI
+bCI
abj
bCI
+bCI
+bCI
+bCI
+bCI
+abj
+abj
+bwN
+qUJ
+rVe
+mgu
+cJI
+cLA
+bwN
+acF
+wcr
acF
abj
-bvh
-aaa
-uhP
-aaa
-bvh
-aaa
-bvh
-aaa
+abj
+tou
+abj
+bXU
+oqc
+qCX
+lEd
aaa
+efA
+siL
+dJi
+abj
+abj
+rPj
aaa
+acF
abj
+abj
+kLx
+dZb
+efA
aaa
+rfZ
+pyN
+kZJ
+bXU
+qmv
+hOT
+hsp
+jDz
+hsp
+iSO
+hsp
+jDz
+iSO
+hsp
+iSO
+jDz
+hsp
+hsp
abj
aaa
aaa
@@ -150955,9 +153024,13 @@ aaa
aaa
aaa
aaa
+cLs
aaa
aaa
aaa
+abj
+jlK
+abj
aaa
aaa
aaa
@@ -150980,25 +153053,6 @@ aaa
aaa
aaa
aaa
-abj
-cQY
-xME
-xME
-lAA
-wTn
-xME
-xME
-wCm
-wtu
-efA
-xME
-xME
-fIF
-mtK
-xME
-xME
-cQY
-abj
aaa
aaa
aaa
@@ -151049,6 +153103,9 @@ aaa
aaa
aaa
aaa
+"}
+(73,1,1) = {"
+aaa
aaa
aaa
aaa
@@ -151061,8 +153118,6 @@ aaa
aaa
aaa
aaa
-"}
-(72,1,1) = {"
aaa
aaa
aaa
@@ -151112,38 +153167,127 @@ aaa
aaa
aaa
aaa
+bCI
aaa
+boK
+bMi
+bvQ
aaa
+boK
+bMi
+bvQ
aaa
+boK
+bMi
+bvQ
aaa
+bCI
aaa
+abj
+btW
+dfW
+dmT
+cDL
+aWR
+dDi
+dIS
+cTl
+dUP
+djg
+abj
+abj
aaa
+abj
+abj
+abj
aaa
+abj
+abj
+abj
aaa
+abj
+abj
+abj
aaa
+abj
+abj
+abj
+abj
+bwN
+qYL
+lkC
+mhU
+nGr
+tUT
+cTf
+cTf
+wcw
+cTf
+cTf
+abj
+mSG
+itZ
+bXU
+bZl
+cbb
+lEd
+abj
+wav
+dUE
+abj
aaa
aaa
+acF
+abj
+acF
aaa
aaa
+abj
+cZc
+nfv
+abj
+rfZ
+cbb
+cDv
+bXU
+vmP
+usd
+xSG
+xSG
+sfq
+phd
+naD
+wUr
+olA
+vor
+wUr
+wUr
+nsU
+nTk
+abj
+abj
+abj
+dbz
+dbz
+aMW
+dbz
+aMW
+dbz
+dbz
aaa
aaa
bCI
+bCI
aaa
-ash
-asV
-atY
aaa
-ash
-ata
-atY
aaa
-ash
-asV
-atY
+cLs
aaa
-abj
aaa
aaa
+bvh
+jlK
+bvh
aaa
aaa
aaa
@@ -151169,48 +153313,16 @@ aaa
aaa
aaa
aaa
-bCI
aaa
aaa
-abj
aaa
-abj
aaa
-abj
aaa
-abj
aaa
-abj
-acF
aaa
-bvh
-abj
-vFl
-abj
-bvh
aaa
-bvh
aaa
-abj
-bCI
-bCI
-bCI
-bCI
-abj
-bCI
-bCI
-abj
-bCI
-bCI
-bCI
-bCI
-bCI
-bCI
-abj
-abj
-abj
aaa
-acF
aaa
aaa
aaa
@@ -151237,25 +153349,6 @@ aaa
aaa
aaa
aaa
-abj
-rOm
-cQY
-xME
-xME
-efA
-xME
-xME
-wCm
-wtu
-efA
-xME
-xME
-wCm
-xME
-xME
-cQY
-rOm
-abj
aaa
aaa
aaa
@@ -151267,6 +153360,8 @@ aaa
aaa
aaa
aaa
+"}
+(74,1,1) = {"
aaa
aaa
aaa
@@ -151318,8 +153413,6 @@ aaa
aaa
aaa
aaa
-"}
-(73,1,1) = {"
aaa
aaa
aaa
@@ -151331,20 +153424,127 @@ aaa
aaa
aaa
aaa
+abj
aaa
+boK
+bMk
+bvQ
aaa
+boK
+bMi
+bvQ
aaa
+boK
+bMk
+bvQ
aaa
+abj
aaa
+abj
+btW
+bwC
+dnc
+cDM
+aWR
+dDl
+dJf
+cTH
+aWR
+diY
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+abj
+abj
+bwN
+qYZ
+loD
+mjr
+cJJ
+cLC
+cTf
+vxP
+weg
+xiz
+cTf
+aux
+wXY
+coB
+bXU
+keL
+gDQ
+lEd
aaa
+efA
+siL
+abj
aaa
+acF
+acF
+acF
+acF
+acF
aaa
+abj
+dZb
+efA
aaa
+rfZ
+pUS
+ufl
+bXU
+nlR
+ycE
+ioo
+olA
+pxR
+wUr
+wUr
+pxR
+pxR
+wUr
+pxR
+pxR
+pxR
+hsp
+abj
+abj
+sRN
+dbz
+xDB
+fJh
+wSc
+frM
+vbw
+dbz
+abj
+abj
+abj
+abj
+abj
aaa
aaa
+cLs
aaa
aaa
aaa
+bCI
+jlK
+bCI
aaa
aaa
aaa
@@ -151384,21 +153584,10 @@ aaa
aaa
aaa
aaa
-abj
aaa
-ash
-ata
-atY
aaa
-ash
-ata
-atY
aaa
-ash
-ata
-atY
aaa
-bCI
aaa
aaa
aaa
@@ -151426,63 +153615,26 @@ aaa
aaa
aaa
aaa
-bCI
-abj
-bCI
-bCI
aaa
-bCI
-bCI
-bCI
-bCI
-abj
-bCI
-bCI
-acF
-abj
-bvh
aaa
-uhP
+"}
+(75,1,1) = {"
aaa
-abj
aaa
-abj
aaa
-abj
aaa
aaa
-abj
aaa
aaa
aaa
-abj
aaa
aaa
aaa
-abj
aaa
-abj
aaa
aaa
aaa
aaa
-abj
-acF
-abj
-abj
-bCI
-bCI
-bCI
-abj
-bCI
-bCI
-bCI
-abj
-bCI
-bCI
-abj
-bCI
-bCI
aaa
aaa
aaa
@@ -151494,25 +153646,6 @@ aaa
aaa
aaa
aaa
-abj
-cQY
-cQY
-cQY
-xXC
-efA
-xME
-xME
-wCm
-wtu
-efA
-xME
-xME
-wCm
-xXC
-cQY
-cQY
-abj
-abj
aaa
aaa
aaa
@@ -151535,6 +153668,7 @@ aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -151543,19 +153677,131 @@ aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
+bCI
aaa
+abj
aaa
+abj
aaa
+boK
+bMk
+bvQ
aaa
+abj
aaa
+abj
aaa
+bCI
+abj
+abj
+btW
+dhh
+cCF
+cDN
+aWR
+dDq
+cPm
+cTE
+aWR
+djg
+uYk
+fmO
+fIS
+fmO
+uYk
+hwu
+igL
+hwu
+uYk
+klw
+lmV
+klw
+uYk
+mHd
+nRt
+mHd
+uYk
+abj
+abj
+bwN
+qZm
+loZ
+cIq
+cJL
+cLI
+cTf
+raC
+wep
+raC
+cTf
+ooO
+kxT
+wpn
+bXU
+bXU
+bZl
+hvP
+acF
+efA
+siL
+czw
+acF
+acF
+nyX
+jsz
+tiz
+acF
+acF
+acF
+dZb
+efA
+acF
+cbb
+cDv
+bXU
+bXU
+pxR
+cUS
+cUS
+cUS
+jFg
+cUS
+qQf
+cUS
+cUS
+cUS
+cUS
+qGR
+hKl
+aMW
+csO
+dbz
+jIV
+dbz
+vbw
+bbA
+hDv
+exN
+xji
+dbz
+aMW
+dbz
+csO
+aMW
+abj
+bCI
aaa
+cLs
aaa
aaa
aaa
+bvh
+jlK
+abj
aaa
aaa
aaa
@@ -151575,8 +153821,6 @@ aaa
aaa
aaa
aaa
-"}
-(74,1,1) = {"
aaa
aaa
aaa
@@ -151630,6 +153874,8 @@ aaa
aaa
aaa
aaa
+"}
+(76,1,1) = {"
aaa
aaa
aaa
@@ -151641,21 +153887,6 @@ aaa
aaa
aaa
aaa
-bCI
-abj
-ash
-ata
-atY
-abj
-ash
-ata
-atY
-abj
-ash
-ata
-atY
-abj
-bCI
aaa
aaa
aaa
@@ -151683,63 +153914,18 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-bCI
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-acF
aaa
-abj
aaa
-uhP
aaa
-abj
-abj
-bCI
-bCI
-bCI
-abj
-bCI
-bCI
-bCI
-abj
-bCI
-bCI
-bCI
-abj
-bCI
-bCI
-bCI
-abj
-bCI
-bCI
-bCI
-abj
aaa
-acF
aaa
-abj
aaa
-abj
aaa
-abj
aaa
-abj
aaa
-abj
aaa
-abj
-abj
aaa
-bCI
aaa
aaa
aaa
@@ -151752,30 +153938,127 @@ aaa
aaa
aaa
abj
+bCI
+bCI
abj
-cQY
-cQY
-cQY
-cQY
-kMm
-xME
-wCm
-wtu
-efA
-xME
-igC
-cQY
-cQY
-cQY
-cQY
+bCI
abj
aaa
+abj
aaa
+abj
+coE
+abj
+bCI
+abj
+bCI
+bCI
+abj
+abj
+btW
+btW
+btV
+btW
+aWR
+dDl
+cPt
+cTH
+aWR
+diY
+uYk
+fnq
+fKf
+fmO
+uYk
+hxV
+ijJ
+hwu
+uYk
+klC
+lol
+klw
+uYk
+mIh
+mHd
+mHd
+uYk
+abj
+bwN
+bwN
+bwN
+lpv
+okc
+lpv
+bwN
+cTf
+vzz
+qut
+raO
+rQf
+rVf
+uPa
+wpN
+bXU
+bXU
+qvF
+cbb
+abj
+wav
+dUE
aaa
+abj
+acF
+siL
+fZm
+dZb
+acF
+abj
aaa
+cZc
+nfv
+abj
+cbb
+pBi
+bXU
+cDu
+wUr
+cUS
+iqN
+iXv
+lQT
+iXv
+bwy
+cTL
+nWY
+okD
+cUS
+pxR
+pxR
+bCK
+uXU
+vbw
+kDr
+pzu
+xji
+wSc
+hDv
+exN
+xji
+epM
+ghg
+evo
+xDB
+aMW
+abj
+bCI
+bCI
+cLs
aaa
aaa
aaa
+abj
+jlK
+abj
aaa
aaa
aaa
@@ -151832,35 +154115,6 @@ aaa
aaa
aaa
aaa
-"}
-(75,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -151877,6 +154131,8 @@ aaa
aaa
aaa
aaa
+"}
+(77,1,1) = {"
aaa
aaa
aaa
@@ -151898,21 +154154,10 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-ash
-ata
-atY
aaa
-ash
-ata
-atY
aaa
-ash
-ata
-atY
aaa
-abj
aaa
aaa
aaa
@@ -151940,94 +154185,137 @@ aaa
aaa
aaa
aaa
-abj
aaa
-bCI
-abj
-bwN
-bwN
-bwN
-bwN
-bwN
-bwN
-bwN
-abj
-acF
-abj
-abj
-abj
-vFl
-abj
-abj
-abj
aaa
-abj
aaa
-abj
aaa
-abj
aaa
-abj
aaa
-abj
aaa
-abj
aaa
-abj
aaa
abj
aaa
abj
aaa
-abj
-abj
-acF
-abj
bCI
bCI
bCI
-abj
bCI
bCI
bCI
-abj
bCI
-abj
bCI
bCI
abj
abj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
abj
-cQY
-wtu
-wtu
-pmr
-xME
-xME
-wCm
-wtu
+abj
+abj
+aSy
+dhj
+cCN
+bvj
+bwW
+dDr
+cPI
+bAr
+aSy
+djg
+uYk
+fnr
+dvN
+dAL
+uYk
+hya
+dJT
+dOB
+uYk
+klF
+dYm
+eIk
+uYk
+mJu
+gCu
+hqG
+uYk
+acF
+bwN
+qjp
+kwk
+lpT
+bzE
+bBi
+cLJ
+cOu
+vAb
+dcL
+raW
+xGk
+det
+uQo
+wrb
+bXU
+bXU
+bZl
+xOM
+acF
efA
-xME
-xME
-pmr
-wtu
-smu
-cQY
+siL
+acF
+acF
+acF
+gOv
+dHp
+dQy
+acF
+acF
+oPh
+dZb
+efA
+acF
+cbb
+cDv
+bXU
+bXU
+pxR
+bwy
+edF
+fsp
+xrC
+cJK
+lFw
+xrC
+tgM
+fyJ
+cUS
+pxR
+olA
+wLd
+vbw
+gPK
+oHK
+ipb
+ekb
+szQ
+szQ
+szQ
+sjQ
+gaJ
+mLx
+dYs
+kay
+dbz
abj
+abj
+abj
+tKX
+bCI
aaa
aaa
+bvh
+jlK
+bvh
aaa
aaa
aaa
@@ -152089,20 +154377,6 @@ aaa
aaa
aaa
aaa
-"}
-(76,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -152114,6 +154388,8 @@ aaa
aaa
aaa
aaa
+"}
+(78,1,1) = {"
aaa
aaa
aaa
@@ -152152,24 +154428,10 @@ aaa
aaa
aaa
aaa
-bCI
-abj
-bCI
-bCI
aaa
-ash
-ata
-atY
aaa
-abj
-atb
-abj
aaa
-ash
-ata
-atY
aaa
-abj
aaa
aaa
aaa
@@ -152184,78 +154446,133 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
aaa
aaa
+bvh
aaa
+bvh
aaa
aaa
+abj
aaa
+abj
aaa
+abj
aaa
aaa
-bCI
-abj
-bCI
-abj
-bwN
-okc
-bzE
-bDb
-bzE
-bzE
-bwN
abj
-acF
aaa
-bvh
-aaa
-uhP
aaa
+bCI
aaa
+acF
+dax
+dhp
+dny
+bvk
+dzc
+dDs
+dJj
+aNT
+bCy
+dZE
+uYk
+cAb
+gCz
+eJk
+uYk
+cAb
+gCz
+eJk
+uYk
+cAb
+gCz
+eJk
+uYk
+mJY
+gCz
+cAb
+uYk
+pjI
+pTt
+qjr
+qZq
+rXc
+cIr
+bBj
+tUW
+cTf
+vAC
+qvN
+cXP
+rQf
+dgF
+uSR
+dnN
bXU
-cba
-cba
-cba
-bXU
-cie
-cie
-cie
-bXU
-cie
-cie
-cie
-bXU
-cie
-cie
-cie
-bXU
-cie
-cie
-cie
-bXU
+qKZ
+ffP
+lEd
+aaa
+efA
+siL
+abj
aaa
acF
+acF
+acF
+acF
+acF
aaa
abj
+dZb
+efA
aaa
-abj
-abj
+rfZ
+oak
+xqC
+bXU
+pxR
+cUS
+rtB
+fsp
+sRM
+kPC
+ibA
+cPG
+tmR
+rBh
+cUS
+eCP
+nsU
+wLd
+hfq
+uQr
+sCt
+iXI
+vbw
+vzN
+iFD
+kay
+dqk
+wVP
+xXu
+kfT
+nLj
+bCK
abj
aaa
-abj
-abj
-abj
aaa
-abj
-abj
-abj
+tKX
bCI
aaa
aaa
+bvh
+jlK
+bvh
aaa
aaa
aaa
@@ -152266,24 +154583,6 @@ aaa
aaa
aaa
aaa
-abj
-xQj
-wtu
-xYM
-cQY
-cQY
-xME
-wCm
-wtu
-efA
-xME
-cQY
-cQY
-uBv
-wtu
-xQj
-abj
-aaa
aaa
aaa
aaa
@@ -152347,8 +154646,7 @@ aaa
aaa
aaa
"}
-(77,1,1) = {"
-aaa
+(79,1,1) = {"
aaa
aaa
aaa
@@ -152409,138 +154707,129 @@ aaa
aaa
aaa
aaa
-bCI
aaa
+bvh
abj
+bvh
+bvh
abj
+bvh
abj
+bvh
abj
-atb
abj
abj
abj
-atZ
abj
abj
+aaa
abj
-atb
abj
abj
+aSy
+dhq
+cCS
+bvl
+aLQ
+bxM
+cPK
+bAu
+aSy
abj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bCI
-aaa
abj
+cuo
abj
-bwN
-bzE
-bBi
-bBj
-bBi
-bzE
-bwN
+clk
abj
-acF
-aaa
-bvh
-aaa
-uhP
-aaa
+cuo
abj
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
-bXU
+clk
abj
-cPY
-hsp
-hsp
-cJK
-cCx
-hsp
-xtO
-cJK
-hsp
-hsp
-cCx
-cJK
-hsp
-hsp
+cuo
+abj
+clk
+abj
+cuo
+abj
+cuo
+abj
+pkt
+bwN
+qkv
+kwk
+cGT
+cIt
+cJY
+bGz
+bGz
+bGz
+bGz
+bGz
+bGz
+bGz
+bGz
+bGz
+bXU
+bZl
+cbb
+lEd
+abj
+wav
+dUE
abj
-bCI
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
+acF
+abj
+acF
aaa
aaa
abj
-cQY
-mZM
-xeT
-cQY
-cQY
-cQY
-wCm
-wtu
-efA
-cQY
-cQY
-cQY
-wtu
-jhv
-cQY
-qEx
+cZc
+nfv
+abj
+rfZ
+cbb
+cDv
+bXU
+pxR
+qQf
+cUS
+qol
+fsp
+pVo
+cTi
+bwy
+bwy
+bwy
+cUS
+bLm
+olA
+wLd
+ouO
+flH
+ies
+egh
+sxS
+sxS
+sxS
+sxS
+sxS
+sMF
+xji
+flH
+kJr
+dbz
+dbz
+dbz
aaa
+tKX
+bCI
+abj
+abj
+abj
+jlK
+abj
aaa
aaa
aaa
@@ -152603,8 +154892,6 @@ aaa
aaa
aaa
aaa
-"}
-(78,1,1) = {"
aaa
aaa
aaa
@@ -152615,6 +154902,8 @@ aaa
aaa
aaa
aaa
+"}
+(80,1,1) = {"
aaa
aaa
aaa
@@ -152666,37 +154955,6 @@ aaa
aaa
aaa
aaa
-bCI
-abj
-apF
-aEc
-aEc
-aEc
-atc
-atZ
-atZ
-atZ
-atZ
-atZ
-atZ
-atZ
-atZ
-aEb
-aEc
-aEc
-aEc
-atc
-atZ
-atZ
-atZ
-abj
-acF
-acF
-acF
-acF
-acF
-abj
-abj
aaa
aaa
aaa
@@ -152707,70 +154965,128 @@ aaa
aaa
aaa
aaa
+bvh
aaa
+abj
aaa
aaa
+bvh
aaa
bCI
+aaa
+cjJ
+cqC
+cjJ
+cqC
+cjJ
+cqC
+cjJ
+cOU
+cqC
+aSy
+cxM
+cCS
+cDR
+aJK
+gFR
+gFR
+gFR
+aOg
+aOg
+aOg
+dOJ
+gFR
+cfM
+dwW
+dOJ
+gFR
+cfM
+dwW
+dOJ
+gFR
+cfM
+aOg
+dOJ
+gFR
+dOJ
+aOg
+pnA
+aOg
+kLP
+kLP
+lsT
+mjW
+lsT
+bGz
+oOY
+vAZ
+qBc
+cXR
+ddl
+sBX
+dkZ
+dog
+bXU
+sui
+qCX
+lEd
+aaa
+efA
+siL
+dHq
abj
-bCI
-abj
-bwN
-bzE
-bBj
-bDc
-bEG
-xgz
-bwN
abj
acF
-abj
-bvh
-abj
-vFl
+aaa
+lDA
abj
abj
+qwQ
+dZb
+efA
+aaa
+rfZ
+pyN
+kHo
bXU
-dPc
-dPN
-dPc
-bXU
-dQp
-daD
-dQp
-bXU
-dQp
-daD
-dQp
-bXU
-dQp
-daD
-dQp
-bXU
-dQp
-daD
-dQp
-bXU
-cEz
-cGw
-hsp
-cUP
-cHo
-cLC
-hsp
-cUP
-cRD
-siH
-hsp
-cUP
-cWk
-cXR
-hsp
+pxR
+cUS
+npg
+mbR
+fsp
+kgB
+cLz
+vVL
+lxD
+qQQ
+cUS
+nnt
+naD
+aMW
+hLZ
+kxN
+uIT
+hGI
+dYs
+dYv
+gAD
+gAD
+vbw
+uPX
+rUS
+ubu
+xji
+vbw
+vbw
+dbz
aaa
-bCI
+tKX
aaa
aaa
aaa
+bvh
+jlK
+bvh
aaa
aaa
aaa
@@ -152780,23 +155096,6 @@ aaa
aaa
aaa
aaa
-qEx
-cQY
-cQY
-fay
-cQY
-abj
-cQY
-cQY
-obR
-cQY
-cQY
-abj
-cQY
-pmr
-cQY
-cQY
-abj
aaa
aaa
aaa
@@ -152861,10 +155160,7 @@ aaa
aaa
aaa
"}
-(79,1,1) = {"
-aaa
-aaa
-aaa
+(81,1,1) = {"
aaa
aaa
aaa
@@ -152923,111 +155219,131 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-abj
-abj
-abj
-abj
-atK
-abj
-abj
-abj
-atZ
-abj
-abj
-abj
-atK
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-aLQ
-abj
-aLT
-abj
aaa
-abj
-acF
aaa
+bvh
abj
+bvh
+bvh
abj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abj
-aaa
-bCI
+bvh
abj
-bwN
-bzE
-bBi
-bBj
-bBi
-bzE
-bwN
abj
-acF
-aaa
abj
-aaa
-uhP
-aaa
-bXU
+bPU
+bfs
+cvc
+bfs
+bPU
+bfs
+cLQ
+clY
+bqE
+aSy
+dhA
+cCS
+bvn
+aJL
+gFR
+bzi
+bAv
+aPl
+dZH
+eFr
+fnw
+cwe
+gvy
+cot
+fnw
+cwe
+gvy
+jrw
+fnw
+cwe
+gvy
+mtK
+mKr
+nRQ
+orw
+oMt
+pot
+jst
+qkH
+kxu
+rXq
+bzI
+bBl
+bGz
+uHv
+vBQ
+wfV
+wfV
+xHb
+wfV
+eWw
+xPm
bXU
+bZl
cbb
+lEd
abj
+efA
+siL
+cwv
aaa
-cmC
-aaa
-aaa
-aaa
-cmL
-aaa
-aaa
-aaa
-cmL
aaa
+acF
aaa
+cwv
aaa
-cJd
aaa
+cwv
+dZb
+efA
abj
+rfZ
cbb
+cDv
bXU
-cEz
-cFN
-cCx
-cJL
-cHp
-cTi
-cCx
-pxR
-pxR
-xUz
-hsp
-cUQ
-ljn
-cTi
-cJK
-abj
+hGZ
+bwy
+kSH
+kTD
+cHe
+fsp
+kSW
+kSW
+xrC
+utb
+cUS
+mLS
+naD
+aMW
+jxo
+suf
+uIT
+pKP
+dYs
+scD
+vbw
+mYk
+dYs
+uPX
+vbw
+vzx
+eYo
+rUS
+nfm
+aMW
abj
+tKX
aaa
aaa
aaa
+bvh
+jlK
+bvh
aaa
aaa
aaa
@@ -153037,23 +155353,6 @@ aaa
aaa
aaa
aaa
-abj
-abj
-abj
-uiA
-abj
-abj
-abj
-abj
-xjZ
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
aaa
aaa
aaa
@@ -153118,7 +155417,7 @@ aaa
aaa
aaa
"}
-(80,1,1) = {"
+(82,1,1) = {"
aaa
aaa
aaa
@@ -153180,131 +155479,131 @@ aaa
aaa
aaa
aaa
-bCI
-bCI
abj
-abj
-aaa
-ash
-atL
-atY
aaa
abj
-atK
-abj
aaa
-ash
-atL
-atY
aaa
abj
aaa
-abj
-abj
-aGX
-aJK
-aGX
-acF
-aNT
-aPk
-aNT
-aWR
-abj
-bCI
-abj
-abj
-bCI
bCI
-bCI
-bCI
-bCI
-abj
-bCI
-bCI
-bCI
-bCI
-bCI
-abj
-bCI
-abj
-bCI
-abj
-bwN
-bzF
-bBk
-bzE
-bEH
-bGr
-bwN
-abj
-acF
-aaa
-abj
-aaa
-uhP
aaa
+bPU
+bPU
+bPU
+bPU
+bPU
+bPU
+bPU
+bdI
+cqC
+dax
+dhB
+aGZ
+dtK
+aKo
+gFR
+kWc
+cWq
+dUY
+dZJ
+eFE
+fny
+ccj
+gvS
+bWO
+hyj
+ikv
+iHJ
+jrP
+klO
+lpu
+mcm
+muH
+mKv
+nSd
+orS
+oMz
+poX
+jtd
+lAV
+qZt
+rZe
+bGC
+iHX
+bGz
+uIH
+plJ
+qCL
+cYb
+ddI
+dha
+uWf
+dom
bXU
-bZj
-cbb
-cdc
+buf
+kfr
+kAV
aaa
-ctY
-cJe
-cJe
-cKj
-cJe
-cJe
-cNn
-cJe
-cJe
-cNZ
-cJe
-cJe
-cOm
-aaa
-cda
-cbb
-cDx
+bep
+oHg
+nsT
+nsT
+nsT
+nsT
+ajG
+nsT
+nsT
+nsT
+nsT
+tgT
+hHu
+aaa
+tgf
+uJj
+gHc
bXU
-cIu
-xmM
-cNf
-cNf
-cLz
-hsp
pxR
-deZ
-fAB
-cCx
-cNf
-fFB
-gvN
-cJK
-abj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-fSo
-aaa
+bwy
+kwN
+far
+kUR
+fXD
+kUR
+kUR
+lvs
+xjm
+muf
+gze
+wUr
+aMW
+xDB
+kNj
+pln
+pMH
+gAD
+dYs
+vcj
+gAD
+bmJ
+uPX
+twh
+vzx
+uJw
+vbw
+wcN
+dbz
aaa
+tKX
+abj
+abj
+abj
+abj
+jlK
+abj
aaa
-bvh
-xjZ
-bvh
aaa
+aae
aaa
aaa
aaa
@@ -153375,14 +155674,7 @@ aaa
aaa
aaa
"}
-(81,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+(83,1,1) = {"
aaa
aaa
aaa
@@ -153440,126 +155732,131 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-ash
-atL
-atY
aaa
-ash
-atL
-atY
aaa
-ash
-atL
-atY
aaa
bCI
-aaa
-abj
-abj
-aGX
-aJL
-aGX
-acF
-aMy
-aPl
-aMy
-aSx
-aTS
-aaa
-abj
-aaa
-abj
-aaa
-abj
-aaa
-abj
-aaa
-abj
-aaa
-abj
-aaa
-abj
-aaa
-abj
-aaa
-aaa
-abj
-bwN
-bzG
-bBl
-bDd
-bBl
-bGs
-bwN
-abj
-acF
-abj
abj
+bCI
+bCI
+bCI
+bCI
abj
-uhP
+bCI
abj
+bPU
+bfs
+bfs
+bfs
+bPU
+bfs
+bfs
+clY
+bqE
+dax
+dhH
+cCW
+dtL
+aLl
+aKY
+dJk
+bAQ
+dVa
+aQM
+dnI
+dVi
+dDO
+bPw
+dDO
+dVi
+dDO
+dDO
+bPw
+dVi
+lpO
+meq
+fLz
+fYB
+gGx
+hrb
+ihm
+iNS
+jub
+cCc
+kLP
+cGW
+mmo
+bBn
+bGz
+uJJ
+plJ
+qFN
+rcp
+xHR
+tLH
+aOB
+wtj
bXU
-bZj
-cbb
-cxG
+bXU
+klx
+bXU
+rLd
abj
-czw
-cwt
-clp
-cuO
-clp
-clp
-cuO
-clp
-clp
-cuO
-clp
cwv
-czw
+hdZ
+cwu
+cwu
+cwu
+hyv
+cwu
+cwu
+cwu
+hdZ
+cwv
abj
-cCg
-cbb
-cDx
+iSS
+bXU
+ePR
+bXU
bXU
-cFP
-hsp
-cHe
-fFB
pxR
-hsp
-cQC
-dGN
-oSL
-xtO
-xKT
-hKH
-jLH
-hsp
+bwy
+kSH
+gPw
+iVo
+fsp
+gNY
+xrC
+oUj
+xbh
+cUS
+mLS
+wUr
+aMW
+nBy
+suf
+pnM
+pMH
+gAD
+vbw
+gAD
+dYs
+dYs
+uPX
+wtZ
+vzx
+uKQ
+xji
+fjQ
+aMW
abj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-fSo
+tKX
aaa
aaa
aaa
bvh
-xjZ
+jlK
bvh
aaa
aaa
@@ -153594,6 +155891,7 @@ aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -153631,12 +155929,9 @@ aaa
aaa
aaa
aaa
-"}
-(82,1,1) = {"
-aaa
-aaa
-aaa
aaa
+"}
+(84,1,1) = {"
aaa
aaa
aaa
@@ -153697,103 +155992,128 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-ash
-atL
-atY
-abj
-ash
-atL
-atY
-abj
-ash
-atL
-atY
-abj
-bCI
-abj
-abj
-aGX
-aGX
-aKo
-aGX
-aMy
-aMy
-aPm
-aMy
-aMy
-aZY
-bCI
-bCI
-bCI
-bCI
-bCI
-abj
-bCI
-bCI
-bCI
-bCI
bCI
abj
-bCI
-bCI
-bCI
-bCI
-bCI
+aaa
+aaa
abj
abj
-bwN
-bzH
-iHX
-bBo
-bBo
-bGu
-bwN
-acF
-acF
-acF
abj
abj
-uhP
abj
+bPU
+bdI
+bqE
+bdI
+bqE
+bdI
+bqE
+bdI
+cqC
+aSy
+dhV
+cCZ
+aIr
+izY
+gFR
+bAv
+wyv
+coz
+djn
+dnO
+dsk
+xhK
+xhK
+xhK
+xhK
+xhK
+xhK
+xhK
+enO
+dYz
+eJs
+fLz
+fZL
+gIq
+hrX
+iil
+iOQ
+jxu
+cCi
+cII
+lxQ
+bzL
+byl
+bGz
+uKT
+pnF
+sRo
+bJZ
+sRo
+bVt
+dlA
+bZf
+bXU
+vSE
+hVL
+bXU
+bXU
+cwu
+cwu
+cwu
+cwu
+dVW
+eQV
+hWL
+eQV
+nml
+cwu
+cwu
+cwu
+cwu
+bXU
bXU
-bZk
-cbd
-cxG
+rRf
+pZM
+bXU
+wUr
+cUS
+vik
+fsp
+xrC
+pVo
+wFY
+eAg
+iNR
+xrC
+qQf
+mLS
+pxR
+csO
+vbw
+kNj
+pmu
+pMH
+vbw
+bmJ
+vbw
+dYv
+gAD
+uPX
+rzO
+wOn
+uJw
+vbw
+qbq
+dbz
aaa
-czw
-cjI
-cnZ
+tKX
abj
abj
-cuQ
-aaa
-acF
abj
abj
-dEx
-dvU
-czw
-aaa
-cCg
-cDt
-dCx
-bXU
-tnM
-ipx
-hsp
-cJO
-hsp
-cCx
-hsp
-cJO
-cCx
-hsp
-cCx
-cJO
-hsp
-hsp
+jlK
abj
aaa
aaa
@@ -153811,27 +156131,6 @@ aaa
aaa
aaa
aaa
-fSo
-aaa
-aaa
-aaa
-abj
-xjZ
-abj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -153889,10 +156188,7 @@ aaa
aaa
aaa
"}
-(83,1,1) = {"
-aaa
-aaa
-aaa
+(85,1,1) = {"
aaa
aaa
aaa
@@ -153955,147 +156251,127 @@ aaa
aaa
aaa
bCI
-aaa
-ash
-atL
-atY
-aaa
-ash
-atL
-atY
-aaa
-ash
-atL
-atY
-aaa
+abj
+abj
+bCI
bCI
-aaa
abj
-aGY
-aIq
-aLl
-aKY
-aMy
-aNU
-aPn
-aQM
+atd
+cbF
+cgN
+cki
+cbF
+cvj
+cgN
+atd
+cbF
+cvj
+cgN
+cki
+atd
aSy
+cDb
+aIs
+cIa
+gFR
+bzl
+oQk
+aQO
+djo
+bGM
aTU
-abj
-abj
-aaa
-abj
-abj
-abj
-aaa
-abj
-abj
-abj
-aaa
-abj
-abj
-abj
-aaa
-abj
-abj
-abj
-abj
-bwN
-bzI
-bBn
-bDf
-bEI
-bGv
-sRo
-sRo
-bPD
-sRo
-sRo
-abj
-csy
-bWd
+chP
+chP
+chP
+hyJ
+hyJ
+iIc
+iIc
+kmA
+lqA
+eMM
+fLM
+crp
+csG
+bpv
+ihm
+iNS
+pVP
+cCz
+kxu
+rZo
+iPD
+bBr
+bGz
+uKU
+pob
+bRT
+lRk
+bRT
+tLN
+dlB
+wtq
bXU
-bZl
-cbb
-cxG
-abj
-cBU
-cjJ
-abj
-aaa
-aaa
-acF
-abj
-acF
-aaa
-aaa
-abj
-dUE
-cPK
-abj
-cCg
-cbb
-cDv
+dgi
+gFc
+oGZ
+kFz
+dCn
+mPs
+dCn
+cwu
+waI
+yjA
+auW
+nGY
+iIm
+cwu
+dCn
+mPs
+dCn
+eyL
+oGZ
+gFc
+wnb
bXU
-mMd
-gPw
-maB
-maB
-lKm
-cdv
-mpl
-fFB
-qcX
-jGR
-fFB
-fFB
-kPC
-xtO
-abj
-abj
-abj
-dbz
-dbz
-aMW
+pxR
+cUS
+cUS
+bwy
+cIx
+bwy
+cUS
+bwy
+xeP
+bwy
+cUS
+mLS
+pxR
+iWq
+vbw
+jHw
+qnQ
+dfQ
+jUs
+jUs
+jUs
+iHF
+wGH
+pfa
+rUS
+dmM
+qWC
dbz
-aMW
dbz
dbz
aaa
-aaa
-bCI
-bCI
-aaa
-aaa
-aaa
-fSo
+tKX
aaa
aaa
aaa
bvh
-xjZ
-bvh
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+jlK
+bvh
aaa
aaa
aaa
@@ -154121,6 +156397,13 @@ aaa
aaa
aaa
aaa
+bCI
+bCI
+bCI
+abj
+abj
+bCI
+bCI
aaa
aaa
aaa
@@ -154145,8 +156428,6 @@ aaa
aaa
aaa
aaa
-"}
-(84,1,1) = {"
aaa
aaa
aaa
@@ -154163,6 +156444,8 @@ aaa
aaa
aaa
aaa
+"}
+(86,1,1) = {"
aaa
aaa
aaa
@@ -154211,129 +156494,152 @@ aaa
aaa
aaa
aaa
-abj
+aLg
+aNz
+aOw
+aNz
+aOw
+bam
+aOw
+bam
+bjg
aaa
-ash
-atU
-atY
aaa
-ash
-atL
-atY
aaa
-ash
-atU
-atY
aaa
-abj
+bCI
aaa
abj
-aGY
-aIr
-aJI
-aKZ
-aMy
-aNV
-aPo
-aQN
-aMy
-aZY
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-abj
-abj
-bwN
-bzJ
-bBp
-bDh
-bEK
-bGw
-sRo
-bJZ
-bPE
-bVt
-sRo
-bZf
-ctI
-ctJ
-bXU
-bZm
-cbe
-cxG
aaa
-czw
-cjI
abj
-aaa
-acF
-acF
-acF
-acF
-acF
-aaa
abj
-dvU
-czw
-aaa
+atd
+cbJ
+cgX
+ckm
+coH
+xOq
+bst
cCg
-cDu
-dUG
+cDF
+cMh
+cPa
+cRE
+day
+aSy
+cDg
+bvo
+aLr
+aOg
+dJv
+oQk
+gIq
+cxd
+iNS
+bIP
+bMS
+cfm
+cfm
+hAC
+hAC
+hAC
+hAC
+kmD
+dYE
+biL
+bkw
+cUI
+csJ
+oud
+cwf
+cya
+czE
+cCA
+kLP
+lsT
+cIz
+lsT
+bGz
+uLR
+poq
+cTo
+dos
+bMd
+rbI
+bSf
+bGz
+bXU
+oGZ
+wgm
+bXU
+rQP
+mWV
+gzX
+wNB
+gcj
+oON
+dMr
+cpg
+tKz
+jGo
+gcj
+mWV
+gzX
+wNB
+rQP
+bXU
+sII
+oGZ
bXU
-kvP
-cFT
-xrC
-qcX
-pxR
-fFB
-fFB
-pxR
-pxR
-fFB
-pxR
-pxR
pxR
-hsp
-abj
-abj
-qvB
-dbz
-aOs
-dhu
-dhv
-dWw
-aUp
-dbz
-abj
-abj
-abj
-abj
+nUy
+cUS
+cTL
+pVo
+vkm
+bwy
+kWY
+pVo
+okD
+cUS
+hoX
+xbS
+ygy
+xKF
+arH
+jvC
+cXZ
+pCz
+wlX
+cWb
+qQl
+vAN
+dDI
+kZh
+uJd
+mdb
+aMW
abj
aaa
aaa
-fSo
-aaa
-aaa
-aaa
-bCI
-xjZ
+tKX
bCI
aaa
aaa
+bvh
+jlK
+bvh
+upZ
+wqU
+wqU
+wqU
+wqU
+wqU
+wqU
+wqU
+wqU
+iXs
+rPG
aaa
aaa
aaa
@@ -154341,31 +156647,24 @@ aaa
aaa
aaa
aaa
+bvh
+bvh
+abj
+bCI
+abj
+abj
+bCI
+bCI
aaa
aaa
+abj
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+bCI
+bCI
+abj
+bCI
+bCI
aaa
aaa
aaa
@@ -154403,17 +156702,7 @@ aaa
aaa
aaa
"}
-(85,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+(87,1,1) = {"
aaa
aaa
aaa
@@ -154455,7 +156744,6 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -154463,166 +156751,177 @@ aaa
aaa
aaa
aaa
+aLh
+aNO
+aNO
+aNO
+aNO
+aNO
+aNO
+aNO
+bjh
aaa
-aaZ
aaa
aaa
aaa
bCI
-aaa
abj
-aaa
+bCI
abj
-aaa
-ash
-atU
-atY
-aaa
+atd
+atd
+atd
+cbU
+bPV
+bOE
+bPV
+cvk
+caf
+caf
+cDI
+bPV
+bPV
+cRK
+dbi
+aSy
+aSy
+aIt
+aMO
+aOg
+dJO
+qdV
+gIq
+cxd
+iNS
+cLU
+dQq
+dQq
+dQq
+dQq
+dQq
+iJg
+dQq
+kpq
+dYJ
+ePl
+gHQ
+hQn
+vWf
+neD
+crL
+ppO
+ppO
+jTD
+cFb
+rZz
+mog
+nIo
+bDj
+uNn
+pqn
+nIo
+bGz
+bMe
+bNX
+bQe
+dos
+bUe
+xfX
+nAT
+mrH
+tdv
+tPh
+dDP
+dQC
+tXp
+uXS
+nnT
+aIo
+oFs
+cqQ
+tXp
+ldB
+dDP
+tPh
+rDF
+glp
+hSF
+wGU
+bXU
+hGZ
+olA
+bwy
+mRE
+fsp
+kkV
+bwy
+kWn
+sic
+qXu
+qQf
+olA
+ivi
+wLd
+pkp
+jMH
+poa
+dYs
+dam
+dYs
+dYs
+dYs
+vbw
+otP
+oYL
+khz
+dYv
+dbz
abj
-aaa
abj
-aaa
+abj
+tKX
bCI
abj
abj
-aGY
-aIs
-aJM
-aLc
-aMy
-aNW
-aPp
-aQO
-aMy
-aTU
-aSN
-aXa
-aYu
-aXa
-aSN
-bdk
-beE
-bdk
-aSN
-biK
-bkv
-biK
-aSN
-bpv
-brx
-bpv
-aSN
abj
+jlK
abj
-bwN
-bzK
-bBr
-bDg
-bEM
-bGx
-sRo
-lRk
-bPF
-lRk
-sRo
-bRT
-bUc
-bWf
-bXU
-bXU
-bZl
-cFL
-acF
-czw
-cjI
-coa
-acF
-acF
-cwt
-clp
-cwv
-acF
-acF
-acF
-dvU
-czw
+tPD
+qex
+vfK
+dfD
+ffR
+rVp
+rVp
+imy
+qoz
+moU
+iXs
acF
-cbb
-cDv
-bXU
-bXU
-pxR
-cUS
-cUS
-cUS
-cOF
-cUS
-eGv
-cUS
-cUS
-cUS
-cUS
-cJK
-wOh
-aMW
-aMV
-dbz
-snQ
-dbz
-aUp
-aRj
-duT
-dYm
-aRm
-dbz
-aMW
-dbz
-aMV
-aMW
-abj
-bCI
-aaa
-fSo
-aaa
-aaa
-aaa
-bvh
-xjZ
-abj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
aaa
aaa
aaa
+bvh
aaa
aaa
+bCI
aaa
aaa
+abj
aaa
aaa
+nOK
+pIR
+tvi
aaa
aaa
+abj
aaa
aaa
+bCI
aaa
aaa
aaa
@@ -154660,20 +156959,7 @@ aaa
aaa
aaa
"}
-(86,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+(88,1,1) = {"
aaa
aaa
aaa
@@ -154722,134 +157008,177 @@ aaa
aaa
aaa
aaa
+aRj
+bfg
+hcz
+aKc
+aIz
+baD
+iNJ
+bfg
+aRj
+aaq
aaa
aaa
-abj
-bCI
-bCI
-abj
-bCI
-abj
aaa
abj
aaa
-abj
-xOq
-abj
-bCI
-abj
bCI
-bCI
-abj
-abj
-aGY
-aGY
-aLr
-aGY
-aMy
-aNV
-aPq
-aQN
-aMy
-aZY
-aSN
-aXb
-aYv
-aXa
-aSN
-bdl
-beF
-bdk
-aSN
-biL
-bkw
-biK
-aSN
-bpw
-bpv
-bpv
-aSN
-abj
-bwN
-bwN
-bwN
-bBq
-bDi
-bEL
-bwN
-sRo
-bKa
-bMd
-bNW
-bSf
-pVP
-bUd
-bWg
-bXU
-bXU
-dPf
-cbb
-abj
-cBU
-cjJ
-aaa
-abj
-acF
-cjI
-cpg
-dvU
-acF
-abj
-aaa
-dUE
-cPK
abj
-cbb
-ipi
+atd
+bPR
+bVk
+cca
+bHo
+bON
+bPW
+bUO
+bjC
+bgM
+cdT
+cfg
+cmc
+crj
+ctJ
+cxU
+bum
+aIu
+aJN
+aOg
+bAv
+xOx
+gIq
+cxd
+bHe
+czz
+bMU
+aXd
+bah
+hAX
+dKm
+fnC
+cUI
+ihm
+dYY
+clB
+gFR
+gFR
+dti
+aOg
+aOg
+aOg
+aOg
+kLP
+kLP
+rZU
+sMk
+bPK
+tVr
+uOE
+pqZ
+cTM
+bGz
+dte
+vgk
+uXf
+bNY
+pyQ
+toL
+fPA
+bZn
+gHz
+wUB
+nth
+pGB
+pvn
+dXn
+pEz
+dQz
+pEz
+dUA
+pvn
+pGB
+ejp
+qAK
+xGf
+jsU
+eMv
+rEO
bXU
-dHx
-fFB
+pxR
+fIg
cUS
-cJM
-cQx
-cOB
-cQx
+cPG
+cOC
+lRT
bwy
-cJZ
-pVo
-cTm
+jjY
+cOC
+rQm
cUS
-pxR
-pxR
-aMY
-dae
-aUp
-kpE
-daf
-aRm
-dhv
-duT
-dYm
-aRm
-dmM
-dou
-dpR
-aOs
+ioo
+prC
+wLd
+xDB
+kBv
+dYs
+dYs
+dYs
+rNg
+xDB
+dhw
+qbq
+qbq
+pzu
+eUm
+xDB
aMW
abj
-bCI
-bCI
-fSo
aaa
aaa
+tKX
+bCI
+aaa
aaa
+bvh
+jlK
+bvh
+gff
+qex
+tjE
+kOu
+vfK
+vfK
+vfK
+vfK
+vfK
+vfK
+tRm
+acF
+bvh
+bvh
abj
-xjZ
+bvh
+bvh
abj
+abj
+abj
+abj
+bCI
aaa
+nOK
+pIR
+tvi
aaa
+nOK
+dYL
+tvi
aaa
+nOK
+pIR
+tvi
aaa
+abj
aaa
aaa
aaa
@@ -154886,6 +157215,8 @@ aaa
aaa
aaa
aaa
+"}
+(89,1,1) = {"
aaa
aaa
aaa
@@ -154916,15 +157247,6 @@ aaa
aaa
aaa
aaa
-"}
-(87,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -154943,26 +157265,177 @@ aaa
aaa
aaa
aaa
+aLi
+aEN
+rkC
+rkC
+rkC
+rkC
+rkC
+bfi
+aLi
aaa
aaa
aaa
aaa
+bCI
+abj
+bCI
aaa
+bMn
+bPZ
+bVH
+ccb
+bHp
+bdL
+caN
+cvI
+cam
+cam
+cDO
+cfi
+cPq
+cRT
+ctK
+cxV
+dnz
+dtU
+aJO
+aLd
+dJW
+cVO
+gIq
+cxd
+eFI
+kLP
+kLP
+gFR
+gFR
+gFR
+kLP
+kLP
+dQt
+ihm
+dYY
+cWq
+cov
+cov
+gIA
+hsQ
+ilQ
+aOg
+jxv
+qmn
+cFd
+lzW
+mpA
+bDe
+cYc
+uQb
+prU
+cTO
+bGz
+xIF
+dhc
+ddR
+dor
+bUg
+xLU
+cCp
+dBp
+dCv
+tzM
+tzM
+dQD
+bXU
+dXo
+nAz
+dQA
+dSy
+dUC
+bXU
+fFR
+tzM
+tzM
+nQB
+uyI
+fPD
+rfz
+bXU
+jDz
+cUS
+cUS
+cUS
+cUS
+qQf
+cUS
+cUS
+cUS
+cUS
+cUS
+cUS
+ocD
+iZQ
+iZQ
+lpm
+lpm
+lpm
+lpm
+lpm
+lpm
+lpm
+lpm
+lpm
+lpm
+dmN
+nte
+nte
aaa
aaa
aaa
+tKX
+bCI
aaa
aaa
+bvh
+jlK
+bvh
+vRb
+qex
+vfK
+mim
+vfK
+wBf
+wBf
+vfK
+rPu
+qNl
+iXs
+acF
+bvh
aaa
aaa
+abj
aaa
aaa
+bvh
aaa
aaa
+abj
aaa
+nOK
+dYL
+tvi
aaa
+nOK
+dYL
+tvi
aaa
+nOK
+dYL
+tvi
aaa
+bCI
aaa
aaa
aaa
@@ -154981,128 +157454,10 @@ aaa
aaa
aaa
aaa
-abj
aaa
-abj
aaa
-bCI
-bCI
-bCI
-bCI
-bCI
-bCI
-bCI
-bCI
-bCI
-abj
-abj
-abj
-abj
-abj
-aGZ
-aIt
-aMO
-aLb
-aMA
-aNY
-aPr
-aQP
-aGZ
-aTU
-aSN
-aXc
-aYw
-bag
-aSN
-bdm
-beG
-bga
-aSN
-biM
-bkx
-bmt
-aSN
-bpx
-bry
-btf
-aSN
-acF
-bwN
-byi
-bzL
-bBt
-bDj
-bEN
-bGy
-bLX
-bKb
-bMe
-bNX
-bQe
-bRU
-bUe
-cgD
-bXU
-bXU
-bZl
-dtI
-acF
-czw
-cjI
-acF
-acF
-acF
-cqO
-cqQ
-cwu
-acF
-acF
-dQC
-dvU
-czw
-acF
-cbb
-cDv
-bXU
-bXU
-pxR
-bwy
-cIx
-fsp
-hQV
-cMY
-cRE
-hQV
-mdB
-qRy
-cUS
-pxR
-qcX
-tOs
-aUp
-dfQ
-dam
-dez
-dkq
-dfL
-dfL
-dfL
-dYs
-cUR
-dYv
-dcX
-dkr
-dbz
-abj
-abj
-abj
-uiA
-bCI
aaa
aaa
-bvh
-xjZ
-bvh
aaa
aaa
aaa
@@ -155117,6 +157472,8 @@ aaa
aaa
aaa
aaa
+"}
+(90,1,1) = {"
aaa
aaa
aaa
@@ -155165,20 +157522,177 @@ aaa
aaa
aaa
aaa
+aRj
+aHs
+rkC
+rkC
+rkC
+rkC
+rkC
+bfz
+aRj
aaa
aaa
aaa
aaa
+bCI
aaa
+bCI
+abj
+bMA
+bQv
+bzy
+aSG
+bHq
+aYj
+bjx
+aBV
+aBV
+aBV
+awI
+cga
+boJ
+bqF
+aJy
+btA
+btX
+bvC
+bxd
+aOg
+bAv
+dNz
+gIq
+cxd
+bHe
+gFR
+ccc
+bmN
+bQL
+baj
+dKB
+gFR
+jti
+ihm
+dYY
+cUI
+cow
+mKO
+nSt
+ovf
+oMF
+aOg
+pWx
+qmu
+qZy
+cKe
+mto
+nOg
+bEJ
+oPZ
+psk
+bIq
+bGz
+xKf
+nBR
+bWl
+tPd
+bUg
+xLU
+eIu
+dUI
+dCy
+tzM
+tzM
+dQD
+bXU
+bXU
+dSz
+dUD
+dSz
+bXU
+bXU
+dXr
+tzM
+mQp
+eAb
+uyI
+tzM
+wXm
+gVN
+pgt
+yhX
+yhX
+dWg
+cbC
+yhX
+cbC
+cbC
+fYZ
+dWg
+cbC
+yhX
+hwC
+cbC
+cbC
+lpm
+dah
+xYp
+jjD
+dah
+rEd
+xYp
+szc
+twN
+lpm
+rNX
+aSP
+vEZ
aaa
aaa
aaa
-"}
-(88,1,1) = {"
+tKX
aaa
aaa
aaa
+bvh
+jlK
+bvh
+tSv
+wqU
+wqU
+wqU
+wqU
+wqU
+wqU
+hUg
+wqU
+iXs
+sZP
aaa
+bvh
+abj
+abj
+bvh
+bvh
+abj
+bvh
+bvh
+abj
+abj
+abj
+nOK
+dYL
+tvi
+abj
+nOK
+dYL
+tvi
+abj
+nOK
+dYL
+tvi
+abj
+bCI
aaa
aaa
aaa
@@ -155215,6 +157729,8 @@ aaa
aaa
aaa
aaa
+"}
+(91,1,1) = {"
aaa
aaa
aaa
@@ -155232,134 +157748,28 @@ aaa
aaa
aaa
aaa
-aaq
aaa
aaa
aaa
aaa
aaa
-bvh
aaa
-bvh
aaa
-aaq
-abj
aaa
-abj
aaa
-abj
aaa
aaa
-abj
aaa
aaa
-bCI
aaa
-acF
-aHa
-aIu
-aJN
-hJA
-aLk
-aOd
-aPt
-aQQ
-aSz
-baa
-aSN
-aXd
-aVR
-bah
-aSN
-aXd
-aVR
-bah
-aSN
-aXd
-aVR
-bah
-aSN
-bah
-aVR
-aXd
-aSN
-bUb
-byj
-bzM
-bBs
-bPK
-bDk
-bEO
-bIp
-sRo
-bKc
-bMf
-vgk
-bSf
-bNY
-bUf
-bWi
-bXU
-bZn
-cdb
-cxG
aaa
-czw
-cjI
-abj
aaa
-acF
-acF
-acF
-acF
-acF
aaa
-abj
-dvU
-czw
aaa
-cCg
-cDw
-dUH
-bXU
-pxR
-cUS
-cHk
-fsp
-cRH
-cMX
-cOC
-cKb
-skB
-cTj
-cUS
-cWr
-kPC
-tOs
-dbG
-cXZ
-dcN
-vPS
-aUp
-dhw
-diY
-dkr
-gAD
-cWm
-cWt
-cXT
-dqZ
-aMY
-abj
aaa
aaa
-uiA
-bCI
aaa
aaa
-bvh
-xjZ
-bvh
aaa
aaa
aaa
@@ -155369,11 +157779,143 @@ aaa
aaa
aaa
aaa
+aRj
+dwL
+rkC
+rkC
+rkC
+rkC
+rkC
+hab
+aRj
aaa
aaa
aaa
aaa
+bCI
+abj
+abj
aaa
+bMD
+bwh
+bzz
+bCj
+qWu
+aYt
+tGE
+bjU
+caA
+caA
+tGE
+cga
+boL
+crk
+ctV
+btC
+atd
+cDV
+atd
+aOg
+aMI
+cWf
+aQS
+dZR
+eLO
+dsO
+cHb
+gwN
+gwN
+gwN
+cHb
+dsO
+jty
+cfC
+dYY
+cUI
+muM
+crv
+nTo
+bpy
+bvU
+btg
+pWC
+bvD
+kze
+cKe
+cIA
+bER
+bDm
+oPZ
+psk
+bIr
+bGz
+xKH
+tMj
+dOu
+dos
+bUh
+xLU
+dza
+dUI
+dCz
+egF
+egF
+xNt
+dJD
+pei
+dOM
+dQQ
+dSC
+dUO
+dVY
+vUJ
+egF
+egF
+nQt
+uyI
+fQv
+gmI
+bXU
+hLD
+jFc
+xiH
+ybN
+wbi
+wbi
+vpz
+wbi
+wbi
+wbi
+wbi
+wbi
+cqJ
+xiH
+wYh
+lpm
+wcS
+gkD
+kYM
+kNI
+nkH
+fiH
+nkH
+ejU
+lpm
+gMy
+wKr
+vEZ
+abj
+abj
+abj
+tKX
+abj
+acF
+abj
+abj
+jlK
+abj
+abj
+abj
aaa
aaa
aaa
@@ -155384,16 +157926,30 @@ aaa
aaa
aaa
aaa
+abj
aaa
aaa
+abj
aaa
aaa
+abj
aaa
aaa
+bCI
aaa
+nOK
+dYL
+tvi
aaa
+nOK
+dYL
+tvi
aaa
+nOK
+dYL
+tvi
aaa
+abj
aaa
aaa
aaa
@@ -155431,19 +157987,7 @@ aaa
aaa
aaa
"}
-(89,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+(92,1,1) = {"
aaa
aaa
aaa
@@ -155492,168 +158036,180 @@ aaa
aaa
aaa
aaa
+aRj
+bfg
+aLJ
+aNM
+aDF
+aNM
+bds
+hab
+aRj
+aaq
aaa
aaa
aaa
-bvh
-abj
-bvh
-bvh
-abj
-bvh
-abj
-bvh
-abj
-abj
-abj
-abj
-abj
abj
aaa
+bCI
abj
-abj
-abj
-aGZ
-aIv
-aJO
-aLd
-aMB
-aOa
-aPB
-aQR
-aGZ
-abj
-abj
-aOW
-abj
-buX
-abj
-aOW
-abj
-buX
-abj
-aOW
-abj
-buX
-abj
-buX
-abj
-aOW
-abj
-acF
-bwN
-byk
-bzL
-bDe
-bDl
-bGt
-bGz
-bGz
-bGz
-bGz
-bGz
+atd
+bwl
+aQJ
+cce
+aVg
+aYF
+bbf
+bmV
+bgZ
+cCk
+cEi
+aBh
+boP
+bqG
+bsu
+btE
+atd
+bvC
+aJW
+aOg
+dJZ
+dNA
+gIq
+cxd
+bHe
+gFR
+fKr
+aXh
+aYx
+bal
+bbN
+gFR
+cUI
+dVq
+lrb
+meO
+gJA
+gJA
+gJA
+htt
+ima
+aOg
+kAF
+kAF
+kAF
+lAc
+cIA
+bER
+bDn
+bER
+psk
+whh
bGz
bGz
+tPd
bGz
bGz
-bXU
-bZl
-cbb
-cxG
-abj
-cBU
-cjJ
-abj
+kVo
+erO
+eIu
+cbc
+tPh
+tPh
+tPh
+tPh
+tPh
+tPh
+rzf
+dQS
+dSF
+tPh
+tPh
+tPh
+tPh
+tPh
+tPh
+cPX
+mGs
+eLU
+cCh
+dVy
+yhX
+ftu
+qTt
+ikA
+ikA
+ikA
+ikA
+ikA
+ikA
+ikA
+ikA
+ikA
+cbC
+oHS
+lpm
+kdP
+dfT
+fvu
+jHC
+thA
+scZ
+eRa
+sRk
+lpm
+rNX
+wKr
+vEZ
aaa
aaa
-acF
-abj
-acF
aaa
+tKX
+aaa
+acF
aaa
abj
-dUE
-cPK
+jlK
abj
-cCg
-cbb
-cDv
-bXU
-pxR
-eGv
-cUS
-cMU
-fsp
-cRL
-tPh
-bwy
-bwy
-bwy
-cUS
-cWs
-qcX
-tOs
-dag
-cXU
-dcO
-deA
-dfM
-dfM
-dfM
-dfM
-dfM
-dmN
-aRm
-cXU
-dra
-dbz
-dbz
-dbz
aaa
-uiA
-bCI
abj
abj
abj
-xjZ
abj
+acF
aaa
aaa
aaa
aaa
aaa
aaa
+bvh
aaa
aaa
+bCI
+bCI
aaa
+bCI
+bCI
aaa
+bCI
aaa
+nOK
+dYL
+tvi
aaa
+abj
+gNz
+abj
aaa
+nOK
+dYL
+tvi
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abj
+bCI
+bCI
+bCI
aaa
aaa
aaa
@@ -155688,19 +158244,7 @@ aaa
aaa
aaa
"}
-(90,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+(93,1,1) = {"
aaa
aaa
aaa
@@ -155749,168 +158293,180 @@ aaa
aaa
aaa
aaa
+aLh
+aNO
+aOJ
+aUe
+vGz
+aUe
+bdA
+aNE
+aRj
aaa
aaa
aaa
-bvh
aaa
+bCI
abj
-aaa
-aaa
-bvh
-aaa
bCI
aaa
-aAe
-aBV
-aAe
-aBV
-aAe
-aBV
-aAe
-aJy
-aBV
-aGZ
-aIw
-aJO
-aLe
-aMC
-aOb
-aPu
-aOb
-aOg
-aOg
-aOg
-bmN
-aOb
-baj
-aYO
-bmN
-aOb
-baj
-aYO
-bmN
-aOb
-baj
-aOg
-baj
-aOb
-bmN
-aOg
-aOg
-bwP
-byl
-byl
-bBu
-bEJ
-byl
-bGz
-bIq
-bKd
-bMg
-bNZ
-bWl
-bRV
-bUg
-bWj
+atd
+bwv
+baE
+aSM
+aVh
+aYJ
+bbf
+biS
+biS
+biS
+cEz
+cNa
+cmi
+bqH
+bsw
+btF
+buk
+duf
+aJQ
+dDH
+bAv
+aJY
+gIq
+cxd
+dnS
+kLP
+kLP
+gFR
+gFR
+gFR
+kLP
+kLP
+juc
+dVq
+cik
+gca
+gca
+gca
+gca
+hvI
+brB
+dwW
+pWK
+jVz
+bwS
+byo
+cIA
+oPZ
+cRf
+bER
+psk
+wiM
+cYf
+xLj
+tPh
+bQh
+bRX
+hUm
+bWm
+ryM
+dXD
+nkf
+dXD
+nkf
+dXD
+nkf
+dXD
+qlu
+dQT
+dSH
+dXD
+nkf
+dXD
+nkf
+dXD
+jdN
+eXY
+jwN
+gpV
bXU
-bZo
-cbd
-cxG
-aaa
-czw
-cjI
-cqN
+cDz
+yhX
+cbC
+fbz
+ikA
+cOM
+cOM
+cIM
+pHK
+cIM
+cIM
+cIM
+ikA
+hUL
+pMV
+lpm
+wUX
+sIV
+tsG
+wDg
+kCW
+kCW
+dBy
+lpm
+lpm
+rAh
+tLI
+nte
+abj
abj
abj
+tKX
+abj
acF
-aaa
-czi
+iGw
+abj
+jlK
+abj
abj
abj
-dQD
-dvU
-czw
aaa
-cCg
-cDt
-dUI
-bXU
-pxR
-cUS
-cTk
-cJS
-fsp
-cOy
-cWo
-dWg
-pAg
-sBI
-cUS
-dPy
-mpl
-aMW
-dah
-dbD
-dcP
-deB
-dcX
-pnr
-dfN
-dfN
-aUp
-dmO
-aSP
-cXV
-aRm
-aUp
-aUp
-dbz
aaa
-uiA
aaa
+acF
+abj
+abj
+abj
+acF
aaa
aaa
bvh
-xjZ
-bvh
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abj
+abj
+bCI
+abj
+abj
+abj
+abj
+abj
+abj
aaa
aaa
+gNz
+abj
+abj
+abj
+mxe
+abj
+abj
+abj
+gNz
+abj
aaa
aaa
+abj
aaa
+bCI
aaa
aaa
aaa
@@ -155945,11 +158501,7 @@ aaa
aaa
aaa
"}
-(91,1,1) = {"
-aaa
-aaa
-aaa
-aaa
+(94,1,1) = {"
aaa
aaa
aaa
@@ -155998,139 +158550,183 @@ aaa
aaa
aaa
aaa
+aRj
+mzj
+aOS
+bbn
+aEL
+bbn
+hFX
+hab
+aRj
aaa
aaa
aaa
aaa
+bCI
aaa
+bCI
+abj
+atd
+bQw
+aQK
+aSO
+bIH
+aYW
+bbk
+cfr
+aDC
+cfr
+cdZ
+cfr
+aCV
+aEg
+bsx
+btG
+bul
+duo
+dzj
+aPE
+dKD
+cWn
+gIq
+cxd
+bHe
+fnC
+fLp
+dAN
+bpK
+bTa
+bWd
+czz
+cUI
+kpL
+cit
+eSz
+iww
+iww
+iww
+ovW
+cwk
+bti
+pWN
+byp
+rbD
+saA
+aUb
+txI
+tVu
+bES
+vBX
+wiZ
+rcM
+xMd
+tez
+dlC
+cnj
+oQC
+xMX
+iFH
+ybT
+cbj
+cbj
+wcz
+cbj
+cbj
+vCh
+ptE
+tED
+cpi
+tPv
+etT
+sMJ
+tPv
+tPv
+pox
+tPv
+tPv
+vhV
+bXU
+cDz
+yhX
+yhX
+fKi
+ikA
+sEz
+sZg
+wMW
+wMW
+wMW
+wMW
+eYK
+ikA
+cbC
+oHS
+oOZ
+oKx
+pYL
+iah
+rbA
+rEx
+kCn
+sBx
+ogP
+oOZ
+rAh
+xzo
+ycn
aaa
aaa
aaa
+tKX
aaa
aaa
aaa
bvh
-abj
-bvh
-bvh
-abj
+jlK
bvh
+aaa
abj
abj
abj
-aAi
-ayG
-azR
-ayG
-aAi
-ayG
-tGE
-aIT
-aEa
-aGZ
-aIx
-aJO
-aLf
-aMD
-aOc
-aPv
-aQS
-aSA
-bGB
-kLP
-aXg
-aTW
-bak
-bbM
-aXg
-aTW
-bak
-aVC
-aXg
-aTW
-bak
-bnS
-bpy
-bvU
-btg
-buo
-bvD
-bwP
-bym
-bzN
-bBv
-bDm
-bET
-bGz
-bIr
-bKe
-bMh
-bOa
-dOu
-bOa
-bUh
-bWk
-bXU
-bZl
-cbb
-cxG
abj
-czw
-cjI
-cif
+acF
aaa
aaa
-acF
aaa
-cif
+acF
+abj
+abj
+acF
aaa
aaa
-cif
-dvU
-czw
+bCI
+abj
+mxe
+mxe
+mxe
+mxe
+mxe
+mxe
+mxe
+mxe
+mxe
+mxe
+mxe
+mxe
+mxe
+mxe
+mxe
+mxe
+uqO
+hkf
+hkf
+cUB
abj
-cCg
-cbb
-cDv
-bXU
-fHC
-bwy
-cNe
-ixc
-cLI
-fsp
-cXS
-cXS
-hQV
-nUJ
-cUS
-dPw
-mpl
-aMW
-dai
-dbE
-dcQ
-deC
-dcX
-dnH
-aUp
-dks
-dcX
-dmO
-aUp
-dYy
-drb
-aSP
-dtJ
-aMW
abj
-uiA
aaa
aaa
aaa
-fsJ
-xjZ
-bvh
aaa
aaa
aaa
@@ -156161,6 +158757,8 @@ aaa
aaa
aaa
aaa
+"}
+(95,1,1) = {"
aaa
aaa
aaa
@@ -156201,8 +158799,6 @@ aaa
aaa
aaa
aaa
-"}
-(92,1,1) = {"
aaa
aaa
aaa
@@ -156211,27 +158807,180 @@ aaa
aaa
aaa
aaa
+aLi
+aNP
+aOS
+aOS
+aOS
+aOS
+aLX
+aOV
+aLi
aaa
aaa
aaa
+abj
+bCI
aaa
+abj
aaa
+atd
+bwv
+baE
+cPl
+auG
+aeI
+bbf
+bhB
+bhB
+bhB
+cEF
+cft
+cmi
+bqK
+bsy
+btH
+bum
+bvp
+cIG
+cym
+kWc
+cVh
+gIq
+cxd
+iNS
+bIW
+ihm
+ihm
+gTh
+dVB
+dVB
+iLi
+dVB
+dVB
+lrz
+rTm
+cwl
+mMH
+rTm
+owl
+cjp
+cym
+pXg
+kaE
+bwS
+bys
+cIB
+tzb
+psk
+bKi
+vCj
+wiM
+rcV
+bMl
+tPv
+fkX
+bRZ
+bUl
+xQt
+dzi
+uJi
+dZc
+ehG
+xsj
+eeG
+vtm
+fui
+uCs
+cmR
+cod
+cpl
+mDe
+mDe
+bnE
+oMo
+ggB
+tQQ
+dWi
+mDe
+mDe
+dvC
+yhX
+yhX
+vEh
+ikA
+cIM
+cOM
+cIM
+cIM
+cIM
+cIM
+cIM
+ikA
+lGR
+oHS
+oOZ
+kzx
+xnO
+dcU
+deE
+dfO
+seF
+kHF
+dkt
+oOZ
+rNX
+xGN
+nte
aaa
aaa
aaa
+tKX
+bCI
aaa
aaa
+bvh
+jlK
+bvh
aaa
aaa
aaa
+abj
aaa
+acF
+abj
+abj
+abj
+acF
aaa
aaa
+acF
+abj
+abj
+abj
+abj
+mxe
+abj
+abj
+abj
+abj
aaa
aaa
+xwx
+abj
+abj
+abj
+mxe
+abj
+abj
+abj
+xwx
+abj
aaa
aaa
+abj
aaa
+bCI
aaa
aaa
aaa
@@ -156260,137 +159009,23 @@ aaa
aaa
aaa
aaa
-aaq
aaa
aaa
aaa
aaa
aaa
-abj
+"}
+(96,1,1) = {"
+aaa
aaa
-abj
aaa
-aaq
-abj
aaa
-bCI
aaa
-aAi
-aAi
-aAi
-aAi
-aAi
-aAi
-aAi
-aDC
-aBV
-aHa
-aIy
-aJP
-aLg
-aMI
-aOh
-aPw
-aQT
-aSB
-aTX
-aVD
-aXh
-aYx
-bal
-bbN
-bdn
-beH
-bgb
-bbN
-biN
-bky
-bmu
-bnT
-bpz
-brA
-bth
-bup
-bvE
-bwQ
-byn
-bzN
-bBw
-bDn
-bEQ
-bGz
-bIs
-bKf
-bMi
-bOb
-bUq
-bRW
-bUi
-dYV
-bXU
-cbc
-cbf
-cgB
aaa
-cHt
-cjK
-cob
-cob
-cob
-cob
-cuP
-cob
-cob
-cob
-cob
-dUF
-cPX
aaa
-dqQ
-cCh
-dVy
-bXU
-pxR
-bwy
-cIB
-xjm
-ref
-cNa
-ref
-ref
-qqb
-raO
-lVP
-sRM
-fFB
-aMW
-aOs
-dfT
-dcR
-deD
-dfN
-dcX
-diZ
-dfN
-iah
-dmO
-dYt
-dYy
-drc
-aUp
-dtK
-dbz
aaa
-uiA
-abj
-abj
-abj
-abj
-xjZ
-abj
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -156407,6 +159042,10 @@ aaa
aaa
aaa
aaa
+aae
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -156425,27 +159064,180 @@ aaa
aaa
aaa
aaa
+aLm
+aNO
+aan
+wYr
+gvs
+wYr
+aNO
+aNO
+bjl
aaa
+aaq
+iGw
+abj
+bCI
+abj
+bCI
+abj
+atd
+bQB
+bzA
+aST
+aVi
+avx
+bbf
+axG
+bhL
+bjA
+cFJ
+aBh
+tGE
+aDc
+bsu
+cDe
+atd
+bvC
+cIN
+aOg
+aMK
+cWq
+aQO
+djo
+bGM
+ihm
+ihm
+ihm
+ihm
+ihm
+ihm
+ihm
+ihm
+ihm
+dYY
+rVb
+aOg
+aOg
+gFR
+oyr
+imB
+aOg
+aOg
+aOg
+aOg
+aOg
+aOg
+cKe
+ofQ
+oPZ
+oPZ
+qGg
+xnf
+xnf
+tQo
+uYb
+bWn
+xnf
+xSn
+dzm
+cdd
+geb
+dEs
+eci
+iTM
+utt
+cpm
+nqL
+fId
+nqL
+cpm
+mDe
+bQr
+ktZ
+gRP
+vLA
+gRP
+uTp
+ecF
+mDe
+jIN
+cbC
+cbC
+oyP
+ikA
+oOo
+qVO
+cIM
+cIM
+lGO
+qVO
+oOo
+ikA
+cbC
+oHS
+oOZ
+uRn
+kps
+dcV
+deF
+dfP
+dhx
+dja
+dku
+oOZ
+rNX
+uex
+nte
aaa
aaa
aaa
+tKX
+bCI
aaa
aaa
+abj
+jlK
+abj
aaa
aaa
aaa
+abj
aaa
aaa
aaa
+abj
aaa
+acF
+abj
+abj
+acF
aaa
aaa
+bCI
+abj
+xwx
+abj
aaa
aaa
+bCI
aaa
+nOK
+oAM
+tvi
aaa
+abj
+xwx
+abj
aaa
+nOK
+oAM
+tvi
aaa
+abj
+bCI
+bCI
+bCI
aaa
aaa
aaa
@@ -156458,8 +159250,6 @@ aaa
aaa
aaa
aaa
-"}
-(93,1,1) = {"
aaa
aaa
aaa
@@ -156481,6 +159271,8 @@ aaa
aaa
aaa
aaa
+"}
+(97,1,1) = {"
aaa
aaa
aaa
@@ -156501,6 +159293,7 @@ aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -156523,162 +159316,182 @@ aaa
aaa
aaa
aaa
-bCI
-abj
-bCI
-bCI
-bCI
-bCI
-abj
-bCI
-abj
-aAi
-ayG
-ayG
-ayG
-aAi
-ayG
-ayG
-aIT
-aEa
-aHa
-aIz
-aJQ
-aLh
-aMF
-aOb
-aPw
-aQU
-aSC
-aTY
-aVE
-aXi
-aYy
-aYy
-aYy
-bUB
-aYy
-aYy
-aYy
-bdo
-bkz
-bmv
-aUi
-bpA
-brB
-aTZ
-beI
-bvF
-bwR
-byo
-bzO
-bBx
-bDo
-bER
-bGz
-bIt
-bKf
-bMj
-bQd
-bQh
-bRX
-bUj
-bWm
-bXU
-bXU
-cbg
-bXU
-cdc
-abj
-cif
-cda
-cgG
-cgG
-cgG
-cpj
-cgG
-cgG
-cgG
-cda
-cif
-abj
-cCf
-bXU
-cCk
-bXU
-bXU
-pxR
-bwy
-cNe
-cJW
-cLJ
-fsp
-cZq
-hQV
-cRI
-wMU
-cUS
-dPw
-fFB
-aMW
-daj
-dbE
-dcS
-deD
-dfN
-aUp
-dfN
-dcX
-dcX
-dmO
-lpm
-dYy
-drd
-aRm
-dtL
-aMW
-abj
-uiA
aaa
aaa
aaa
-bvh
-xjZ
-bvh
aaa
aaa
aaa
aaa
aaa
+uCN
+aXt
+uCN
aaa
aaa
aaa
aaa
+abj
+abj
aaa
+bCI
aaa
+bCI
aaa
+bMn
+bQF
+bzz
+ccf
+qWu
+avy
+tGE
+cvU
+aCi
+aCi
+tGE
+cfZ
+aDe
+cSa
+aHc
+aHo
+atd
+atd
+atd
+aOg
+but
+cUI
+gIq
+cxd
+iNS
+fos
+bMW
+gyo
+dKM
+dKM
+dKM
+iLB
+ihm
+ihm
+lrN
+eSK
+aOg
+ifD
+ifD
+hoM
+imJ
+iVJ
+pXD
+kcc
+cFH
+sbb
+aOg
+bBA
+oha
+bIA
+cRr
+qIs
+wOo
+bMo
+dhm
+gqd
+dQF
+bUn
+bOf
+bXY
+bZs
+cbk
+cDG
+clr
+iNf
+utt
+wQP
+rSt
+cnB
+cof
+cpn
+mDe
+vSK
+mAZ
+rmX
+iJV
+xBS
+kAe
+cAD
+mDe
+eTl
+sbj
+jZA
+jUu
+ikA
+ifq
+veO
+lFP
+ekt
+goC
+mZI
+mkm
+ikA
+qUe
+pMV
+oOZ
+kRM
+ycP
+dcW
+rbH
+jVL
+sfU
+sCf
+jyU
+oOZ
+rAh
+xzo
+vEZ
aaa
aaa
aaa
+tKX
+bCI
aaa
aaa
+abj
+jlK
+abj
aaa
aaa
aaa
+abj
aaa
aaa
aaa
+abj
aaa
aaa
aaa
aaa
+abj
+abj
+abj
+bCI
+abj
+taM
+abj
aaa
aaa
+bCI
aaa
+nOK
+oAM
+tvi
aaa
+nOK
+oAM
+tvi
aaa
+nOK
+oAM
+tvi
aaa
-aaZ
+abj
aaa
aaa
aaa
@@ -156716,18 +159529,7 @@ aaa
aaa
aaa
"}
-(94,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+(98,1,1) = {"
aaa
aaa
aaa
@@ -156757,6 +159559,19 @@ aaa
aaa
aaa
aaa
+acL
+azS
+azS
+azS
+aej
+azS
+azS
+aej
+azS
+azS
+azS
+azS
+rCP
aaa
aaa
aaa
@@ -156766,142 +159581,175 @@ aaa
aaa
aaa
aaa
+etQ
+vWI
+uCN
+etQ
+etQ
+uCN
+etQ
+etQ
+uCN
+abj
+abj
aaa
+bCI
+abj
+bMA
+bQH
+bzB
+aua
+auF
+aYj
+awI
+aEd
+aEd
+aEd
+bjx
+cga
+aDe
+cSx
+aFc
+diB
+bzB
+duF
+dzr
+aOg
+dKR
+bAC
+csJ
+dZU
+eLT
+fqf
+cxZ
+fqf
+gTl
+gTl
+ikN
+iMh
+cwf
+cwf
+lrR
+mfJ
+aOg
+mNo
+mNo
+ozi
+inw
+jGF
+ihm
+qnB
+rcc
+sbc
+aOg
+lsT
+tVP
+lsT
+xnf
+wjV
+xnf
+xMs
+tRE
+bQk
+bSc
+tSc
+baL
+bYc
+bZt
+cbl
+bXU
+bXU
+bXU
+utt
+dNt
+dWc
+cpo
+cqU
+tZR
+mDe
+vly
+mAZ
+ehV
+czk
+mAl
+ocE
+vct
+mDe
+dvC
+ikA
+ikA
+nig
+cXa
+muV
+oJS
+cQv
+ogO
+uKN
+wQA
+muV
+ikA
+ybR
+pMV
+oOZ
+jHH
+xwt
+dcX
+rcX
+rFG
+svD
+sEO
+dkv
+oOZ
+rNX
+fGj
+vEZ
aaa
aaa
aaa
+tKX
+bCI
aaa
aaa
+bvh
+jlK
+bvh
aaa
aaa
aaa
+abj
aaa
aaa
aaa
+abj
aaa
aaa
bCI
+bCI
+bCI
abj
-aaa
-aaa
abj
abj
abj
+ein
abj
abj
-aAi
-aDC
-aEa
-aDC
-aEa
-aDC
-aEa
-aDC
-aBV
-aGZ
-aIA
-aJR
-aLi
-aMG
-aOb
-aPw
-aQV
-aSD
-aTZ
-aVF
-aXj
-aYz
-bam
-bam
-bam
-beI
-aYJ
-aYJ
-aYJ
-bkA
-bmw
-bnU
-bpB
-brC
-bti
-buq
-bvG
-bwP
-byp
-bzN
-bBy
-bDp
-bES
-bGz
-bIu
-bKg
-bMk
-bOd
-bMk
-bRY
-bUk
-bWn
-bXU
-bZp
-cbh
-bXU
-bXU
-cgG
-cgG
-cgG
-cgG
-cmQ
-cpi
-crd
-cpi
-csp
-cgG
-cgG
-cgG
-cgG
-bXU
-bXU
-cCj
-cDz
-bXU
-fFB
-cUS
-vZl
-fsp
-hQV
-cRL
-cOE
-cQB
-cTl
-hQV
-eGv
-dPw
-pxR
-aMV
-aUp
-dfT
-dcT
-deD
-aUp
-iah
-aUp
-pnr
-dfN
-dmO
-dYu
-dYz
-drc
-aUp
-dlK
-dbz
aaa
-uiA
-abj
+bCI
abj
+nOK
+oAM
+tvi
abj
+nOK
+oAM
+tvi
abj
-xjZ
+nOK
+oAM
+tvi
abj
+bCI
+aaa
aaa
aaa
aaa
@@ -156937,6 +159785,10 @@ aaa
aaa
aaa
aaa
+"}
+(99,1,1) = {"
+aaa
+aaa
aaa
aaa
aaa
@@ -156963,39 +159815,197 @@ aaa
aaa
aaa
aaa
+acL
+add
+alY
+aqA
+atR
+azM
+acZ
+afw
+azM
+kpW
+olS
+acZ
+acZ
+aoL
+azS
+rCP
aaa
aaa
aaa
aaa
aaa
aaa
+uCN
+uCN
+aXt
+uCN
+bdB
+bfU
+uCN
+bjT
+bqd
+uCN
aaa
+bCI
+abj
+abj
aaa
+bMD
+bRt
+bzV
+ccg
+bJa
+ckK
+awJ
+cvX
+caL
+caL
+cFW
+aDh
+aDh
+aFl
+cul
+aEn
+aHe
+duO
+dzx
+aOg
+dLe
+cVh
+dVb
+ecb
+eMu
+fqG
+dwH
+bPy
+dEg
+bWs
+ilr
+iNk
+dQW
+krC
+ltu
+clT
+aOg
+mNA
+cuB
+ozQ
+inF
+btm
+buu
+kci
+bwV
+byt
+aOg
+tzg
+bDt
+bEV
+bQp
+bIz
+bKl
+rSH
+dhr
+bQl
+qGv
+tSc
+bWp
+cxE
+bZv
+cbm
+bXU
+hYw
+cbn
+utt
+igP
+dOZ
+dRd
+cpk
+csm
+mDe
+feE
+mAZ
+ejf
+eJl
+mAl
+ocE
+nTz
+mDe
+dvC
+ikA
+cJO
+epA
+rAM
+rgj
+qrW
+uxj
+kZU
+uxj
+tLB
+uLD
+ikA
+cbC
+wBr
+oOZ
+oOZ
+oOZ
+dlL
+rdB
+rGw
+sgu
+sEZ
+sSH
+oOZ
+rNX
+wKr
+vEZ
aaa
-"}
-(95,1,1) = {"
aaa
aaa
+tKX
aaa
aaa
aaa
+bvh
+jlK
+bvh
aaa
aaa
aaa
+abj
aaa
aaa
aaa
+abj
+aae
aaa
aaa
aaa
aaa
aaa
aaa
+abj
+rYp
+vBi
+rYp
+abj
aaa
+bCI
aaa
+nOK
+oAM
+tvi
aaa
+nOK
+oAM
+tvi
aaa
+nOK
+oAM
+tvi
aaa
+bCI
aaa
aaa
aaa
@@ -157032,133 +160042,17 @@ aaa
aaa
aaa
aaa
+"}
+(100,1,1) = {"
aaa
aaa
aaa
aaa
aaa
-bCI
-abj
-abj
-bCI
-bCI
-abj
-atd
-aeI
-bfb
-axH
-aeI
-bhB
-bfb
-atd
-aeI
-bhB
-bfb
-axH
-atd
-aGZ
-aJS
-aLj
-aMH
-aOe
-aPx
-aQW
-aSE
-aUa
-aVG
-aXk
-aYA
-aYA
-bbO
-aYA
-beJ
-bgc
-aXk
-biO
-bkB
-bmx
-aUi
-bpC
-brD
-btj
-bur
-bvH
-bwS
-byq
-bzP
-bBz
-bDq
-bEU
-bGz
-bIv
-bKh
-bMl
-bOe
-bMl
-bRZ
-bUl
-nBR
-bXU
-bZq
-cbi
-cdd
-ceU
-cib
-dQE
-cib
-cgG
-cmR
-cod
-cpl
-cqR
-csq
-cgG
-cib
-dQE
-cib
-dWi
-cdd
-cbi
-dWb
-bXU
-pxR
-cUS
-cUS
-bwy
-cLM
-bwy
-cUS
-bwy
-cRK
-bwy
-cUS
-cWv
-dWk
-cZk
-aSR
-dhC
-dcU
-deE
-dfO
-dfO
-dfO
-dkt
-dlI
-dmP
-aSP
-ibi
-dre
-dbz
-dbz
-dbz
aaa
-uiA
aaa
aaa
aaa
-bvh
-xjZ
-bvh
aaa
aaa
aaa
@@ -157177,24 +160071,198 @@ aaa
aaa
aaa
aaa
+acL
+add
+ajb
+agb
+agb
+atV
+azM
+acZ
+acZ
+ajk
+lPf
+acZ
+acZ
+acZ
+rWO
+ryz
+aoL
+rCP
aaa
aaa
aaa
aaa
aaa
+etQ
+aUp
+aXM
+aBy
+bdO
+bgz
+bjn
+bkM
+bqf
+etQ
aaa
+bCI
aaa
bCI
+abj
+atd
+bRF
+atd
+dBF
+aVj
+avB
+bjC
+bgM
+bjC
+bgM
+cGe
+cNh
+cPC
+cSA
+cum
+caN
+cDh
+dvA
+cIO
+aOg
+bAv
+btq
+dVw
+aQV
+kWc
+dtc
+dwP
+ban
+kWc
+dHP
+imD
+dOH
+dRC
+mDw
+lvT
+eVH
+aOg
+gNb
+gNb
+oAs
+iof
+qUF
+jxT
+qnC
+kAY
+lAV
+aOg
+tzp
+tVV
+oQQ
+vCZ
+dho
+rmg
+xNL
+tRE
+dlM
+aXk
+bWn
+bWp
+fsL
+dBt
+aYC
+bXU
+npT
+vWF
+utt
+wUC
+clv
+dRd
+cso
+cso
+mDe
+vDd
+mAZ
+ejf
+eJH
+mAl
+kAe
+gqh
+mDe
+dvC
+ikA
+txE
+mwW
+eGA
+xsc
+lVP
+dpP
+lBo
+mVH
+avL
+cKc
+ikA
+cbC
+cmX
+cbC
+cbC
+oOZ
+oOZ
+djb
+oOZ
+oOZ
+oOZ
+oOZ
+oOZ
+dmN
+mkS
+nte
+abj
+abj
+abj
+tKX
+abj
+abj
+abj
+abj
+jlK
+abj
+abj
+abj
+abj
bCI
bCI
abj
+bCI
+bCI
+bCI
+bCI
+bCI
abj
bCI
bCI
+abj
+abj
+rYp
+ykz
+rYp
+abj
+abj
+bCI
aaa
+nOK
+srW
+tvi
aaa
+nOK
+oAM
+tvi
aaa
+nOK
+srW
+tvi
aaa
+bCI
aaa
aaa
aaa
@@ -157229,32 +160297,10 @@ aaa
aaa
aaa
aaa
-"}
-(96,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
+"}
+(101,1,1) = {"
aaa
aaa
aaa
@@ -157281,195 +160327,199 @@ aaa
aaa
aaa
aaa
-aaj
-cMn
-gvs
-cMn
-gvs
-wYr
-gvs
-wYr
-aan
+acL
+add
+afp
+agb
+agb
+ark
+avE
+azM
+acZ
+acZ
+gzz
+acZ
+acZ
+acZ
+acZ
+tYb
+acZ
+eby
+azM
aaa
aaa
aaa
aaa
-bCI
aaa
+etQ
+xZm
+aXS
+bbw
+bef
+aPd
+aRo
+bla
+aXe
+etQ
abj
-aaa
abj
abj
+bCI
+aaa
atd
-avx
-awG
-axG
-ayF
-bjA
-aAf
-aBh
-bhL
-aCd
-aKA
-cDe
-aGd
-aGZ
-aJU
-aPs
-aMK
+atd
+atd
+xvt
+bJi
+avC
+bQa
+axM
+caN
+caN
+cGs
+cgD
+cgD
+cSG
+aFg
+aFf
+bzV
+aIE
+cIQ
+cNT
aOg
-aPy
-aQX
-aSD
-aTZ
-aVF
-aXl
-aYB
-ban
-bbP
-ban
-ban
-ban
-bhj
-biP
-bkB
-bmy
-bnV
-bpD
-brE
-btk
-bus
-bvI
-bwT
-byr
-bzQ
-bBu
-bDr
-byl
-bGz
-bIw
-bKk
-bMm
-bOf
-bQi
-bSa
-bUm
-bGz
-bXU
-cdd
-cbj
-bXU
-ceV
-cic
-cjL
-cjP
-clq
-cmS
-coe
-cpm
-cqS
-dQF
-clq
-cic
-cjL
-cjP
-ceV
-bXU
-cCl
-cdd
+aOg
+aOg
+dti
+gFR
+dti
+dwW
+dOJ
+gFR
+cfM
+dwW
+dOJ
+gFR
+cfM
+aOg
+faV
+aOg
+xeQ
+gNU
+xeQ
+irZ
+brI
+bux
+bvK
+bwX
+byv
+aOg
+tAB
+ohk
+bEX
+bGD
+cTS
+cZe
+bMq
+dhs
+bVr
+bTV
+tSc
+pAm
+cxF
+dBu
+aYE
bXU
-pxR
+jTx
+cij
+dJU
+lTF
+uwI
+cmO
+cso
+cpr
+mDe
+iVc
+xuX
+iMj
+cwz
+fmF
+kAe
+wEA
+mDe
+cDz
+ikA
+kmL
+jkc
+rAM
+tzZ
+mwh
+odT
+muV
+lUS
+mwh
+mMr
+ikA
yhX
-cUS
-cJZ
-cRL
-cOz
-bwy
-cQD
-cRL
-cTm
-cUS
-pFP
-cYc
-cZl
-ddd
-dbH
-dcV
-deF
-dfP
-dhx
-dja
-dku
-dlJ
-dmQ
-dow
-hGW
-drf
-aMW
-abj
-aaa
-aaa
-uiA
-bCI
-aaa
-aaa
-bvh
-xjZ
-bvh
-dtd
-gDV
-gDV
-gDV
-gDV
-gDV
-gDV
-gDV
-gDV
-lPH
-rlp
-aaa
-aaa
+knU
+sys
+ndY
+ddi
+koy
+deH
+xDG
+ddi
+wVT
+xzo
+tzX
+rNX
+qac
+nte
+nte
aaa
aaa
+tKX
aaa
aaa
aaa
bvh
+jlK
bvh
-abj
-bCI
-abj
-abj
-bCI
-bCI
aaa
aaa
-abj
aaa
aaa
-bCI
-bCI
abj
-bCI
-bCI
-aaa
-aaa
-aaa
aaa
aaa
aaa
+abj
aaa
aaa
aaa
+abj
aaa
+abj
+rYp
+rYp
+mav
+rYp
+rYp
+abj
+abj
aaa
aaa
+abj
aaa
aaa
+nOK
+srW
+tvi
aaa
aaa
+abj
aaa
aaa
+bCI
aaa
aaa
aaa
@@ -157486,8 +160536,6 @@ aaa
aaa
aaa
aaa
-"}
-(97,1,1) = {"
aaa
aaa
aaa
@@ -157508,6 +160556,8 @@ aaa
aaa
aaa
aaa
+"}
+(102,1,1) = {"
aaa
aaa
aaa
@@ -157534,186 +160584,199 @@ aaa
aaa
aaa
aaa
+acN
+adh
+agb
+agb
+agb
+aro
+agb
+ajk
+acZ
+acZ
+anF
+acZ
+acZ
+acZ
+acZ
+uWr
+acZ
+mwu
+azM
aaa
aaa
aaa
aaa
-aKm
-cOo
-cOo
-cOo
-cOo
-cOo
-cOo
-cOo
-wJK
aaa
+etQ
+aUr
+aMl
+qcW
+qcW
+aPg
+aRD
+aVk
+aXz
+etQ
aaa
aaa
aaa
-bCI
abj
-bCI
abj
+abj
+aaa
atd
+cch
+auH
+avD
+awH
+bgY
+biJ
+cCl
+cGB
+cgI
+cmj
+cro
+cur
atd
-atd
-avy
-aFd
-axI
-aFd
-ayT
-aCi
-aCi
-aDe
-aFd
-aFd
-aHo
-aJF
-aGZ
-aGZ
-aLm
-aMJ
-aOg
-aPz
-aQY
-aSF
-aUb
-aVH
-aXm
-aYC
-bao
-bbQ
-bdp
-beJ
-bgd
-aYA
-biQ
-bkC
-bmz
-bnW
-bpE
-brF
-btl
-but
-bvJ
-bwU
-bys
-bzR
-bBA
-bDs
-bIx
-bFg
-bKi
-bKC
-bIx
-bGz
-bQj
-bSb
-bUn
-bOf
-bXY
-bZs
-cbk
-cde
-ceW
-cid
-cjM
-cjQ
-clr
-cmT
-cof
-cpn
-cqT
-cDG
-clr
-cuU
-cjM
-cid
-cAC
-cAD
-cDy
-cDE
-bXU
-fHC
-qcX
-bwy
-tTD
-fsp
-cOM
-bwy
-oMz
-xFL
-naq
-eGv
-cHn
-kbT
-tOs
-dan
-dbI
-dcW
-dcX
-jVL
-dcX
-dcX
-dcX
-aUp
-dHn
-dLr
-cXY
-jQA
-dbz
+cIV
+cIV
+cIV
+cIV
abj
abj
abj
-uiA
-bCI
+dky
abj
+dky
abj
+cuo
abj
-xjZ
+clk
abj
-dZV
-gRb
-gSY
-hsQ
-igW
-iqN
-iqN
-iXv
-kgB
-mEt
-lPH
+dOK
+abj
+clk
acF
+fdj
+aOg
+aOg
+aOg
+btg
+pqT
+btn
+jyM
+cCP
+kBu
+aOg
+aOg
+bDj
+oke
+oRC
+bGE
+tSc
+bQm
+tSc
+tSc
+bQm
+tSc
+tSc
+bXU
+bXU
+bXU
+bXU
+bXU
+xJK
+oZH
+utt
+uqq
+pus
+dRe
+rHz
+cqX
+mDe
+hCy
+mAZ
+ejf
+glA
+mAl
+ocE
+xJC
+mDe
+dvC
+ikA
+rAM
+rAM
+rAM
+rAM
+qlJ
+cRY
+lDu
+lVe
+qlJ
+rAM
+ikA
+ikA
+ikA
+ikA
+qiR
+eGT
+iIq
+sUj
+dfS
+bzG
+yjo
+pth
+yjo
+hwj
+wvQ
+fku
+nte
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bvh
-aaa
+abj
+sRy
+vOJ
+vOJ
+vOJ
+vOJ
+vOJ
+vOJ
+wuP
+acF
+abj
aaa
bCI
-aaa
-aaa
+bCI
+bCI
+bCI
+bCI
abj
-aaa
-aaa
-dTV
-dYL
-dVn
-aaa
+bCI
+bCI
+bCI
aaa
abj
-aaa
+txq
+iYa
+pua
+tcF
+txq
+abj
+bqc
aaa
bCI
+bCI
aaa
aaa
aaa
+abj
aaa
aaa
+abj
+bCI
+bCI
+abj
+bCI
aaa
aaa
aaa
@@ -157743,24 +160806,6 @@ aaa
aaa
aaa
aaa
-"}
-(98,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -157768,6 +160813,8 @@ aaa
aaa
aaa
aaa
+"}
+(103,1,1) = {"
aaa
aaa
aaa
@@ -157794,182 +160841,195 @@ aaa
aaa
aaa
aaa
+acN
+adh
+agb
+agb
+agb
+agb
+agb
+aBB
+acZ
+acZ
+azM
+azP
+azP
+azP
+azP
+vrg
+azP
+aBp
+hAY
aaa
-aLJ
-cRy
-dwL
-uCN
-vWI
-rkC
-dwL
-hWF
-aLJ
aaa
aaa
aaa
aaa
+uCN
+uCN
+etQ
+etQ
+etQ
+uCN
+uCN
+dPS
+aXs
+uCN
abj
-aaa
-bCI
abj
-atd
-aua
-auF
-avz
-awI
-axK
-ayJ
-azU
-ayR
-aAg
-aCV
-aEd
-aFc
-aFW
-aJH
-aIB
-aJT
-aLn
-aML
-aOg
-aPA
-aQZ
-aSD
-aTZ
-aVI
-aXn
-aYD
-bap
-cgM
-cjR
-beK
-aXq
-bhk
-ban
-bkD
-bmA
-aOb
-bpF
-aOb
-aOg
-aOg
-aOg
-bwP
-byl
-byl
-bBB
-bEP
-bIy
-bGA
-bKj
-bLW
-bNT
-bGz
-bQk
-bSc
-bUo
-bWo
-bYc
-bZt
-cbl
-cdf
-ceX
-cgJ
-cii
-cuS
-cls
-cmU
-cqU
-cpo
-cqU
-csu
-cls
-cuS
-cww
-qGv
-czk
-cAE
-cCm
-ilQ
-bXU
-pxR
-sWX
-cUS
-cKb
-cOG
-cQv
-bwy
-dyV
-cOG
-umQ
-cUS
-vSA
-vQQ
-tOs
-aOs
-dbJ
-dcX
-dcX
-dcX
-svD
-aOs
-dkv
-dlK
-dlK
-daf
-cXZ
-lAW
-aMW
abj
+abj
+abj
+abj
+abj
+atd
+ccu
+auI
+atd
+awN
+axP
+bfO
+btX
+cGE
+cgQ
+bfO
+atd
+atd
+atd
aaa
+abj
aaa
-uiA
-bCI
-aaa
+abj
aaa
-bvh
-xjZ
-bvh
-ejg
-gRb
-hgx
-hNJ
-gSY
-gSY
-gSY
-gSY
-gSY
-gSY
-upm
-acF
-bvh
-bvh
abj
-bvh
-bvh
+uYk
+ecV
+gCz
+ecV
+uYk
+cAb
+gCz
+eJk
+uYk
+cAb
+gCz
+eJk
+uYk
+fdj
+bkJ
+mPK
+cDl
+cDl
+oMH
+cyu
+cDl
+cDl
+bwY
+cDl
+bzW
+cDl
+omJ
+cZg
+cZg
+cUu
+cZg
+cZg
+cZg
+bQq
+cZg
+bWK
+cXa
+nbT
+cAU
+cbp
+cbC
+cbC
+jem
+utt
+dNd
+qFn
+dRw
+dWc
+kpR
+mDe
+yfQ
+mAZ
+ejf
+sCB
+mAl
+ocE
+aeY
+mDe
+dvC
+ikA
+cIM
+cIM
+cIM
+nrd
+qlw
+odT
+muV
+iYl
+cVG
+gig
+nBl
+cIM
+cIM
+ikA
+rRM
+mUF
+qEo
+tZU
+lxh
+ddi
+tpM
+wKr
+jsw
+fGj
+kVJ
+tzX
+nte
abj
+dkI
+xpD
+hPK
+dkI
+wmd
+dkI
+iRu
+dkI
+swI
+nte
abj
abj
abj
-bCI
-aaa
-dTV
-dYL
-dVn
-aaa
-dTV
-dYM
-dVn
-aaa
-dTV
-dYL
-dVn
-aaa
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+txq
+qcE
+jUE
+doJ
+txq
abj
aaa
aaa
aaa
+abj
aaa
+bCI
+bCI
+abj
+bCI
+bCI
+abj
aaa
aaa
aaa
@@ -158000,17 +161060,6 @@ aaa
aaa
aaa
aaa
-"}
-(99,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -158021,6 +161070,8 @@ aaa
aaa
aaa
aaa
+"}
+(104,1,1) = {"
aaa
aaa
aaa
@@ -158047,196 +161098,190 @@ aaa
aaa
aaa
aaa
+acN
+adh
+aeA
+acM
+afu
+aeA
+awk
+anF
+acZ
+acZ
+aoL
+azS
+azS
+aej
+azS
+azS
+azS
+bXH
aaa
aaa
aaa
aaa
aaa
-aNf
-dpD
-dwL
-xXm
-dwL
-iVE
-dwL
-uXf
-aNf
aaa
aaa
aaa
aaa
-bCI
abj
-bCI
-aaa
-aYW
-cPl
-qWu
-avA
-awJ
-axJ
-aCW
-ayV
-aCS
-aCS
-aDh
-aFl
-aHc
-aEn
-aHe
-aIC
-aJW
-aLo
-aMM
-aOj
-aTr
-aUM
-aSD
-aTZ
-aVJ
-aXo
-aYE
-aOb
-aOb
-aOb
-aXo
-aXo
-bhl
-biR
-bkE
-bmB
-bnX
-bpG
-brG
-btm
-buu
-aOg
-bwV
-byt
-bzS
-bBC
-bDt
-bEV
-bQp
-bIz
-bKl
-bMo
-bGz
-bQl
-bSd
-bUp
-bWp
-cxE
-bZu
-cbm
-cdh
-hYw
-cbn
-cbn
-cjS
-bXU
-cmW
-cpk
-csm
-csn
-csv
-bXU
-cxL
-cbn
-cbn
-czl
-cAF
-cCn
-cDF
-bXU
-cJO
-cUS
-cUS
-cUS
-cUS
-eGv
-cUS
-cUS
-cUS
-cUS
-cUS
-wUu
-qXe
-cfn
-cfn
-dlL
-dlL
-dlL
-dlL
-dlL
-dlL
-dlL
-dlL
-dlL
-dlL
-cYa
-rnv
-nte
-aaa
-aaa
aaa
-uiA
-bCI
-aaa
-aaa
-bvh
-xjZ
-bvh
-enO
-gRb
-gSY
-hSA
-gSY
-itk
-itk
-gSY
-kFO
-mWo
-lPH
-acF
-bvh
aaa
+uCN
+aHy
+aKS
+uCN
aaa
abj
aaa
-aaa
-bvh
-aaa
-aaa
abj
aaa
-dTV
-dYM
-dVn
-aaa
-dTV
-dYM
-dVn
-aaa
-dTV
-dYM
-dVn
-aaa
-bCI
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abj
aaa
aaa
+abj
aaa
+abj
+aye
+aye
+abj
+abj
+cet
+cgV
+cQp
+cgV
+cQp
+cgV
+cQp
+cgV
+cQp
+dDS
+abj
+abj
+uYk
+edz
+aSH
+frJ
+uYk
+gBl
+gTw
+hBH
+uYk
+iNB
+beO
+ktl
+uYk
+dEb
+bkJ
+mSn
+nTD
+oAA
+czX
+iWM
+byx
+bvM
+bwZ
+byx
+sMS
+tBr
+bGt
+dwN
+dwN
+dwN
+dwN
+dwN
+dwN
+egC
+ukb
+pjS
+cXa
+cbC
+yhX
+cbC
+cbC
+yhX
+eir
+utt
+qFn
+teJ
+dRw
+dWc
+xvB
+mDe
+vly
+rhy
+mqY
+ohL
+nUP
+kAe
+xHY
+mDe
+cDz
+ikA
+ksN
+vyF
+cIM
+san
+hEB
+mQI
+cOI
+lWl
+mxZ
+pzS
+cIM
+wMW
+sPF
+ddi
+ddi
+ddi
+ddi
+iYq
+ddi
+ddi
+ddi
+ddi
+ddi
+ddi
+rtl
+eIQ
+vEZ
aaa
+iis
+pAh
+pAa
+rgF
+vsE
+wmd
+sRC
+mlh
+obv
+dFg
+dFg
+dFg
+dFg
+dFg
+dFg
+dFg
+dFg
+dFg
+dFg
+dFg
+dFg
+dFg
+abj
+txq
+tbX
+kAW
+iNy
+txq
+abj
+abj
+abj
aaa
+abj
aaa
+abj
aaa
aaa
aaa
@@ -158257,8 +161302,6 @@ aaa
aaa
aaa
aaa
-"}
-(100,1,1) = {"
aaa
aaa
aaa
@@ -158284,6 +161327,8 @@ aaa
aaa
aaa
aaa
+"}
+(105,1,1) = {"
aaa
aaa
aaa
@@ -158309,178 +161354,191 @@ aaa
aaa
aaa
aaa
-aLJ
-dwJ
-dwL
-dwL
-dwL
-dwL
-dwL
-sCY
-aLJ
aaa
+acS
+aej
+azS
+azS
+azS
+azS
+azS
+add
+acZ
+acZ
+hQM
+hQM
+hQM
+ajk
+avS
+awF
+azW
+rIF
aaa
aaa
aaa
-bCI
+aHM
+aLn
+aLn
+aLn
+aUs
aaa
-bCI
abj
-aYX
-dBF
-auF
-avB
-awK
-axL
-ayL
-azT
-azT
-azT
-ayP
-aDc
-aDf
-aFe
-aHf
-aID
-aCk
-aPE
-aMN
-aOg
-aPA
-aQZ
-aSD
-aTZ
-aVI
-aOb
-aYF
-baq
-bbR
-bdq
-beL
-bge
-bhm
-aYJ
-bkF
-bmC
-aYK
-bpH
-brH
-aYK
-buv
-aOg
-bwW
-byu
-bBm
-bBD
-bDu
-bEW
-bGC
-bEW
-bKm
-bMp
-bGz
-bQm
-bSc
-bUo
-bWq
-cxE
-bZv
-cbn
-cdh
-gAB
-cbn
-cbn
-cjS
-bXU
-bXU
-cpp
-cpq
-cpp
-bXU
-bXU
-cjT
-cbn
-czr
-kAe
-cAF
-cbn
-cDD
-cEB
-cGd
-cFW
-cir
-cKc
-csE
-cir
-csE
-csE
-dFt
-cKc
-csE
-cWx
-cYf
-csE
-dao
-dlL
-dcY
-djb
-dkw
-dcY
-lhC
-djb
-cOx
-dmV
-dlL
-eTq
-qMM
-eMv
-aaa
-aaa
-aaa
-uiA
aaa
aaa
+etQ
+blb
+aKO
+etQ
aaa
-bvh
-xjZ
-bvh
-fpN
-gDV
-gDV
-gDV
-gDV
-gDV
-gDV
-jDT
-gDV
-lPH
-uTD
+bBo
+bAh
+bAP
+bAP
+bAP
+bBo
+bAh
+moG
+moG
+moG
+gbI
+gbI
+gbI
+moG
+gbI
+gbI
+gbI
+moG
+moG
+moG
+moG
+moG
+moG
+fdj
aaa
-bvh
-abj
-abj
-bvh
-bvh
-abj
-bvh
-bvh
abj
+uYk
+eeE
+doA
+cuq
+uYk
+gCh
+gUe
+dHQ
+uYk
+iPo
+jwA
+cge
+uYk
+fdj
+bkJ
+nlK
+gPR
+cIK
+iXx
+iXx
+buA
+qoG
+rcf
+byy
+sMZ
+deb
+tXq
+deb
+deb
+deb
+deb
+xPq
+hOx
+tgy
+cAB
+bzm
+cXa
+npT
+yhX
+cbC
+cdl
+yhX
+dkj
+utt
+gxS
+cna
+iYh
+cra
+tEE
+mDe
+prK
+hmL
+cxK
+cxK
+cxK
+nTm
+obE
+mDe
+cDz
+ikA
+cIM
+cIM
+rxH
+tWL
+uve
+kZD
+dfV
+iKW
+cRW
+mQO
+cIM
+cIM
+cIM
+ddi
+mad
+ybL
+fRS
+gTG
+dkz
+ddi
+jfk
+jrc
+jfk
+ddi
+dIy
+fGj
+vEZ
abj
-abj
-dTV
-dYM
-dVn
-abj
-dTV
-dYM
-dVn
-abj
-dTV
-dYM
-dVn
+bpa
+mUY
+vli
+vmL
+oNa
+vlG
+nSW
+dkI
+ijv
+dFg
+xDk
+iFi
+kZr
+err
+mBc
+dHt
+opP
+xwW
+xex
+uTm
+kDR
+dFg
+nte
+txq
+txq
+qUc
+txq
+txq
+cAr
+nte
abj
bCI
+abj
aaa
+bCI
aaa
aaa
aaa
@@ -158514,21 +161572,6 @@ aaa
aaa
aaa
aaa
-"}
-(101,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -158541,6 +161584,8 @@ aaa
aaa
aaa
aaa
+"}
+(106,1,1) = {"
aaa
aaa
aaa
@@ -158566,179 +161611,194 @@ aaa
aaa
aaa
aaa
-aLJ
-dwL
-dwL
-dwL
-dwL
-dwL
-qcW
-dwL
-aLJ
aaa
aaa
+azM
+acZ
+acZ
+acZ
+acZ
+acZ
+aCq
+acZ
+acZ
+avS
+avS
+avS
+pSs
+avS
+awF
+aHS
+rIF
aaa
aaa
-bCI
-abj
-abj
aaa
-baE
-xvt
-auG
-avC
-awL
-axM
-ayM
-bkW
-azX
-azX
-ayM
-aDc
-aEf
-aFf
-aHg
-aIE
-atd
+aja
aLp
-atd
-aOg
-aPC
-aRb
-aSG
-aUc
-aVK
-aXp
-aYG
-bar
-bbS
-bdr
-beM
-aXp
-bhn
-biS
-bkH
-bmD
-bnY
-bpI
-brI
-brI
-buw
-bvK
-bwX
-byv
-bzT
-bBE
-bDv
-bEX
-bGD
-bIA
-bKn
-bMq
-bGz
-bVr
-bTV
-bWI
-bOf
-cxF
-bZv
-cbo
-cdh
-ceZ
-cij
-cij
-cjU
-cmP
-cmO
-coj
-cpr
-cqW
-ctF
-cuW
-czj
-cij
-cij
-czm
-cAF
-cbo
-duP
-cEC
-cGc
-cpF
-bZH
-vyF
-nKy
-nKy
-kaf
-nKy
-nKy
-nKy
-nKy
-nKy
-smb
-cXW
-ckb
-dlL
-stI
-deH
-xDG
-rXc
-wVT
-gkW
-wVT
-cWn
-dlL
-dYA
-dBM
-eMv
-abj
-abj
-abj
-uiA
-abj
-acF
-abj
+aLp
+aPk
+aja
+aaa
abj
-xjZ
abj
abj
+etQ
+aVk
+aao
+etQ
abj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+bAa
+bCm
+bFw
+bGw
+bMJ
+bRW
+bBo
+ccv
+chd
+ckN
+bfQ
+bfQ
+czv
+cCn
+ckN
+bfQ
+bWQ
+bqN
+dbm
+diQ
+dnB
+bBC
+moG
+dEb
abj
-aaa
-aaa
abj
+uYk
+cuq
+doB
+cuq
+uYk
+dHQ
+dEq
+dHQ
+uYk
+cge
+dRE
+cge
+uYk
+dEb
+moG
+mTB
+brW
+brW
+brW
+gTr
+brW
+bxh
+bxh
+bxh
+bxh
+bxh
+bxh
+bxh
+bxh
+bxh
+bxh
+bxh
+cZl
+eXm
+wtv
+cXa
+cXa
+qIf
+lhk
+iZQ
+qUe
+ekk
+onj
+utt
+jtS
+coh
+cmV
+rqU
+ufR
+mDe
+smf
+tFO
+cwy
+mPC
+okQ
+cCd
+nqI
+mDe
+nso
+ikA
+rAM
+rAM
+rAM
+rAM
+rAM
+heE
+voL
+lXa
+mzZ
+rAM
+rAM
+rAM
+rAM
+ddi
+kvB
+cto
+nSs
+hJG
+sKK
+qSI
+ecW
+sYB
+wNN
+ddi
+rtl
+fGj
+ycn
aaa
-aaa
+dkI
+lbz
+mWC
+xLY
+ydv
+wmd
+wiT
+dkI
+fjF
+dFg
+roX
+mbF
+wdx
+dHt
+nwf
+xwW
+xZc
+err
+wdx
+cNA
+aWY
+dFg
+fGj
+mfv
+xfo
+nnB
+fGj
+wKr
+wHz
+vEZ
abj
-aaa
-aaa
bCI
-aaa
-dTV
-dYM
-dVn
-aaa
-dTV
-dYM
-dVn
-aaa
-dTV
-dYM
-dVn
-aaa
+bCI
abj
+bCI
aaa
aaa
+aae
aaa
aaa
aaa
@@ -158771,22 +161831,6 @@ aaa
aaa
aaa
aaa
-"}
-(102,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -158797,6 +161841,8 @@ aaa
aaa
aaa
aaa
+"}
+(107,1,1) = {"
aaa
aaa
aaa
@@ -158823,180 +161869,203 @@ aaa
aaa
aaa
aaa
-aLJ
-dwL
-jLb
-qcW
-qcW
-qcW
-jrJ
-dwL
-aLJ
aaa
+azM
+ahH
+ahH
+ahH
+ahH
+ahH
+anF
+acZ
+acZ
+avS
+avS
+avS
+pSs
+avS
+awF
+aAa
+rIF
aaa
aaa
aaa
-abj
+aja
+aCG
+aFa
+aPu
+aja
aaa
-bCI
abj
-atd
-auc
-auH
-avD
-awH
-axO
-ayN
-azY
-aBi
-aCg
-aCX
-aEg
-aFg
-iIc
-aHh
-aIF
-atd
-aPE
-aRa
-aOg
-aPA
-aRc
-aSD
-aTZ
-aVI
-aOb
-aYH
-bas
-bbT
-bds
-beN
-aOb
-bhk
-biT
-bkH
-bmE
-bnZ
-bpJ
-brJ
-btn
-bux
-aOg
-bwP
-bwP
-bwP
-bBF
-bDv
-bEX
-bGE
-bEX
-bKo
-bMr
-bGz
-bGz
-bWq
-bGz
-bGz
-bQr
-cbu
-cbn
-cdj
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cok
-cps
-cqX
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cCe
-cCo
-cDH
-dWh
-cHl
-cHr
-dtU
-nxT
-ikA
-ikA
-ikA
-ikA
-ikA
-ikA
-ikA
-ikA
-ikA
-czD
-ckc
-dlL
-dbZ
-lkC
-dfS
-lVo
-lJK
-dky
-cPi
-dmS
-dlL
-eTq
-dBM
-eMv
aaa
aaa
+etQ
+aVk
+aXz
+etQ
+abj
+bAP
+auk
+btv
+bpe
+btv
+bSu
+bAP
+ccJ
+aBt
+aBt
+coL
+bLb
+aBt
+iOH
+ceP
+bLb
+cPJ
+bLb
+iOH
+aBt
+cDk
+dvB
+moG
+fdj
+aaa
+abj
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+uYk
+fdj
+moG
+mUu
+brW
aaa
-uiA
aaa
-acF
aaa
-abj
-xjZ
-abj
aaa
+bxh
+kGl
+lHR
+bzX
+nSf
+hiH
+oRX
+vDy
+wka
+wPi
+bxh
+tTD
+vfh
+wtR
+cXa
+xUL
+cbC
+cXa
+nhJ
+nhJ
+qUe
+jem
+utt
+dJU
+utt
+utt
+utt
+utt
+mDe
+mDe
+mDe
+mDe
+mDe
+mDe
+mDe
+mDe
+mDe
+cDz
+ikA
+cIM
+cIM
+cIM
+jvy
+mwp
+kZD
+cWV
+qhH
+juf
+cTz
+nBl
+cIM
+cIM
+ddi
+xfd
+jFA
+klo
+deL
+iYC
+osx
+mkL
+tJh
+dKY
+ddi
+pBc
+lcG
+vEZ
abj
+iis
+gKK
+xxJ
+xMf
+yeL
+kLY
+fvo
+mlh
+aAG
+ndo
+nFe
+jZb
+wdx
+ohs
+iPx
+xZc
+wdx
+xZc
+mJU
+wwu
+ido
+dFg
+iqs
+eOt
+mKN
+dwm
+gVC
+wKr
+mSo
+vEZ
abj
abj
abj
-acF
aaa
+bCI
aaa
aaa
aaa
aaa
aaa
-bvh
aaa
aaa
-bCI
-bCI
aaa
-bCI
-bCI
aaa
-bCI
aaa
-dTV
-dYM
-dVn
aaa
-abj
-dYN
-abj
aaa
-dTV
-dYM
-dVn
aaa
-abj
-bCI
-bCI
-bCI
aaa
aaa
aaa
@@ -159028,9 +162097,9 @@ aaa
aaa
aaa
aaa
-"}
-(103,1,1) = {"
aaa
+"}
+(108,1,1) = {"
aaa
aaa
aaa
@@ -159057,14 +162126,190 @@ aaa
aaa
aaa
aaa
+acL
+aez
+azS
+azS
+azS
+azS
+azS
+bXH
+dTN
+acZ
+ajY
+arl
+arl
+anF
+avS
+awM
+aAn
+rIF
aaa
aaa
aaa
+aja
+aLs
+aQk
+aQk
+aja
aaa
+abj
aaa
+uCN
+uCN
+blc
+aXz
+uCN
+abj
+bAP
+bnk
+bpe
+atm
+btv
+bxc
+bAP
+ccK
+ceP
+bOP
+aHu
+boU
+czy
+aBt
+ceI
+bQd
+aDg
+xQW
+liE
+iOH
+cDk
+cDZ
+moG
+cet
+cQp
+cgV
+cQp
+cgV
+cQp
+cgV
+cQp
+cgV
+cQp
+cgV
+cQp
+cgV
+cQp
+cgV
+cQp
+mhg
+moG
+mWP
+brW
aaa
+oNx
+oOg
+bxh
+bxh
+ref
+sbn
+sNf
+sNf
+tYG
+sNf
+sNf
+sNf
+wPv
+bxh
+fMV
+gnR
+wxt
+bUw
+neW
+jFc
+tgg
+uxe
+owd
+hvW
+sYS
+xiH
+xiH
+uAn
+cop
+cnb
+tgg
+xiH
+xiH
+xiH
+xiH
+eQd
+xiH
+xiH
+xiH
+xiH
+ack
+ikA
+lpC
+wMW
+cIM
+kxQ
+hEB
+baS
+cOP
+cRU
+mxZ
+vlf
+cIM
+vyF
+bJF
+ddi
+rIt
+gYN
+quV
+jJq
+tsu
+jjC
+mkL
+prm
+jfk
+ddi
+rtl
+fGj
+vEZ
aaa
+bpa
+rHD
+xtw
+xME
+yfG
+eYR
+jTz
+dkI
+aAG
+gXK
+pWT
+pWT
+pWT
+sQd
+vZn
+opt
+pWT
+rUu
+pWT
+mxx
+ydB
+yfs
+rAh
+xrx
+nte
+nte
+hqh
+ycn
+nte
+nte
+abj
aaa
+bCI
+abj
+abj
aaa
aaa
aaa
@@ -159080,180 +162325,21 @@ aaa
aaa
aaa
aaa
-aLJ
-dPS
-mAF
-xRu
-xRu
-xRu
-icc
-dPS
-aLJ
aaa
aaa
aaa
aaa
-bCI
-abj
-bCI
aaa
-atd
-aub
-auI
-avE
-awN
-axP
-ayN
-azZ
-azZ
-azZ
-aCY
-aEh
-aFh
-bFU
-aHi
-aIG
-aJV
-aLs
-aMP
-aOi
-aPD
-aRd
-aSD
-aTZ
-aVL
-aXo
-aXo
-aOb
-aOb
-aOb
-aXo
-aXo
-bho
-biT
-bkI
-bmF
-boa
-bpK
-brK
-bto
-buy
-bvL
-bwY
-byw
-bzU
-bBG
-bDw
-bEY
-bGF
-bIB
-bKp
-bMs
-bOg
-bQq
-bTW
-bWK
-bYo
-bXZ
-bZx
-cbp
-cdi
-cfb
-cgN
-cfb
-cgN
-cfb
-cgN
-cfb
-cpt
-cqY
-cgN
-cfb
-cgN
-cfb
-cgN
-ocE
-cAG
-cCp
-cDI
-bXU
-cGe
-cdt
-qIQ
-cKf
-ikA
-cNi
-cNi
-cIM
-cVG
-cIM
-cIM
-cIM
-ikA
-mkK
-ckb
-dlL
-dcd
-tAB
-lxh
-waQ
-ydS
-ydS
-cQt
-dlL
-dlL
-hFm
-uSK
-nte
-abj
-abj
-abj
-uiA
-abj
-acF
-alW
-abj
-xjZ
-abj
-abj
-abj
aaa
aaa
aaa
-acF
-abj
-abj
-abj
-acF
aaa
aaa
-bvh
-abj
-abj
-bCI
-abj
-abj
-abj
-abj
-abj
-abj
aaa
aaa
-dYN
-abj
-abj
-abj
-dQB
-abj
-abj
-abj
-dYN
-abj
aaa
aaa
-abj
aaa
-bCI
aaa
aaa
aaa
@@ -159269,6 +162355,8 @@ aaa
aaa
aaa
aaa
+"}
+(109,1,1) = {"
aaa
aaa
aaa
@@ -159285,8 +162373,6 @@ aaa
aaa
aaa
aaa
-"}
-(104,1,1) = {"
aaa
aaa
aaa
@@ -159297,13 +162383,190 @@ aaa
aaa
aaa
aaa
+acN
+adh
+aga
+acZ
+afw
+acZ
+acZ
+ajk
+acZ
+acZ
+aBp
+azS
+azS
+aez
+azS
+azS
+azS
+bXH
aaa
aaa
aaa
+aja
+aLy
+aju
+aQk
+aja
aaa
+abj
+abj
+etQ
+bjr
+aVk
+bqk
+uCN
aaa
+bAP
+aTB
+bpU
+aQe
+atm
+bSw
+bAP
+ccO
+iOH
+ckQ
+bQU
+aHu
+czM
+ceP
+cGF
+cNn
+cQb
+crA
+cAz
+ceP
+cDk
+bvG
+moG
+moG
+moG
+moG
+moG
+gbI
+gbI
+gbI
+moG
+gbI
+gbI
+gbI
+moG
+gbI
+gbI
+gbI
+moG
+moG
+moG
+mXF
+brW
aaa
+oOg
+pse
+pXV
+oOg
+rfQ
+qJo
+bzZ
+bBL
+cMi
+bOk
+bGK
+qJo
+rnp
+bxh
+gyZ
+dlR
+dpn
+cXa
+tIu
+dzt
+yhX
+yhX
+cbC
+cbC
+ukv
+yhX
+yhX
+yhX
+cbC
+grQ
+cbC
+yhX
+yhX
+cbC
+lGR
+qUe
+ssj
+cbC
+pgJ
+ijH
+jiV
+ikA
+cIM
+cIM
+rxH
+spe
+kCE
+kZD
+cWV
+qhH
+mAa
+mUg
+cIM
+cIM
+cIM
+ddi
+uXc
+mBV
+qtZ
+rfs
+vos
+htC
+mkL
+tda
+sfI
+ddi
+dIy
+wKr
+nte
+abj
+dkI
+fWk
+xwd
+xME
+ygf
+jKV
+xCD
+dkI
+cAA
+myH
+uGt
+uGt
+uGt
+ibJ
+uYP
+lPW
+lPW
+lPW
+lPW
+eaP
+uTm
+dFg
+rNX
+gJr
+nte
+rNh
+oOX
+dQK
+nte
+abj
+abj
+abj
+bCI
aaa
+abj
aaa
aaa
aaa
@@ -159337,180 +162600,25 @@ aaa
aaa
aaa
aaa
-aLJ
-dwL
-ogg
-uWM
-mYd
-iWL
-ogg
-dwL
-aLJ
aaa
aaa
aaa
aaa
-bCI
aaa
-bCI
-abj
-atd
-aud
-avF
-awO
-aye
-axQ
-ayO
-aAa
-aBX
-aAa
-aCZ
-aAa
-aQa
-aFX
-aGi
-aIH
-aJZ
-aLt
-aMQ
-aOm
-aTT
-aTT
-aSH
-aUd
-aVM
-aXq
-aYI
-bgf
-cig
-czp
-beO
-aXn
-bhk
-biU
-bkJ
-bmG
-bob
-bpL
-bmG
-btp
-buz
-bvM
-bwZ
-byx
-bzV
-bBH
-bDx
-bEZ
-bGG
-bIC
-bKq
-bMt
-bNU
-bQA
-bSh
-bUs
-cbR
-cia
-bZy
-cbq
-cdk
-cfe
-cfe
-cjN
-cfe
-cfe
-coc
-col
-cpu
-cqV
-crc
-ctG
-cuV
-crc
-cAB
-dWa
-cAN
-cCv
-cDJ
-bXU
-cGe
-cdt
-cIF
-cKg
-ikA
-cNj
-cOI
-cKo
-cKo
-cKo
-cKo
-cWy
-ikA
-czD
-ckc
-oOZ
-dcZ
-eBy
-cZw
-dhB
-xlL
-dYp
-cQu
-cWp
-oOZ
-hFm
-vGx
-vSN
aaa
aaa
aaa
-uiA
aaa
aaa
aaa
-bvh
-xjZ
-bvh
aaa
-abj
-abj
-abj
-abj
-acF
+"}
+(110,1,1) = {"
aaa
aaa
aaa
-acF
-abj
-abj
-acF
aaa
aaa
-bCI
-abj
-dQB
-dQB
-dQB
-dQB
-dQB
-dQB
-dQB
-dQB
-dQB
-dQB
-dQB
-dQB
-dQB
-dQB
-dQB
-dQB
-dYR
-dYS
-dYS
-dWc
-abj
-abj
aaa
aaa
aaa
@@ -159532,18 +162640,192 @@ aaa
aaa
aaa
aaa
+acN
+adh
+agk
+acZ
+acZ
+acZ
+acZ
+aCq
+acZ
+acZ
+azM
+mNi
+ozv
+rob
+rob
+jCM
+ibD
+aoL
+rCP
aaa
aaa
+aHT
+hRg
+aju
+aQk
+aja
aaa
+abj
aaa
+etQ
+bjs
+aVk
+aXz
+etQ
+abj
+bAP
+bCv
+atm
+aOL
+btv
+bSA
+aQR
+ccO
+bLb
+bBV
+bQd
+aHu
+aEm
+aBt
+bQU
+bmX
+cQk
+bqO
+aFj
+aBt
+dnG
+cbs
+cbs
+cbs
+dLg
+aVS
+aVS
+aVS
+aVS
+dLg
+fNH
+fOC
+fOC
+fOC
+imH
+iQf
+iQf
+fOC
+fOC
+fOC
+fOC
+mYd
+gTr
aaa
+oOK
+iYw
+pZq
+qoQ
+pZq
+nUJ
+nUJ
+nUJ
+tYU
+oSL
+oSL
+oSL
+wQj
+rVw
+sFF
+uZl
+dot
+bYj
+bYj
+bYj
+iru
+bYj
+bYj
+bYj
+cgT
+bYj
+bYj
+bYj
+bYj
+bYj
+bYj
+bYj
+bYj
+bYj
+bYj
+bYj
+bYj
+bYj
+oyP
+yhX
+pMV
+ikA
+rAM
+rAM
+rAM
+rAM
+mzZ
+qGp
+voL
+cQH
+cUU
+rAM
+rAM
+rAM
+rAM
+ddi
+gXb
+phh
+quV
+rfB
+rGM
+htC
+sHq
+jfk
+jfk
+ddi
+rtl
+wKr
+nte
+ycn
+dkI
+dkI
+dkI
+xPe
+dkI
+oWK
+dkI
+dkI
+xTb
+ndo
+nFe
+wmL
+xwW
+tGd
+dHt
+wTW
+err
+wdx
+xZc
+jaN
+pWR
+dFg
+mcQ
+fGj
+nte
+qcX
+oOX
+dQL
+vEZ
+abj
aaa
aaa
+bCI
aaa
+abj
aaa
aaa
-"}
-(105,1,1) = {"
aaa
aaa
aaa
@@ -159587,6 +162869,8 @@ aaa
aaa
aaa
aaa
+"}
+(111,1,1) = {"
aaa
aaa
aaa
@@ -159594,186 +162878,209 @@ aaa
aaa
aaa
aaa
-aNf
-dXE
-qtZ
-dwL
-dwL
-dwL
-xZm
-tKE
-aNf
aaa
aaa
aaa
-abj
-bCI
aaa
-abj
aaa
-atd
-aub
-auI
-avG
-awP
-axR
-ayN
-aAb
-aAb
-aAb
-aDa
-aEi
-aFh
-aFY
-aHk
-aII
-aJX
-aLu
-aMR
-aOk
-aPF
-aRe
-aSI
-aUe
-aVN
-aXr
-aYJ
-bau
-cih
-vpp
-vpp
-xhK
-vpp
-biV
-bkK
-bmH
-boc
-bpM
-brL
-btq
-buA
-aOk
-bxa
-byy
-bzW
-bBI
-bDy
-bFa
-bGH
-bHh
-bEW
-bMu
-bOi
-bRS
-bTX
-bWN
-cfB
-bYb
-bZz
-cbr
-cdl
-cfd
-cgO
-cil
-clt
-clu
-coh
-com
-cpv
-cqZ
-css
-mDe
-mDe
-cwx
-cxK
-czs
-cAI
-cCr
-mDe
-mDe
-cGi
-cdt
-cdt
-nQv
-ikA
-cIM
-cNi
-cIM
-cIM
-cIM
-cIM
-cIM
-ikA
-dHk
-ckc
-oOZ
-fRS
-jVD
-dkz
-ftP
-deW
-dkB
-cRt
-dmT
-oOZ
-eTq
-jDH
-nte
aaa
aaa
aaa
-uiA
-bCI
aaa
aaa
-bvh
-xjZ
-bvh
aaa
aaa
aaa
-abj
aaa
-acF
-abj
-abj
-abj
-acF
aaa
aaa
-acF
-abj
-abj
-abj
-abj
-dQB
-abj
-abj
-abj
-abj
aaa
aaa
-dYI
-abj
-abj
-abj
-dQB
-abj
-abj
-abj
-dYI
-abj
aaa
+acN
+adh
+ahh
+acZ
+ahL
+ahL
+ahL
+agR
+acZ
+acZ
+ajk
+acZ
+acZ
+acZ
+acZ
+acZ
+acZ
+anC
+aCC
aaa
-abj
aaa
-bCI
+aHT
+mnR
+aju
+aQk
+aja
aaa
+abj
aaa
+etQ
+bjB
+aVk
+bql
+etQ
+abj
+bBo
+bCC
+bpU
+aOT
+atl
+bSI
+bAn
+cdb
+bLb
+bjW
+aHu
+aHu
+czN
+aBt
+cGK
+chJ
+cmk
+crE
+aHu
+ceP
+dod
+bvG
+csO
+csO
+aMW
+bCK
+aMW
+aMW
+aMW
+csO
+fOa
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+bWx
+ncP
+brW
aaa
+kcq
+jba
+jAa
+kcq
+rfQ
+qJo
+cZq
+bBN
+cMk
+bFf
+bGL
+qJo
+wRB
+bxh
+tTD
+vfh
+wtR
+bYj
+wNw
+vGf
+bZE
+hBQ
+sez
+phQ
+pnI
+lDs
+olI
+sND
+uvT
+lDs
+bYj
+cfu
+pGl
+foA
+viX
+aAB
+mVO
+bYj
+yfm
+qUe
+oHS
+ikA
+cIM
+cIM
+cIM
+fPi
+fXj
+cOL
+kko
+qhH
+cVG
+cWA
+nBl
+cIM
+cIM
+ddi
+nTV
+phh
+klo
+rfK
+kjF
+htC
+mkL
+jfk
+mZA
+ddi
+rtl
+fGj
+uwp
+fGj
+wKr
+rPI
+pZR
+xPY
+yhO
+vlG
+rzM
+uLX
+tqc
+dFg
+dXX
+wmL
+wdx
+xZc
+xZc
+xZc
+qsF
+xZc
+xZc
+nyi
+prs
+dFg
+fNY
+fGj
+nte
+gvC
+oOX
+dRc
+vEZ
+abj
aaa
aaa
+abj
aaa
+bCI
aaa
aaa
aaa
@@ -159799,8 +163106,6 @@ aaa
aaa
aaa
aaa
-"}
-(106,1,1) = {"
aaa
aaa
aaa
@@ -159821,6 +163126,8 @@ aaa
aaa
aaa
aaa
+"}
+(112,1,1) = {"
aaa
aaa
aaa
@@ -159829,7 +163136,6 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -159848,183 +163154,196 @@ aaa
aaa
aaa
aaa
+acS
+aeW
+ahq
+ajj
+afC
+agu
+ahN
+azM
+all
+acZ
+akr
+acZ
+acZ
+acZ
+acZ
+acZ
+acZ
+nNp
+azM
aaa
+aaq
+aja
+aQk
+aju
+oUT
+aja
aaa
+abj
aaa
-aak
-cOo
-cOo
-fHp
-uZl
-fHp
-cOo
-cOo
-aao
+etQ
+bjs
+aVk
+bri
+etQ
aaa
+bAP
+bCJ
+atm
+bGy
+btv
+bSA
+bBo
+aTn
+aBt
+baG
+aIP
+bQU
+cAf
+iOH
+aHu
+cNw
+aCe
+crF
+gWz
+aBt
+cDk
+cEh
+csO
+dEt
+dLj
+twh
+dVx
+twh
+xDB
+bCK
+fOa
+dBe
+crJ
+hCl
+ipi
+dOY
+dRM
+kwq
+lvU
+baF
+bvG
+ndJ
+brW
aaa
-alW
-abj
-bCI
-abj
-bCI
-abj
-atd
-aue
-auJ
-avH
-awQ
-axS
-ayN
-aAc
-aBk
-aCh
-aDb
-aEg
-ayM
-aFZ
-aHh
-hng
-atd
-aPE
-aNZ
-aOg
-aPG
-aRf
-aSD
-aTZ
-aVO
-aXs
-aXs
-bav
-bbV
-aXs
-aXs
-aXs
-aXs
-biW
-bkL
-bmI
-bod
-bpN
-brM
-btr
-buB
-aOg
-aOg
-aOg
-aOg
-aOg
-aOg
-bFb
-bGI
-bIE
-bIA
-bMv
-gnR
-gnR
-bSj
-bUu
-bWt
-gnR
-bZA
-cbs
-cdm
-ceY
-cgP
-cim
-cmM
-clv
-cmV
-con
-cpw
-cra
-cmV
-mDe
-cwy
-cxH
-cAO
-cCd
-fhM
-cDB
-cDK
-mDe
-cGg
-cbC
-cbC
-ieE
+oNx
+kcq
+bxh
+bxh
+kGQ
+tdH
+tdH
+tdH
+uaK
+tdH
+tdH
+tdH
+wRP
+bxh
+cLX
+vfh
+wyy
+inV
+uey
+hEv
+lZU
+dCC
+oTk
+tqF
+pnI
+lDs
+okI
+lDs
+lZU
+lDs
+bYj
+kYq
+crn
+iKD
+iKD
+euu
+vwX
+bYj
+imT
+rRM
+pMV
ikA
-cIH
-cOJ
+vdu
+vyF
cIM
+mhC
+hEB
+laB
+jHx
+xne
+mxZ
+cVb
cIM
-cTp
-cOJ
-cIH
-ikA
-czD
-ckc
-oOZ
-ddc
-uEQ
-sKK
-dri
-dhI
-dYq
-cSY
-dmU
-oOZ
-eTq
+wMW
+tOD
+ddi
+nMC
+phh
+qxv
+tfI
+dfY
+jjC
+gsc
+jhm
+feg
+ddi
+fVN
+bAE
+tHn
+yjo
+tHn
+leo
+gVc
+aip
+fFM
+leo
+yjo
+yjo
+eOQ
+yfs
+pWT
+mJv
+mJv
+dKE
+xcV
+dHt
+xZc
+dHt
+qqV
+jaN
+bTQ
+dFg
+xJW
+fGj
ycn
-nte
-aaa
-aaa
-aaa
-uiA
-bCI
-aaa
-aaa
-abj
-xjZ
+tzX
+sMM
+lql
+vEZ
abj
-aaa
-aaa
-aaa
abj
-aaa
-aaa
-aaa
abj
-aaa
-acF
abj
abj
-acF
-aaa
-aaa
bCI
abj
-dYI
abj
aaa
aaa
-bCI
-aaa
-dTV
-dYO
-dVn
-aaa
-abj
-dYI
-abj
aaa
-dTV
-dYO
-dVn
aaa
-abj
-bCI
-bCI
-bCI
aaa
aaa
aaa
@@ -160056,8 +163375,6 @@ aaa
aaa
aaa
aaa
-"}
-(107,1,1) = {"
aaa
aaa
aaa
@@ -160066,6 +163383,8 @@ aaa
aaa
aaa
aaa
+"}
+(113,1,1) = {"
aaa
aaa
aaa
@@ -160080,7 +163399,6 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -160094,191 +163412,225 @@ aaa
aaa
aaa
aaa
+acS
+aeW
+acZ
+acZ
+afI
+awQ
+azM
+ajl
+ajl
+anF
+dTN
+acZ
+acZ
+acZ
+hhf
+and
+aBp
+hAY
aaa
aaa
+aIB
+aLB
+aju
+oHH
+aja
aaa
+abj
+abj
+etQ
+bjF
+aVk
+brj
+uCN
+abj
+bAP
+bDb
+atm
+bHf
+atm
+aQb
+bAP
+aTA
+ceP
+clp
+bfc
+aHu
+cAh
+ceP
+cGN
+cie
+aDg
+cNg
+bsA
+diR
+cDk
+cEj
+aMW
+xDB
+dLu
+dOE
+twh
+vbw
+eMC
+aMW
+fOa
+baF
+gVd
+hCD
+ipx
+iQL
+jyk
+kBe
+lwz
+baF
+bXf
+ncP
+brW
aaa
aaa
aaa
aaa
+bxh
+buJ
+sbt
+sNt
+cLV
+bDB
+cPe
+bGO
+bWz
+wRT
+bxh
+qcL
+ygK
+jiD
+dac
+lHe
+hne
+dBB
+lHe
+lHe
+sxH
+idE
+piQ
+qIQ
+lHe
+oaU
+lHe
+jAi
+lHe
+tcK
+nji
+mNq
+iiP
+fpN
+bYj
+oyP
+cbC
+pMV
+ikA
+cIM
+cIM
+rxH
+tLc
+uve
+odT
+muV
+iYl
+goA
+lot
+cIM
+cIM
+cIM
+ddi
+dfR
+wdH
+mkF
+pqz
+dfZ
+ddi
+jfk
+jfk
+jfk
+ddi
+sEK
+tzX
+bIK
+qGP
+aSP
+vlG
+eap
+txb
+pwH
+vlG
+hlJ
+fGj
+rNX
+wjj
+mDD
+qxf
+fwf
+pWT
+xcV
+dHt
+tXP
+xwW
+qqV
+nyi
+oEJ
+dFg
+tBs
+wKr
+nte
+dRc
+oOX
+qcX
+vEZ
+abj
aaa
aaa
+abj
aaa
+bCI
aaa
+abj
aaa
aaa
aaa
aaa
aaa
aaa
-wLE
-veG
-wLE
aaa
aaa
aaa
aaa
-abj
-abj
aaa
-bCI
aaa
-bCI
aaa
-aYW
-nPi
-auG
-avC
-awL
-axN
-ayM
-bsb
-aAd
-aAd
-ayM
-aCT
-aEj
-aGa
-aHl
-aIJ
-atd
-atd
-atd
-aOg
-aPH
-aRg
-aSD
-aTZ
-aVF
-aXt
-aYK
-baw
-aYK
-aYK
-aYK
-bgg
-ban
-biX
-bkM
-bmJ
-boe
-bpO
-brN
-bts
-buC
-bvN
-bxb
-byz
-bzX
-bBJ
-aOg
-bFc
-bGI
-bIF
-hiH
-bMw
-bOh
-bQs
-bSk
-bUv
-bWu
-clo
-bZB
-cbt
-ceT
-cgH
-cik
-cjO
-cmN
-clv
-czH
-coo
-cpx
-crb
-cst
-mDe
-cvc
-cwz
-lRO
-vMe
-nTz
-nXm
-cDL
-mDe
-cGh
-dbN
-cIG
-cKi
-ikA
-cNk
-cOK
-cQE
-cRP
-cTq
-cUT
-cVh
-ikA
-cKe
-ckb
-oOZ
-dkp
-deL
-iYC
-osx
-djg
-sPi
-cTd
-dmW
-oOZ
-hFm
-vGx
-eMv
aaa
aaa
aaa
-uiA
-bCI
aaa
aaa
-abj
-xjZ
-abj
aaa
aaa
aaa
-abj
aaa
aaa
aaa
-abj
aaa
aaa
aaa
aaa
-abj
-abj
-abj
-bCI
-abj
-dYJ
-abj
aaa
aaa
-bCI
aaa
-dTV
-dYO
-dVn
aaa
-dTV
-dYO
-dVn
aaa
-dTV
-dYO
-dVn
aaa
-abj
aaa
aaa
aaa
@@ -160288,6 +163640,8 @@ aaa
aaa
aaa
aaa
+"}
+(114,1,1) = {"
aaa
aaa
aaa
@@ -160313,16 +163667,193 @@ aaa
aaa
aaa
aaa
-"}
-(108,1,1) = {"
aaa
aaa
aaa
+acS
+akL
+acz
+afv
+age
+azM
+ahk
+acZ
+azM
+nnx
+afC
+aoM
+awl
+aBp
+azS
+hAY
aaa
aaa
aaa
+aIU
+aja
+aju
+aja
+aKm
aaa
+abj
aaa
+uCN
+uCN
+blc
+brG
+uCN
+abj
+bAP
+bDd
+bpU
+atm
+btv
+bSM
+bAP
+cdf
+ceP
+aBt
+aBr
+bLb
+aBt
+aBt
+cHd
+cNV
+cml
+aEp
+aHu
+btN
+cDk
+bVS
+aMW
+dEA
+cQq
+cWy
+vbw
+dkX
+aOs
+aMW
+fOa
+baF
+bQP
+joM
+dKV
+dPb
+ccn
+bhs
+dZw
+baF
+btD
+ndJ
+brW
+brW
+brW
+gTr
+brW
+bxh
+bxh
+bxh
+bxh
+bxh
+bxh
+bxh
+bxh
+bxh
+bxh
+bxh
+cLX
+vfh
+wyy
+eKm
+crn
+xeE
+crn
+crn
+crn
+iSW
+crn
+crn
+kLd
+crn
+xeE
+crn
+tCy
+crn
+fVA
+tQn
+lzy
+cAM
+moX
+bYj
+oyP
+hwE
+pMV
+ikA
+rAM
+rAM
+rAM
+rAM
+hUH
+iJW
+cUW
+cTr
+hUH
+rAM
+rAM
+oOo
+oOo
+ddi
+qSE
+wZL
+qSE
+deR
+qtq
+dkI
+dkI
+dkI
+dkI
+dkI
+dkI
+dkI
+dkI
+dkI
+dkI
+dkI
+dkI
+hiV
+dkI
+dkI
+jVd
+fGj
+rNX
+dFg
+uMC
+rMu
+dGB
+tbO
+qsF
+dFg
+dFg
+wjj
+dFg
+qPa
+dFg
+dFg
+rNX
+fGj
+nte
+qcX
+oOX
+dRb
+nte
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
aaa
aaa
aaa
@@ -160366,176 +163897,25 @@ aaa
aaa
aaa
aaa
+"}
+(115,1,1) = {"
aaa
aaa
-etQ
-nKF
-wLE
-etQ
-etQ
-wLE
-etQ
-etQ
-wLE
-abj
-abj
aaa
-bCI
-abj
-aYX
-lMn
-liE
-hUr
-awR
-axL
-ayP
-aBf
-aBf
-aBf
-ayL
-aDc
-aEj
-aFi
-aHm
-aIK
-aJY
-aLv
-aMS
-aOg
-aPH
-aRh
-aSJ
-aUf
-aVP
-aXu
-aYL
-aXu
-bbW
-bbW
-beP
-bgh
-bhp
-biY
-bkN
-bmK
-aOg
-bpP
-brO
-btt
-buD
-bvO
-ban
-byA
-bzY
-bBK
-aOg
-byl
-bGJ
-bIG
-gnR
-bMx
-gnR
-cLY
-bSl
-bUw
-bWv
-tdH
-bZC
-cfg
-cdn
-cff
-bXU
-bXU
-bXU
-clv
-cop
-cqP
-cpy
-cso
-cuR
-mDe
-cvd
-cwz
-xiH
-czu
-nSi
-cCt
-cDM
-mDe
-dfU
-ikA
-ikA
-dgr
-cLZ
-cNm
-cOO
-cRQ
-cTs
-cUV
-cWC
-cNm
-ikA
-cZn
-ckb
-oOZ
-dda
-deM
-dfX
-jjC
-djm
-iwt
-cTo
-dmX
-oOZ
-eTq
-fEe
-eMv
aaa
aaa
aaa
-uiA
-bCI
aaa
aaa
-bvh
-xjZ
-bvh
aaa
aaa
aaa
-abj
aaa
aaa
aaa
-abj
aaa
aaa
-bCI
-bCI
-bCI
-abj
-abj
-abj
-abj
-dYK
-abj
-abj
aaa
-bCI
-abj
-dTV
-dYO
-dVn
-abj
-dTV
-dYO
-dVn
-abj
-dTV
-dYO
-dVn
-abj
-bCI
aaa
aaa
aaa
@@ -160548,17 +163928,188 @@ aaa
aaa
aaa
aaa
+acS
+azS
+azS
+azS
+add
+dWB
+eSm
+aoL
+azS
+azS
+azS
+azS
+hAY
aaa
aaa
aaa
aaa
aaa
aaa
+aIU
+aFH
+aKm
aaa
aaa
+abj
aaa
aaa
+etQ
+aVk
+brN
+etQ
+abj
+bAP
+bDf
+btv
+btv
+atm
+bTv
+bAP
+bxp
+bLb
+clF
+bQx
+bev
+bLb
+ccW
+cHz
+aHu
+boW
+cSI
+dbs
+iOH
+cDk
+bWL
+aMW
+xDB
+tOs
+twh
+dcC
+egD
+aOs
+aMW
+fOr
+aXx
+gVO
+dHS
+dKX
+dPc
+dRX
+dVJ
+dZM
+baF
+bWL
+njM
+gZH
+oBL
+crI
+cXz
+cXz
+qpj
+nVJ
+cUK
+mIO
+nVJ
+nVJ
+mIO
+mIO
+cUK
+mIO
+scT
+cES
+vbq
+wyy
+inV
+cIv
+dGo
+dBE
+cbA
+crn
+iSW
+ckj
+lDs
+cJN
+lDs
+vad
+lDs
+bYj
+noI
+rMr
+wEr
+cva
+cAM
+cAP
+bYj
+oyP
+qUe
+wBr
+ikA
+xYt
+xYt
+xYt
+rAM
+bVJ
+odT
+muV
+sHY
+xdB
+mxT
+vkV
+eFS
+fEg
+ars
+eIb
+nZi
+ddb
+cPk
+qFQ
+djf
+pfA
+dAv
+tDD
+gVo
+hHo
+hJO
+fVc
+oKD
+wCy
+dkI
+rfA
+dxc
+dyp
+dkI
+tLI
+fGj
+rAh
+dFg
+loV
+gre
+dFK
+pWT
+nOR
+dFg
+xua
+hfU
+gxv
+ind
+tiU
+dFg
+rNX
+fGj
+nte
+dJx
+dRs
+dJx
+dJx
+dJx
+yiZ
+yiZ
+dJx
+lho
aaa
+bCI
aaa
aaa
aaa
@@ -160570,8 +164121,6 @@ aaa
aaa
aaa
aaa
-"}
-(109,1,1) = {"
aaa
aaa
aaa
@@ -160605,6 +164154,8 @@ aaa
aaa
aaa
aaa
+"}
+(116,1,1) = {"
aaa
aaa
aaa
@@ -160624,175 +164175,208 @@ aaa
aaa
aaa
aaa
-wLE
-wLE
-veG
-wLE
-pMH
-smD
-wLE
-kZO
-eJs
-wLE
aaa
-bCI
-abj
-abj
aaa
-baE
-auf
-auK
-avI
-awS
-axT
-ayI
-azV
-aAh
-aCU
-aEe
-aFV
-aFV
-aGb
-aHn
-aIL
-aKX
-aLw
-aMT
-aOg
-aPH
-aRi
-aSK
-aUg
-bcy
-aXv
-aYM
-bax
-bbX
-bdt
-beQ
-bgi
-bhq
-biZ
-bkO
-bmL
-aOg
-bpQ
-brP
-btu
-buE
-bvP
-aXs
-byB
-bzZ
-bBL
-bDz
-bFd
-bGK
-bID
-bKt
-bMy
-bOk
-bQt
-bSm
-bUx
-bWw
-tdH
-bZD
-cbv
-cdo
-ciX
-bXU
-cin
-cjV
-clv
-cmY
-cos
-cpz
-crf
-cIN
-mDe
-gJA
-cwz
-qIF
-czt
-nSi
-cCt
-cED
-mDe
-dfU
-ikA
-cII
-cKk
-cIL
-cTv
-cOQ
-cRR
-cTt
-cRR
-dWl
-dWt
-ikA
-czD
-cJN
-oOZ
-oOZ
-oOZ
-vos
-dhz
-epX
-dmR
-cUv
-dox
-oOZ
-eTq
-dBM
-eMv
aaa
aaa
aaa
-uiA
aaa
aaa
aaa
-bvh
-xjZ
-bvh
aaa
aaa
aaa
-abj
aaa
aaa
aaa
+dft
+emT
+emT
+dft
abj
-aaZ
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+aCb
+dft
+aNQ
+dft
+abj
+abj
+abj
+abj
+abj
+etQ
+aVk
+brN
+etQ
aaa
+aQR
+bDg
+bpZ
+bHu
+bMP
+bTE
+bBf
+cdh
+bLo
+cmh
+cpD
+axc
+cAt
+cCt
+cCt
+cjn
+cmm
+bsA
+egA
+ceP
+qKv
+dvK
+aMW
+dEG
+cQr
+aOo
+bCG
+vPS
+bHr
+aMW
+aBs
+baF
+gWH
+baB
+bca
+baF
+dCD
+bgm
+dCD
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+aBs
+rpY
+rpY
+rpY
+rpY
+rpY
+rpY
+rpY
+rpY
+rpY
+rpY
+aAO
+hDU
+wyy
+bYj
+cfu
+xBo
+dBG
+cAq
+crn
+sUU
+ckj
+lDs
+cJN
+lDs
+ckj
+lDs
+bYj
+niu
+vru
+dZe
+gHq
+cAR
+frh
+bYj
+yfm
+qUe
+oHS
+ikA
+xYt
+fTu
+kDH
+vWQ
+iQu
+laF
+gQH
+pKk
+cRX
+ikg
+ilJ
+udm
+oBj
+puv
+mHX
+rkO
+puv
+iZG
+dgb
+dhM
+xNu
+oSQ
+nHQ
+xxk
+pVj
+oDB
+uyD
+iXf
+gJh
+nTN
+nkJ
+fCp
+dyr
+dkI
+tzX
+fGj
+yap
+dFg
+dFg
+yfs
+dFg
+dFg
+qks
+dFg
+nvU
+dKE
+wwu
+wxU
+dMd
+dFg
+rAh
+wKr
+nte
+xQE
+llF
+hKt
+kul
+prI
+juR
+fvy
+lJv
+dJx
+abj
+bCI
aaa
aaa
aaa
aaa
aaa
-abj
-dPp
-dQK
-dPp
-abj
aaa
-bCI
aaa
-dTV
-dYO
-dVn
aaa
-dTV
-dYO
-dVn
aaa
-dTV
-dYO
-dVn
aaa
-bCI
aaa
aaa
aaa
@@ -160828,7 +164412,7 @@ aaa
aaa
aaa
"}
-(110,1,1) = {"
+(117,1,1) = {"
aaa
aaa
aaa
@@ -160859,16 +164443,187 @@ aaa
aaa
aaa
aaa
+aaq
aaa
+abj
+dft
+aDx
+aDx
+dft
aaa
+abj
aaa
aaa
+abj
aaa
+dft
+aFu
+dft
+dft
+aFu
+dft
+aDx
+dft
aaa
+abj
aaa
aaa
aaa
+etQ
+blk
+brR
+etQ
aaa
+bAh
+bBo
+bAP
+bAP
+bAP
+bBo
+bBo
+aTn
+bLb
+cmo
+aHu
+bew
+aBz
+cCC
+aHu
+cjv
+cQo
+ccW
+liE
+aBt
+doh
+dvM
+bCK
+dFd
+dLA
+aOs
+dEG
+bEs
+xDB
+aMW
+aBs
+baF
+bQT
+dHY
+bWS
+baF
+ccC
+cgk
+ciy
+cmn
+mwd
+nlf
+hcW
+bqe
+itk
+xsK
+baF
+aBs
+rpY
+sbD
+bKy
+tBB
+ucJ
+uQp
+vFe
+wnd
+wSx
+siM
+bOq
+vhD
+bSt
+bYj
+bYj
+bYj
+bYj
+dCH
+crn
+iSW
+ckj
+ckj
+cJN
+ckj
+ckj
+jZz
+xza
+eMI
+gUa
+gUa
+gUa
+eTz
+miO
+bYj
+kDa
+cbC
+qpC
+ikA
+fVn
+kna
+aRl
+qfD
+tui
+cCw
+hUJ
+mov
+eiw
+ydO
+dWs
+iFq
+uSt
+vyB
+mkc
+nKG
+ddp
+deS
+dgc
+dhL
+wfs
+uBQ
+lHT
+wfs
+lNC
+wfs
+cGa
+rMg
+wCE
+wVQ
+jZj
+dBA
+dys
+dkI
+hur
+naf
+rNX
+mfv
+fGj
+wKr
+dFM
+dFg
+dFg
+wjj
+wjj
+dFg
+wjj
+wjj
+dFg
+yfs
+rNX
+fGj
+nte
+qeg
+ivT
+dDW
+kee
+sxt
+hAQ
+dio
+wsC
+yiZ
+acF
+acF
aaa
aaa
aaa
@@ -160881,175 +164636,12 @@ aaa
aaa
aaa
aaa
-etQ
-khY
-jww
-aZf
-oBM
-pQd
-jDz
-yfG
-pEC
-etQ
aaa
-bCI
aaa
-bCI
-abj
-atd
-aug
-atd
-avI
-awT
-axV
-ayR
-aAg
-aBm
-aAg
-aDd
-aEm
-aFj
-aGg
-aME
-aCW
-aNX
-aMx
-aMU
-aOg
-aPI
-bxM
-aSL
-aUh
-aPH
-aXw
-aYN
-bay
-aPH
-bdu
-beR
-bgj
-bhr
-bja
-bkP
-bmM
-aOg
-bpR
-brQ
-btv
-buF
-bvQ
-aYJ
-byC
-bAa
-bBM
-bDA
-bFe
-bGM
-bIH
-bIW
-bMz
-bOl
-bQu
-bSn
-bUy
-bWx
-bWt
-bZD
-cbw
-cdp
-cfh
-bXU
-cbA
-cio
-clv
-cmZ
-cor
-cpz
-crg
-crg
-mDe
-cwB
-cwz
-qIF
-dlt
-nSi
-nXm
-cGb
-mDe
-dfU
-ikA
-cIJ
-cKm
-cNo
-cRO
-cON
-cQH
-cRS
-cUX
-cUW
-dWu
-ikA
-czD
-dar
-cEG
-cEG
-cIE
-oOZ
-htC
-oOZ
-oOZ
-oOZ
-oOZ
-oOZ
-cYa
-vPH
-nte
-abj
-abj
-abj
-uiA
-abj
-abj
-abj
-abj
-xjZ
-abj
-abj
-abj
-abj
-bCI
-bCI
-abj
-bCI
-bCI
-bCI
-bCI
-bCI
-abj
-bCI
-bCI
-abj
-abj
-dPp
-dQL
-dPp
-abj
-abj
-bCI
aaa
-dTV
-dYP
-dVn
aaa
-dTV
-dYO
-dVn
aaa
-dTV
-dYP
-dVn
aaa
-bCI
aaa
aaa
aaa
@@ -161076,6 +164668,8 @@ aaa
aaa
aaa
aaa
+"}
+(118,1,1) = {"
aaa
aaa
aaa
@@ -161084,8 +164678,6 @@ aaa
aaa
aaa
aaa
-"}
-(111,1,1) = {"
aaa
aaa
aaa
@@ -161108,6 +164700,187 @@ aaa
aaa
aaa
aaa
+aFu
+dft
+aFu
+dft
+emT
+emT
+dft
+dft
+aFu
+dft
+dft
+dft
+dft
+dft
+aCD
+aEZ
+aGc
+aIX
+dft
+aNQ
+dft
+dft
+aFu
+aFu
+dft
+aFu
+bjH
+blv
+bsd
+uCN
+abj
+abj
+abj
+abj
+abj
+abj
+gbI
+bBB
+bxp
+aBt
+aBt
+bQE
+iOH
+aBt
+aBt
+ceP
+aBt
+ceP
+aBt
+aBt
+aBt
+dox
+bvR
+aMW
+aMW
+csO
+aMW
+bCK
+bEt
+aMW
+aMW
+fQu
+baF
+dCD
+dHZ
+dCD
+unx
+xsK
+kEM
+ciM
+xGa
+xGa
+xGa
+xGa
+ciM
+lwz
+xsK
+baF
+aBs
+rpY
+dis
+sOV
+tCu
+tCu
+tCu
+tCu
+wou
+wTs
+sek
+bOw
+vse
+dPt
+htF
+kuz
+cgU
+bYj
+cKh
+crn
+iSW
+ckj
+lDs
+cJN
+lDs
+ckj
+lDs
+bYj
+lxZ
+dEi
+eEY
+enb
+eTP
+frp
+bYj
+fOK
+qUe
+oHS
+ikA
+xYt
+fTu
+mFH
+fYu
+tHr
+fXQ
+lGo
+cQN
+lGo
+cTA
+mwh
+eXf
+oBj
+oUh
+vnu
+mMf
+dgd
+rhD
+kEg
+dhM
+dju
+jTZ
+oDB
+oDB
+vsA
+hBX
+iKy
+oDB
+iqD
+nTN
+kPH
+qrj
+wLC
+dkI
+wKr
+fGj
+tvK
+mKN
+vTC
+mKN
+ezN
+vTC
+mKN
+dIs
+cSp
+mKN
+tHn
+yjo
+yjo
+dMK
+wrP
+fGj
+nte
+pSd
+rtb
+idu
+tYx
+mrf
+uhI
+sag
+sag
+yeK
+jlK
+jlK
aaa
aaa
aaa
@@ -161119,18 +164892,6 @@ aaa
aaa
aaa
aaa
-acz
-acM
-acM
-acM
-acM
-acM
-acM
-acM
-acM
-acM
-acM
-ahm
aaa
aaa
aaa
@@ -161138,175 +164899,36 @@ aaa
aaa
aaa
aaa
-etQ
-lZa
-iJv
-sRk
-cuq
-kht
-hCq
-lvs
-pKP
-etQ
-abj
-abj
-abj
-bCI
aaa
-atd
-atd
-atd
-avJ
-awM
-axU
-ayK
-azW
-aCW
-aCW
-aEl
-aGh
-aGh
-aHp
-aJD
-aMz
-auK
-aOf
-bfs
-aOl
-aOg
-aOg
-aOg
-aUi
-aOb
-aUi
-aYO
-bmN
-aOb
-baj
-aYO
-bmN
-aOb
-baj
-aOg
-bmN
-aOg
-bpS
-brR
-btw
-buG
-bvR
-bxc
-byD
-bAb
-bBN
-bDA
-bFf
-bGL
-bII
-bKv
-bMA
-bOm
-bQv
-bXE
-bUz
-bWy
-tdH
-bZE
-cbx
-cdq
-cfi
-bXU
-cip
-cjW
-clw
-cna
-cot
-cpA
-crg
-csx
-mDe
-cAK
-ulY
-qQk
-cAS
-nGM
-nXm
-cCi
-mDe
-dgE
-ikA
-cIK
-cLQ
-cIL
-cOL
-cOU
-cRT
-cTu
-cVa
-dWm
-dWv
-dmq
-cZo
-das
-dbN
-ddf
-deN
-kjF
-cWw
-djd
-dro
-cUy
-dIz
-dOU
-dPz
-lNz
-nte
-nte
aaa
aaa
-uiA
aaa
aaa
aaa
-bvh
-xjZ
-bvh
aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
-abj
aaa
aaa
aaa
-abj
aaa
-abj
-dPp
-dPp
-dQO
-dPp
-dPp
-abj
-abj
aaa
aaa
-abj
aaa
aaa
-dTV
-dYP
-dVn
aaa
aaa
-abj
aaa
aaa
-bCI
+aaa
+"}
+(119,1,1) = {"
+aaa
+aaa
aaa
aaa
aaa
@@ -161333,6 +164955,196 @@ aaa
aaa
aaa
aaa
+dft
+dft
+afD
+aDx
+ahO
+ajn
+ajn
+ajn
+ajn
+ajn
+arA
+atW
+awo
+axd
+ajn
+ajn
+ajn
+ajn
+ajn
+ajn
+ajn
+ajn
+ajn
+awo
+aYd
+bbC
+ajn
+bgB
+aSh
+blw
+aXB
+moG
+moG
+moG
+moG
+moG
+moG
+moG
+moG
+moG
+cdj
+iOH
+cmZ
+cNg
+bQU
+aDm
+aBt
+ceZ
+kox
+aDl
+crI
+kox
+cXz
+doO
+cED
+cXz
+cXz
+cXz
+cXz
+bCL
+ehF
+cXz
+cXz
+fQy
+gCs
+gXc
+bTo
+dEW
+baF
+jyy
+cgr
+kIa
+cmL
+coT
+owM
+heg
+kIa
+cwP
+cyx
+baF
+qpw
+rpY
+sbR
+mIQ
+pwt
+opy
+pwt
+pwt
+qLE
+rnr
+sek
+bOw
+vse
+dPt
+dtB
+quA
+vdd
+bYj
+dVC
+crn
+kLd
+ckj
+lDs
+pnI
+lDs
+ckj
+ozq
+bYj
+bYj
+bYj
+bYj
+bYj
+bYj
+dHk
+bYj
+yfm
+rRM
+pMV
+ikA
+xYt
+xYt
+xYt
+rAM
+otn
+icz
+cNl
+gNZ
+vaH
+mWo
+cTG
+uHA
+oBj
+oRr
+pNO
+pNO
+pNO
+deU
+dge
+dhR
+djt
+tCj
+tCj
+dnf
+pXr
+vga
+tGl
+weY
+wGM
+dkI
+xwf
+ewt
+dyu
+dkI
+eIQ
+naf
+fGj
+fGj
+fGj
+fGj
+rAh
+fGj
+fGj
+cGX
+fGj
+fGj
+wKr
+fGj
+gvH
+tzX
+wKr
+fGj
+nte
+qIk
+fyt
+xLL
+dHi
+pzG
+cjs
+iJw
+rFw
+yiZ
+acF
+acF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -161341,8 +165153,6 @@ aaa
aaa
aaa
aaa
-"}
-(112,1,1) = {"
aaa
aaa
aaa
@@ -161372,198 +165182,29 @@ aaa
aaa
aaa
aaa
+"}
+(120,1,1) = {"
aaa
aaa
aaa
-acz
-acM
-adE
-adU
-aes
-acM
-acZ
-afv
-acM
-afZ
-agu
-acZ
-acM
-acM
-ahm
aaa
aaa
aaa
aaa
aaa
-etQ
-qza
-mBF
-fcN
-fcN
-phg
-gJO
-qws
-anH
-etQ
aaa
aaa
aaa
-abj
-abj
-abj
aaa
-atd
-avK
-awU
-axW
-ayQ
-aBW
-aDA
-aBl
-aCe
-aEo
-aFk
-aGc
-aJG
-atd
-uZv
-uZv
-uZv
-uZv
-abj
-abj
-abj
-baN
-abj
-baN
-abj
-aOW
-abj
-buX
-abj
-aOW
-abj
-buX
-acF
-aOW
-aOg
-bpT
-brS
-btx
-buH
-bvS
-bxd
-byE
-bAc
-aOg
-bDA
-bFg
-bGN
-bIK
-bKw
-tdH
-cLX
-tdH
-tdH
-cLX
-tdH
-tdH
-bXU
-bXU
-bXU
-bXU
-bXU
-ciq
-cjX
-clv
-cIP
-cnb
-wtj
-cnb
-csz
-mDe
-rlu
-cwz
-qIF
-lSG
-nSi
-cCt
-cCq
-mDe
-dfU
-ikA
-cIL
-cIL
-cIL
-cIL
-cOP
-cRU
-cTw
-cVb
-cOP
-cIL
-ikA
-ikA
-ikA
-ikA
-ddg
-deO
-dfY
-dhG
-djj
-jhm
-lDC
-jlz
-lDC
-dpX
-mhs
-dsq
-nte
aaa
-abj
-rHh
-fFM
-fFM
-fFM
-fFM
-fFM
-fFM
-dXX
-acF
-abj
aaa
-bCI
-bCI
-bCI
-bCI
-bCI
-abj
-bCI
-bCI
-bCI
aaa
-abj
-dPq
-dPZ
-dQQ
-dRo
-dPq
-abj
-aES
aaa
-bCI
-bCI
aaa
aaa
aaa
-abj
aaa
aaa
-abj
-bCI
-bCI
-abj
-bCI
aaa
aaa
aaa
@@ -161571,12 +165212,196 @@ aaa
aaa
aaa
aaa
+aeG
+afb
+afE
+ayv
+aie
+ajo
+alt
+amc
+amc
+amc
+arM
+amc
+amc
+axg
+aAs
+aAs
+aDj
+axA
+aAc
+aBm
+aDA
+aIC
+aIC
+aIC
+aIC
+aIC
+aIC
+bgF
+bjI
+aWf
+aXC
+moG
+bRK
+aEo
+cbs
+bFx
+bJf
+cbs
+moG
+bsb
+aTA
+ceP
+cnf
+aHu
+cNg
+cAy
+ceP
+aBs
+ckh
+cQu
+ckh
+ckh
+cEJ
+cEJ
+cEJ
+cFU
+lnB
+lnB
+lnB
+dVF
+lnB
+lnB
+baF
+baF
+baF
+gXM
+hEe
+aNr
+iTz
+jzn
+sDu
+dZN
+cmP
+ctG
+nnM
+nUq
+xsK
+oPr
+xsK
+baF
+qqO
+rfV
+scx
+mIQ
+nVL
+oqv
+uQy
+vGw
+wpP
+rnY
+sgM
+gNj
+vvX
+dPt
+dtB
+quA
+xEP
+bYj
+tyn
+crn
+iSW
+ckj
+epy
+scl
+tFt
+jMi
+qme
+bYj
+mmU
+gmk
+dZi
+bYj
+eVK
+frN
+fWc
+aBq
+iHM
+vSU
+ikA
+ikA
+ikA
+ikA
+ikA
+kCF
+lev
+mAn
+jYQ
+mAn
+wAv
+cOT
+uHA
+oBM
+oUh
+dpZ
+isM
+deK
+rhD
+rJJ
+dhT
+hxp
+dkF
+biW
+xbn
+htj
+vgG
+vHs
+xbn
+nTN
+xbn
+djf
+xeK
+yhS
+dkI
+wjI
+wjI
+wjI
+wjI
+dWy
+woL
+kVJ
+dIx
+xjw
+dIx
+dIx
+dIx
+dIx
+dIx
+dIx
+dIx
+dNB
+eXc
+mkS
+iyh
+vVR
+dSc
+waL
+dRK
+sUw
+fqq
+xuj
+dJx
+abj
+bvh
aaa
aaa
aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -161598,8 +165423,6 @@ aaa
aaa
aaa
aaa
-"}
-(113,1,1) = {"
aaa
aaa
aaa
@@ -161616,6 +165439,8 @@ aaa
aaa
aaa
aaa
+"}
+(121,1,1) = {"
aaa
aaa
aaa
@@ -161631,195 +165456,202 @@ aaa
aaa
aaa
aaa
-acz
-acM
-ado
-acW
-acW
-acW
-acM
-acZ
-acZ
-acM
-aga
-acZ
-acZ
-ahn
-ahN
-acM
-ahm
aaa
aaa
aaa
aaa
-wLE
-wLE
-etQ
-etQ
-etQ
-wLE
-wLE
-xSX
-pLY
-wLE
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-atd
-baG
-bfc
-atd
-ayU
-btC
-aHz
-aCk
-aDg
-cNg
-aHz
-atd
-atd
-atd
aaa
-abj
aaa
-abj
aaa
-abj
-aSN
-aUk
-aVR
-aUk
-aSN
-aXd
-aVR
-bah
-aSN
-aXd
-aVR
-bah
-aSN
-aOW
-joM
-bpU
-brT
-bty
-buI
-bvT
-bxe
-byF
-bAd
-byF
-bDB
-byF
-bGO
-bIL
-bKx
-cLV
-bIL
-bIL
-bIL
-bUA
-bWz
-bYe
-cLZ
-dIA
-cdr
-cfk
-cbC
-cbC
-qIQ
-clv
-cnc
-cnd
-cpy
-cnb
-csA
-mDe
-kym
-cwz
-qIF
-cxP
-nSi
-cCt
-cCs
-mDe
-dfU
-ikA
-cIM
-cIM
-cIM
-cNp
-cQF
-cRV
-cNm
-cWA
-dWp
-cWD
-cYi
-cIM
-cIM
-ikA
-ddh
-deP
-dfZ
-dhH
-djk
-dkC
-mlo
-oRe
-doA
-hws
-dHJ
-yct
-nte
-abj
-dkI
-txb
-pwH
-dkI
-rfA
-dkI
-dCB
-dkI
-dEA
-nte
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-dPq
-dQa
-dQJ
-dRp
-dPq
-abj
aaa
aaa
aaa
-abj
aaa
-bCI
-bCI
-abj
-bCI
-bCI
-abj
aaa
aaa
+dft
+dft
+dft
+agC
+akY
+aOc
+aOc
+ame
+aOc
+aNe
+arT
+aoN
+aOc
+aOc
+aOc
+aOc
+aDu
+aOc
+aOc
+aOc
+aLV
+aOc
+aOc
+aOc
+aYH
+aNe
+aOc
+bgH
+aSh
+aJb
+aXI
+aLz
+bxf
+bAo
+bDh
+bDh
+bAo
+bNd
+bTM
+bNd
+cdk
+aBt
+cng
+bQO
+bsB
+cAz
+aBt
+cHK
+ckh
+aGk
+bSy
+krc
+cEJ
+cGo
+cFA
+wQq
+lnB
+dLM
+dOX
+dVS
+bEw
+dpd
+baF
+fRL
+dBm
+dEF
+uvW
+bWZ
+baF
+jAs
+joM
+xsK
+cwP
+cpy
+crN
+nWB
+xsK
+oPr
+puk
+baF
+qsw
+kJB
+sdY
+mJH
+cKk
+cUL
+bFk
+cKk
+wsa
+cZw
+ded
+sok
+eNy
+dPt
+dtB
+quA
+srP
+bYj
+xat
+crn
+iSW
+ckj
+clA
+hQH
+cpJ
+cpJ
+raR
+bYj
+tJM
+gMw
+jJl
+bYj
+npT
+yhX
+yhX
+oyP
+yhX
+pMV
+dkp
+kjT
+ekk
+hlh
+ikA
+ikA
+ikA
+ikA
+ikA
+ikA
+ikA
+ikA
+uHA
+wRw
+kVz
+puv
+rho
+puv
+rCf
+rJr
+dhU
+djw
+tdt
+upr
+xbn
+dlO
+tUX
+vHG
+xut
aaa
+xbA
+gzR
+dxh
+dyq
+dzA
+dEH
+dEH
+dEH
+puB
+iul
+pie
+kVJ
+dIx
+riE
+thR
+riE
+lHd
+mmQ
+cmA
+riE
+dIx
+szR
+szR
+szR
+szR
+szR
+dIx
+hYL
+dIx
+dIx
+pSp
+dIx
+dIx
+abj
+bCI
aaa
aaa
aaa
@@ -161855,8 +165687,6 @@ aaa
aaa
aaa
aaa
-"}
-(114,1,1) = {"
aaa
aaa
aaa
@@ -161866,6 +165696,8 @@ aaa
aaa
aaa
aaa
+"}
+(122,1,1) = {"
aaa
aaa
aaa
@@ -161887,24 +165719,6 @@ aaa
aaa
aaa
aaa
-acz
-acM
-acU
-acW
-acW
-adV
-aet
-acM
-acZ
-acZ
-afG
-acZ
-acZ
-acZ
-aho
-acZ
-aic
-acM
aaa
aaa
aaa
@@ -161912,163 +165726,196 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
-wLE
-azu
-nkN
-wLE
+asT
+dft
+aFu
+dft
+dft
+aFu
+dft
+aFu
+aFu
+dft
+dft
+dft
+dft
+dft
+awP
+axT
+arm
+auf
+dft
+dft
+dft
+dft
+aFu
+aFu
+dft
+aFu
+aSg
+aWw
+rDZ
+moG
+bxi
+cEj
+aar
+bhM
+cDZ
+btD
+moG
+cbs
+amh
+aBt
+cno
+bQU
+cwa
+cAK
+aBt
+cHP
+ckh
+bpf
+crW
+dbu
+cyc
+cFQ
+dvP
+dzy
+lnB
+dLP
+dPf
+dVU
+dlb
+dMi
+baF
+fSj
+gCv
+fTl
+dIb
+dLf
+dCD
+xsK
+dVV
+rRy
+bKs
+cMa
+xGa
+hes
+rRy
+cwP
+jhv
+baF
+clJ
+rpY
+lJK
+mKg
+pwt
+cMy
+pwt
+pwt
+qLE
+rop
+sek
+bOu
+vqg
+bTY
+dtB
+quA
+lIo
+bYj
+qqW
+crn
+iSW
+ckj
+lBD
+vxk
+tUR
+gXk
+lhu
+hEY
+rcr
+nFB
+ctH
+bYj
+yhX
+cxW
+czD
+cAT
+qUe
+cDU
+xuG
+cbC
+cbC
+yhX
+ybR
+cXa
+cNt
+lGD
+cXa
+cVf
+cQV
+aEh
+uHA
+ual
+oWk
+mGL
+pQd
+puv
+rhD
+pHL
+uHt
+djx
+pCm
+biX
+dnh
+xyK
+lHA
+drp
+xut
aaa
+xwq
+gzR
+esO
+dyw
+dzA
+jBw
+dEH
+dEH
+puB
+cMc
+dOm
+dIv
+dBh
+iNC
+spW
+rxL
+xvO
+rxL
+lhr
+ljs
+dIx
+spR
+sKw
+cYd
+mlW
+xjl
+dIx
+dHJ
+dIx
+cth
+tSH
+pwN
+dIx
abj
-aaa
abj
aaa
-abj
aaa
aaa
-abj
aaa
-abj
-aDZ
-aDZ
-abj
-abj
-aFz
-aEp
-aJz
-aEp
-aJz
-aEp
-aJz
-aEp
-aJz
-aOU
-abj
-abj
-aSN
-aUl
-aVS
-aXx
-aSN
-baz
-bbY
-bdv
-aSN
-bgk
-bhs
-bjb
-aSN
-aOo
-joM
-bpV
-brU
-btz
-buJ
-bNS
-bxf
-byG
-bAe
-bBO
-bDC
-bBO
-bGQ
-bIM
-bIM
-bIM
-bOo
-bIM
-bSp
-bIM
-bWA
-bYf
-bZF
-cHq
-cir
-csE
-csE
-cir
-cka
-clv
-cnd
-cou
-cpB
-cnb
-cuT
-mDe
-cvd
-hhq
-tSc
-vxP
-hQr
-nXm
-cDN
-mDe
-dgE
-ikA
-cSi
-cKn
-cIM
-cNq
-cQG
-cTr
-cUU
-cWB
-dWq
-cWE
-cIM
-cKo
-doQ
-ddi
-ddi
-ddi
-ddi
-dhA
-djl
-ddi
-ddi
-ddi
-ddi
-ddi
-cYe
-dsr
-eMv
aaa
-dkK
-dxb
-dxl
-dyy
-dzE
-rfA
-dCC
-dDT
-dEB
-dFg
-dFg
-dFg
-dFg
-dFg
-dFg
-dFg
-dFg
-dFg
-dFg
-dFg
-dFg
-dFg
-abj
-dPq
-dXH
-dRb
-dRq
-dPq
-abj
-abj
-abj
aaa
-abj
aaa
-abj
aaa
aaa
aaa
@@ -162106,14 +165953,14 @@ aaa
aaa
aaa
aaa
+"}
+(123,1,1) = {"
aaa
aaa
aaa
aaa
aaa
aaa
-"}
-(115,1,1) = {"
aaa
aaa
aaa
@@ -162139,192 +165986,185 @@ aaa
aaa
aaa
aaa
+aaq
+abj
+abj
aaa
aaa
+abj
aaa
aaa
+abj
aaa
-acA
-acN
-acW
-acW
-acW
-acW
-acW
-acM
-acZ
-acZ
-acM
-acZ
-acZ
-acZ
-ahp
-acZ
-aid
-acM
aaa
-aiZ
-ajp
-ajp
-ajp
-akT
+abj
+dft
+aFu
+dft
+dft
+asT
+dft
+abj
aaa
abj
aaa
aaa
-etQ
-lJF
-lHj
-etQ
aaa
-auL
-amg
-auN
-auN
-auN
-auL
-amg
-moG
-moG
-moG
-amh
-amh
-amh
-moG
-amh
-amh
-amh
-moG
-moG
-moG
-moG
-moG
-moG
-aOW
aaa
-abj
-aSN
-aUm
-aVT
-aUn
-aSN
-baA
-bbZ
-baB
-aSN
-bgl
-bht
-bgm
-aSN
-aOW
-joM
-bpW
-bRv
-btA
-buK
-buK
-bxg
-byH
-bAf
-brV
-bDD
-bFh
-bGR
-bFh
-bFh
-bFh
-bOp
-bQw
-bSq
-mAs
-bWB
-bYg
-cLZ
-cID
-cdt
-cbC
-ctS
-cdt
-cJN
-clv
-cne
-cph
-cpC
-crh
-csB
-mDe
-cva
-cAM
-cAP
-cAP
-cAP
-cCz
-cEO
-mDe
-dgE
-ikA
-cIM
-cIM
-cLR
-cNr
-cQI
-cQM
-cRW
-cTx
-dWr
-cGk
-cIM
-cIM
-cIM
-ddi
-ddb
-deQ
-dga
-djf
-djn
-dkC
-dlN
-dnb
-dlP
-ddi
-cFY
-eTq
-eMv
-abj
-tHn
-dxc
-dyp
-qcB
-dAJ
-dBA
+aSg
+aWw
+hjN
+aoo
+aoo
+aoo
+aoo
+aoo
+aoo
+aoo
+aoo
+bBC
+bxp
+ceP
+iOH
+iOH
+aBt
+ceP
+aBt
+aBs
+ckh
+cQB
+cds
+bsD
+cEJ
+dpe
+bxj
+bxs
+lnB
+dMc
+cXN
+dcO
+dlk
+bHw
+baF
+fSD
+dBv
+bQW
+bUm
+bcc
dCD
+xsK
+dWb
+hEs
+owM
+owM
+owM
+owM
+hEs
+bWS
+xsK
+baF
+clJ
+rpY
+cHm
+mKu
+bGY
+bDI
+bKB
+bGY
+wsr
+rpB
+sek
+bOw
+vse
+dPt
+dtB
+quA
+mlG
+bYj
+kOV
+crn
+kLd
+dHV
+rgA
+cpJ
+cpJ
+cpJ
+wvC
+xza
+blH
+gKG
+eRS
+bYj
+cbC
+yhX
+cbC
+cvq
+ijH
+ugg
+yhX
+yhX
+cbC
+cbC
+yhX
+cXa
+jzw
+qwa
+gjD
+hbL
+uuo
+tjq
+uHA
+nrB
+wEJ
+pKg
+drs
+dgk
+dSD
+tfy
dkI
-dEE
-dFg
-dFK
-dGB
-dHr
-dIp
-dJl
-dIq
-dKE
-dHt
-dMc
-dMI
-dNx
-dFg
-nte
-dPq
-dPq
-dRc
-dPq
-dPq
-odb
-nte
-abj
-bCI
-abj
+djy
+tdT
+tGM
+urC
+xyK
+xyK
+drq
+xut
aaa
+eLq
+xzK
+rsW
+dyv
+dzC
+iSY
+eWC
+jwR
+puB
+qwG
+jOc
+gZg
+dIx
+jxW
+qxd
+kWt
+uuH
+xyU
+eBz
+pXd
+oeN
+gGA
+qYh
+umr
+tFj
+gGA
+srZ
+jNE
+iFv
+gMZ
+sIs
+pql
+pSp
+abj
bCI
aaa
aaa
@@ -162355,6 +166195,7 @@ aaa
aaa
aaa
aaa
+abj
aaa
aaa
aaa
@@ -162370,7 +166211,7 @@ aaa
aaa
aaa
"}
-(116,1,1) = {"
+(124,1,1) = {"
aaa
aaa
aaa
@@ -162401,192 +166242,189 @@ aaa
aaa
aaa
aaa
-acA
-acN
-acW
-acW
-acW
-acW
-acW
-aeG
-acZ
-acZ
-acM
-acM
-acM
-acM
-acM
-acM
-acM
-ahu
aaa
-aja
-ajq
-ajq
-ajq
-aja
aaa
+aaq
abj
abj
abj
-etQ
-qws
-anH
-etQ
abj
-ame
-aqv
-aro
-amQ
-ate
-auh
-auL
-auD
-ayn
-qVc
-wMm
-wMm
-aKf
-beS
-qVc
-wMm
-avM
-qVc
-aKf
-cFS
-wMm
-alJ
-moG
-aOo
abj
abj
-aSN
-aUn
-aVU
-aUn
-aSN
-baB
-bca
-baB
-aSN
-bgm
-bhu
-bgm
-aSN
-aOo
-moG
-bpX
-brW
-brW
-brW
-brX
-brW
-bxh
-bxh
-bxh
-bxh
-bxh
-bxh
-bxh
-bxh
-bxh
-bxh
-bxh
-bVC
-cjA
-cpP
-cLZ
-cLZ
-cbB
-cdu
-cfn
-cgT
-cJn
-ckb
-clv
-cnf
-cov
-cpD
-csw
-csC
-mDe
-cAL
-cAR
-czn
-czv
-cAQ
-cCA
-cDP
-mDe
-cNb
-ikA
-cIL
-cIL
-cIL
-cIL
-cIL
-pKk
-cRX
-cTy
-cOW
-cIL
-cIL
-cIL
-cIL
-ddi
-ddo
-deR
-dgb
-dhK
-djo
-dkD
-dlO
-dnc
-doB
-ddi
-cYe
-eTq
-vSN
-aaa
-dkI
-dxd
-dyr
-dzw
-dAK
-rfA
-dCE
-dkI
-dEF
-dFg
-dFL
-dGC
-dHs
-dIq
-dJm
-dHt
-dIu
-dIp
-dHs
-dMJ
-dNy
-dFg
-dOO
-dPr
-lmG
-dQM
-fGj
-mKv
-dSn
-eMv
abj
-bCI
-bCI
abj
-bCI
-aaa
+abj
+abj
+abj
+iGw
+iGw
+arn
+iGw
+abj
+aCb
+abj
+abj
+abj
+aCb
+abj
+abj
+acC
+aIO
+amL
+aoo
+bxq
+bhS
+bxk
+aNS
+xqJ
+aNX
+aoo
+bVN
+cdp
+aVS
+bWL
+cbs
+aEo
+caQ
+cdm
+cHT
+ckh
+cQK
+qLZ
+lqY
+cyc
+aHw
+eFo
+cJA
+lnB
+dMi
+dlv
+dcQ
+dlv
+bHz
+baF
+fTl
+dBM
+dEW
+hFv
+aOP
+baF
+jAF
+kFQ
+nIw
+cxh
+xsK
+csa
+nXm
+cuQ
+oQz
+pux
+baF
+clI
+rpY
+sgK
+cIX
+cKq
+udI
+cPg
+vHi
+wsA
+wUu
+rpY
+bOw
+vse
+dPt
+dtB
+quA
+rIC
+bYj
+nQR
+crn
+iSW
+cbA
+bgb
+rLt
+dPe
+czB
+dSL
+bYj
+dWE
+wMA
+dZn
+bYj
+ssj
+nPZ
+qUe
+cAU
+hcE
+ufD
+cbC
+iuW
+iZQ
+sWp
+cbC
+cVf
+cXa
+cOY
+cPd
+vkS
+jcR
+cVf
+uHA
+xKP
+uJo
+pzW
+vsH
+dds
+koA
+mIg
+vsH
+vsH
+vsH
+vsH
+whO
+whO
+whO
+whO
+whO
+wHM
+lwP
+dWn
+eRD
+mMo
+dzD
+aoc
+pJs
+pda
+puB
+iFc
+xzo
+dFS
+dIx
+dIx
+dIx
+dJr
+rRO
+dIx
+dIx
+dIx
+dIx
+dJx
+dJx
+dJx
+dJx
+dJx
+dJx
+dJx
+dIx
+guD
+eIv
+pYm
+pSp
aaa
-aaZ
+abj
aaa
+bCI
aaa
aaa
aaa
@@ -162613,6 +166451,9 @@ aaa
aaa
aaa
aaa
+abj
+cDs
+abj
aaa
aaa
aaa
@@ -162627,9 +166468,7 @@ aaa
aaa
aaa
"}
-(117,1,1) = {"
-aaa
-aaa
+(125,1,1) = {"
aaa
aaa
aaa
@@ -162654,201 +166493,195 @@ aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
aaa
-acB
-acM
-acX
-adp
-adF
-acX
-aeu
-acM
-acZ
-acZ
-acM
-acZ
-agv
-agM
-ahq
aaa
aaa
aaa
aaa
-aja
-ajr
-ajW
-akt
-aja
+ajq
aaa
abj
aaa
aaa
-etQ
-qws
-anH
-etQ
-abj
-auN
-aLS
-atl
-asi
-atl
-aui
-auN
-amT
-aBt
-aBt
-aBz
-aBr
-aBt
-aCl
-aIP
-aBr
-aBz
-aBr
-aCl
-aBt
-qVc
-oIk
-moG
-aOW
-aaa
-abj
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aSN
-aOW
-moG
-bqe
-brW
aaa
aaa
aaa
aaa
-bxh
-bAg
-bBP
-bDE
-bFi
-bGS
-bIN
-bKy
-bMC
-bOq
-bxh
-bSt
-bUE
-bWD
-cLZ
-bZG
-qIQ
-cLZ
-cfo
-cfo
-cgT
-ckc
-clv
-clw
-clv
-cpE
-clv
-clv
-mDe
-mDe
-mDe
-mDe
-mDe
-mDe
-mDe
-mDe
-mDe
-dgE
-ikA
-cIM
-cIM
-cIM
-cCw
-cQL
-cQM
-cRY
-cTz
-dWs
-iFq
-cYi
-cIM
-cIM
-ddi
-ddp
-deS
-dgc
-dhL
-dkx
-dkE
-dlP
-dnd
-jfk
-ddi
-cGa
-dss
-eMv
-abj
-dkK
-dxe
-dys
-lUg
-dAL
-dBB
-ooA
-dDT
-dED
-dFh
-dFM
-dGD
-dHs
-dIr
-dJn
-dIu
-dHs
-dIu
-dMd
-dMg
-dNz
-dFg
-eTq
-dPs
-fGj
-pZH
-fGj
-mKv
-dSp
-eMv
-abj
-abj
-abj
aaa
-bCI
aaa
+aaq
aaa
aaa
aaa
aaa
aaa
+aaq
aaa
+aaq
aaa
+abj
+acC
+aSg
+blx
+rDZ
+aoo
+bxr
+bsq
+bDi
+bFA
+aNG
+bNK
+aoo
+bVS
+auo
+che
+che
+che
+cwt
+che
+che
+cIb
+ckh
+cQP
+csr
+aPY
+cEJ
+dpg
+cFG
+bxt
+lnB
+dMk
+cYa
+aPM
+dYt
+aSQ
+baF
+fTp
+uPv
+uPv
+uvW
+cGp
+baF
+jBI
+kGf
+brY
+baF
+ctT
+nqB
+nYi
+unx
+dCD
+baF
+baF
+qtp
+rpY
+siM
+sek
+sek
+cUN
+cPj
+sek
+sek
+rpY
+rpY
+bOw
+vse
+dPt
+fTs
+dRT
+wjl
+bYj
+inV
+eKm
+sll
+inV
+bYj
+bYj
+bYj
+bYj
+bYj
+bYj
+bYj
+bYj
+bYj
+bYj
+cXa
+cXa
+cXa
+cXa
+cXa
+qBv
+cXa
+cXa
+cXa
+dzL
+yhX
+vam
+cbC
+tKj
+cbC
+cbC
+izb
+fJp
+uHA
+pgp
+fnI
+xQZ
+vsH
+wAs
+pCB
+svh
+dhW
+gHm
+dkJ
+dlY
+dIg
+spH
+pKc
+onr
+vsH
+nbr
+mmZ
+jwe
+xQj
+dyB
+dzD
+pJs
+aoc
+pda
+puB
+fGj
+fGj
+dFS
+fGj
+jIl
+inx
+hIk
+fMD
+gFa
+rAC
+iVn
+dMP
+jao
+yhc
+gJj
+wyV
+lsV
+oSy
+uxz
+dIx
+gzB
+qsX
+eOr
+pSp
+abj
+bCI
aaa
+bCI
aaa
aaa
aaa
@@ -162875,6 +166708,7 @@ aaa
aaa
aaa
aaa
+abj
aaa
aaa
aaa
@@ -162883,8 +166717,6 @@ aaa
aaa
aaa
aaa
-"}
-(118,1,1) = {"
aaa
aaa
aaa
@@ -162892,6 +166724,8 @@ aaa
aaa
aaa
aaa
+"}
+(126,1,1) = {"
aaa
aaa
aaa
@@ -162914,190 +166748,197 @@ aaa
aaa
aaa
aaa
+acP
+adf
+adf
+adf
+adf
+adf
+adf
+afc
+adf
+agP
aaa
+acF
aaa
-acM
-acM
-acM
-acM
-acM
-acM
-acM
-aeV
-acZ
-afH
-acZ
-agw
-agN
-ahr
+abj
aaa
aaa
aaa
aaa
-aja
-ajs
-aju
-agR
-aja
aaa
-abj
aaa
-wLE
-wLE
-hpd
-anH
-wLE
+aAJ
+tzI
+tzI
+tzI
+aGh
+tzI
+tzI
+tzI
+aGh
+tzI
+tzI
+bbV
abj
-auN
-aqx
-asi
-atm
-atl
-auj
-auN
-qVc
-aIP
-axZ
-aHu
-aCr
-aLz
-aBt
-aDk
-aEq
-aHu
-aas
-cFQ
-aCl
-qVc
-asq
+bgJ
+bjK
+aWw
+rDZ
+aoo
+bxx
+bhW
+aNF
+oIk
+bsq
+nSx
+aoo
+aVS
+bDw
moG
-aFz
-aJz
-aEp
-aJz
-aEp
-aJz
-aEp
-aJz
-aEp
-aJz
-aEp
-aJz
-aEp
-aJz
-aEp
-aJz
-bRm
+gbI
+cbs
+cwA
+gbI
moG
-bpZ
-brW
-aaa
-buL
-buM
-bxh
-bxh
-bAh
-bBQ
-bDF
-bDF
-bGT
-bDF
-bDF
-bDF
-bOj
-bxh
-bSA
-bUH
-cIv
-bYi
-cIA
-cbD
-dEi
-cIR
-ctT
-cJo
-ckd
-cKd
-bZH
-cJY
-cKh
-cri
-dEi
-bZH
-bZH
-bZH
-bZH
-cKZ
-bZH
-bZH
-bZH
-bZH
-cGm
-ikA
-cSl
-cKo
-cIM
-cNs
-cQG
-cQN
-cRZ
-cTA
-dWq
-cWF
-cIM
-cKn
-dpP
-ddi
-ddq
-deT
-dgd
-dhM
-djs
-dkF
-dlP
-dne
-dlP
-ddi
-cYe
-eTq
-eMv
-aaa
-tHn
-dxf
-dyt
-dzx
-hCG
-vga
-gke
-dkI
+aBs
+ckh
+aFo
+css
+aFo
+cEJ
+aKe
+bvV
+aKe
+lnB
+lnB
+cYg
+lyE
+cYg
+lnB
+baF
+unx
+dCD
+dCD
+cas
+baF
+baF
+jCn
+dWd
+gKC
+jYe
+cpA
+nqG
+wVn
+six
+qMp
+jig
+jCX
+qtU
+rhx
+qMp
+qMp
+cKv
+cMP
+oWg
+qMp
+qMp
+rqO
+six
+bOw
+vse
+dPt
+dPt
+dPt
+mDY
+wFd
+dPt
+dPt
+gMf
+dPt
dED
-dFi
-dFN
-dFN
-dFN
-dIs
-dJo
-dKa
-dFN
-rcv
-dFN
-dMK
-dNA
-dOm
-hFm
dPt
-nte
-nte
-dRs
-vSN
-nte
-nte
+tKa
+qvr
+qvr
+qvr
+qvr
+dYc
+ctN
+dBH
+qoH
+aLM
+edh
+qvr
+qvr
+hwa
+qvr
+nNj
+cXa
+cbC
+cbC
+cXa
+cVf
+fvB
+yhX
+cSd
+jcR
+cXa
+uHA
+puv
+vye
+xQZ
+pUL
+xdz
+rDf
+qaw
+rUE
+jmo
+iWl
+uPh
+loO
+wir
+rpv
+ena
+vsH
+xSf
+xSf
+xSf
+xSf
+xSf
+wEh
+wEh
+wEh
+wEh
+wEh
+dfe
+dfe
+gLL
+tzX
+dJx
+wpC
+hIk
+fMD
+dMg
+sZN
+lZk
+sZN
+nwz
+oNV
+dMg
+ktf
+rsE
+dJx
+sQU
+dIx
+hMB
+vTw
+dVo
+dIx
abj
-aaa
bCI
abj
-abj
-aaa
+bCI
aaa
aaa
aaa
@@ -163141,15 +166982,7 @@ aaa
aaa
aaa
"}
-(119,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+(127,1,1) = {"
aaa
aaa
aaa
@@ -163172,189 +167005,197 @@ aaa
aaa
aaa
aaa
-acz
-acM
+acQ
acY
adq
-adG
-adW
-acZ
-acM
-acZ
-acZ
-acM
-acZ
-agx
-agO
-ahs
+aaZ
+aed
+aed
+aaZ
+aeV
+afF
+afB
+agP
+acF
aaa
+abj
aaa
aaa
aaa
-aja
-ajt
-aju
-ahv
-aja
aaa
-abj
-abj
-etQ
-cXA
-qws
-aAF
-wLE
aaa
-auN
-aqy
-arw
-ask
-atm
-auk
-auN
-avM
-aCl
-azl
-aDm
-aHu
-aBp
-aIP
-aDl
-aEr
-aEq
-cAZ
-aHj
-aIP
-qVc
-rBA
-moG
-moG
-moG
-moG
-moG
-amh
-amh
-amh
-moG
-amh
-amh
-amh
-moG
-amh
-amh
-amh
-moG
-moG
-moG
-kIa
-brW
aaa
-buM
-bvW
-bxj
-buM
-bAi
-bBR
-bDH
-bFj
-bGU
-bIJ
-bKu
-bMD
-bOr
-bQx
-bSu
-bUF
-bWF
-cLZ
-bZI
-cbE
-cdw
-cdw
-cit
-cit
-cke
-cly
-cir
-cir
-cpG
-crj
-csE
-cir
+aAJ
+tLj
+aLW
+aGl
+aGl
+aGl
+aLW
+aGl
+aGl
+aGl
+iZo
+bck
+acC
+acC
+acC
+aWw
+aXJ
+aoo
+bxy
+bin
+qVc
+qVc
+bsq
+bOb
+aoo
+bVU
+bCs
+gbI
+cbs
+bVL
+cbs
+cbs
+gbI
+cIj
+ckk
+cQQ
+cst
+aHb
+aGn
+rJw
+cFI
+wCD
+aLC
+dMn
+nsi
+aPO
+dCK
+wCD
+aUt
+fTY
+dCK
+bUC
+hJA
+ipV
+huw
+jCG
+dWf
+eaZ
+yai
+mwB
+dMX
+hfx
+hFg
+mLE
+pyj
+qbQ
+qvg
+mLE
+skB
+mLE
+dil
+ufo
+mLE
+mLE
+mLE
+mLE
+hFg
+inI
+uBS
+uIF
+fsZ
+eLE
+vyh
+kva
+eLE
cir
-csE
-cKt
-czx
-cLL
-csE
-cDR
-cEE
-cGn
-ikA
-cIM
-cIM
-cLR
-cCy
-cNl
-cQM
-cRY
-cTz
-cTG
-pLy
-cIM
-cIM
-cIM
-ddi
-dxr
-deU
-dge
-dhR
-djt
-dkG
-dlP
-dnf
-dER
-ddi
-cFY
-hFm
-nte
-abj
-dkI
-dxg
-dyu
-dzx
-dAM
-dAU
-dCF
-dkI
-dWx
-dFj
-dFO
-dFO
-dFO
-dIt
-dJp
-dKb
-dKb
-dKb
-dKb
-dML
-dMI
-dFg
-eTq
-dXo
-nte
-dQN
-fGj
-dRD
-nte
-abj
-abj
+qIq
+eLE
+eLE
+eLE
+xRq
+eNW
+yiC
+yiC
+yiC
+yiC
+yiC
+yiC
+qaH
+yiC
+wsg
+yiC
+kTq
+wqC
+qvr
+gRa
+cXa
+ybR
+yhX
+cXa
+hgH
+mAd
+cQS
+nPX
+jlL
+cVg
+uHA
+nfO
+aOd
+xJv
+pDF
+ibM
+eAH
+esT
+qZv
+sbf
+xon
+wua
+mob
+dIh
+vib
+epd
+vsH
+gVl
+mdc
+sPG
+oyt
+xSP
+wEh
+iVN
+xEA
+dNZ
+rgD
+dsx
+dfe
+dFS
+lox
+dJx
+kZL
+eJc
+fMD
+gJj
+rAC
+iVn
+rAC
+nDK
+yhc
+dOS
+cwn
+qCE
+dJx
+xPw
+dIx
+dIx
+dSI
+dIx
+dIx
abj
-bCI
aaa
-abj
aaa
+bCI
aaa
aaa
aaa
@@ -163398,12 +167239,7 @@ aaa
aaa
aaa
"}
-(120,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
+(128,1,1) = {"
aaa
aaa
aaa
@@ -163426,192 +167262,197 @@ aaa
aaa
aaa
aaa
+acT
+acY
+aeV
+aeV
+aeV
+aeV
+aeV
+aeV
+aeV
+ahd
+agj
+acF
+abj
+abj
aaa
aaa
aaa
-acA
-acN
-acZ
-acZ
-acZ
-acZ
-acZ
-aeH
-acZ
-acZ
-acM
-acM
-acM
-acM
-acM
-acM
-acM
-ahm
aaa
-ajb
-aju
-aju
-aku
-aja
aaa
-abj
aaa
-etQ
-rDZ
-qws
-anH
-etQ
-abj
-auN
-aqz
-atm
-aod
-ath
-aum
-ard
-avM
-aBr
-aya
-aEq
-aHu
-aOq
-aBt
-aDm
-bBV
-cqC
-aGj
-aHq
-aBt
-cFU
-qVc
-qVc
-qVc
-cGl
-wMm
-wMm
-wMm
-wMm
-cGl
-aMX
-aNr
-aNr
-aNr
+aAM
+mcI
+mcI
+mcI
+mcI
+mcI
+mcI
+mcI
+mcI
+mcI
+mcI
+bcy
+aRL
+bgO
+aRL
+aWw
+bsi
+aoo
+bxz
+bin
+aNG
+bsq
+xqJ
+bOj
+aoo
+bWa
+bDw
+gbI
+bVL
+cpO
+cwI
+cbs
+aVS
+cIu
+cOf
+cQR
+btP
+bsE
+diS
+dpv
+cGj
+udw
+cGj
+cGj
+dPl
+bHN
+cGj
+eNq
+cGj
+fUo
aRT
-bcb
-bcb
-aNr
-aNr
-aNr
-kJY
-osE
-brX
-aaa
-buN
-bvX
-bAj
-byI
-bAj
-bBS
-bBS
-bBS
-bGP
-bIP
-bIP
-bIP
-bOs
-bUr
-bSv
-bUG
-bWG
-bYj
-bYj
-bYj
-xqg
-bYj
-bYj
-bYj
-ckf
-clz
-bYj
-bYj
-bYj
-bYj
-bYj
-bYj
-bYj
-bYj
-bYj
-bYj
-bYj
-bYj
-cDS
-cdt
-djc
-ikA
-cIL
-cIL
-cIL
-cIL
-cOW
-cQO
-cRX
-jYQ
-cOT
-cIL
-cIL
-cIL
-cIL
-ddi
-deK
-deV
-dgf
-dhT
-dju
-dkG
-dlO
-dlP
-dlP
-ddi
-cYe
-hFm
-nte
-vSN
-dkI
-dkI
-dkI
-dzy
-dAO
-ofk
-dkI
-dkI
-dWy
-dFh
-dFM
-dGE
-dHt
-dIu
-dIq
-dKc
-dIp
-dHs
-dIu
-dMM
-dNB
-dFg
-dQe
-quc
-nte
-dSc
-fGj
-dRK
-eMv
+cHh
+hJC
+bjc
+iTZ
+jDk
+dWh
+bhw
+jYe
+wVn
+boi
+oBf
+bMH
+mMd
+mMd
+mMd
+cEa
+mMd
+lKE
+mMd
+tDc
+rsM
+mMd
+mMd
+mMd
+mMd
+bMH
+fAR
+igj
+nzZ
+eJR
+kFR
+fyj
+eJR
+eJR
+gtP
+umX
+dvf
+eJR
+eJR
+eRU
+dRB
+dWK
+gfQ
+pnT
+gfQ
+ctL
+gfQ
+cwL
+gfQ
+gfQ
+gfQ
+gfQ
+gqS
+hUk
+ncZ
+cXa
+czD
+cbC
+cVf
+hlh
+jMs
+cVf
+cXa
+cSc
+nDf
+uHA
+pEd
+vye
+xQZ
+loO
+ddx
+dff
+qCK
+biO
+qhf
+mTu
+ena
+wKB
+wir
+vnq
+clq
+nYC
+qzC
+yhY
+eeD
+yjC
+amk
+wEh
+ruT
+gpS
+tdf
+gAF
+bbJ
+dfe
+sUN
+tpM
+dJx
+ucx
+xbJ
+fMD
+dMg
+sZN
+lZk
+oNV
+nwz
+oNV
+oca
+hIk
+tDg
+dJx
+hmE
+dIx
+hyk
+vTw
+dXU
+dIx
abj
-aaa
-aaa
bCI
-aaa
abj
-aaa
+bCI
aaa
aaa
aaa
@@ -163655,12 +167496,7 @@ aaa
aaa
aaa
"}
-(121,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
+(129,1,1) = {"
aaa
aaa
aaa
@@ -163683,192 +167519,197 @@ aaa
aaa
aaa
aaa
+acU
+acY
+adw
+aeg
+aeg
+aeg
+aeH
+afg
+afG
+afB
+agg
+acF
aaa
+abj
aaa
aaa
-acA
-acN
-acZ
-acZ
-adH
-adH
-adH
-acM
-acZ
-acZ
-acM
-agb
-agy
-agP
-acZ
-ahO
-aie
-acM
aaa
-ajb
-aju
-aju
-aku
-aja
aaa
-abj
aaa
-etQ
-aSM
-qws
-dkX
-etQ
-abj
-auL
-aqA
-arw
-arw
-ati
-aul
-auM
-avN
-aBr
-azm
-aHu
-aHu
-aOw
-aBt
-aDn
-bSy
-aGj
-aGk
-aHu
-aIP
-wMm
-rBA
-aMV
-aMV
-aMW
-aMY
-aMW
-aMW
-aMW
-aMV
-aBo
-baF
-baF
-baF
-baF
-baF
-baF
-baF
-baF
-baF
-vNo
-bqc
-brW
aaa
-buO
-bvY
-bxk
-buO
-bAi
-bBR
-bDJ
-bFk
-bGW
-bIO
-cUo
-bBR
-bOt
-bxh
-bSt
-bUE
-bWD
-bYj
-bZJ
-cbF
+aAJ
+tLj
+axf
+aGl
+aGl
+aGl
+aLZ
+aGl
+aGl
+aGl
+vLk
+bck
+acC
+acC
+acC
+aWw
+aXW
+aoo
+bxA
+bix
+aNH
+aOY
+aNH
+bOn
+aoo
+bWb
+bDw
+aVS
+aVS
+cpQ
+cxA
+bVL
+aVS
+cIR
+cko
+aFA
+aFA
+aFq
+cFO
+aFA
+aUv
+aFA
+cYW
+qiF
+cYW
+bCN
+cYW
+bEK
+cYW
+aYZ
+eZR
+aYZ
+bce
+aYZ
+aYZ
cdx
-cfq
-cgW
-rDr
-ckg
-clA
-cnh
-cow
-cpH
-clC
-bYj
-bZO
-cvh
-cwE
-cxV
-czy
-bZK
-bYj
-cDT
-cgT
-dHA
+dWv
+bhx
+aYZ
+wVn
+ipW
+nIm
+bqr
+tUd
+cUQ
+cUQ
+bwf
+kZv
+slr
+mMq
+mPJ
+bHj
+bHj
+vIC
+vIC
+vIC
+bHj
+bSE
+dml
+dpt
+pId
+pId
+pId
+pId
+pId
+vof
+tEl
+bSE
+bSE
+bSE
+bSE
+jSu
+yeI
+csK
+csK
+csK
+csK
+csK
+csK
+csK
+csK
+csK
+sqZ
+mOb
+tKa
+moW
+cXa
+cXa
+uvt
+ikA
+ikA
+ikA
+ikA
+ikA
+ikA
ikA
-cIM
-cIM
-cIM
-cDC
-cOR
-cQP
-cSa
-cTz
-dWp
uHA
-cYi
-cIM
-cIM
-ddi
-deX
-piJ
-dgc
-dhU
-djw
-dkH
-dlQ
-dng
-dlO
-ddi
-cYe
-eTq
-ohN
-fGj
-mKv
-dxh
-dyq
-dzA
-dAN
-dBA
-dCG
-dDU
-dEG
-dFg
-dFP
-dGE
-dHs
-dIu
-dIu
-dIu
-dJr
-dIu
-dIu
-dMN
-dNC
-dFg
-yct
-quc
-nte
-dRj
-fGj
-qYh
-eMv
-abj
-aaa
-aaa
+hoS
+fnI
+xQZ
+ets
+dkP
+hvE
+cMl
+lzg
+gyW
+dkM
+dlZ
+dIg
+uPB
+oYk
+ujh
+vsH
+niq
+tSo
+dwg
+xTh
+dyG
+wEh
+hLJ
+gpS
+kMz
+trI
+ehA
+dfe
+xAu
+bAE
+hVD
+bAe
+eVh
+sOW
+nvA
+nvA
+nvA
+nvA
+wJP
+pnK
+gOL
+pcb
+dQi
+dJx
+dXS
+dSA
+fmK
+vTw
+dXS
+pSp
abj
-aaa
bCI
aaa
+bCI
aaa
aaa
aaa
@@ -163912,9 +167753,7 @@ aaa
aaa
aaa
"}
-(122,1,1) = {"
-aaa
-aaa
+(130,1,1) = {"
aaa
aaa
aaa
@@ -163937,198 +167776,200 @@ aaa
aaa
aaa
aaa
+acV
+adf
+adf
+adf
+adf
+adf
+adf
+adf
+adf
+agg
aaa
+acF
aaa
+abj
aaa
aaa
aaa
aaa
-acB
-acM
-ada
-adr
-adI
-adX
-aev
-acM
-aeW
-acZ
-afI
-acZ
-acZ
-acZ
-acZ
-acZ
-aew
-acM
aaa
-aja
-ajv
-aju
-aku
-aja
aaa
+aAJ
+tzI
+tzI
+tzI
+aGh
+tzI
+tzI
+tzI
+aGh
+tzI
+tzI
+bcA
abj
-aaa
-etQ
-rDZ
-qws
-kJB
-etQ
-aaa
-auN
-aqB
-atm
-asl
-atj
-aum
-auL
-avL
-aBt
-ayb
-ayY
-aDm
-aPJ
-aCl
-aHu
-cby
-csD
-cBd
-aHs
-aBt
-qVc
-aLy
-aMV
-aOp
-dcM
-dYt
-cGo
-dYt
-aOs
-aMY
-aBo
-wVQ
-any
-aQl
-aUV
+aFy
+aRQ
+aWw
+btk
+bdx
+bxB
+biQ
+bDT
+aoR
+bJk
+bOo
+aoo
+bWx
+bDw
+cbs
+cnq
+bfY
+bVz
+cbs
+gbI
+cdS
+cku
+aFA
+csz
+aFr
+btQ
+cDm
+cFL
+aFA
+byP
+riI
+dPp
+ddc
+bEK
+eTb
+dtC
+fUt
+dCM
bgo
-rRy
-bKs
-cMa
-baF
-wJB
-bqf
-brW
-aaa
-buL
-buO
-bxh
-bxh
-bAp
-bBT
-bBT
-bBT
-bGX
-bBT
-bBT
-bBT
-bOu
-bxh
-bSt
-bUE
-bWD
-bYk
-bZK
-cbG
-cdy
-cfr
-cgX
-ciu
-ckg
-clA
-cni
-clC
-ckj
-clC
-bYk
-ctH
-crn
-cwF
-cxW
-crn
-cAT
-bYj
-cDU
-cMW
-djc
-ikA
-cSq
-cKn
-cIM
-cNt
-cQG
-cPc
-cQK
-cQV
-dWq
-cWG
-cIM
-cKo
-dpZ
-ddi
-dgh
-piJ
-dgg
-dhQ
-djx
-dkF
-dlP
-dnh
-doD
-ddi
-drp
-dst
-ohC
-mZA
-ohC
-dWn
-dyw
-dzz
-dAQ
-dWn
-mZA
-dDV
-dEH
-dOm
-dFN
-dGF
-dGF
-dIv
-dJq
-dIq
-dIu
-dIq
-dMe
-dMM
-dND
-dFg
-cYd
-quc
-vSN
-pZH
-mKv
-dRZ
-eMv
-abj
-abj
-abj
-abj
+bcf
+aYZ
+bdz
+dSQ
+dWz
+bhy
+aYZ
+wVn
+ipW
+bog
+bqr
+bOA
+bOA
+bOA
+bwf
+cFK
+lKX
+byU
+nZz
+bHj
+peP
+vJr
+wsN
+wVc
+xPL
+bSE
+vww
+bTZ
+fuj
+tea
+tea
+tea
+sov
+gzr
+bSE
+jXE
+dKa
+fbU
+bSE
+dwM
+wrB
+csK
+fvE
+sMv
+iOJ
+cvo
+xcz
+jUR
+eto
+csK
+grW
+xMi
+vzv
+oqA
+joW
+nsA
+cNC
+sqK
+pOa
+ubA
+uHA
+hQl
+wiY
+nDj
+uHA
+oBj
+vye
+xQZ
+wbP
+hQW
+gpA
+xoj
+vsH
+vsH
+wKB
+vsH
+vsH
+vsH
+vsH
+vsH
+vsH
+gYb
+ykR
+xSf
+xSf
+xSf
+wEh
+pnv
+uoY
+dDQ
+fkL
+kdl
+bpR
+vJX
+fGj
+dJx
+orN
+qCE
+nGI
+gJj
+rAC
+iVn
+yhc
+gJj
+yhc
+oca
+hIk
+nGI
+dRr
+elZ
+sIs
+ikc
+eNt
+vCx
+pSp
+aaa
abj
+aaa
bCI
-abj
-abj
aaa
aaa
+aae
aaa
aaa
aaa
@@ -164169,7 +168010,7 @@ aaa
aaa
aaa
"}
-(123,1,1) = {"
+(131,1,1) = {"
aaa
aaa
aaa
@@ -164201,190 +168042,188 @@ aaa
aaa
aaa
aaa
-acB
-acM
-acZ
-acZ
-acZ
-aew
-acM
-aeX
-aeX
-acM
-aeV
-acZ
-acZ
-aht
-ahP
-acM
-ahu
aaa
-aja
-ajw
-aju
-aku
-aja
+aaa
+acF
aaa
abj
-abj
-etQ
-hjN
-qws
-aBB
-wLE
-abj
-auN
-aqC
-atm
-asm
-atm
-aun
-auN
-avP
-aIP
-aAs
-aBA
-aHu
-aRo
-aIP
-aDp
-cds
-aHu
-aGl
-aHt
-aHx
-qVc
-oBd
-aMW
-aOs
-aPK
-aRk
-dYt
-aUp
-aVV
-aMW
-aBo
-baF
-aNs
-aQm
-bjc
-aMd
-aMd
-bjc
-cPk
-baF
-owM
-bqc
-brW
aaa
aaa
aaa
aaa
-bxh
-bAk
-bBU
-bDI
-bFl
-bGY
-bIR
-bKB
-bME
-bOw
-bxh
-bSs
-bUE
-bWE
-cqH
-bZL
-bZL
-cdz
-bZL
-bZL
-civ
-ckh
-clB
-cnj
-bZL
-civ
-bZL
-csF
-bZL
-cvi
-cwG
-cxX
-czz
-ctH
-bYj
-cDS
-cbC
-djc
-ikA
-cIM
-cIM
-cLR
-cDQ
-cQI
-cRV
-cNm
-cWA
-cTH
-gzc
-cIM
-cIM
-cIM
-ddi
-dgi
-dgj
-dgk
-dhV
-djy
-ddi
-dlP
-dlP
-dlP
-ddi
-drq
-qNY
-dtP
-cNh
-cIS
-dxj
-dyv
-dzC
-dAP
-dxj
-sqj
-dDW
-eTq
-dFk
-dFQ
-dGG
-dHu
-dFN
-dJq
-dIq
-uOm
-dHt
-dMe
-dMN
-dNE
-dFg
-dQf
-eMx
-nte
-qYh
-fGj
-dSc
-eMv
-abj
aaa
aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abj
+acC
+aSg
+blK
+rDZ
+aoo
+bxE
+biU
+apJ
+oBd
+aNH
+bOn
+aoo
+bWL
+bDw
+gbI
+aVS
+aVS
+bVL
+cbs
+gbI
+cJd
+ckW
+aFA
+cSJ
+dbv
+aGo
+nlF
+dvR
+aFA
+dFm
+ddk
+ddk
+dVX
+aUx
+eTZ
+fsk
+aYZ
+gCx
+dFq
+hLh
+dLx
+lmd
+xBC
+cgK
+bhz
+aYZ
+mxH
+ipW
+oBf
+luQ
+aaa
abj
aaa
-bCI
+bwf
+mMQ
+byL
+mMQ
+mMQ
+bHj
+uQU
+vLR
+qQG
+vLR
+xQi
+bSE
+bSE
+bUa
+keb
+tEl
+keb
+oKQ
+keb
+bSE
+bSE
+tlZ
+pUz
+ikJ
+bSE
+fvI
+wrB
+csK
+mnN
+uWd
+tFd
+tFd
+tFd
+jme
+cFE
+csK
+cCM
+lAr
+qVp
+uLT
+cHw
+hyI
+kGp
+hyI
+kGp
+nBu
+uUW
+xMc
+tcp
+tuK
+cZC
+esP
+mKZ
+xQZ
+cVZ
+xAj
+nQS
+rKQ
+dzI
+xAj
+xAj
+xAj
+dzH
+xAj
+xAj
+xAj
+duY
+xAj
+tEB
+xAj
+dyC
+dzI
+wEh
+tgP
+wlE
+xXf
+tLT
+gMU
+dfe
+kVJ
+wKr
+dJx
+mSE
+nfd
+nGI
+dMg
+sZN
+lZk
+sZN
+dMg
+oNV
+dOS
+cwn
+nGI
+dJx
+gSF
+eye
+dTf
+wBo
+dTm
+pSp
aaa
abj
aaa
+abj
aaa
aaa
aaa
@@ -164425,10 +168264,10 @@ aaa
aaa
aaa
aaa
-"}
-(124,1,1) = {"
aaa
aaa
+"}
+(132,1,1) = {"
aaa
aaa
aaa
@@ -164459,191 +168298,189 @@ aaa
aaa
aaa
aaa
-acB
-ads
-adJ
-adY
-aex
-acM
-aeY
-acZ
-acM
-agc
-agz
-agQ
-acM
-acM
-ahu
aaa
aaa
-ajc
-aja
-aju
-aja
-akv
aaa
abj
-aaa
-wLE
-wLE
-hpd
-jTk
-wLE
abj
-auN
-amO
-arw
-atm
-atl
-aqF
-auN
-avQ
-aIP
-aBt
-ayZ
-aBr
-aBt
-aBt
-aDq
-cfm
-aDm
-aGm
-aHu
-aHy
-qVc
-cFV
-aMW
-aOr
-aPL
-aRl
-aUp
-aUq
-aVW
-aMW
-aBo
-baF
-aOP
-aQo
-awZ
-sDu
-nIw
-bMB
-cTJ
-baF
-uJw
-bqf
-brW
-brW
-brW
-brX
-brW
-bxh
-bxh
-bxh
-bxh
-bxh
-bxh
-bxh
-bxh
-bxh
-bxh
-bxh
-bSw
-bUH
-bWH
-crs
-bZM
-cbH
-bZM
-bZM
-cbH
-ciw
-cki
-bZM
-bZM
-bZM
-ciw
-bZM
-csG
-bZM
-cvj
-cwH
-cxY
-czA
-cAU
-bYj
-cDS
-cEF
-djc
-ikA
-cIL
-cIL
-cIL
-cIL
-cOY
-cPd
-cQQ
-cSb
-cOY
-cIL
-cIL
-cIH
-cIH
-ddi
-dds
-erw
-dds
-dTe
-djv
-dkI
-dkI
-dkI
-dkI
-dkI
-dkI
-dkI
-dkI
-dkI
-dkI
-dkI
-dkI
-dzB
-dkI
-dkI
-eWC
-cYe
-eTq
-dFg
-dFR
-dGH
-dHv
-dIw
-dJr
-dFg
-dFg
-dFk
-dFg
-dMO
-dFg
-dFg
-eTq
-quc
-nte
-dSc
-fGj
-dSb
-nte
abj
abj
abj
abj
abj
abj
+uvC
+aAN
+uvC
+abj
+abj
+abj
+abj
+uvC
+aOk
+uvC
+abj
+abj
+abj
abj
abj
+acC
+aIl
+btt
+aoo
+aMv
+bjM
+aoS
+brk
+aqH
+btK
+aoo
+bWR
+bDw
+moG
+gbI
+bRK
+aVS
+gbI
+moG
+cJj
+cOj
+aFA
+cTj
+aFt
+aGp
+aHB
+xHA
+aFA
+dFv
+aNb
+aUy
+ddd
+bEK
+cjQ
+pkf
+aYZ
+blf
+ilz
+oZS
+bXb
+iUP
+beY
+pKu
+cjH
+buS
+wVn
+ipW
+oBf
+luQ
aaa
+abj
aaa
+bwf
+bwf
+cHC
+cJr
+bwf
+bHj
+uVC
+bHd
+bFr
+rvg
+skp
+bSE
+hqq
+qWf
+bUI
+bIG
+cbN
+fqv
+vxW
+bbY
+bSE
+bSE
+dKt
+bSE
+bSE
+gIn
+cpK
+bsJ
+sUY
+dFX
+ygC
+ygC
+ygC
+wDT
+hFx
+csK
+tdo
+yem
+vzv
+saY
+cNC
+njP
+sVN
+cNC
+ugy
+ced
+sjW
+oEj
+tlc
+xKu
+sjW
+pAy
+hCs
+qGf
+nmp
+xJf
+nbx
+rKZ
+sid
+xDv
+lBh
+dqb
+gkY
+dqb
+jmL
+dqb
+esa
+xDv
+dvd
+xDv
+hYi
+dqb
+exh
+wOf
+oFp
+dDR
+dFn
+ygS
+dfe
+dIy
+fGj
+dJx
+vyD
+hIk
+dRm
+kKB
+quO
+lAD
+quO
+kKB
+xQb
+kKB
+rIY
+ycx
+uVh
+dRt
+kGG
+dXV
+lCa
+dTm
+pSp
+abj
+bCI
aaa
+bCI
aaa
aaa
aaa
@@ -164682,12 +168519,12 @@ aaa
aaa
aaa
aaa
-"}
-(125,1,1) = {"
aaa
aaa
aaa
aaa
+"}
+(133,1,1) = {"
aaa
aaa
aaa
@@ -164717,189 +168554,190 @@ aaa
aaa
aaa
aaa
-acB
-acM
-acM
-acM
-acM
-aeZ
-afw
-acM
-acM
-acM
-acM
-ahu
aaa
aaa
aaa
+abj
+abj
aaa
aaa
-ajc
-ajX
-akv
+abj
aaa
aaa
abj
aaa
+uvC
+aFY
+uvC
+dZp
+uvC
+uvC
+dZp
+uvC
+aFY
+uvC
aaa
-etQ
-qws
-uty
-etQ
abj
-auN
-aOG
-atl
-atl
-atm
-auo
-auN
-avO
-aBr
-aAx
-aza
-aCs
-aBr
-aGn
-aDr
-aEs
-aPY
-cwD
-aHv
-aCl
-qVc
-cGf
-aMW
-aOs
-aPM
-dYt
-aSQ
-aUr
-aVW
-aMW
-uPv
-uvW
-cGp
-cGs
-cHh
-isv
-brY
-unx
-cHj
-baF
-ozv
-bqg
-brZ
-vqL
-cFO
-qiF
-qiF
-byJ
-bAl
-bMF
-bOv
-bAl
-bAl
-bOv
-bOv
-bMF
-bOv
-bUt
-bSx
-bUF
-bWF
-bYk
-bZN
-cbI
-cdA
-cfs
-cgY
-cix
-ckj
-clC
-ckj
-clC
-cpJ
-clC
-bYk
-ctO
-cvk
-cwI
-cxZ
-hHG
-cAV
-bYj
-cDS
-cgT
-dlE
-ikA
-cIO
-cIO
-cIO
-cIL
-cOS
-cRV
-cNm
-nNg
-cTM
-cVm
-cWT
-dto
-cND
-dbO
-apY
-pCB
-ehV
-dhW
-pBp
-dkJ
-dlY
-dIg
-spH
-jvt
-jpk
-tXj
-jaX
-ljy
-dvY
-dkI
-dyx
-dzD
-dAR
-dkI
-cFR
-cYe
-hFm
-dFg
-dFS
-dGI
-dHw
-dFN
-dJs
-dFg
-dKF
-dLm
-dMf
-dMP
-dNF
-dFg
-eTq
-quc
-nte
-dJx
-dRF
-dJx
-dJx
-dJx
-dTW
-dTW
-dJx
-rfs
aaa
-bCI
aaa
aaa
+aSg
+aWw
+aXK
+aoo
+bxI
+bjN
+aNI
+brk
+aqM
+bOs
+aoo
+cbs
+bDS
+chg
+ckN
+cqw
+cxS
+ckN
+ckN
+cJn
+aVS
+aFA
+cUa
+cvh
+cye
+nlF
+bwj
+aFA
+dFW
+ddk
+ddk
+oNr
+dlz
+aSW
+dtI
+aYZ
+gCI
+dFt
+bci
+dLx
+lmd
+dSW
+kGW
+cjO
+buS
+wVn
+ipW
+oBf
+luQ
+aaa
+abj
aaa
+bwf
+rlm
+lKX
+byU
+cKT
+bHj
+uVS
+pzi
+qQS
+bPY
+xQv
+bSE
+vwH
+dxf
+dtF
+dxf
+dtF
+dxf
+loT
+iIl
+vtj
+ylM
+mqB
+tKk
+bSE
+dwM
+rpT
+csK
+fyz
+pCs
+iuh
+iuh
+iuh
+nIG
+lsz
+bgk
+ejB
+cER
+cQm
+lGN
+jpa
+jSV
+lfd
+knb
+fmw
+tpR
+kXP
+esz
+eVB
+job
+jJs
+rJZ
+mNY
+mHX
+oVl
+xDD
+xDD
+cJT
+wOF
+xDD
+xDD
+oxm
+eCO
+xDD
+mEE
+xDD
+anP
+xDD
+xDD
+xDD
+mSh
+dzJ
+wEh
+aob
+kQU
+dCL
+oXs
+dGO
+dfe
+rtl
+rNh
+dJx
+qJh
+hIk
+dKe
+jRL
+sZN
+lZk
+uUa
+dip
+oNV
+dMg
+tJN
+jnr
+dJx
+mnO
+vYK
+dUK
+dUl
+dTn
+dIx
+abj
+bCI
+abj
+bCI
aaa
aaa
aaa
@@ -164939,11 +168777,11 @@ aaa
aaa
aaa
aaa
-"}
-(126,1,1) = {"
aaa
aaa
aaa
+"}
+(134,1,1) = {"
aaa
aaa
aaa
@@ -164976,183 +168814,186 @@ aaa
aaa
aaa
aaa
-abj
-abj
-dft
-aef
-aef
-dft
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-dft
-akU
-dft
-abj
-abj
+agp
+dZp
+dZp
+dZp
+dZp
+uvC
+dZp
+dZp
+uvC
+uvC
+aAN
+uvC
+aDG
+aFB
+aGy
+aJz
+uvC
+aOk
+uvC
+uvC
+dZp
+dZp
+uvC
+dZp
+aSg
+blL
+aKT
+aoo
+aoo
+aoo
+aoo
+apL
+aoo
+aoo
+aoo
+bXf
+bDV
+chA
+cnE
+cqK
+cxY
+cBo
+chA
+cJp
+clz
+aFA
+cUj
+cvA
+aGr
+aHD
+bwi
+aFA
+dGd
+aXF
+aXF
+oNr
+aRq
+eWR
+tJu
+aYZ
+gDy
+bco
+tGi
+aYZ
+bdE
+dSQ
+cgP
+ebz
+buS
+wVn
+nqH
+nYK
+hHa
abj
abj
abj
-etQ
-qws
-uty
-etQ
-aaa
-ard
-aqE
-ary
-aso
-atn
-aup
-auO
-avS
-awX
-ayd
-aar
-aAn
-aBs
-aEk
-aEk
-aEt
-aFo
-cEa
-aHw
-aIP
-aKe
-baD
-aMW
-aOt
-aPN
-aRn
-lyE
-aUs
-aVX
-aMW
-aDy
-baF
-aQj
-bYd
-fuR
-baF
-vpC
-jYe
-cWN
-baF
-baF
-baF
-baF
-baF
-baF
-baF
-baF
-aDy
-bOC
-bOC
-bOC
-bOC
-bOC
-bOC
-bOC
-bOC
-bOC
-bOC
-roo
-xgu
-bWD
-bYj
-bZO
-cbJ
-cdB
-cft
-cgY
-ciy
-ckj
-clC
-ckj
-clC
-cpJ
-clC
-bYj
-ctN
-cix
-cwJ
-iJZ
-czB
-cAW
-bYj
-cDT
-cgT
-dHA
-ikA
-cIO
-cKp
-cLS
-cNu
-cOV
-cQR
-cSd
-cTD
-cVf
-cWI
-cWU
-dtH
-dgl
-dgq
-dEQ
-rDf
-dgq
-uHt
-djF
-sxQ
-dlU
-rGL
-lKl
-vCF
-gfV
-dnj
-lnI
-utE
-dwf
-dwd
-dyB
-oyh
-dBa
-dkI
-pZH
-cYe
-pda
-dFg
-dFg
-dOm
-dFg
-dFg
-dJt
-dFg
-dKG
-dIv
-dMg
-dGE
-dNG
-dFg
-hFm
-eMx
+bwf
+rma
+lKX
+byU
+lSG
+bHj
+uWM
+pzJ
+bIT
+hRv
+bMG
+bSE
+kpT
+wCm
+dAr
+lqn
+dAr
+lqn
+fWS
+dFa
+cfA
+dvS
+qqU
+dNC
+sZn
+nlu
+mwA
+csK
+cvE
+mkM
+ctP
+qui
+mck
+qxQ
+czG
+dRL
+oFJ
+xMi
+vzv
+oqA
+ljp
+njP
+lIH
+cNC
+ugy
+ghN
+rsV
+oEk
+cKr
+srA
+rsV
+uZs
+iVI
+uDz
+vEo
+vEo
+rjs
+vEo
+dlT
+vEo
+rjs
+vEo
+tXf
+tXf
+tXf
+qOh
+gVV
+qOh
+tXf
+tXf
+tXf
+ykx
+wEh
+dfe
+dfe
+dfe
+dfe
+dfe
+dfe
+rtl
nte
-dQn
-dRv
-dSq
-dSG
-dSH
-dVo
-dYa
-lth
dJx
+yiZ
+iBW
+jiS
+yiZ
+yiZ
+yiZ
+dJx
+dJx
+yiZ
+yiZ
+yiZ
+dJx
+dJx
+tEG
+dIx
+dIx
+dIx
+dIx
+dIx
abj
+abj
+aaa
bCI
aaa
aaa
@@ -165197,7 +169038,9 @@ aaa
aaa
aaa
"}
-(127,1,1) = {"
+(135,1,1) = {"
+aaa
+aaa
aaa
aaa
aaa
@@ -165226,191 +169069,209 @@ aaa
aaa
aaa
aaa
+afH
+dZl
+dZl
+ajr
+alv
+uvC
+aoO
+axa
+arX
+auc
+axa
+axh
+axa
+axa
+axa
+axa
+axa
+axa
+axa
+axa
+axa
+aUB
+aYQ
+arX
+axa
+bgU
+aSh
+bme
+btw
+ann
+mIO
+mIO
+aoU
+apM
+nVJ
+nVJ
+nVJ
+bXJ
+cdt
+aDI
+aDI
+aDI
+aDI
+aDI
+aDI
+aDI
+clH
+aFA
+aFA
+cvv
+aFA
+aHE
+aFA
+aFA
+dGi
+aXF
+aXF
+oNr
+aWd
+qfr
+ckz
+aYZ
+aYZ
+aYZ
+aYZ
+aYZ
+iVa
+dTd
+cgR
+ebY
+aYZ
+mxV
+ipW
+oBf
+luQ
+aaa
+abj
+aaa
+bwf
+rmb
+lLb
+sPM
+tDN
+bHj
+uXj
+pAL
+bIV
+dae
+deo
+tYf
+rju
+wCp
+bYn
+rTE
+bLL
+rxc
+bYn
+dFb
+rTE
+rTE
+wFJ
+dNO
+bSE
+qtv
+ccI
+csK
+fyz
+pYR
+eXx
+eXx
+eXx
+gIu
+lbE
+gxk
+hev
+rKL
+vzv
+oqA
+jqb
+ugy
+lIH
+cNC
+njP
+iRd
+rot
+uEZ
+pBD
+pBD
+pBD
+mnh
+oXm
+cZu
+vEo
+vvY
+xcG
+avZ
+die
+dkQ
+xcG
+hsS
+tXf
+xQB
+uQL
+omU
+klr
+fFf
+roU
+eri
+wnh
+ykx
+dAW
+fqo
+tzX
+dEa
+wKr
+fGj
+wKr
+kVJ
+ygb
+keY
+iEY
+sWh
+bko
+tzE
+mhS
+kJs
+tum
+uMU
+tii
+mhS
+jkJ
+sWh
+wuc
+etU
+vgu
+dSf
+vat
+dTp
+dUb
+gYI
+acF
+aaa
+abj
+aaa
+bCI
+aaa
+aaa
+aaa
aaa
aaa
aaa
aaa
aaa
aaa
-abj
-abj
aaa
-dft
-afb
-afb
-dft
aaa
aaa
-abj
aaa
-dft
-ahl
-dft
-dft
-ahl
-dft
-afb
-dft
aaa
-abj
aaa
aaa
aaa
-etQ
-rOf
-pwt
-etQ
aaa
-amg
-auL
-auN
-auN
-auN
-auL
-auL
-avL
-aBr
-aBv
-aHu
-aDt
-aSO
-bgn
-aHu
-cfp
-aHb
-aGn
-cFQ
-aBt
-wCD
-aLC
-aMY
-aOu
-aPO
-aVW
-dYt
-aUt
-aOs
-aMW
-aDy
-baF
-bcc
-huw
-buR
-baF
-bhv
-yai
-bkS
-dMX
-bof
-bqh
-bsa
-dMX
-buP
-gKC
-baF
-aDy
-bOC
-bBX
-bDP
-bFm
-bGV
-bIQ
-bKA
-bLZ
-bOx
-bCe
-bTY
-bWO
-cgC
-bYj
-bYj
-bYj
-bYj
-cfu
-cgY
-cix
-ckj
-ckj
-ckj
-ckj
-cpJ
-crk
-csH
-ctK
-cvm
-cwK
-cya
-czC
-cAX
-bYj
-cDV
-cbC
-cGq
-ikA
-cSC
-cKq
-cLT
-cNv
-cOX
-cQS
-cSe
-cTE
-cVg
-cWJ
-cOX
-dhS
-apA
-dkn
-dbS
-eAH
-esT
-qZv
-sbf
-dlR
-wua
-mob
-dtV
-jpK
-sln
-jpK
-ubr
-uqb
-jWq
-oyt
-xSP
-sJL
-sjd
-dkI
-wEh
-vSI
-eTq
-dFl
-fGj
-mKv
-uAX
-dFg
-dFg
-dFk
-dFk
-dFg
-dFk
-dFk
-dFg
-dOm
-eTq
-quc
-nte
-dQR
-dRv
-dRI
-dSa
-dSI
-dTl
-dQb
-plW
-dTW
-acF
-acF
aaa
aaa
aaa
@@ -165433,6 +169294,8 @@ aaa
aaa
aaa
aaa
+"}
+(136,1,1) = {"
aaa
aaa
aaa
@@ -165440,7 +169303,6 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
@@ -165453,21 +169315,202 @@ aaa
aaa
aaa
aaa
-"}
-(128,1,1) = {"
aaa
aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
aaa
aaa
+afK
+ahe
+aii
+dZo
+ayB
+amj
+aoT
+aqB
+asi
+aul
+asi
+axu
+aBc
+aBc
+aBc
+ahQ
+aBc
+aBO
+aDE
+aII
+aII
+aII
+aII
+aII
+aII
+alF
+bjI
+aWf
+aXL
+lZy
+lZy
+lZy
+lZy
+lZy
+lZy
+lZy
+lZy
+bXL
+bEf
+wMm
+bPt
+bRY
+bWf
+cbB
+cdw
+aDI
+clI
+aFA
+cUs
+cvA
+aGu
+aHF
+bwk
+qXC
+aXF
+aXF
+dPy
+dWe
+ell
+aXF
+hMZ
+dxa
+gDz
+dGc
+bcd
+bXy
+iVE
+cdy
+kHa
+bhE
+aVc
+wVn
+ipW
+oBf
+luQ
aaa
+abj
aaa
+bwf
+bwf
+lOt
+sPY
+tEw
+bDR
+uXu
+pBp
+cus
+dag
+dep
+bSE
+uXN
+wCG
+wCG
+wCG
+dCX
+poi
+wCG
+wCG
+wCG
+wCG
+psg
+xQd
+dPO
+srp
+jwn
+unk
+vte
+dYd
+ygC
+ygC
+ygC
+ixs
+qRN
+csK
+hdh
+xMi
+vzv
+mcd
+nJZ
+ouL
+oSZ
+cNC
+ugy
+sDC
+pBD
+oJF
+mZM
+clb
+ofk
+poO
+iLA
+pCn
+vEo
+qFV
+kaX
+kaX
+gha
+kaX
+kaX
+etO
+utT
+xUz
+hJX
+qNZ
+xdb
+nzN
+nzN
+cbI
+uQV
+jRH
+plG
+khf
+aKq
+yjo
+eOC
+aKq
+yjo
+kku
+nFf
+fEU
+kUr
+umd
+jtr
+wuc
+wuc
+wuc
+umd
+hIZ
+wuc
+wuc
+wuc
+umd
+xQY
+ihv
+sme
+pMp
+sme
+sme
+iOD
+abj
+abj
aaa
+bCI
+abj
+bCI
aaa
aaa
aaa
@@ -165487,187 +169530,6 @@ aaa
aaa
aaa
aaa
-ahl
-dft
-ahl
-dft
-dft
-dft
-aef
-aef
-ahl
-dft
-dft
-dft
-dft
-dft
-aik
-aiE
-bgx
-bhT
-dft
-akU
-dft
-dft
-ahl
-ahl
-dft
-ahl
-awl
-djN
-dnv
-wLE
-abj
-abj
-abj
-abj
-abj
-abj
-amh
-arW
-avO
-aBt
-aBt
-aBM
-aCl
-aBt
-aBt
-aIP
-aBt
-aIP
-aBt
-aBt
-aBt
-udw
-cGj
-aMW
-aMW
-aMV
-aMW
-aMY
-aUu
-aMW
-aMW
-aYS
-baF
-bcd
-bdx
-bcd
-bgp
-bhw
-bjf
-cZR
-boi
-boi
-boi
-boi
-wVn
-buQ
-gKC
-baF
-aDy
-bOC
-bBY
-bDK
-bFn
-bFn
-bFn
-bFn
-bMH
-bOy
-bDQ
-uIF
-rQd
-dcK
-bYj
-bZP
-cbK
-bYj
-cfv
-cgY
-cix
-ckj
-clC
-ckj
-clC
-cpJ
-clC
-bYj
-ctL
-cvn
-cwL
-cyb
-cvl
-cAY
-bYj
-cLP
-cgT
-dHA
-ikA
-cIO
-cKp
-cLU
-cNw
-cOZ
-cQT
-cSf
-cSc
-cSf
-cWK
-cWV
-dvN
-dav
-dbP
-ddx
-eZg
-qCK
-tMy
-qhf
-sxQ
-fVJ
-fSt
-mLW
-dnj
-vnq
-usJ
-hKq
-dnj
-edv
-dwd
-hDh
-vTg
-ruT
-dkI
-mKv
-cYe
-dEI
-jrP
-cWq
-jrP
-dHy
-cWq
-jrP
-dlM
-dKH
-dLn
-ohC
-mZA
-mZA
-dOn
-dOQ
-dLo
-nte
-dQS
-dRB
-dRJ
-dSO
-dTg
-dUS
-kwq
-kwq
-sid
-xjZ
-xjZ
aaa
aaa
aaa
@@ -165689,6 +169551,8 @@ aaa
aaa
aaa
aaa
+"}
+(137,1,1) = {"
aaa
aaa
aaa
@@ -165696,9 +169560,6 @@ aaa
aaa
aaa
aaa
-abj
-abj
-abj
aaa
aaa
aaa
@@ -165710,8 +169571,6 @@ aaa
aaa
aaa
aaa
-"}
-(129,1,1) = {"
aaa
aaa
aaa
@@ -165724,9 +169583,191 @@ aaa
aaa
aaa
aaa
+afM
+dZl
+dZl
+ajv
+ahr
+uvC
+aoV
+aud
+aNw
+aph
+aud
+axN
+aud
+aud
+aah
+aah
+aud
+aJF
+aMf
+aud
+aud
+aUC
+aMp
+aNw
+aud
+bhn
+aSh
+bms
+aXW
+lZy
+dyn
+bMC
+bEc
+apO
+aqK
+bFi
+lZy
+bWL
+bEh
+aDI
+cnH
+cqT
+beU
+cBt
+cCV
+cJG
+cOl
+aFA
+cUx
+dbU
+aGt
+dpH
+aSV
+aXF
+dGD
+vLQ
+dPF
+oIy
+enm
+cHc
+aXF
+xuK
+bKU
+xBC
+bKU
+iqk
+iWe
+dTd
+sKF
+bhF
+aYZ
+myq
+rfm
+nYW
+luQ
aaa
+abj
aaa
+qws
+roH
+lOz
+byU
+bCl
+bHj
+pHr
+pHr
+cVm
+dan
+des
+bSE
+jMm
+wFb
+bIE
+rsK
+bSE
+bAT
+ppf
+mUi
+bgD
+tAz
+sxX
+dNT
+bSE
+dwM
+hpE
+csK
+uDd
+wPc
+dZy
+eYe
+dZy
+bDk
+jLs
+csK
+hzX
+kUz
+noj
+oqA
+sRG
+ugy
+lIH
+cNC
+njP
+dkn
+cRb
+oIq
+fVX
+nsS
+dgv
+nsS
+oXK
+daC
+rjs
+kPy
+dfh
+dyI
+sjm
+vnI
+dkS
+dnn
+utT
+biZ
+drv
+rzT
+dsE
+rru
+xeT
+idx
+fQT
+ykx
+wKr
+dBd
+uBY
+uBY
+uBY
+uBY
+uBY
+uBY
+uBY
+pBI
+lap
+fkq
+lFG
+dKo
+dKo
+dKo
+fbL
+dKo
+dKo
+dKo
+dKo
+ubP
+dKo
+bgj
+sme
+dSg
+nuU
+jCz
+iOD
+abj
+bCI
+abj
+bCI
aaa
+bCI
aaa
aaa
aaa
@@ -165742,189 +169783,6 @@ aaa
aaa
aaa
aaa
-dft
-dft
-dft
-afb
-adv
-adZ
-adZ
-adZ
-adZ
-adZ
-afJ
-agd
-agA
-adZ
-adZ
-adZ
-adZ
-adZ
-adZ
-adZ
-ajG
-ajZ
-ajZ
-amv
-agg
-xGL
-ajZ
-amu
-anj
-tQe
-cru
-moG
-moG
-moG
-moG
-moG
-moG
-moG
-moG
-moG
-awt
-aCl
-aBw
-aAq
-aDm
-aUw
-aBt
-aYQ
-aEu
-aFq
-cFO
-aEu
-qiF
-aKg
-aLD
-qiF
-qiF
-qiF
-qiF
-aRu
-aUv
-qiF
-qiF
-aYT
-baH
-bce
-bdy
-beV
-baF
-bhx
-yjn
-dmy
-bmR
-nIm
-wGm
-qwX
-iam
-bmS
-kUR
-baF
-gxg
-bOC
-bBZ
-bDL
-bFo
-bHa
-bFo
-bFo
-bMI
-bOz
-bDQ
-uIF
-rQd
-mcq
-bYj
-bZQ
-cbL
-cdC
-cfw
-cgZ
-cix
-ckj
-clC
-ckj
-clC
-cpK
-wVc
-bYj
-bYj
-bYj
-bYj
-bYj
-clz
-cFM
-bYj
-cDT
-cMW
-djc
-ikA
-cIO
-cIO
-cIO
-cIL
-cPa
-cPe
-cQU
-cSg
-cTO
-cVn
-cWW
-cKr
-daw
-dbQ
-dZD
-dBD
-dBD
-iaA
-gyW
-dkM
-dlZ
-dwc
-dwc
-kAL
-ujh
-vsH
-grf
-sIZ
-dwg
-dkI
-dyG
-dzM
-dBb
-dkI
-dEu
-dDZ
-vNg
-vNg
-vNg
-vNg
-dHz
-lDC
-lDC
-sOW
-lDC
-dLo
-mKv
-fGj
-dQc
-pZH
-mKv
-fGj
-nte
-dRm
-dRC
-dSA
-dSQ
-dTj
-dXS
-kyn
-pPK
-dTW
-acF
-acF
aaa
aaa
aaa
@@ -165950,10 +169808,11 @@ aaa
aaa
aaa
aaa
+"}
+(138,1,1) = {"
aaa
aaa
aaa
-abj
aaa
aaa
aaa
@@ -165967,8 +169826,6 @@ aaa
aaa
aaa
aaa
-"}
-(130,1,1) = {"
aaa
aaa
aaa
@@ -165985,7 +169842,187 @@ aaa
aaa
aaa
aaa
+agp
+dZp
+dZp
+dZp
+dZp
+uvC
+dZp
+dZp
+uvC
+uvC
+auS
+uvC
+atL
+ahR
+ahR
+aJV
+uvC
+auS
+uvC
+uvC
+dZp
+dZp
+uvC
+dZp
+aSf
+aWw
+rDZ
+bnn
+wrm
+bAt
+bEe
+bFB
+bJs
+bOD
+bTR
+bYd
+bEi
+aDI
+aZg
+bbR
+aBx
+azi
+aAt
+aDI
+clJ
+aFA
+cUF
+cvP
+aGx
+gLd
+aSV
+aXF
+aXA
+aWc
+dPN
+oIy
+tPj
+vLQ
+aXF
+dxb
+xBC
+dGk
+cgz
+bLl
+bdQ
+jCJ
+bgs
+ecz
+buS
+wVn
+ipW
+nYY
+hHa
+abj
+abj
+abj
+pBK
+rpj
+snq
+kfi
+nVR
+bwf
+bFy
+pHr
+bIX
+pHr
+bHj
+bSE
+bSE
+bSE
+bSE
+bSE
+bSE
+bSE
+bSE
+bSE
+bSE
+bSE
+bSE
+bSE
+bSE
+hzp
+yeI
+csK
+crr
+mYX
+ctQ
+rnJ
+gcg
+uYw
+fXK
+csK
+pCP
+xMi
+vzv
+oqA
+sRf
+njP
+lIH
+cNC
+ugy
+xXi
+pBD
+rTF
+naq
+nGM
+kSR
+ham
+naR
+yjq
+vEo
+kPy
+dfn
+wGs
+tjR
+wGs
+dfn
+uIQ
+oNS
+dIi
+dzQ
+qqe
+vuD
+dwk
+dvg
+xFd
+xlY
+rLk
+fIC
+eGb
+uBY
+lJs
+tqz
+hze
+mRJ
+kyv
+uBY
+eCf
+ixz
+cjD
+dKi
+dro
+rNO
+see
+lEe
+yhZ
+see
+dro
+oJy
+gah
+lJE
+iAS
+jwW
+dSi
+vNk
+mRH
+wbZ
+abj
+abj
aaa
+bCI
aaa
aaa
aaa
@@ -165999,196 +170036,12 @@ aaa
aaa
aaa
aaa
-acD
-acO
-adc
-adt
-afh
-cFr
-dBE
-aea
-aea
-aea
-aeJ
-age
-aea
-aea
-aea
-aea
-bRN
-bfu
-bTT
-bTT
-ajx
-bTT
-bTT
-bTT
-bTT
-bTT
-bTT
-amA
-amL
-wmW
-anI
-moG
-aor
-aoR
-qVc
-nSx
-asp
-qVc
-moG
-auP
-avP
-aIP
-aBy
-aHu
-aAq
-aXe
-aIP
-aDy
-qLZ
-aFr
-qLZ
-qLZ
-eFo
-eFo
-eFo
-riI
-lnB
-lnB
-lnB
-aSS
-lnB
-lnB
-baF
-baF
-baF
-bcf
-bdz
-beW
-bgq
-bhy
-bjg
-bkV
-bkU
-bog
-bqi
-cKv
-gKC
-vfa
-gKC
-baF
-byK
-bAo
-bCa
-bDL
-bFp
-bGZ
-bHb
-bKD
-bMJ
-bOA
-bSe
-bTZ
-fuj
-eNq
-bYj
-bZR
-cbM
-bYj
-cfx
-cgY
-cix
-ckj
-clD
-cnk
-cox
-cpL
-crl
-bYj
-ctM
-cvo
-cwM
-bYj
-cLc
-cBa
-cCB
-cDW
-cEG
-cGr
-ikA
-ikA
-ikA
-ikA
-ikA
-cPb
-cQJ
-cSh
-cZC
-cSh
-cVo
-cXa
-cKr
-dqq
-dWj
-bwC
-gpA
-xoj
-dWj
-sSS
-wKB
-doH
-dqa
-dqb
-dvf
-dsx
-dsy
-dtR
-dvf
-dwd
-dvf
-dkJ
-dzN
-dXA
-dkI
-pDW
-pDW
-pDW
-pDW
-dHB
-dGK
-omi
-dIx
-dXD
-dIx
-dIx
-dIx
-dIx
-dIx
-dIx
-dIx
-dOR
-dQg
-lZk
-dRr
-dRE
-dSF
-dSW
-dUi
-dXU
-dRI
-qBc
-dJx
-abj
-bvh
aaa
aaa
aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -166212,6 +170065,8 @@ aaa
aaa
aaa
aaa
+"}
+(139,1,1) = {"
aaa
aaa
aaa
@@ -166224,8 +170079,6 @@ aaa
aaa
aaa
aaa
-"}
-(131,1,1) = {"
aaa
aaa
aaa
@@ -166246,200 +170099,187 @@ aaa
aaa
aaa
aaa
+abj
+abj
+aCb
aaa
+abj
aaa
aaa
+abj
aaa
+uvC
+aFY
+uvC
+ahS
+aFF
+uvC
+dZp
+uvC
+aFY
+uvC
aaa
+abj
aaa
aaa
aaa
+aSg
+aWw
+rDZ
+lZy
+bxX
+aNl
+bOr
+brl
+aqN
+arD
+lZy
+bZm
+cdS
+aDI
+cnL
+bSg
+bWg
+aEs
+cdF
+aDI
+clJ
+aFA
+cVT
+cvO
+cyt
+gLd
+aSV
+aXF
+aXF
+aXF
+aXF
+oIy
+tPj
+fUv
+aXF
+fVj
+aUG
+tuE
+hLK
+irC
+vvn
+cgS
+kIA
+egl
+buS
+wVn
+ipW
+oBf
+luQ
aaa
+pAg
+mPJ
+bwf
+jKY
+lVo
+byU
+tEy
+bHj
+bHj
+cVF
+wts
+bKE
+bHj
+diU
+bSE
aaa
-dft
-dft
-dft
-adu
-adK
-aeb
-aeb
-bdU
-aeb
-agC
-afK
-agf
-agB
-agB
-agB
-agB
-bTM
-agB
-agB
-agB
-agB
-agB
-agB
-agB
-alu
-qKv
-agB
-amw
-ang
-ank
-ybx
-ahw
-apJ
-arN
-arI
-arI
-arN
-anx
-awV
-anx
-avV
-aBt
-ayg
-aze
-aDK
-aHj
-aBt
-bqd
-qLZ
-aFs
-aGo
-nlF
-eFo
-tzp
-aLE
-aNa
-lnB
-aPP
-aRp
-aSU
-aUx
-aVY
-baF
-oJn
-eMM
-bcg
-bdA
-beX
-baF
-bhz
-bjh
-gKC
-bmS
-boh
-bqj
-cKv
-gKC
-vfa
-qkv
-baF
-byL
-bBW
-bCb
-bDM
-bFo
-bHb
-bIS
-bFo
-bIU
-bOB
-bIV
-bUa
-rQd
-bWJ
-bYj
-bYj
-bYj
-bYj
-cfy
-cgY
-cix
-ckj
-clE
-cnl
-cnl
-cnl
-crm
-bYj
-lAr
-cvp
-cwN
-cyc
-czE
-cgU
-cgU
-cDX
-cgU
-dna
-cHw
-cIQ
-cJn
-cXX
-ikA
-ikA
-ikA
-ikA
-ikA
-ikA
-ikA
-ikA
-cKr
-xJv
-dkn
-ddu
-nQS
-dWj
-dkn
-iCY
-jic
-dmd
-dzH
-dIh
-dvf
-hHj
-duY
-iFj
-dvd
+cks
+cgE
+man
+ely
+dDa
+dFc
+mOw
+cks
+dBL
+xjd
+dPQ
+dwM
+npP
+csK
+csK
+xAH
+csK
+csK
+csK
+csK
+csK
+csK
+aVO
+hwz
+qVp
+xdX
+rvn
+hyI
+xnM
+eEu
+kGp
+sOE
+pBD
+mAO
+cZz
+nGQ
+okH
+nIS
+oYj
+dtS
+pYJ
+qzk
+hFn
+wGs
+doK
+wGs
+hFn
+dnn
+utT
+nan
+fZf
+drC
+dsG
+rru
+xeT
+xDU
+dxu
+ykx
+fGj
+kVJ
+uBY
+kzh
+sSo
+pBl
+omC
+kId
+lpx
+svM
+xQS
+dXa
+gwP
+dKo
+xNa
+dIO
+dIO
+dIO
+xNa
+dKo
+cFy
+eGt
+uYG
+xhn
+xqX
+pOS
+dSJ
+dTs
+wbZ
aaa
-dyC
-dyH
-dzO
-dBc
-dCK
-dDQ
-dDQ
-dDQ
-dFm
-dIb
-dGL
-omi
-dIx
-dJu
-dKd
-dJu
-dLp
-sZN
-dMQ
-dJu
-dIx
-dOS
-dOS
-dOS
-dOS
-dOS
-dIx
-dTf
-dIx
-dIx
-dTX
-dIx
-dIx
abj
-bCI
aaa
+abj
aaa
aaa
aaa
@@ -166466,6 +170306,7 @@ aaa
aaa
aaa
aaa
+fmL
aaa
aaa
aaa
@@ -166482,7 +170323,7 @@ aaa
aaa
aaa
"}
-(132,1,1) = {"
+(140,1,1) = {"
aaa
aaa
aaa
@@ -166507,6 +170348,7 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -166515,188 +170357,187 @@ aaa
aaa
aaa
aaa
-ahl
-dft
-ahl
-dft
-dft
-ahl
-dft
-ahl
-ahl
-dft
-dft
-dft
-dft
-dft
-aio
-aiF
-mcI
-ajy
-dft
-dft
-dft
-dft
-ahl
-ahl
-dft
-ahl
-adb
-ani
-wrm
-moG
-aoS
-oBd
-aqH
-arz
-asq
-xdE
+aaq
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+uvC
+auS
+uvC
+abj
+aaq
+aaa
+abj
+uvC
+auS
+uvC
+abj
+abj
+abj
+abj
+aCb
+acC
+aIO
+amL
+lZy
+lZy
+atv
+bnn
+brn
+bsC
+lZy
+lZy
moG
-qVc
-axa
-aBt
-ayh
-gbI
-aAr
-aYU
-aBt
-aDu
-qLZ
-aFt
-aGp
-aHB
-xHA
-aKi
-aLF
-aNb
-lnB
-aPQ
-aRq
-aSX
-aUy
-aVZ
-baF
-ilz
-oZS
-bch
-bdB
-beY
-bcd
-gKC
-bji
-bkX
-bmT
+bEG
+aDI
+aDI
+bbZ
+aym
+azk
+aAv
+aDI
+clJ
+aFA
+cWe
+cvP
+aGx
+gLd
+nCH
+aXF
+dGD
+aWc
+cDn
+oIy
+tPj
+uJA
+aXF
+fVJ
+xBC
+cke
+dId
+bLl
+bdQ
+jCJ
+qRn
+ckd
+buS
+wVn
+ipW
oBf
-bdh
-iTz
-boi
-bmS
-klv
-baF
-cng
-bOC
-bCc
-bDN
-bFo
-bHd
-bFo
-bFo
-bMI
-bFr
-bDQ
-qWf
-bUI
-mcq
-bYj
-bZS
-cbN
-bYj
-cfz
-cgY
-cix
-ckj
-clF
-cnm
-cnl
-cnl
-crn
-csI
-ctO
-cvq
-cwO
-bYj
-cdt
-dFX
-dfV
-cDY
-cgT
-cGt
-cHx
-cbC
-cbC
-cdt
-eEu
-cLZ
-qzn
-kKQ
-cLZ
-fNC
-sjW
-iPH
-cKr
-daz
-dWj
-ddu
-nbx
-dWj
-dWj
-jNF
-rZx
-dji
-pFy
-gRw
-gvq
-uzr
-oek
-xdz
-dvd
+luQ
aaa
-dyD
-dzI
-dAG
-dBw
-dCK
-dDR
-dDQ
-dDQ
-dFm
-dIy
-dGM
-dKX
-dKY
-dJv
-dJv
-dKI
-dLq
-dJv
-dMR
-dNH
-dOo
-dOT
-dPD
-dQh
-dQT
-dRt
-dIx
-dXV
-dIx
-dTm
-dTY
-dUJ
-dIx
+pAi
+qcB
+qwy
+rpO
+lVo
+byU
+lSG
+cNe
+bJh
+bJh
+bJh
+bJh
+bJh
+bJh
+bJh
+aaa
+cks
+nph
+qXy
+tfd
+lRu
+ohb
+eKX
+eDV
+ciD
+wrB
+wrB
+dwM
+wrB
+dVm
+hQI
+dYg
+pSF
+cvt
+gSi
+okj
+lJZ
+cBe
+cCM
+xMi
+vzv
+saY
+cMj
+njP
+qWU
+gRN
+oBH
+tot
+iVt
+gjV
+cTR
+cTU
+cXb
+cXb
+oYt
+pCx
+vEo
+kPy
+vQY
+wGs
+tjR
+wGs
+krN
+sWC
+fno
+uQV
+dsu
+wJB
+wiW
+wJB
+xhi
+dxv
+fXx
+ykx
+wKr
+kVJ
+uBY
+hVe
+ivw
+qUz
+dFp
+mTD
+iZd
+vJv
+tVC
+xNa
+gwP
+dKo
+dIO
+eXS
+vCW
+wDx
+dIO
+dKo
+cFy
+xNa
+rFi
+xhn
+dRO
+dSj
+dSP
+dTt
+wbZ
abj
abj
aaa
+bCI
+aaa
aaa
aaa
aaa
@@ -166739,7 +170580,7 @@ aaa
aaa
aaa
"}
-(133,1,1) = {"
+(141,1,1) = {"
aaa
aaa
aaa
@@ -166774,185 +170615,190 @@ aaa
aaa
aaa
aaa
-abj
+acF
+aaa
abj
aaa
aaa
-abj
+aup
+awr
+aMt
+aAQ
+aMt
+ugW
+ugW
+ugW
+ugW
+aMt
+aAQ
+aMt
+aUI
aaa
aaa
-abj
aaa
aaa
+aSg
+blx
+btz
+bvL
+byh
+bkz
+apa
+apR
+arF
+arF
+aQx
+bZz
+bEI
+cGf
+aDI
+bSz
+beU
+bgl
+bhY
+aDI
+clJ
+aFA
+cWp
+cvQ
+aGw
+gLd
+aSV
+aXF
+aXA
+dMq
+dPN
+oNr
+eoM
+eYG
+aXF
+fXt
+bKU
+xBC
+bKU
+lmz
+seM
+dTu
+dWC
+ehB
+aYZ
+wVn
+ipW
+oBf
+luQ
+aaa
+pAi
+jGZ
+bwg
+byU
+lVo
+mft
+tHP
+osl
+bJh
+vMe
+bOG
+rzo
+bMN
+xsa
+bJh
abj
-dft
-ahl
-dft
-dft
-ahl
-dft
+cks
+vmb
+bYp
+nWl
+iHE
+cdD
+dGK
+cks
+quv
+wrB
+uFX
+rcT
+uFX
+wrB
+rrz
+wrB
+vgP
+iwz
+gLH
+fCs
+feu
+gFf
+cCM
+xMi
+vzv
+oqA
+oKl
+ugy
+qhT
+ugy
+njP
+tot
+gOq
+aiF
+cTB
+cUY
+cVs
+cXc
+cYB
+daE
+vEo
+qEx
+nom
+tHC
+rwB
+tHC
+tHC
+lsc
+utT
+xsv
+hGm
+vMV
+wjc
+wJG
+xus
+gih
+dxw
+ykx
+fGj
+kVJ
+uBY
+kZQ
+hrY
+xKw
+kpr
+irg
+uBY
+cfR
+xQS
+qwo
+gwP
+dKo
+dIO
+ayU
+oeC
+geA
+dIO
+dKo
+cFy
+dMm
+uYG
+xhn
+olG
+dSk
+sCz
+dTw
+iOD
abj
-aaa
+bCI
abj
+bCI
aaa
aaa
aaa
aaa
-adb
-ani
-anL
-aoo
-aoo
-aoo
-aoo
-aoo
-aoo
-aoo
-aoo
-alJ
-avO
-aIP
-aCl
-aCl
-aBt
-aIP
-aBt
-aDy
-qLZ
-aFu
-aGq
-aHC
-eFo
-aKj
-aLG
-aNc
-lnB
-aPR
-aRr
-aSW
-aUz
-aWa
-baF
-aEy
-bci
-eea
-bdC
-beZ
-bcd
-gKC
-bjj
-bkY
-bmU
-bmU
-iyv
-bmU
-bkY
-buR
-gKC
-baF
-cng
-bOC
-bCd
-bDO
-bFq
-bHe
-bIU
-bFq
-bMK
-bPY
-bDQ
-uIF
-rQd
-mcq
-bYj
-bZQ
-cbO
-cdC
-cfw
-cgZ
-cix
-ckk
-clG
-cnl
-cnl
-cnl
-cro
-csH
-ctH
-bZN
-cwP
-bYj
-cbC
-cdt
-cbC
-cDZ
-cEH
-cGu
-dBK
-cdt
-cbC
-cbC
-cdt
-cLZ
-ouO
-pUL
-vHg
-fOC
-awW
-wCE
-cKr
-mHX
-ets
-fos
-nxS
-cKE
-wOF
-wQF
-dkI
-dni
-dnm
-dru
-oYk
-uzr
-uzr
-vuN
-dvd
aaa
-dyE
-dzJ
-dAI
-dBx
-nxE
-dCL
-dFn
-dGO
-dFm
-dFW
-ude
-dHC
-dIx
-dJw
-dKe
-dKJ
-dSi
-dMh
-dMS
-dNI
-dOp
-dRu
-dPE
-dQi
-dQU
-dRu
-dRM
-dSe
-dUl
-dTn
-dTZ
-dUK
-dTX
-abj
-bCI
aaa
aaa
aaa
@@ -166990,13 +170836,13 @@ aaa
aaa
aaa
aaa
+"}
+(142,1,1) = {"
aaa
aaa
aaa
aaa
aaa
-"}
-(134,1,1) = {"
aaa
aaa
aaa
@@ -167026,193 +170872,188 @@ aaa
aaa
aaa
aaa
+acF
aaa
+abj
aaa
+asl
+auq
+amp
+axU
+ahC
+awX
+nlE
+nlE
+aGF
+nlE
+aMg
+ahC
+aQp
+amp
aaa
aaa
aaa
aaa
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-alW
-alW
-alW
-alW
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
acC
-ogf
-anK
-aoo
-aoT
-apL
-aqI
-arA
-asr
-hHp
-aoo
-asL
-axs
-ayo
-gWz
-axc
-aIN
-xqJ
-kze
-byM
-qLZ
-iwO
-aGr
-aHD
-xHA
-nqM
-aLH
-aNd
-lnB
-aVZ
-aRq
-aSX
-aUy
-aWb
-baF
-bch
-tGi
-beV
-bdE
-beU
-baF
-bhC
-buS
-bqk
-bmV
-gKC
-qmn
-iGu
-btD
-gCu
-bwb
-baF
-cjZ
-bOC
-bCg
-bDS
-ndS
-bHc
-bIT
-hRv
-bMG
-bPZ
-bOC
-vzN
-rQd
-lqn
-bYj
-bZR
-cbM
-bYj
-cfA
-cha
-ciz
-ckl
-clH
-cnn
-coz
-cpM
-crp
-csJ
-ctP
-cvr
-cbK
-bYj
-czG
-dRL
-cgT
-cdr
-cEI
-cGv
-czD
-dhJ
-cfn
-xqb
-cbC
-fNC
-cLZ
-lKQ
-jqb
-srA
-rsV
-fNC
-cKr
-daB
-cMi
-njF
-dff
-dkU
-dlT
-ieI
-dff
-dff
-dff
-dff
-dsw
-dsw
-dsw
-dsw
-dsw
-dxo
-oXC
-dzK
-dAV
-dBy
-dCM
-dDS
-dEa
-pLB
-dFm
-lKX
-dYC
-dPB
-dIx
-dIx
-dIx
-dKK
-dKK
-dIx
-dIx
-dIx
-dIx
-dJx
-dJx
-dJx
-dJx
-dJx
-dJx
-dJx
-dIx
-dTo
-dUa
-dUL
-dTX
+bmG
+btY
+ani
+byu
+bAy
+arG
+bFC
+arG
+arG
+bUc
+arG
+cei
+cTQ
+cnS
+cqW
+beW
+bgn
+big
+aDI
+clI
+aFA
+cXD
+cvT
+djc
+dpR
+dwh
+aJv
+aXF
+aXF
+dPP
+bCO
+epg
+aXF
+aXF
+fYR
+dwo
+gYJ
+oLF
+gfO
+iWC
+bKU
+kJm
+bhJ
+aYZ
+wVn
+ipW
+oBf
+luQ
aaa
-abj
+pBK
+jIv
+kfh
+lfA
+jUO
+rlm
+tIL
+ugf
+bJh
+bMY
+soL
+wXI
+bMY
+qlT
+bJh
aaa
+cks
+bOt
+pFF
+qjj
+mxb
+gQD
+loS
+tlg
+kRz
+dYk
+sKT
+wZF
+xfT
+iui
+jOE
+iBh
+rcA
+fYm
+cyf
+fYm
+fYm
+rcA
+cEb
+fgD
+vzv
+oqA
+bRo
+cMj
+jVx
+dkn
+bNH
+wId
+iVt
+hXm
+ohz
+cUZ
+pBD
+cYj
+wEb
+daF
+dfm
+wcO
+qbx
+qxY
+khT
+qxY
+kCV
+evO
+ykx
+doP
+drN
+vNU
+ykx
+wJK
+lmj
+xEf
+dxx
+ykx
+nte
+eKh
+uBY
+uBY
+nix
+jXe
+dFr
+uBY
+uBY
+eYh
+xQS
+pAn
+gwP
+dKo
+dIO
+wze
+dMW
+dPL
+dIO
+dKo
+cFy
+dmr
+uYG
+xhn
+kxD
+dSl
+dSM
+dUg
+iOD
+abj
bCI
aaa
+abj
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -167253,7 +171094,7 @@ aaa
aaa
aaa
"}
-(135,1,1) = {"
+(143,1,1) = {"
aaa
aaa
aaa
@@ -167280,7 +171121,6 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -167293,6 +171133,190 @@ acF
aaa
abj
aaa
+asl
+app
+ugW
+atq
+frq
+ahC
+ahC
+ahC
+ahC
+ahC
+ahC
+frq
+awU
+aUS
+aMt
+ugW
+aUI
+aaa
+acC
+aWw
+btZ
+bdF
+byE
+bkK
+aqQ
+apT
+aqQ
+aPt
+aMz
+atx
+bEN
+aWI
+ayj
+cqY
+beZ
+cBJ
+aUY
+aDI
+cOm
+aFA
+aFA
+aFA
+aFA
+aFA
+cYW
+cYW
+qiF
+qiF
+ggP
+cYW
+eqp
+qiF
+qiF
+aYZ
+aYZ
+aYZ
+aYZ
+wdz
+kCr
+wdz
+iGF
+aYZ
+bjt
+wVn
+ipW
+oag
+hHa
+abj
+bwf
+qcG
+byU
+byU
+bUt
+sQx
+nXe
+osE
+bJh
+vNo
+soL
+bKH
+soL
+soL
+bJh
+aaa
+cks
+cks
+cks
+cks
+cks
+cks
+cfD
+cks
+sgo
+ueQ
+oSv
+vCr
+eYY
+sYX
+rrz
+wrB
+pSF
+hgx
+lTb
+wMB
+czK
+vgP
+cCM
+xMi
+kKR
+fRt
+mDj
+oqA
+nMi
+gik
+oqA
+mDj
+pBD
+cVc
+pBD
+cVc
+rot
+cYk
+cZr
+vNZ
+dfm
+dfm
+dfm
+dxF
+sio
+dpY
+jhc
+dfm
+ykx
+mJJ
+mIZ
+vNZ
+ykx
+ykx
+tdA
+tdA
+ykx
+ykx
+mhL
+faL
+uBY
+mgP
+phR
+dXy
+phR
+dGe
+ukf
+eey
+tVC
+xNa
+gwP
+dKo
+dIO
+chO
+qsg
+wze
+dIO
+dKo
+cFy
+xNa
+rFi
+hax
+sme
+dSR
+dTi
+dUf
+iOD
+abj
+bCI
+aaa
+bCI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -167310,164 +171334,236 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(144,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acF
+aaa
abj
+aaa
+asl
+app
+ugW
+agh
+frq
+ahC
+jeA
+jeA
+jeA
+jeA
+aMm
+frq
+aRH
+aKI
+aZu
+aNx
+ugW
+aaa
acC
-adb
-ann
-wrm
-aoo
-aoU
-apM
-aqJ
-arB
-aqM
-atq
-aoo
-auS
-avW
-aty
-aty
-azg
-aty
-aty
-aty
-aDx
-qLZ
-iFw
-tVP
-aHE
-eFo
-aKl
-fZL
-aNe
-lnB
-aPT
-aOn
-aSV
-aUA
-aWc
-baF
-cPt
-bck
-bck
-bdA
-bfa
-baF
-bhD
-bjl
-bla
-baF
-bok
-bql
-bsd
-bgp
-buT
-baF
-baF
-btF
-bOC
-bCe
-bDQ
-bDQ
-bHf
-bIV
-bDQ
-bDQ
-bOC
-bQB
-bXy
-bYB
-chb
-bYn
-bYj
-bYj
-bYj
-bYk
-ctU
-ctW
-bYk
-bYj
-bYj
-bYj
-bYj
-bYj
-bYj
-bYj
-bYj
-bYj
-bYj
-cLZ
-cLZ
-cLZ
-cLZ
-cLZ
-cIz
-cHA
-cLZ
-cLZ
-gHY
-cdt
-cLW
-cbC
-uEZ
-cbC
-cbC
-kGg
-mnh
-cKr
-cZu
-cZy
-dde
-dff
-dgs
-die
-dkQ
-dlV
-dnk
-doJ
-dpQ
-dqf
-dsv
-dXk
-dvc
-dff
-dxp
-dyF
-dzL
-dAW
-dBz
-dCM
-dEa
-dDS
-pLB
-dFm
-fGj
-fGj
-dPB
-fGj
-kmD
-dKf
-dKL
-dKL
+aWw
+aYY
+bdG
+ojf
+bkX
+bOv
+aQy
+bsG
+bOO
+bAl
+bBG
+bEN
+bNz
+awb
+xPP
+xPP
+xPP
+xPP
+xPP
+cOn
+aDD
+cXQ
+xPP
+aGz
+cDp
+xPP
+xPP
+xPP
+xPP
+dQb
+deq
+bFI
+xPP
+xPP
+gat
+dCP
+dGw
+xPP
+xPP
+xPP
+xPP
+kKd
+xPP
+bcn
+wVn
+nqM
+hhH
+luQ
+aaa
+pCr
+jJO
+cEn
+cGm
+cHF
+mUz
+tJk
+oth
+bJh
+soL
+bMY
+dmz
+smb
+mHJ
+bJh
+aaa
+lEk
+lko
dXx
-dMT
-dNJ
-dOq
-dOV
-dPF
-dMk
-dQV
-dRv
-dRN
-dSf
-dIx
-dTp
-dUb
-dUM
-dTX
+bZY
+dDf
+dFe
+nab
+chh
+ciD
+ckq
+uvO
+pQg
+coA
+rFJ
+rrz
+qDm
+vgP
+cEd
+cCG
+cBj
+nmf
+xKd
+cCM
+cEQ
+qVp
+slb
+xUN
+xUN
+xQG
+xUN
+xUN
+xUN
+lZA
+xHs
+cTP
+xHs
+xHs
+xHs
+xHs
+ntS
+xUN
+dim
+fDj
+miw
+siH
+miw
+kQV
+mCD
+xUN
+uRI
+dql
+xHs
+xUN
+dim
+xUN
+xUN
+xUN
+ylQ
+xUN
+xpj
+xWm
+mjx
+dGR
+dGR
+mZk
+oeE
+nJD
+mUT
+mLJ
+rxx
+dTW
+xkm
+xNa
+dIO
+dIO
+dIO
+xNa
+dKo
+cFy
+sCQ
+uYG
+xhn
+xqX
+nkv
+iJa
+jtt
+iOD
abj
bCI
-aaa
+abj
bCI
aaa
aaa
@@ -167477,6 +171573,8 @@ aaa
aaa
aaa
aaa
+aae
+aaa
aaa
aaa
aaa
@@ -167510,7 +171608,7 @@ aaa
aaa
aaa
"}
-(136,1,1) = {"
+(145,1,1) = {"
aaa
aaa
aaa
@@ -167535,241 +171633,195 @@ aaa
aaa
aaa
aaa
-aoj
-dYY
-dYY
-dYY
-dYY
-dYY
-dYY
-dZi
-dYY
-dZm
aaa
-acF
aaa
-abj
aaa
aaa
aaa
aaa
aaa
aaa
+aaq
aaa
-aah
-aih
-aih
-aiQ
-aih
-aih
-aih
-aiQ
-aih
-aih
-alC
-abj
-amx
-nvF
-ani
-wrm
-aoo
-aoV
-apN
-aqL
-arC
-apM
-atr
-aoo
-alL
-awa
-moG
-amh
-qVc
-wMm
-amh
-moG
-aDy
-qLZ
-qVt
-aGs
-aHF
-eFo
-qXC
-aLI
-xsK
-lnB
-lnB
-aRs
-aSY
-aUB
-lnB
-baF
-bgp
-bcd
-bcd
-bdF
-baF
-baF
-bhE
-blb
-blb
-btH
-bol
-oyP
-dFf
-bSg
-jOo
-nyb
-bxl
-cHm
-cSu
-xou
-bDR
-bDR
-bHg
-cus
-bDR
-bDR
-bOD
-bSg
-byO
-eOv
-bWL
-jBO
-bZT
-jBO
-fBs
-jBO
-chc
-bWL
-jBO
-jBO
-jBO
-xKL
-unk
-hkk
-hkk
-hkk
-cvs
-ygC
-dNS
-hkk
-fnr
-hdh
-hkk
-unk
-cGx
-cHB
-ouL
-cLZ
-cbC
-cbC
-cLZ
-fNC
-oJF
-cdt
-clb
-rsV
-cLZ
-cKr
-epN
-cMi
-dkP
-dfg
-dgt
-dif
-kaX
-dkR
-dma
-dno
-doL
-dfi
-drz
-dsD
-dtY
-dff
-dwi
-dwi
-dwi
-dwi
-dwi
-cKr
-cKr
-cKr
-cKr
-cKr
-dfe
-dfe
-dHE
-pZH
-dJx
-jtr
-dKL
-dLs
-dMj
-dMU
-dNK
-dMU
-dOW
-dPG
-dQj
-dQW
-mIG
-dJx
-dKm
-dIx
-dTq
-dUc
-dUN
-dIx
-abj
-bCI
+acF
+aCb
abj
-bCI
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
+asm
+asm
+amp
+ayb
+ahC
+oqI
+aDM
+aFI
+aFI
+aFI
+aMn
+aOq
+ahC
+aqh
+aMu
+aNx
+ugW
aaa
-"}
-(137,1,1) = {"
+acC
+aWw
+buH
+bem
+ojf
+atB
+bOv
+aOr
+bOv
+bOR
+bAl
+bZH
+aTD
+aYP
+awc
+bcr
+bWv
+cnm
+cnm
+cnm
+cOs
+cnm
+cXT
+cnm
+djM
+dqq
+cnm
+cnm
+cnm
+cnm
+aOF
+deB
+eqC
+ejA
+fsw
+cnm
+cnm
+har
+cnm
+cnm
+ejA
+cdO
+kLZ
+ejA
+mhX
+bll
+nrz
+oah
+luQ
aaa
+pDh
+qcM
+kfi
+rpQ
+sot
+bDW
+nXE
+bDY
+bFz
+vPu
+qSG
+wYX
+bMQ
+rKr
+bJh
+abj
+lEk
+qnk
+tzR
+prr
+lzm
+tdC
+qAX
+chi
+lsQ
+mcY
+hIc
+hoT
+dTr
+dYi
+rrz
+djU
+vgP
+pri
+dbl
+cyk
+fYM
+cCH
+pEm
+cBA
+wfQ
+rlE
+viq
+viq
+vxe
+dWj
+viq
+viq
+viq
+pRB
+ogb
+doy
+pRB
+pRB
+pRB
+pRB
+pRB
+pRB
+pRB
+pRB
+doU
+pRB
+doy
+qVg
+pRB
+pRB
+pRB
+pRB
+pRB
+uQY
+qKO
+pRB
+fbl
+qVg
+pRB
+sAT
+hMh
+mhB
+xPa
+tkW
+dYo
+nWI
+hdV
+dZK
+rdn
+nnI
+kHS
+qBn
+fUb
+fUb
+pvm
+fUb
+fUb
+dro
+gds
+psj
+pBJ
+xhn
+gVK
+kpn
+dTD
+dXW
+wbZ
+abj
+abj
aaa
+bCI
aaa
aaa
aaa
@@ -167792,197 +171844,15 @@ aaa
aaa
aaa
aaa
-acw
-dYX
-dYZ
-dZc
-dZe
-dZe
-dZc
-dZb
-bff
-dZl
-dZm
-acF
aaa
-abj
aaa
aaa
aaa
aaa
aaa
aaa
-aah
-ahQ
-aii
-aiC
-aiR
-aiR
-ajz
-aiR
-aiR
-aiR
-ajz
-alD
-acC
-acC
-acC
-ani
-dyn
-aoo
-aoW
-apO
-aqK
-aqK
-apM
-ats
-aoo
-asM
-axw
-amh
-qVc
-aBx
-qVc
-qVc
-amh
-aDz
-aEv
-aFy
-aGt
-aHG
-aIR
-bqm
-bos
-bAq
-aOy
-buU
-aRt
-aSZ
-aUC
-iWO
-aXz
-iWO
-baK
-bcl
-bdG
-blc
-bgr
-bhF
-bjn
-hfk
-bmX
-bom
-bqn
-bse
-btE
-pqZ
-aQb
-muH
-byP
-buV
-bCf
-gkw
-bFs
-gkw
-gkw
-gkw
-gkw
-gkw
-jMm
-bSC
-rsK
-pqN
-rsK
-bZU
-rsK
-fnW
-rsK
-erb
-tAz
-rsK
-rsK
-rsK
-cge
-cpN
-crq
-vhD
-vhD
-vhD
-vhD
-vhD
-vhD
-vhD
-hzX
-vhD
-noj
-cGy
-nJZ
-ddm
-cLZ
-eEu
-cdt
-cLZ
-cRb
-opf
-fVX
-iJB
-kHs
-fSR
-cKr
-daC
-cMh
-dkP
-dfh
-dhN
-djp
-vnI
-dkS
-dmb
-dnp
-doM
-drv
-drA
-dsE
-dtZ
-dff
-dwj
-dxs
-dyI
-dzP
-dBd
-cKr
-dCO
-dEb
-dEL
-dGY
-dFZ
-dfe
-dPB
-lap
-dJx
-lFG
-dKL
-dLt
-dMk
-dMT
-dNJ
-dMT
-dOX
-dPH
-dQk
-dQX
-dKL
-dJx
-dSg
-dIx
-dIx
-dUd
-dIx
-dIx
-abj
aaa
aaa
-bCI
aaa
aaa
aaa
@@ -167994,6 +171864,8 @@ aaa
aaa
aaa
aaa
+"}
+(146,1,1) = {"
aaa
aaa
aaa
@@ -168023,20 +171895,190 @@ aaa
aaa
aaa
aaa
-"}
-(138,1,1) = {"
aaa
aaa
aaa
aaa
aaa
+acF
aaa
+abj
aaa
+asl
+app
+ugW
+ayi
+frq
+ahC
+nlE
+nlE
+nlE
+nlE
+aMr
+frq
+aRH
+aKM
+dfA
+aNx
+ugW
aaa
+acC
+aWw
+aYY
+wmW
+ojf
+aNp
+aNJ
+aOt
+bOv
+aPz
+bAl
+atA
+aTE
+byF
+awd
+ayW
+bYf
+cwd
+cwd
+cwd
+cwd
+cnn
+cjZ
+cwd
+aZb
+cwd
+cwd
+cwd
+dGH
+cwd
+dQr
+bCP
+cwd
+cwd
+fsz
+cwd
+cwd
+aZb
+cwd
+irD
+irD
+jDW
+irD
+fCi
+mid
+bnc
+ntG
+hhH
+luQ
aaa
+pDj
+nfb
+cEn
+cGm
+bUt
+cJl
+bCn
+ovT
+bJh
+vQn
+bMY
+wZo
+smb
+diX
+bJh
aaa
+lEk
+xWn
+oBA
+dBN
+xXP
+dFe
+dGN
+dIw
+tIK
+ckq
+oIf
+rZN
+oqN
+rFJ
+rrz
+lgh
+vgP
+lDo
+eYO
+cEs
+fZs
+jqk
+rSJ
+bAN
+cIU
+slb
+lTJ
+xUV
+xUV
+xUV
+gJw
+pgL
+pgL
+cWL
+dvk
+cVe
+cWL
+cWL
+upS
+cWL
+dca
+pgL
+pgL
+pgL
+pgL
+dnx
+fau
+szY
+uuu
+dJE
+uuu
+nOn
+qLt
+qfO
+hyT
+pgL
+aWP
+uVI
+pgL
+gGp
+xWm
+mjx
+ixy
+dGR
+dGR
+deN
+nJD
+dHN
+woF
+dJB
+woF
+sqO
+dKo
+dKo
+cJu
+dKo
+dKo
+dKo
+dKo
+jaQ
+xsI
+iAS
+oMx
+mrG
+izr
+dTy
+wbZ
aaa
+abj
aaa
+abj
aaa
aaa
aaa
@@ -168049,197 +172091,12 @@ aaa
aaa
aaa
aaa
-apB
-dYX
-dZb
-dZb
-dZb
-dZb
-dZb
-dZb
-dZb
-dZn
-dZp
-acF
-abj
-abj
aaa
aaa
aaa
aaa
aaa
aaa
-ahx
-ahR
-ahR
-ahR
-ahR
-ahR
-ahR
-ahR
-ahR
-ahR
-ahR
-alE
-alY
-iNk
-alY
-ani
-mDo
-aoo
-aoX
-apO
-aqM
-apM
-asr
-att
-aoo
-atM
-awa
-amh
-aBx
-azi
-aAt
-qVc
-wMm
-aDD
-aEJ
-aGM
-aGu
-aHH
-aHS
-aIU
-aLK
-aNg
-aOz
-aOz
-aRv
-aTa
-aUD
-aWd
-aXA
-aYY
-baL
-bcm
-bdH
-bfd
-bgs
-bhG
-bjo
-bld
-bmY
-bon
-bqo
-bsf
-cqm
-buW
-buW
-buW
-byQ
-buW
-bDG
-chB
-bFt
-bHi
-bIX
-bIX
-bIX
-bIX
-bSz
-bSD
-bUM
-bWM
-bWM
-bZV
-cbP
-bWM
-bWM
-dqE
-nKe
-ckm
-gpE
-hzp
-yeI
-cpO
-crr
-qui
-ctQ
-qui
-cwQ
-qui
-qui
-qui
-qui
-qui
-cEL
-cNB
-cHC
-ddn
-cLZ
-dfV
-cbC
-fNC
-cXX
-rTF
-fNC
-cLZ
-kSR
-ham
-cKr
-yjq
-cMi
-dkP
-dfi
-dhO
-djq
-wTQ
-dkT
-dmc
-dnq
-doN
-dqh
-drB
-dsF
-dua
-dvg
-dwk
-dxt
-dyJ
-dzQ
-dBe
-cKr
-cPj
-dFT
-dbS
-cPm
-cQw
-dfe
-dHG
-dIB
-dJx
-dKi
-dKL
-dLt
-dMj
-dMU
-dNK
-dOr
-dOW
-dPI
-dQk
-dKL
-dRw
-dJx
-dSh
-dIx
-dTr
-dUc
-dUO
-dIx
-abj
-bCI
-abj
-bCI
aaa
aaa
aaa
@@ -168264,6 +172121,8 @@ aaa
aaa
aaa
aaa
+"}
+(147,1,1) = {"
aaa
aaa
aaa
@@ -168280,8 +172139,6 @@ aaa
aaa
aaa
aaa
-"}
-(139,1,1) = {"
aaa
aaa
aaa
@@ -168298,205 +172155,198 @@ aaa
aaa
aaa
aaa
+aaq
aaa
+acF
+aaq
+abj
aaa
+asl
+app
+ugW
+atq
+frq
+ahC
+ahC
+ahC
+ahC
+ahC
+ahC
+frq
+aIJ
+aUS
+aMt
+ugW
+aDS
aaa
+acC
+aWw
+aYY
+beo
+aMz
+bAz
+awh
+apT
+awh
+bOS
+byE
+bZL
+bEN
+auz
+cnZ
+wXh
+ayr
+bFu
+wXh
+bFu
+bFu
+bFu
+deG
+cwC
+dfM
+dfM
+cFP
+dfM
+deG
+deG
+deG
+deG
+grq
+fgk
+cdV
+fgk
+grq
+grq
+grq
+fgk
+fjY
+jEw
+fgk
+grq
+mjf
+bnc
+jya
+hiB
+hHa
+abj
+bwf
+jOq
+byU
+byU
+bUt
+mUS
+bCo
+cMU
+bJh
+cSu
+soL
+bKN
+soL
+soL
+bJh
aaa
+pty
+pty
+pty
+pty
+pty
+pty
+hSo
+pty
+ciE
+gAS
+clP
+uPo
+oGK
+cbH
+rrz
+vjx
+pSF
+hgx
+pJV
+cBk
+fZE
+vgP
+cEN
+xcb
+gZr
+uzj
+xYU
+jWl
+jWl
+xYU
+cNI
+xYU
+jWl
+jWl
+xYU
+cYw
+uzj
+jcU
+rTW
+jcU
+dfv
+dfv
+njG
+eGn
+dfv
+dfv
+bty
+fUm
+doW
+qNW
+bty
+duk
+duk
+oof
+uAm
+duk
+duk
+duk
+uDa
+sAv
+uBY
+dCW
+reI
+oTc
+reI
+iZi
+ijj
+vBp
+jnX
+jnX
+jnX
+jnX
+jnX
+pZl
+eXW
+iPd
+jnX
+jnX
+jnX
+pZl
+xQY
+xhn
+vur
+qEK
+sCz
+dXK
+wbZ
+abj
+abj
aaa
+bCI
aaa
aaa
aaa
-aoO
-dYX
-dZa
-dZd
-dZd
-dZd
-dZh
-dZj
-dZk
-dZl
-dZo
-acF
aaa
-abj
aaa
aaa
aaa
aaa
aaa
aaa
-aai
-ahS
-aij
-aiD
-aiS
-aiS
-ajA
-aiS
-aiS
-aiS
-ajA
-alD
-acC
-acC
-acC
-ani
-anM
-aop
-aoY
-apP
-aqN
-arD
-aqN
-atu
-aoo
-atO
-awa
-wMm
-wMm
-azj
-aAu
-aBx
-wMm
-aDB
-aEx
-aFA
-aFA
-aHI
-aHY
-aFA
-bcA
-aFA
-aLU
-aLU
-aLU
-aTc
-aUE
-aLU
-aLU
-aYZ
-cjH
-bcn
-bdI
-aYZ
-aYZ
-bhH
-bjp
-bQc
-aYZ
-bor
-bqr
-bsg
-dFV
-bvV
-ocb
-ocb
-bwf
-uoW
-bCh
-bDT
-bFu
-bHj
-bHj
-bKE
-bKE
-bKE
-bHj
-bSE
-bUN
-cgE
-man
-man
-cbQ
-man
-ctE
-chd
-bSE
-bSE
-bSE
-bSE
-bSE
-cxO
-cBg
-csK
-csK
-csK
-csK
-csK
-csK
-csK
-csK
-csK
-cFp
-saY
-ddl
-cIV
-cLZ
-cLZ
-cNz
-ikA
-ikA
-ikA
-ikA
-ikA
-ikA
-ikA
-cKr
-dtS
-dbV
-ddy
-dfj
-dhP
-djr
-hna
-dzS
-dnn
-doK
-dqc
-dqf
-drC
-dsG
-dub
-dff
-dwl
-dxu
-dyK
-dVd
-dBf
-cKr
-dCP
-dFT
-nGr
-cNC
-dIC
-vFw
-dHH
-dKZ
-dXa
-dKj
-oDx
-dLu
-dKM
-dKM
-eWw
-dKM
-dOY
-dPJ
-dQl
-dQY
-dXI
-dJx
-dSi
-dSJ
-dTs
-dUc
-dSi
-dTX
-abj
-bCI
aaa
-bCI
aaa
aaa
aaa
@@ -168528,6 +172378,8 @@ aaa
aaa
aaa
aaa
+"}
+(148,1,1) = {"
aaa
aaa
aaa
@@ -168537,8 +172389,6 @@ aaa
aaa
aaa
aaa
-"}
-(140,1,1) = {"
aaa
aaa
aaa
@@ -168563,205 +172413,186 @@ aaa
aaa
aaa
aaa
-apC
-dYY
-dYY
-dYY
-dYY
-dYY
-dYY
-dYY
-dYY
-dZo
aaa
acF
aaa
abj
aaa
+asl
+auq
+amp
+axU
+ahC
+awX
+jeA
+jeA
+aGJ
+jeA
+aMP
+ahC
+aSA
+amp
aaa
aaa
aaa
aaa
+acC
+bni
+buK
+bvN
+anQ
+bAF
+aYP
+aqg
+aYP
+aYP
+aYP
+aYP
+avf
+axj
+bFu
+bcz
+ays
+tZI
+rxE
+cKZ
+cOv
+cQU
+deG
+bsF
+dfM
+blB
+dww
+dzE
+dGI
+cSb
+dQB
+deG
+aRC
+eYQ
+ftP
+dyd
+gDV
+grq
+hMY
+iso
+dPk
+jEJ
+dWH
+lyi
+fgk
+bnc
+jya
+kow
+luQ
aaa
+pET
+jPa
+kfh
+rtJ
+sqY
+rlm
+bCp
+cMY
+bJh
+bMY
+soL
+xbk
+bMY
+wMO
+bJh
aaa
-aai
-aih
-aih
-aiQ
-aih
-aih
-aih
-aiQ
-aih
-aih
-alF
-abj
-amy
-ajf
-ani
-anJ
-ahy
-aoZ
-apQ
-apQ
-arE
-ass
-atv
-aoo
-atR
-awa
-qVc
-aym
-azk
-aAv
-qVc
-amh
-aEw
-cgR
-aFA
-aGv
-baT
-aIS
-aKn
-aLL
-aFA
-aOA
-aPU
-aRw
-aTd
-aUF
-aWe
-aXB
-aZa
-baM
-bco
-bdJ
-bfe
-bgt
-bhI
-bjq
-blf
-aYZ
-bor
-bqr
-pMo
-dFV
-iBE
-iBE
-iBE
-bwf
-bAr
-bCi
-bDU
-bFv
-bHj
-bIY
-bKF
-bMM
-bOE
-bQE
-bSE
-bUO
-cgF
-cnW
-cnW
-cpf
-cnW
-cnW
-che
-bSE
-ckn
-clI
-cno
-bSE
-cpQ
-cry
-csK
-ctR
-cvt
-cwR
-cyd
-dzR
-cBe
-cCC
-csK
-cEM
-pTj
-icz
-dBD
-cKw
-cMd
-cNC
-cPg
-cRd
-cSm
-cKr
-cTU
-cVq
-cXb
-cKr
-day
-cMi
-dkP
-dfk
-dgu
-dig
-pMi
-dff
-dff
-dns
-dff
-dff
-dff
-dff
-dff
-dff
-dwm
-dxv
-dwi
-dwi
-dwi
-cKr
-dCQ
-cKy
-dEO
-dFp
-dGb
-dJy
-dHI
-dID
-dJz
-dKk
-dKN
-dLv
-dMl
-dMV
-dNL
-dOs
-dMl
-dPK
-dQm
-dKN
-dRy
-dRO
-dSj
-dSK
-dTt
-dUe
-dUP
-dTX
-aaa
-abj
-aaa
+pty
+ppQ
+iLo
+dBT
+dDj
+dFi
+oop
+cfH
+ufg
+dLb
+pkL
+mRi
+gdV
+hmS
+jRu
+oqa
+rVP
+cyg
+oqr
+cyg
+cyg
+rVP
+cCK
+hzk
+liV
+xYU
+dmH
+oOr
+ndm
+eHp
+fTC
+nxa
+oOr
+ndm
+nbA
+dws
+cWY
+owp
+jdp
+hlj
+dfv
+ddE
+wMY
+duT
+tIb
+dfv
+cQW
+qXv
+uuD
+dIL
+jTV
+duk
+gZC
+vbc
+rQT
+sZp
+eyi
+duk
+oRg
+nGg
+uBY
+uBY
+dEV
+dEV
+dEV
+uBY
+uBY
+sbq
+dIJ
+xxb
+dLD
+dIJ
+dAO
+vBp
+jnX
+oCD
+wbr
+mhS
+vcx
+vBp
+jnX
+oCD
+vur
+tYi
+mHs
+dTA
+iOD
+abj
+bCI
+abj
bCI
-aaa
-aaa
-aaZ
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -168794,8 +172625,6 @@ aaa
aaa
aaa
aaa
-"}
-(141,1,1) = {"
aaa
aaa
aaa
@@ -168806,6 +172635,8 @@ aaa
aaa
aaa
aaa
+"}
+(149,1,1) = {"
aaa
aaa
aaa
@@ -168831,9 +172662,7 @@ aaa
aaa
aaa
aaa
-acF
aaa
-abj
aaa
aaa
aaa
@@ -168842,175 +172671,186 @@ aaa
aaa
aaa
aaa
+acF
aaa
+abj
aaa
aaa
+auy
+aws
+aMt
+nhd
+aMt
+ugW
+ugW
+ugW
+ugW
+aMt
+nhd
+aMt
+aDS
aaa
aaa
aaa
aaa
+aSg
+bnj
+buO
+bvS
+aMT
+aNq
+boz
+arL
+bKc
+bKc
+byF
+bZN
+bEO
+chC
+bFu
+bFu
+bFu
+bFu
+bFu
+bFu
+cOw
+bFu
+deG
+dce
+aGD
+mME
+dwy
+bxv
+bxv
+dMs
+dQP
+dfM
+eqN
+blt
+bVd
+aNm
+gEq
+fgk
+hNt
+aNm
+aNm
+fVO
+aNm
+lAA
+fgk
+bnc
+jya
+kow
+luQ
aaa
+pFp
+qde
+bwc
+byU
+lVo
+sQS
+cKS
+cNb
+bJh
+vMe
+cWa
+xbr
+bMV
+gFX
+bJh
+abj
+pty
+ciJ
+nPN
+hLi
+unE
+sJO
+kiG
+pty
+qQz
+vjx
+uFX
+iqh
+uFX
+wrB
+rrz
+vjx
+vgP
+iwz
+rjT
+fCs
+gaE
+gFf
+rSJ
+xMi
+liV
+ixo
+oOr
+dFQ
+oQU
+cPy
+cPy
+cPy
+cPy
+oQU
+dFQ
+gDY
+rbh
+ckp
+ogy
+vpM
+dcc
+wSW
+eYT
+jhQ
+tXC
+dfv
+gzd
+fbF
+pAV
+uRQ
+qcF
+duk
+pem
+xmM
+rQT
+xGL
+jxO
+duk
+wEP
+woA
+oRg
aaa
+abj
aaa
abj
-acC
-adb
-lZy
-wrm
-aoo
-apa
-apR
-aqO
-arF
-aqN
-atu
-aoo
-auv
-awa
-amh
-wMm
-wMm
-aBx
-qVc
-amh
-aEC
-cgV
-aFA
-aGw
-aHK
-aIV
-aIX
-aLM
-aFA
-aOB
-aPV
-aRx
-aTe
-aUG
-aWf
-aXC
-aYZ
-baQ
-bcp
-bdK
-aYZ
-bIo
-bdQ
-bjr
-blg
-aYZ
-bRu
-bqr
-bsh
-dIH
aaa
+dIO
+dIO
+dIO
+dIO
+dIO
+dIO
+dIO
+xYF
+dIO
+xYF
+dIO
+dIO
+dIO
+dIO
+dIO
+xYF
+olG
+mle
+dSR
+jmR
+wbZ
abj
+bCI
aaa
-bwf
-bAs
-bCj
-bDV
-bFw
-bHj
-bIZ
-bKG
-bMN
-bKG
-bQF
-bSE
-bSE
-bWP
-bYp
-bZW
-bYp
-cdD
-bYp
-bSE
-bSE
-cko
-clJ
-cnp
-bSE
-pbM
-cry
-csK
-cBi
-cvA
-cye
-cye
-cye
-cCD
-cDO
-csK
-vzv
-pTj
-cHE
-cIX
-cKx
-cMe
-cMf
-cPo
-cRe
-cSn
-cTB
-cUY
-cVs
-cXc
-cYB
-daE
-dbW
-ddz
-dfl
-dfl
-dih
-djL
-dkV
-dfl
-dnt
-dfl
-drI
-dfl
-dfl
-dfl
-dvh
-dtT
-dxw
-dnt
-dXv
-dkV
-cKu
-dCR
-dEf
-dEP
-dFq
-dGc
-cQW
-dHJ
-hFm
-dJx
-dKh
-dKL
-dLw
-dMj
-dMU
-oXn
-dMU
-dMj
-dOr
-dQk
-dQX
-dLt
-dJx
-dSk
-dSL
-dTw
-dUh
-dYT
-dTX
aaa
-abj
aaa
-abj
aaa
aaa
aaa
@@ -169051,9 +172891,9 @@ aaa
aaa
aaa
aaa
-"}
-(142,1,1) = {"
aaa
+"}
+(150,1,1) = {"
aaa
aaa
aaa
@@ -169095,179 +172935,174 @@ abj
abj
abj
abj
+ala
+aGQ
+ala
abj
-uvC
-ahz
-uvC
+aaa
+aaa
abj
+ala
+aGQ
+ala
+abj
+abj
+abj
+abj
+abj
+acC
+aIl
+aZf
+wQV
+wQV
+aNu
+vVe
+aSc
+aOZ
+wQV
+wQV
+jWD
+cew
+jWD
+ayA
+cqZ
+bfl
+azs
+aAC
+bfl
+caI
+cnp
+csF
+dcq
+aGE
+dqv
+cGc
+cKb
+cOe
+cSe
+bAV
+dfr
+eqY
+bvA
+dtJ
+bOl
+bQu
+dGy
+hOi
+dLX
+dPo
+bju
+aNm
+dZg
+fjY
+bnc
+jya
+kow
+luQ
+aaa
+pFp
+jQa
+bwd
+rum
+lQL
+byU
+lSG
+cNe
+bJh
+bJh
+bJh
+bJh
+bJh
+bJh
+bJh
+aaa
+pty
+rBx
+qlP
+dCb
+cbY
+cdK
+cfj
+otO
+tIK
+vjx
+vjx
+dRW
+vjx
+cpW
+dWQ
+vDO
+pSF
+cCL
+cBn
+cyh
+sEp
+cBe
+rSJ
+cEe
+xuv
+lRh
+sdF
+wds
+udO
+heZ
+pDt
+sRA
+heZ
+kml
+rYG
+ddF
+cWQ
+cYn
+nqE
+vAj
+oqZ
+upx
+rlj
+kJV
+fqa
+suE
+jjT
+tHH
+doX
+drD
+dvm
+duk
+elv
+xZk
+rQT
+xFp
+xXm
+duk
+wEP
+oIw
+tkc
abj
abj
abj
-uvC
-asB
-uvC
abj
abj
abj
abj
abj
-acC
-anm
-ano
-aoo
-apb
-apS
-aqP
-arG
-ast
-atw
-aoo
-cTQ
-awa
-moG
-amh
-qVc
-wMm
-amh
-moG
-aDE
-cis
-aFA
-aGx
-aHL
-aIW
-fhd
-aLN
-aFA
-aOC
-aPX
-aPX
-aTg
-aPW
-aPW
-aXD
-aYZ
-bcs
-bcq
-bdL
-bfg
-dEv
-bhJ
-bjs
-blh
-aYZ
-bor
-bqr
-bsh
-dIH
-aaa
abj
aaa
-bwf
-bwf
-bCA
-bDW
-bwf
-bHj
-bJa
-bKI
-bMP
-bOG
-bQG
-bSE
-caQ
-bWQ
-bYq
-bZX
-cbS
-cdE
-cfC
-chf
-bSE
-bSE
-clK
-bSE
-bSE
-sKT
-cua
-ctX
-cvv
-cwS
-cyf
-cyf
-cyf
-cCE
-cEb
-csK
-cGY
-pTj
-cHF
-cIY
-cKy
-cMf
-cNE
-cPp
-dWj
-hXm
-cTN
-cUZ
-cWz
-cYj
-cTN
-daF
-dbR
-ddA
-cMe
-gkc
-dii
-djM
-dDp
-dme
-dvi
-doP
-drN
-doP
-dkW
-doP
-kIp
-doP
-dxx
-dyL
-dzT
-doP
-dBh
-dCS
-dEg
-dEQ
-dFr
-dGd
-dfe
-cFY
-eTq
-dJx
-dKg
-dKL
-dLx
-dMm
-dMW
-dNM
-dMW
-dMm
-dPL
-dMm
-dQZ
-dRz
-dRP
-dSl
-dSM
-dUg
-dUR
-dYT
-dTX
+aaa
+dIO
+iaa
+dIO
+iaa
+dIO
+abj
+abj
+abj
+dIO
+iaa
+lpd
+jLD
+lpd
abj
-bCI
aaa
-bCI
aaa
aaa
aaa
@@ -169308,14 +173143,18 @@ aaa
aaa
aaa
aaa
-"}
-(143,1,1) = {"
aaa
aaa
aaa
aaa
aaa
aaa
+"}
+(151,1,1) = {"
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -169346,185 +173185,157 @@ aaa
aaa
abj
abj
-aaa
+abj
aaa
abj
aaa
aaa
abj
aaa
-uvC
-frq
-uvC
-dfB
-uvC
-uvC
-dfB
-uvC
-frq
-uvC
+agi
+aBj
+ala
+ajN
+ala
+ala
+ajN
+ala
+aBj
+ala
aaa
abj
+aaq
aaa
aaa
+aSg
+aWw
+aZh
+wQV
+bgi
+aou
+api
+apZ
+asY
+btR
+wQV
+aSd
+bFb
+avb
+ayA
+crg
+cyH
+cBM
+cDt
+cLc
+cOx
+cnN
+cXU
+dcv
+cyP
+cyP
+koK
+cKj
+cKj
+dMG
+cZp
+dfM
+ese
+dpD
+cxC
+aNm
+gEw
+fgk
+dmp
+aNm
+bYg
+jES
+aUN
+dZg
+fjY
+bnc
+jya
+kow
+luQ
aaa
-adb
-ani
-crH
-aoo
-apc
-apT
-aqQ
-arG
-asu
-atx
-aoo
-auV
-ayj
-axb
-axc
-axc
-aUY
-axc
-axc
-bAm
-alL
-aFA
-aGy
-aHM
-nCH
-aIX
-aLO
-aFA
-aOD
-aPW
-aRy
-aTf
-aUH
-aPW
-aXE
-aYZ
-bct
-bcr
-bdM
-aYZ
-bJR
-bdQ
-bjt
-blj
-aYZ
-bop
-bqr
-bsh
-dIH
+pGI
+mPJ
+bwf
+bxn
+lVo
+byU
+nYp
+bHx
+bHx
+vQz
+wtu
+bKP
+bHx
aaa
abj
aaa
-bwf
-bAt
-bCl
-bDX
-bFx
-bHj
-bJb
-bKH
-bMO
-bOF
-gTw
-bSE
-bUQ
-bWR
-bYr
-bWR
-bYr
-bWR
-cfD
-chg
-ciC
-ckp
-clL
-bUT
-bSE
-cpQ
-rna
-csK
-cvw
-cwT
-cyq
-cyq
-cyq
-cCF
-cEc
-cEP
-cHD
-qGg
-cHG
-cIY
-cKy
-cMg
-cNF
-cPq
-cRf
-cSo
-cTC
-cVc
-cWH
-cYk
-cZr
-daG
-dbX
-ddv
-dfm
-dgv
-duc
-dxy
-dPv
-dxy
-ddv
-dIi
-dsu
-dgv
-lBK
-duc
-dvj
-dgv
-dxy
-dgv
-dzU
-ogb
-cKs
-dCT
-dEh
-dXy
-dFs
-dGe
-dfe
-tIP
-dIE
-dJx
-dKl
-dKL
-dLy
-dMn
-dMU
-oXn
-dOt
-dOZ
-dOr
-dMj
-dRa
-dRA
-dJx
-dSm
-dSN
-dUf
-dUQ
-dYU
-dIx
-abj
-bCI
+pty
+sKp
+iLo
+ubI
+clD
+xQz
+sHX
+pty
+mdd
+eQZ
+yfD
+uue
+fIG
+csV
+csV
+uzy
+csV
+csV
+csV
+csV
+csV
+csV
+muF
+xMi
+liV
+ixo
+jrm
+wTf
+oQU
+cPy
+cPy
+cPy
+cPy
+qUO
+wTf
+gDY
+jyF
+cYq
+tIQ
+ddH
+dcc
+ddJ
+vec
+ueo
+djS
+dfv
+vhR
+vkl
+dvr
+drE
+vlc
+duk
+nwH
+mzf
+dwu
+rvt
+pNk
+duk
+wGm
+wST
+sLi
+aaa
abj
-bCI
aaa
aaa
aaa
@@ -169534,9 +173345,19 @@ aaa
aaa
aaa
aaa
+dIO
+xYF
+dIO
+xYF
+dIO
aaa
aaa
aaa
+dIO
+xYF
+lpd
+mle
+lpd
aaa
aaa
aaa
@@ -169551,7 +173372,6 @@ aaa
aaa
aaa
aaa
-dWf
aaa
aaa
aaa
@@ -169565,8 +173385,6 @@ aaa
aaa
aaa
aaa
-"}
-(144,1,1) = {"
aaa
aaa
aaa
@@ -169588,6 +173406,8 @@ aaa
aaa
aaa
aaa
+"}
+(152,1,1) = {"
aaa
aaa
aaa
@@ -169601,187 +173421,208 @@ aaa
aaa
aaa
aaa
-adN
-dfB
-dfB
-dfB
-dfB
-uvC
-dfB
-dfB
-uvC
-uvC
-ahz
-uvC
-bft
-aiH
-aiX
-bhW
-uvC
-asB
-uvC
-uvC
-dfB
-dfB
-uvC
-dfB
-adb
-anp
-dyo
-aoo
-aoo
-aoo
-aoo
-apd
-aoo
-aoo
-aoo
-auW
-awb
-axd
-ayp
-azn
-dhy
-neg
-axd
-aDG
-aEz
-aFA
-aGz
-gLd
-aIY
-aKp
-aLP
-aFA
-aOE
-aRz
-aRz
-aRz
-aRz
-aRz
-aXF
-aYZ
-bcu
-bcv
-bcz
-aYZ
-bLP
-bdP
-bju
-blk
-aYZ
-bor
-wRT
-bsi
-bsv
-abj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aiE
+ajN
+ajN
+aiE
+ajN
+ala
+ajN
+ajN
+ala
+ala
+aGQ
+ala
+aDN
+aFT
+aGL
+aKd
+ala
+aGQ
+ala
+ala
+ajN
+ajN
+ala
+ajN
+aSf
+aWw
+aZh
+vVe
+kjn
+bAI
+apu
+bFD
+axm
+dmJ
+bUd
+bZO
+cfb
+bNA
+coi
+crh
+bWw
+aCx
+aEB
+tMi
+cOz
+coS
+deG
+bsW
+czo
+czo
+cGd
+bjy
+aZZ
+aNj
+deG
+deG
+oZz
+dpX
+aUL
+aNm
+brv
+grq
+ajP
+aNm
+aNm
+ekr
+aNm
+lCK
+grq
+myO
+jya
+obr
+hHa
abj
abj
-bwf
-bAu
-bCl
-bDX
-bFy
-bHj
-bJc
-bKK
-bMR
-bOI
-bQH
-bSE
-bUR
-bWS
-bYs
-bZY
-bYs
-bZY
-nab
-chh
-ciD
-ckq
-clM
-cnq
-coA
-cpR
-crv
-csK
-cvx
-cwU
-cwV
-cBj
-cBl
-cCG
-cEd
-cEQ
-cIf
-pTj
-icz
-dBD
-cKz
-cMh
-cNG
-cPr
-dWj
-wfI
-cTP
-cVd
-cZG
-cYl
-cTP
-cNL
-dia
-ddB
-dfn
-dfn
-dik
-dfn
-dnF
-dfn
-dnw
-dfn
-dql
-dql
-dql
-dud
-dxB
-dwn
-dql
-dql
-dql
-dqp
-cKr
-dfe
-dfe
-dfe
-dfe
-dfe
-dfe
-eUb
-nte
-dJx
-dTW
-dKr
-dKO
-dTW
-dTW
-oaG
-dJx
-dJx
-dTW
-dTW
-dTW
-dJx
-dJx
-dSr
-dIx
-dIx
-dIx
-dIx
-dIx
abj
+bwe
+bxo
+mge
+byU
+tLy
+bHx
+cPA
+rzU
+rzU
+xdE
+bHx
+bHx
+bHx
+bHx
+bST
+bST
+bST
+bST
+bST
+rIx
+rIx
+rIx
+rIx
+rIx
+rIx
+wwp
+nyp
+csV
+sOC
+oVT
+jXD
+jot
+cxb
+cyj
+czL
+csV
+vXL
+xMi
+liV
+xYU
+cHN
+cWR
+cKH
+gET
+cVy
+djJ
+cRg
+iBT
+iZE
+wsf
+cWS
+cYr
+pcM
+mQn
+dfv
+lQU
+kSU
+dit
+djT
+dfv
+cTu
+vSV
+dpb
+drF
+vlP
+vQJ
+dhN
+dhN
+xpQ
+xXq
+xXq
+fVT
+qdz
+qwb
+oRg
+aaa
abj
aaa
-bCI
+aaa
+lLm
+qpk
+xnH
+ubJ
+ubJ
+xnH
+kUB
+xnH
+hNA
+xnH
+jGz
+xnH
+ubJ
+ubJ
+ubJ
+xnH
+hNA
+kUB
+jyo
+xnH
+xnH
+xnH
+jMC
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -169823,7 +173664,22 @@ aaa
aaa
aaa
"}
-(145,1,1) = {"
+(153,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -169839,6 +173695,195 @@ aaa
aaa
aaa
aaa
+afR
+aho
+aho
+ajS
+alw
+ala
+apk
+awV
+asq
+auE
+awA
+awV
+awV
+awV
+awV
+awV
+awV
+awV
+aMY
+awV
+awV
+awA
+aZv
+asq
+awV
+bhq
+bjL
+bnm
+buP
+wQV
+byG
+aow
+apj
+aqa
+aqV
+arO
+wQV
+bZP
+bFq
+bNC
+ayA
+csn
+bWP
+cbE
+cdN
+cfd
+bmq
+coP
+csF
+cwE
+czp
+bwp
+czp
+czp
+aOH
+czp
+cZt
+uGH
+esq
+dpX
+bcw
+aNm
+gEA
+dGz
+hOs
+aNm
+iWO
+jFS
+aNm
+dZg
+fjY
+mAq
+nvk
+obu
+luQ
+aaa
+abj
+aaa
+pDj
+rwW
+cHJ
+byU
+tOA
+bHx
+uXX
+vSA
+qTP
+rzU
+deM
+hnW
+dDm
+bHx
+nlC
+dsz
+hPl
+wyQ
+bST
+xhR
+xhR
+dIC
+pPV
+nCm
+rIx
+jPB
+vjx
+csV
+tek
+vrH
+goP
+uKu
+goP
+czR
+tLr
+csV
+uLw
+kUz
+wnc
+tzJ
+jsJ
+lKU
+cKI
+kJY
+tUI
+jsJ
+rIV
+ead
+cgx
+rIV
+dDX
+lch
+pcV
+daN
+dfv
+dfv
+dfv
+dfv
+dfv
+dfv
+uuY
+dAY
+dpc
+uST
+vmn
+duk
+fkh
+rbs
+xlL
+dwv
+cXM
+duk
+wEP
+oIw
+lMj
+abj
+abj
+aaa
+tzQ
+uWb
+xVr
+iCB
+rqW
+rqW
+tXR
+xVr
+tae
+dKu
+elx
+dKu
+xtH
+xtH
+xtH
+xtH
+nai
+qMP
+xVr
+dXQ
+ruH
+vOc
+pJp
+xVr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -169856,191 +173901,10 @@ aaa
aaa
aaa
aaa
-add
-adw
-adw
-aad
-aey
-uvC
-afc
-nhd
-cgK
-aeO
-nhd
-oqI
-nhd
-aig
-aip
-aip
-aip
-aip
-aip
-aip
-aip
-als
-alx
-iOH
-aip
-amz
-ang
-anq
-anO
-aon
-bOv
-bOv
-amP
-arH
-bAl
-bAl
-bAl
-auX
-awc
-aDI
-aDI
-aDI
-aDI
-aDI
-aDI
-aDI
-aEA
-aFA
-aFA
-aHO
-aFA
-aKq
-aFA
-aFA
-aOF
-aPZ
-aRA
-bpt
-bpt
-aPZ
-aXG
-aYZ
-aYZ
-aYZ
-aYZ
-aYZ
-bLR
-bdQ
-bjv
-bll
-bmZ
-bor
-bqr
-bsh
-dIH
aaa
-abj
aaa
-bwf
-bAv
-bCm
-bDY
-bFz
-bHj
-bJd
-bKJ
-bMQ
-bOH
-bQI
-bSF
-bUS
-bWT
-bYt
-bZZ
-cbT
-cdF
-bYt
-chi
-bZZ
-ckr
-clN
-cnr
-bSE
-cpQ
-crw
-csK
-cvw
-cwW
-czI
-czI
-czI
-cCH
-cEr
-cER
-cIT
-pTj
-icz
-dBD
-cKA
-cMi
-cNG
-cPr
-dkn
-cSp
-hbY
-cVr
-cTR
-cTR
-cTR
-cZv
-daH
-ddC
-dfn
-dim
-div
-dmf
-doy
-doT
-doU
-dqj
-dql
-dsJ
-duj
-dwq
-mgS
-dyM
-dzV
-dCZ
-dGn
-dqp
-dCH
-dGV
-qNY
-dES
-oRe
-hws
-oRe
-dHL
-dIF
-dEz
-fAT
-xkm
-dLA
-dMo
-dQo
-fUb
-dOv
-dPb
-dPY
-dQo
-dRl
-knF
-dSo
-jFc
-dTh
-dXW
-dWz
-dWG
-dWH
-dYQ
-acF
aaa
-abj
aaa
-bCI
aaa
aaa
aaa
@@ -170056,6 +173920,8 @@ aaa
aaa
aaa
aaa
+"}
+(154,1,1) = {"
aaa
aaa
aaa
@@ -170079,8 +173945,6 @@ aaa
aaa
aaa
aaa
-"}
-(146,1,1) = {"
aaa
aaa
aaa
@@ -170088,10 +173952,186 @@ aaa
aaa
aaa
aaa
+afT
+ahf
+aiL
+agN
+ahs
+aml
+aps
+aqY
+asr
+auJ
+aPf
+ayo
+aPf
+aPf
+aDO
+ayK
+aPf
+aPf
+aDR
+aPf
+aPf
+aUU
+aPf
+aPf
+aPf
+bht
+bjO
+bnM
+buR
+wQV
+wQV
+wQV
+wQV
+wQV
+wQV
+wQV
+asD
+bBH
+bFq
+bNC
+ayA
+bSK
+bXh
+cbE
+aUJ
+blQ
+boc
+coR
+deG
+deG
+dfM
+dfM
+dfM
+deG
+deG
+dfM
+dfM
+dWl
+esu
+cNJ
+aUN
+aNm
+dZg
+aZd
+hOs
+aNm
+bYg
+jGR
+aNm
+dZg
+fjY
+bnc
+jya
+kow
+luQ
aaa
+abj
aaa
+bwf
+bwf
+byV
+bFV
+tOB
+owP
+uYe
+bHs
+daR
+xdT
+sxJ
+kqK
+suL
+irG
+vbO
+gtD
+bYW
+nFC
+bST
+xhR
+xhR
+ocR
+mDc
+jNa
+cuN
+rDP
+ium
+nsl
+kNe
+ktg
+ixi
+mEG
+yio
+cyl
+czO
+cBr
+cUy
+dBZ
+cIU
+cTV
+mtz
+dEm
+dDn
+mBa
+bge
+cTV
+mfz
+erl
+rcy
+cVA
+cID
+oJO
+pen
+pCL
+qfb
+dfy
+rlp
+dgC
+diu
+sIX
+hfR
+tIh
+dnD
+doY
+vnS
+duk
+wkt
+xmM
+ylJ
+xGL
+xWx
+duk
+wEP
+oIw
+oRg
aaa
+abj
aaa
+tzQ
+uWb
+ubJ
+jSb
+jSb
+dnK
+rqW
+ubJ
+xtH
+dKu
+xtH
+dKu
+xtH
+xtH
+xtH
+xtH
+xtH
+xcF
+dUr
+dXQ
+dXQ
+dXQ
+wRu
+ubJ
aaa
aaa
aaa
@@ -170113,191 +174153,9 @@ aaa
aaa
aaa
aaa
-ade
-adx
-adO
-aed
-aez
-aeP
-mmo
-cGW
-qbv
-fHj
-qbv
-qbv
-qbv
-ahU
-qbv
-naz
-qbv
-bTU
-ajB
-dfA
-dfA
-dfA
-dfA
-dfA
-dfA
-mKM
-amL
-wmW
-ojf
-aos
-aos
-aos
-aos
-aos
-aos
-aos
-aos
-auY
-awd
-ayW
-ayq
-azo
-aBu
-aCw
-aCu
-aDI
-cjZ
-aFA
-aGA
-gLd
-bqI
-aKr
-aQt
-aNh
-aXG
-aXG
-aXG
-aXG
-aXG
-aXG
-aXH
-aZb
-baR
-aZa
-bdN
-bfj
-bgy
-bdP
-akk
-blm
-bmZ
-boq
-bqq
-bsh
-dIH
aaa
-abj
aaa
-bwf
-bwf
-bCn
-bDZ
-bFA
-bHl
-bJe
-bKL
-bMS
-bOJ
-bQJ
-bSE
-sxJ
-bWU
-bWU
-bWU
-cbU
-cdG
-bWU
-bWU
-bWU
-bWU
-clO
-cns
-coB
-cpS
-crx
-cup
-cvy
-cwX
-cyf
-cyf
-cyf
-cCI
-cEs
-csK
-cIU
-pkQ
-icz
-cIZ
-cKB
-cMj
-cNH
-cPr
-dWj
-cWL
-cTR
-cVe
-cWM
-cYm
-cZs
-daI
-dca
-ddj
-dfn
-din
-djO
-dnx
-dPA
-dnx
-doV
-dqk
-sdF
-dsK
-dvk
-dwr
-dzW
-kZZ
-kZZ
-dEn
-mkm
-duZ
-dBi
-dCV
-ohC
-mZA
-tmI
-ohC
-mZA
-dHM
-dIG
-dJB
-dKn
-icL
-dLz
-dMp
-dMZ
-uIi
-kNk
-gwP
-dMZ
-dMZ
-dPM
-sqO
-nBz
-dSs
-dSP
-dTy
-dSP
-dSP
-dVp
-abj
-abj
aaa
-bCI
-abj
-bCI
aaa
aaa
aaa
@@ -170319,6 +174177,8 @@ aaa
aaa
aaa
aaa
+"}
+(155,1,1) = {"
aaa
aaa
aaa
@@ -170336,8 +174196,6 @@ aaa
aaa
aaa
aaa
-"}
-(147,1,1) = {"
aaa
aaa
aaa
@@ -170351,10 +174209,187 @@ aaa
aaa
aaa
aaa
+afV
+aho
+aho
+ajU
+ahv
+ala
+apF
+aNA
+aka
+apw
+aNA
+atr
+aBl
+aNA
+aDP
+aNA
+aNA
+aNA
+aNc
+aNA
+aSZ
+aWb
+aZA
+aNA
+aBl
+bhv
+aSh
+bnO
+aZi
+jWD
+bBH
+bkY
+aNK
+aqc
+aQz
+arP
+aQz
+bbl
+bFv
+bNC
+ayA
+csv
+bXB
+azv
+aWp
+aZe
+bol
+coS
+dmq
+dcw
+aGI
+byX
+sCy
+dAo
+dGL
+bzP
+dQR
+dfU
+aRJ
+dpX
+aNm
+aNm
+gFd
+fgk
+hOs
+aNm
+aNm
+dUs
+aNm
+lCN
+fgk
+bnc
+jya
+kow
+luQ
aaa
+abj
aaa
+bwf
+ryp
+lUP
+byW
+tDN
+bHx
+uYX
+qTP
+qUL
+xfH
+xQx
+bOQ
+vFl
+bHx
+jVF
+xYq
+bRe
+cag
+bIn
+gTj
+nhD
+qmF
+ciL
+jSs
+rIx
+glT
+vjx
+csV
+tsS
+hkF
+gEE
+cvF
+nsw
+taw
+cBu
+csV
+rSJ
+xMi
+liV
+tOf
+upW
+vgF
+mfL
+cIE
+cVz
+jsJ
+mbJ
+sln
+xik
+rpM
+iHV
+xte
+pen
+rcy
+qfg
+mJO
+jru
+rLZ
+gwY
+vge
+szd
+ekW
+uxS
+cZn
+vom
+duk
+elv
+xZk
+xpv
+xFp
+xXm
+duk
+wEP
+jIo
+oRg
aaa
+abj
aaa
+tzQ
+uWb
+ubJ
+pYf
+cZU
+uoL
+hfg
+ubJ
+xtH
+dKu
+dKu
+dKu
+dKu
+dKu
+dKu
+dKu
+dKu
+xcF
+ubJ
+dTK
+dXQ
+dXQ
+gSN
+hEh
+jMC
aaa
aaa
aaa
@@ -170370,191 +174405,9 @@ aaa
aaa
aaa
aaa
-adf
-adw
-adw
-aae
-aeA
-uvC
-afj
-lRv
-ugW
-agh
-lRv
-cew
-lRv
-lRv
-lRv
-lRv
-lRv
-bVY
-ajY
-uAc
-uAc
-alt
-aly
-oPZ
-uAc
-amB
-amM
-anr
-anP
-aos
-ape
-apV
-aqR
-arJ
-asw
-atz
-aos
-auz
-ayl
-aDI
-ayr
-azp
-aAD
-aYV
-bpY
-bAn
-clx
-aFA
-aGB
-qGO
-aJo
-aKs
-wXh
-aXG
-dxk
-dxn
-aRB
-brt
-bxL
-aXG
-aXG
-aXG
-aPW
-bcx
-guX
-xeQ
-wPh
-xeQ
-seM
-blo
-kWc
-xGa
-tiH
-bsh
-dIH
aaa
-abj
aaa
-bwg
-bAw
-bCo
-bEa
-bFB
-bHm
-bJf
-bKM
-bMT
-bOK
-bRb
-bSG
-bUU
-bWV
-bYu
-caa
-bSG
-cdH
-cfE
-chj
-ciE
-cks
-clP
-cnt
-bSG
-cpT
-cry
-csK
-cvz
-cxQ
-cBf
-cBk
-cBf
-cCJ
-cEN
-csK
-cES
-pTj
-icz
-dBD
-cKC
-cMk
-cNI
-cPs
-cMf
-cSr
-cTS
-cVt
-cWX
-cYw
-cZz
-daJ
-xYU
-ddD
-dfp
-diq
-djP
-dny
-dla
-dny
-doW
-dqo
-sdF
-dsL
-dvl
-dui
-fki
-tjf
-dzX
-sqI
-dGT
-dqp
-nSo
-dCW
-uBY
-uBY
-uBY
-uBY
-uBY
-uBY
-uBY
-dJC
-dLC
-ryO
-dLC
-dMq
-dKo
-dKo
-pZl
-dKo
-dKo
-dKo
-dKo
-rEK
-dRR
-qEK
-dSP
-dXK
-dUj
-dUT
-dVp
-abj
-bCI
-abj
-bCI
aaa
-bCI
aaa
aaa
aaa
@@ -170581,6 +174434,8 @@ aaa
aaa
aaa
aaa
+"}
+(156,1,1) = {"
aaa
aaa
aaa
@@ -170593,8 +174448,6 @@ aaa
aaa
aaa
aaa
-"}
-(148,1,1) = {"
aaa
aaa
aaa
@@ -170615,7 +174468,189 @@ aaa
aaa
aaa
aaa
+irJ
+agO
+irJ
+irJ
+irJ
+irJ
+aod
+irJ
+asb
+auB
+avd
+ayQ
+aEc
+ayQ
+ayQ
+aKg
+vsN
+avi
+wkB
+aWk
+wkB
+bcQ
+bey
+bhN
+wkB
+aWD
+aZm
+jWD
+byM
+bAM
+bEg
+bFE
+atE
+bEg
+bEg
+atE
+cfo
+chX
+ayA
+csC
+aBU
+azw
+cDC
+aEF
+bon
+coS
+dmq
+dcE
+aBS
+aBS
+aBS
+aBS
+aBS
+aBS
+bZI
+dWp
+dmp
+dpX
+aNm
+aNm
+gFN
+cnx
+bYg
+aNm
+aNm
+fVO
+aNm
+lCV
+fgk
+bnc
+jya
+obB
+hHa
+abj
+abj
+abj
+bwf
+ryt
+lVo
+mjs
+bCr
+bHx
+bFJ
+rzU
+rzU
+bLc
+sxO
+bQf
+vHg
+bHx
+xwX
+xZv
+tvY
+sxk
+ijp
+kFe
+nhD
+hHd
+hhQ
+kKx
+tLh
+qFx
+iMi
+csV
+csS
+hRw
+dZA
+eyU
+hkF
+cyn
+czQ
+csV
+cCQ
+xMi
+liV
+tOf
+cRh
+ang
+cPz
+kMl
+lnt
+lKm
+tmB
+sDY
+dcR
+mkg
+aSE
+mkg
+pFE
+xik
+ggC
+krY
+mWR
+rMN
+smu
+sIX
+tkf
+vOa
+xUv
+dpa
+dnE
+duk
+ccl
+kOF
+mwq
+xGL
+jiq
+duk
+wGm
+oIw
+lMj
+abj
+abj
aaa
+cxp
+cxp
+xVr
+wHF
+tla
+uoL
+jJM
+xVr
+xtH
+dKu
+xtH
+xtH
+xtH
+xtH
+xtH
+xtH
+xtH
+xcF
+ubJ
+dTK
+dXQ
+dXQ
+wRu
+hEh
+wMx
+xnH
+ubJ
+xnH
+jMC
aaa
aaa
aaa
@@ -170629,187 +174664,7 @@ aaa
aaa
aaa
aaa
-adN
-dfB
-dfB
-dfB
-dfB
-uvC
-dfB
-dfB
-uvC
-uvC
-ahA
-uvC
-jeA
-aiI
-aiI
-blu
-uvC
-ahA
-uvC
-uvC
-dfB
-dfB
-uvC
-dfB
-amN
-ani
-wrm
-aot
-apf
-aqg
-aqS
-arK
-asx
-atA
-avf
-axj
-awf
-aDI
-ays
-cHS
-aAB
-baC
-aEO
-aDI
-cng
-aFA
-aGC
-aHN
-aIZ
-aKs
-wXh
-aXG
-aXG
-fqD
-aRC
-rxE
-aUI
-tZI
-aXG
-aXG
-aPW
-bdT
-bdQ
-bfk
-bgA
-bhQ
-bju
-bln
-aZa
-bor
-bqr
-bsj
-bsv
-abj
-abj
-abj
-bwe
-bAx
-bCp
-bEb
-bFC
-bwf
-bJg
-bKN
-bMU
-bKN
-bHj
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-cpU
-crz
-csK
-cDs
-cvB
-dbl
-cyg
-cwY
-cBm
-cCK
-csK
-cET
-pTj
-icz
-dBD
-cKD
-dkn
-cNG
-cPr
-dWj
-ise
-cTR
-cVu
-cWY
-cYx
-cZA
-daK
-cWZ
-ddE
-dfn
-diq
-dio
-djQ
-dla
-djQ
-dio
-dIL
-dqn
-dsM
-cPf
-dws
-dvo
-dyO
-dAa
-dtN
-mCu
-dyP
-dBC
-mjx
-uBY
-dET
-dFu
-dGh
-dGP
-dHN
-uBY
-emo
-dLD
-xxb
-dLD
-dMq
-mNt
-pvb
-xKE
-dPd
-pvb
-dKo
-dNa
-xxb
-dRU
-dSu
-dTi
-dTA
-dUk
-dUU
-dVq
-abj
-abj
aaa
-bCI
aaa
aaa
aaa
@@ -170836,6 +174691,8 @@ aaa
aaa
aaa
aaa
+"}
+(157,1,1) = {"
aaa
aaa
aaa
@@ -170850,8 +174707,6 @@ aaa
aaa
aaa
aaa
-"}
-(149,1,1) = {"
aaa
aaa
aaa
@@ -170870,9 +174725,189 @@ aaa
aaa
aaa
aaa
+abj
aaa
+irJ
+ajz
+apN
+amJ
+aEe
+akz
+irJ
+afN
+rqF
+aQg
+aEi
+aza
+aza
+aKi
+aNd
+wkB
+aTu
+aLo
+aMB
+aNB
+beC
+bhP
+aGM
+boG
+aZx
+jWD
+byN
+aww
+aww
+dZf
+aww
+kri
+kri
+sjs
+aww
+avg
+ayA
+ctC
+bXM
+hlT
+aCv
+aBF
+bop
+cpC
+dmq
+dcF
+aBS
+aBS
+aBS
+aBS
+cOh
+cSf
+bBp
+dfU
+bFR
+bHS
+bjz
+gbW
+gFQ
+grq
+hPr
+bYg
+iXh
+jHF
+bjz
+lDx
+fki
+ivV
+jya
+kow
+luQ
aaa
+abj
aaa
+bwf
+rlm
+lVo
+mjs
+cKT
+bHx
+uZv
+pPK
+cWi
+bKV
+sxZ
+tYL
+dmF
+bHx
+has
+xZw
+bYx
+dCe
+bIn
+caE
+nhD
+dIF
+wqt
+kKx
+clU
+uhk
+pbQ
+csV
+csV
+gBA
+dZB
+ezi
+czP
+fEr
+xnT
+csV
+vlh
+hwz
+cIU
+dAf
+jrJ
+cJf
+xOD
+cVD
+lof
+lKU
+iTe
+sZT
+vtu
+tsB
+stC
+gra
+goz
+fBp
+fBp
+qGO
+rnS
+pMj
+uRL
+dfy
+dfy
+oRg
+oRg
+duk
+duk
+duk
+mhI
+haJ
+hQK
+xFp
+xXm
+duk
+wEP
+oIw
+fdc
+aaa
+abj
+aaa
+tzQ
+uWb
+xVr
+dYf
+tla
+guk
+jSb
+nNm
+dKu
+dKu
+ads
+xtH
+vwV
+xtH
+xtH
+xtH
+ads
+xcF
+ubJ
+dTK
+dXQ
+dXQ
+wRu
+xVr
+hRq
+riW
+jCT
+lHk
+xVr
aaa
aaa
aaa
@@ -170886,187 +174921,20 @@ aaa
aaa
aaa
aaa
-abj
-abj
-abj
aaa
-abj
aaa
aaa
-abj
aaa
-uvC
-frq
-uvC
-dfB
-uvC
-uvC
-dfB
-uvC
-frq
-uvC
aaa
-abj
aaa
aaa
aaa
-adb
-ani
-wrm
-aos
-apg
-apX
-aqT
-arL
-asy
-atB
-aos
-aYP
-coi
-aDI
-ayt
-azr
-aKc
-baI
-bqa
-aDI
-cng
-aFA
-aGD
-aHP
-mME
-aKs
-aTp
-aXG
-aXG
-fqD
-aRD
-aTh
-aUJ
-tZI
-aXG
-aXG
-byh
-aYZ
-bdR
-bgv
-bgB
-bhR
-bjw
-bnc
-bmZ
-bor
-bqr
-bsh
-dIH
aaa
-bwc
-jAa
-bwf
-bAy
-bCl
-bDU
-bFD
-bHj
-bHj
-bKO
-bMV
-bOM
-bHj
-rkS
-bSE
aaa
-bYv
-cab
-cbW
-cdI
-cfF
-chk
-ciF
-bYv
aaa
aaa
-tPv
-cpV
-cry
-csK
-csK
-cvC
-csK
-csK
-csK
-csK
-csK
-csK
-cEU
-pTj
-oOr
-cIY
-cKE
-cMe
-cNI
-cPs
-cMf
-cSs
-cTT
-cVv
-rbh
-cYy
-cZB
-daL
-dcb
-ddG
-dfs
-dir
-dip
-djQ
-dlb
-djQ
-dip
-dqo
-sdF
-cMK
-cPh
-mjY
-oRM
-tjf
-dzX
-dFw
-dHR
-dqp
-fEe
-gIW
-uBY
-dEU
-dFv
-dGi
-dGQ
-dHO
-dII
-lec
-xYF
-lIF
-dLG
-dMq
-dRG
-dIO
-dIO
-dIO
-dRG
-dKo
-dNN
-iAS
-dRT
-dSt
-dSR
-dTB
-dWA
-dUV
-dVq
aaa
-abj
aaa
-abj
aaa
aaa
aaa
@@ -171080,6 +174948,8 @@ aaa
aaa
aaa
aaa
+"}
+(158,1,1) = {"
aaa
aaa
aaa
@@ -171107,16 +174977,194 @@ aaa
aaa
aaa
aaa
-"}
-(150,1,1) = {"
aaa
aaa
aaa
aaa
aaa
+bvh
+aaa
+ajQ
+alQ
+aqf
+ara
+asE
+alQ
+pNr
+tfE
+rqF
+aHO
+aue
+azj
+aHf
+bgw
+pEY
+aHG
+bkQ
+aWB
+aMC
+aDf
+aOG
+aQi
+wkB
+jWD
+jWD
+jWD
+byO
+aww
+boF
+lzH
+bth
+lzH
+bro
+bZV
+aww
+bNF
+ayA
+ayA
+bXN
+azx
+ayA
+cfe
+aCA
+ayA
+dmq
+dcN
+cAv
+aBS
+aBS
+dAt
+dGP
+dmq
+bBM
+dWD
+dmq
+bHW
+ftZ
+dmq
+cqB
+cqB
+dXb
+bYq
+dXb
+jJr
+dXb
+cqB
+cqB
+mAs
+jya
+kow
+luQ
+aaa
+abj
aaa
+bwf
+bwf
+lXs
+sRr
+bwf
+bHx
+vbL
+bHv
+wvL
+xgb
+dfj
+bST
+bST
+bST
+bST
+dxg
+dAE
+cai
+bIn
+cdP
+xLa
+kxK
+uek
+ckw
+rIx
+cny
+vjx
+cqd
+csV
+csU
+cug
+cvH
+crG
+lWj
+czR
+gHM
+cCT
+xMi
+liV
+qMm
+gTx
+nEb
+cKM
+kMm
+cXj
+cZE
+cRj
+sZT
+vtu
+rcy
+yff
+sZT
+vpP
+tsB
+bNE
+mJO
+rna
+ilv
+dkY
+lNc
+dfy
+npH
+dqi
+duk
+wFU
+duh
+mcf
+swV
+dvu
+xGL
+jxO
+duk
+seJ
+woA
+oRg
aaa
+abj
aaa
+tzQ
+uWb
+ubJ
+gHg
+meR
+pvW
+pvW
+nNm
+dKu
+dKu
+xnH
+ubJ
+xnH
+ubJ
+xnH
+ubJ
+xnH
+gYd
+xVr
+muD
+dXQ
+eDX
+oOq
+xVr
+dVr
+rAb
+rAb
+btO
+ubJ
aaa
aaa
aaa
@@ -171145,185 +175193,11 @@ aaa
aaa
aaa
aaa
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-uvC
-ahA
-uvC
-abj
aaa
aaa
-abj
-uvC
-ahA
-uvC
-abj
-abj
-abj
-abj
-abj
-acC
-ogf
-anK
-aos
-aos
-aqi
-aot
-arQ
-asz
-aos
-aos
-moG
-ayw
-aDI
-aDI
-azs
-aAC
-baJ
-aFQ
-aDI
-cng
-aFA
-aGE
-aHN
-aJa
-aKs
-aVQ
-aXG
-aXG
-aXG
-aRE
-bvA
-bvA
-aXG
-aXG
-aXG
-aPW
-bfl
-bdQ
-bfm
-bhN
-bli
-bju
-bne
-bmZ
-bor
-bqr
-bsh
-dIH
aaa
-bwd
-bxm
-byR
-byU
-bCl
-bDU
-bFy
-bHn
-bJh
-bJh
-bJh
-bJh
-bJh
-bJh
-bJh
aaa
-bYv
-cac
-cbY
-cdK
-cfj
-cfH
-ciG
-ckt
-abj
-abj
-coC
-cpW
-crA
-csN
-abj
-abj
-cwZ
-cyh
-czJ
-cBn
-cCL
-cEe
-vzv
-pTj
-icz
-cJa
-dxP
-dkn
-kka
-wTf
-fRw
-djJ
-cTF
-cVw
-cWQ
-cYn
-cWZ
-cWZ
-oqZ
-ddF
-dfn
-diq
-djR
-djQ
-dla
-djQ
-doX
-drD
-dsH
-owl
-dvm
-xZk
-hEM
-xZk
-eji
-dyR
-dzY
-dqp
-dBM
-gIW
-uBY
-dEV
-dVx
-dGj
-dGR
-dHP
-dIJ
-pfE
-fKf
-dRG
-dLG
-dMq
-dIO
-dNO
-dXF
-dPe
-dIO
-dKo
-dNN
-dRG
-lpd
-dSt
-dSS
-dTC
-dUm
-dUW
-dVq
-abj
-abj
aaa
-bCI
aaa
aaa
aaa
@@ -171331,6 +175205,8 @@ aaa
aaa
aaa
aaa
+"}
+(159,1,1) = {"
aaa
aaa
aaa
@@ -171363,12 +175239,189 @@ aaa
aaa
aaa
aaa
+bvh
aaa
-"}
-(151,1,1) = {"
+ajQ
+ahE
+amu
+amN
+alp
+ahE
+pNr
+ayw
+aBn
+aBX
+axE
+azl
+ask
+bgw
+aEb
+aHG
+wXd
+aLu
+aAI
+alb
+aEl
+aQs
+aGO
+boH
+aZz
+ans
+byS
+aww
+bEk
+bFH
+rRs
+aCo
+arb
+bZX
+kri
+bNF
+dmq
+ctF
+bXO
+bgq
+bdh
+blR
+bot
+bqn
+aDL
+dcY
+cAw
+cYL
+cYL
+dAP
+dGQ
+qnc
+dQV
+aQf
+esN
+bHX
+aUO
+aZk
+dCQ
+dGS
+hPC
+dMu
+jbf
+dUw
+dWR
+lFj
+cqB
+ivV
+jya
+kow
+luQ
aaa
+abj
aaa
+bwf
+mMQ
+srd
+sRH
+mMQ
+bHx
+vcb
+pUb
+pUb
+rzU
+pEo
+bST
+bQN
+bSN
+rVS
+ybx
+dAF
+caj
+bIn
+fwt
+nhD
+rIZ
+ciR
+dOh
+jbO
+jPB
+vjx
+cqe
+csV
+xgy
+fEC
+czV
+fay
+mRF
+czS
+gIb
+cCT
+rvX
+cIU
+xIo
+jrU
+cPE
+cVK
+cXg
+cMp
+jsJ
+hog
+sZT
+vtu
+psE
+dcm
+eyu
+vpP
+rcy
+tfK
+mJO
+hUf
+dgT
+diy
+dlf
+dfy
+wvS
+kTg
+duk
+yko
+gHb
+acr
+fMo
+dvt
+xFp
+xXm
+duk
+wEP
+oIw
+lMj
+abj
+abj
aaa
+cxp
+cxp
+xVr
+tXR
+agU
+djY
+waY
+xVr
+gBj
+dKu
+qnL
+pGw
+uQO
+pGw
+pDP
+pGw
+qnL
+wfN
+hEh
+xnH
+dUr
+ubJ
+xnH
+yal
+ldV
+kYh
+ldV
+gOF
+ubJ
aaa
aaa
aaa
@@ -171402,185 +175455,23 @@ aaa
aaa
aaa
aaa
-acF
aaa
-abj
aaa
aaa
-agi
-agD
-agS
-ahB
-agS
-agF
-agF
-agF
-agF
-agS
-ahB
-agS
-akW
aaa
aaa
aaa
aaa
-adb
-ann
-anQ
-aou
-api
-apZ
-aqU
-asA
-asY
-asY
-awh
-avb
-awi
-axf
-aDI
-aCp
-aAD
-aKc
-bqb
-aDI
-cng
-aFA
-aGF
-aHQ
-aMg
-aKs
-wXh
-bjB
-bnb
-aXG
-aRG
-bvC
-aUK
-aWj
-aXI
-bxX
-bRq
-bfo
-bdS
-bfn
-ajV
-bfn
-bjx
-bQy
-bmZ
-bor
-bqr
-bsh
-dIH
+"}
+(160,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
-bwd
-bxn
-byS
-byU
-bCl
-bEc
-bFE
-bHo
-bJh
-bKP
-bMW
-bOO
-bQK
-bSH
-bJh
-abj
-bYv
-cad
-cbX
-cdJ
-cfG
-chl
-ciH
-bYv
-tPv
-tPv
-tPv
-cpX
-crB
-tPv
-ctZ
-csN
-cxa
-cyi
-czK
-cBo
-cCM
-cEf
-vzv
-pTj
-icz
-dBD
-cKG
-dWj
-cNK
-ddu
-dkn
-djJ
-cTT
-cVx
-cWR
-cYq
-ddr
-daM
-dcc
-ddH
-dfn
-dis
-djS
-djS
-djS
-djS
-djS
-drE
-sdF
-duf
-dvr
-dxz
-dXr
-dyQ
-dAb
-neU
-dzZ
-dqp
-fEe
-gIW
-uBY
-dEW
-dFx
-dGk
-dGS
-dHQ
-uBY
-ewS
-xYF
-elx
-dLG
-dMq
-dIO
-dNP
-dOw
-wPK
-dIO
-dKo
-dNN
-rcp
-dRT
-dSB
-dST
-dTD
-dUn
-dUX
-dVp
-abj
-bCI
-abj
-bCI
aaa
aaa
aaa
@@ -171603,6 +175494,193 @@ aaa
aaa
aaa
aaa
+bCI
+aaa
+bvh
+abj
+irJ
+aiC
+amt
+amR
+aoe
+apy
+irJ
+ayZ
+avt
+vEw
+axE
+aqF
+asg
+bgw
+tpv
+aHG
+axD
+ayH
+aMF
+aCU
+alG
+aFV
+wkB
+bbl
+lQG
+aww
+aww
+sjs
+bEn
+aqu
+lzH
+asX
+bFc
+bZZ
+sjs
+bNF
+dmq
+ctI
+cyN
+azy
+aAK
+aBS
+cAQ
+aBS
+aBS
+aBS
+cAQ
+aEM
+aBS
+dAX
+aBS
+cSh
+daa
+dWF
+dmu
+eZs
+aUP
+dzh
+dXb
+haX
+hQr
+isv
+dnW
+jJN
+dWY
+lHc
+gAB
+hpc
+gkQ
+kow
+oCX
+vPO
+vPO
+vPO
+bwf
+cFK
+lVo
+mjs
+nZz
+bHx
+vcw
+pVM
+cWo
+rEq
+sBl
+bST
+klL
+tjK
+bST
+eDn
+dAU
+cak
+bIn
+qOt
+nhD
+cfO
+qyg
+ckx
+rIx
+jPB
+vjx
+sgX
+csV
+vTI
+dZC
+ezv
+hkF
+cyp
+rPU
+gIb
+cCT
+hCR
+cIU
+jIF
+jgf
+vsM
+cUe
+cSL
+cVP
+cZE
+vRl
+pzO
+vtu
+rcy
+oUQ
+sZT
+pKY
+jOB
+kTm
+dfy
+lqF
+dgH
+diz
+dmk
+dfy
+bCk
+oRg
+duk
+kTu
+drP
+dsP
+pXX
+dvu
+xHa
+faG
+duk
+cET
+hXL
+fdc
+aaa
+abj
+aaa
+tzQ
+uWb
+tNI
+xnH
+xnH
+xnH
+xnH
+vDA
+wpK
+dKu
+dKu
+dKu
+dKu
+dKu
+dKu
+dKu
+dKu
+xcF
+mzT
+xcF
+dKu
+dKu
+hbc
+mcy
+kYh
+kYh
+ldV
+qjn
+ubJ
+aaa
+aaa
aaa
aaa
aaa
@@ -171621,8 +175699,6 @@ aaa
aaa
aaa
aaa
-"}
-(152,1,1) = {"
aaa
aaa
aaa
@@ -171643,6 +175719,8 @@ aaa
aaa
aaa
aaa
+"}
+(161,1,1) = {"
aaa
aaa
aaa
@@ -171659,193 +175737,205 @@ aaa
aaa
aaa
aaa
-acF
aaa
-abj
aaa
-aee
-agj
-agE
-agT
-ahC
-nlE
-ail
-ail
-aiU
-ail
-aPf
-ahC
-akw
-agE
aaa
aaa
aaa
aaa
-acC
-vVe
-anR
-aov
-apu
-dAH
-dAH
-dmJ
-dAH
-dAH
-dAH
-dAH
-awj
-axg
-aAI
-azt
-aEB
-tMi
-aCx
-aDI
-cjZ
-aFA
-aGG
-aHR
-aJb
-bjy
-aZZ
-aNj
-bnO
-bpn
-oZz
-bwF
-aUL
-bjB
-brv
-aZc
-ajP
-bzx
-bdO
-ekr
-bPR
-bdP
-bdQ
-fVO
-aYZ
-bor
-bqr
-bsh
-dIH
aaa
-bwe
-bxo
-byT
-bAz
-bCq
-bEd
-bFF
-bHp
-bJh
-bMY
-bMX
-bOP
-bMY
-bSI
-bJh
aaa
-bYv
-cae
-cbW
-cdL
-cfI
-chm
-ciI
-cku
-clQ
-cnu
-coD
-cpY
-crC
-csO
-cua
-cvD
-cxb
-cyj
-czL
-cyj
-cyj
-cxb
-cEV
-cGz
-oKl
-dBD
-cKH
-dxP
-cNL
-cPv
-cRg
-cSv
-cTR
-cVy
-cWS
-cYr
-cTR
-mQn
-dbU
-lQU
-dfo
-dit
-djT
-dnz
-dnz
-dnz
-dpb
-drF
-dqp
-vQJ
-dwo
-tci
-dqp
-dyT
-dBO
-dFy
-dQq
-dqp
-rnv
-dVj
-uBY
-uBY
-oey
-dGl
-tJg
-uBY
-uBY
-dXC
-xYF
-nxC
-dLG
-dMq
-dIO
-dNQ
-dOx
-hNA
-dIO
-dKo
-dNN
-dRH
-dRT
-dSt
-dSU
-dTE
-dUo
-dUY
-dVp
-abj
-bCI
aaa
-abj
aaa
aaa
aaa
aaa
aaa
+bCI
+abj
+bvh
aaa
+ajQ
+alQ
+amu
+spK
+alq
+alS
+pNr
+tfE
+rqF
+rqF
+uGF
+azl
+ask
+bgw
+aNf
+wkB
+aTx
+avm
+aAY
+aDf
+aEr
+aGa
+wkB
+aJC
+lQG
+aww
+anu
+blq
+bFc
+bru
+bto
+bFc
+mBj
+cae
+bFG
+ciu
+cor
+bsX
+bXP
+azz
+bkS
+aBS
+cAQ
+aBS
+aBS
+aBS
+cAQ
+aJg
+aBS
+aBS
+aBS
+cSh
+daa
+dgE
+aRO
+dqd
+aUQ
+aWq
+aXP
+dlc
+cwr
+dML
+bdY
+dUy
+dnW
+bgE
+bjE
+mAF
+nwn
+obR
+klj
+oSO
+oSO
+qdg
+bwf
+kZv
+srI
+mYf
+mPJ
+bHx
+bHx
+bHx
+bHx
+bHx
+bHx
+bST
+bST
+bST
+bST
+bST
+bST
+bST
+bIn
+bIn
+bIn
+qEd
+rIx
+rIx
+rIx
+bGh
+wMn
+csV
+csV
+csV
+csV
+csV
+csV
+csV
+csV
+csV
+hhg
+ntV
+geP
+jsJ
+jsJ
+jWq
+cVI
+cXh
+lor
+lLV
+tEh
+sZT
+vtu
+xik
+wjo
+xte
+vpP
+rcy
+gsN
+dfy
+dfy
+xhp
+dfy
+dfy
+dfy
+lqP
+wCS
+duk
+duk
+duk
+duk
+oof
+dvv
+duk
+duk
+duk
+fKF
+oIw
+oRg
aaa
+abj
aaa
+tzQ
+uWb
+tNI
+xnH
+xnH
+xnH
+xnH
+vDA
+xtH
+dKu
+dKu
+dKu
+dKu
+dKu
+dKu
+dKu
+dKu
+xcF
+mzT
+ddg
+dKu
+dKu
+rKX
+mcy
+kYh
+kYh
+ldV
+xFN
+ubJ
aaa
aaa
aaa
@@ -171878,8 +175968,6 @@ aaa
aaa
aaa
aaa
-"}
-(153,1,1) = {"
aaa
aaa
aaa
@@ -171888,6 +175976,8 @@ aaa
aaa
aaa
aaa
+"}
+(162,1,1) = {"
aaa
aaa
aaa
@@ -171916,185 +176006,193 @@ aaa
aaa
aaa
aaa
-acF
aaa
-abj
aaa
-aee
-agk
-agF
-agU
-ahD
-ahC
-ahC
-ahC
-ahC
-ahC
-ahC
-ahD
-akx
-akX
-agS
-agF
-akW
+bCI
aaa
-acC
-ani
-anS
-aow
-apj
-aqa
-aqV
-arO
-aqV
-aqe
-apk
-avc
-awk
-axh
-ayv
-aCq
-aKd
-uCS
-dXz
-aDI
-aHX
-aFA
-aFA
-aFA
-aFA
-aFA
-aLU
-aLU
-aOH
-uGH
-aXR
-aLU
-bcw
-aOH
-aOH
-aLU
-aLU
-aYZ
-aYZ
-bgI
-bRG
-dZg
-frp
-cEK
-bna
-bor
-bqr
-dFU
-bsv
abj
-bwf
-bxp
-byU
-byU
-bCr
-bEe
-bFG
-bHq
-bJh
-bKR
-bMX
-bON
-bMX
-bMX
-bJh
aaa
-bYv
-bYv
-bYv
-bYv
-bYv
-bYv
-ciJ
-bYv
-cXF
-jPB
-ckv
-cpZ
-cue
-csP
-cub
-cvE
-cwZ
-cyk
-czM
-cBp
-cCN
-cxa
-vzv
-pTj
-cHH
-cJb
-cKI
-dBD
-cNM
-cPw
-dBD
-cKI
-cTR
-cVz
-cTR
-cVz
-hbY
-daN
-dce
-ddJ
-dfo
-dfo
-dfo
-dnB
-doR
-doR
-dpc
-dfo
-dqp
-drK
-dce
-ddJ
-dqp
-dqp
-qyC
-qyC
-dqp
-dqp
-dBH
-dCX
-uBY
-dVw
-dWI
-dGm
-dWL
-dWM
-dIK
-dJD
-fKf
-dRG
-dLG
-dMq
-dIO
-sak
-vcy
-dNQ
-dIO
-dKo
-dNN
-dRG
-lpd
-dXJ
-dSP
-dUv
-dUp
-toY
-dVp
+ajQ
+ahE
+aiT
+dfu
+dsI
+alT
+amw
+azf
+avj
+avj
+wBq
+aqF
+asg
+bgw
+aNg
+wkB
+wkB
+ayI
+wkB
+aDn
+aEt
+wkB
+wkB
+bpg
+bax
+kri
+bza
+bBF
+aCo
+brO
+arb
+mBj
+lzH
+cah
+aww
+ciC
+cor
+ctS
+bXS
+azC
+bkU
+aBI
+cOF
+bOI
+cYL
+dda
+djV
+dqw
+aBS
+dAZ
+aBS
+cSh
+daa
+aBS
+aBS
+bHY
+aBS
+aWr
+dXb
+ckE
+bbe
+dOf
+dOf
+dUH
+dWZ
+sIy
+gAB
+hpc
+ifK
+kow
+dfk
+pXO
+pXO
+pXO
+qwA
+rBg
+sss
+sUd
+tPe
+cNB
+pXO
+pXO
+pXO
+dbr
+dfk
+wML
+ofr
+wML
+xxi
+hAu
+puJ
+wML
+dDv
+wML
+ntK
+wML
+wML
+wML
+dPX
+ugX
+tdn
+cBw
+cvG
+cBw
+sno
+cvK
+cxe
+cBw
+czW
+cBw
+cBw
+rus
+eyq
+nCp
+jsJ
+jWA
+cKP
+cSO
+cUb
+cPF
+gsG
+xte
+mJK
+vtu
+hIA
+vtu
+rjK
+xik
+rpM
+vzW
+ofJ
+ulb
+pgx
+dmn
+dqt
+pgA
+pgx
+psQ
+lLn
+pgx
+dsR
+dum
+nGy
+aSY
+qfe
+wAb
+wEP
+oIw
+lMj
+abj
abj
-bCI
aaa
-bCI
+cxp
+cxp
+xVr
+dHW
+hzT
+nIB
+hvz
+xVr
+gBj
+dKu
+vWa
+wSC
+neN
+wSC
+iuA
+wSC
+vWa
+fFQ
+tNI
+xnH
+ijz
+ijz
+xnH
+yal
+ldV
+dVz
+ldV
+eQR
+ubJ
aaa
aaa
aaa
@@ -172136,18 +176234,7 @@ aaa
aaa
aaa
"}
-(154,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+(163,1,1) = {"
aaa
aaa
aaa
@@ -172173,194 +176260,200 @@ aaa
aaa
aaa
aaa
-acF
aaa
-abj
aaa
-aee
-agk
-agF
-agV
-ahD
-ahC
-aim
-aim
-aim
-aim
-ajD
-ahD
-aky
-akY
-alv
-alH
-agF
aaa
-acC
-ani
-anT
-aoy
-dzv
-aqb
-aqW
-rVy
-asD
-atC
-dAY
-axF
-awk
-ayx
-byN
-aBC
-aBC
-aBC
-aBC
-aBC
-aED
-aFB
-aGH
-aBC
-aBC
-aKt
-aBC
-aBC
-aBC
-aBC
-aRI
-cNJ
-aDJ
-aBC
-aBC
-aZd
-baU
-imD
-aBC
-aBC
-aBC
-bhO
-aBC
-cHy
-dEw
-dEK
-bqs
-bsk
-dIH
aaa
-bwg
-bxq
-byV
-bFV
-bCs
-bEf
-bFI
-bHs
-bJh
-bMX
-bMY
-bOT
-bQL
-bSJ
-bJh
aaa
-bYw
-caf
-cca
-cdM
-cfJ
-chn
-ciK
-jpv
-clS
-cnw
-ium
-cqa
-crE
-csQ
-cue
-cvE
-cxa
-cyl
-czO
-cBr
-cCO
-cEg
-vzv
-glh
-cHI
-dEj
-cKJ
-cKJ
-cNN
-dDn
-cKJ
-cKJ
-cTV
-cVA
-cVA
-cVA
-cVA
-cVA
-cVA
-gxI
-cKJ
-dgC
-diu
-dnC
-doS
-doS
-dnD
-doY
-cKJ
-drL
-cVA
-cVA
-cKJ
-dgC
-cKJ
-cKJ
-cKJ
-vsp
-cPx
-dDb
-dIM
-dEY
-dFz
-wmB
-dGU
-dHS
-dXm
-pcr
-tZN
-tzX
-dLH
-dMr
-dRG
-dIO
-dIO
-dIO
-dRG
-dKo
-dNN
-xSf
-dRT
-dSt
-dSR
-dTF
-dUq
-dUZ
-dVp
-abj
bCI
abj
-bCI
-aaa
+dZq
aaa
+irJ
+akl
+aqq
+aqq
+bfq
+hrW
+irJ
+azp
+aBn
+aBX
+axE
+azl
+ask
+aEw
+aQg
+aHJ
+aTy
+aLE
+aBd
+aQg
+beN
+aGm
+vsN
+bph
+anj
+kri
+bzu
+aNv
+bro
+nUw
+qZe
+mBj
+mBj
+cal
+bFK
+avk
+bPD
+bUf
+ayD
+azB
+bkV
+aCf
+cOR
+cRm
+bDG
+ddh
+bDG
+dqP
+dwX
+cRm
+bDG
+dMI
+dRg
+bDG
+bDG
+aTm
+aBS
+bOz
+cqB
+bRv
+baY
+bYz
+bcB
+cex
+bea
+lIJ
+cqB
+ivV
+glw
+ivL
+hKm
+cGx
+kkd
+qgl
+kkd
+kkd
+stl
+nak
+nPA
+ugl
+kkd
+kkd
+kkd
+kkd
+hKm
+ros
+roe
+trg
+pCY
+hHs
+pXv
+hHs
+hHs
+hHs
+stf
+hHs
+hHs
+hHs
+ncb
+pGQ
+dTz
+mgb
+rai
+ydj
+wPQ
+wPQ
+lTQ
+wPQ
+esJ
+wPQ
+wPQ
+cEk
+vFy
+xZT
+tOf
+eIV
+krI
+cTZ
+cXp
+cZI
+dgO
+mTO
+pIZ
+rwH
+nfa
+fNx
+rxv
+nMD
+nMD
+xcu
+rch
+kpF
+smD
+jIn
+bpq
+mKb
+smD
+dph
+bpq
+dFx
+smD
+smD
+pAT
+jAt
+reA
+wrQ
+iWJ
+mZc
+oRg
aaa
+abj
aaa
+tzQ
+uWb
+ubJ
+gXq
+oWB
+fUh
+tQh
+pNt
+dKu
+dKu
+xnH
+ubJ
+xnH
+ubJ
+xnH
+ubJ
+xnH
+pZQ
+xVr
+aHZ
+vOe
+wTX
+pGq
+xVr
+eix
+pXo
+pXo
+qDH
+ubJ
aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -172392,13 +176485,13 @@ aaa
aaa
aaa
aaa
-"}
-(155,1,1) = {"
aaa
aaa
aaa
aaa
aaa
+"}
+(164,1,1) = {"
aaa
aaa
aaa
@@ -172429,186 +176522,191 @@ aaa
aaa
aaa
aaa
+bCI
aaa
-acF
-abj
+bvh
abj
+irJ
+amx
+aeK
+aeK
+pgG
+irJ
+irJ
+aOx
+avt
+vEw
+axE
+aqF
+asg
+rqF
+rqF
+aHO
+aTC
+aWC
+aBe
+bdi
+aEw
+aGq
+vsN
+bpn
+bax
+kri
+rvG
+rRs
+bBK
+bru
+aPc
+aPJ
+bUk
+caK
+bGs
+lPb
+dmq
+cua
+bYJ
+aBS
+aBS
+aBS
+aCE
+bEl
+csH
+aBS
+aBS
+aBS
+cGk
+aBS
+aBS
+cSh
+daa
+aBS
+aBS
+bHY
+aUT
+gdQ
+cqB
+cqB
+dXb
+xnC
+dQu
+jJV
+dXb
+cqB
+cqB
+ivV
+nwK
+ivV
+bNc
+bOX
+uXz
+uXz
+qwW
+uXz
+lZa
+ndS
+odl
+uXz
+uXz
+uXz
+uXz
+xgz
+bNc
+tmc
+clX
+wMU
+xHe
+bWW
+qOs
+xHe
+qBE
+xHe
+vzE
+xHe
+oGV
+xHe
+geP
+vFy
+vFy
+oRS
+cCX
+vFy
+vFy
+cvM
+cxf
+vFy
+xhC
+vFy
+vFy
+gVn
+skZ
+pbX
+dzf
+pfD
+cKR
+cMr
+cXs
+jsJ
+dix
+vrx
+rcy
+iTi
+ogY
+xKC
+jnW
+tsB
+wJy
+oRe
+wWK
+vQX
+wWK
+dsT
+dlg
+wWK
+wWK
+vQX
+wWK
+wWK
+dlg
+wNc
+dvx
+xHM
+lIC
+wAb
+wGm
+woA
+oRg
aaa
-afM
-afM
-agE
-agW
-ahC
-ahW
-ain
-aiG
-aiG
-aiG
-ajE
-aka
-ahC
-akZ
-alw
-alH
-agF
-aaa
-acC
-ani
-anU
-aoz
-dzv
-aqc
-aqW
-arP
-aqW
-atD
-dAY
-axX
-awm
-nNm
-aBj
-azv
-aAG
-aCy
-aCy
-aCy
-aEE
-aCy
-aGI
-aCy
-sCy
-aKu
-aCy
-aCy
-aCy
-aCy
-aRJ
-aTj
-aCy
-aWk
-aXJ
-aZe
-aCy
-aCy
-aCy
-aCy
-bgz
-bhP
-aCy
-cQX
-bMa
-bot
-bqt
-bsl
-dIH
-aaa
-bwh
-bxr
-byW
-byW
-bCt
-bEg
-bFH
-bHr
-bJi
-bKT
-bMZ
-bOQ
-bQM
-bSK
-bJh
-abj
-bYw
-cag
-ccb
-cdN
-cfK
-cho
-ciL
-iLo
-clT
-cnx
-jlY
-cqb
-crF
-csR
-cud
-cvF
-cxa
-cym
-czN
-cBq
-cCP
-cEh
-cEW
-cGA
-cHJ
-dEl
-cKK
-cKK
-cNO
-cPy
-cKK
-cKK
-cKK
-cVB
-cKK
-lch
-cKK
-cKK
-cKK
-cKK
-cKK
-cKK
-doZ
-djU
-cKK
-cKK
-lch
-doZ
-cKK
-cKK
-cKK
-cKK
-cKK
-dwt
-cKK
-cKK
-esu
-cKK
-dBP
-dDc
-dPu
-dEZ
-utY
-dWK
-utY
-dHT
-dXn
-rho
-sSH
-kMC
-dLI
-rDM
-uoL
-uoL
-pdE
-uoL
-uoL
-dKo
-dNa
-hFU
-dRU
-dSD
-dSV
-dTG
-dUr
-dVa
-dVq
-abj
abj
aaa
-bCI
+tzQ
+uWb
+xVr
+rlK
+oWB
+tGV
+iLS
+pNt
+dKu
+dKu
+vNl
+xtH
+qhS
+xtH
+xtH
+xtH
+vNl
+dKu
+xVr
+xtH
+mll
+xcF
+tqj
+xVr
+dVs
+lWh
+qLa
+uuw
+xVr
aaa
aaa
aaa
@@ -172650,11 +176748,7 @@ aaa
aaa
aaa
"}
-(156,1,1) = {"
-aaa
-aaa
-aaa
-aaa
+(165,1,1) = {"
aaa
aaa
aaa
@@ -172687,185 +176781,189 @@ aaa
aaa
aaa
aaa
-acF
+dZq
aaa
+irJ
+agl
+akW
+akQ
+asF
+pNr
+afN
+azr
+rqF
+awW
+aEj
+azl
+ask
+rqF
+rqF
+rqF
+rqF
+aLG
+rqF
+rqF
+rqF
+aQv
+vsN
+bBH
+bax
+aww
+bzS
+blO
+lzH
+nUw
+aNv
+mBj
+mBj
+lzH
+bGs
+bNF
+dmq
+axq
+bYJ
+tiq
+uAf
+bAk
+aCF
+dmq
+cOy
+bxD
+cBg
+bAk
+cGk
+cKU
+cBg
+cSh
+daa
+dgU
+aRO
+bHY
+dEc
+gem
+cqB
+hcZ
+bbb
+bYA
+dSs
+ceA
+chf
+aZj
+cqB
+hHa
+hHa
+luQ
+vPO
+cxP
+vPO
+vPO
+klj
+klj
+vKJ
+vKJ
+pgF
+vKJ
+pgF
+vKJ
+pgF
+vKJ
+vKJ
+fFz
+vHA
+wNR
+xyp
+ydS
+ydS
+ydS
+ydS
+xiA
+kaL
+xiA
+ydS
+ydS
+ydS
+ydS
+ydS
+cqj
+dXf
+lVd
+cxn
+cxn
+cxn
+cxn
+igV
+igV
+gWh
+tzV
+igV
+cJq
+cJq
+cJq
+iOz
+cJq
+cJq
+cJq
+dAl
+lTM
+kjk
+gPv
+pEi
+uVw
+tik
+vxf
+qsc
+qsc
+vNi
+tyJ
+vNi
+qsc
+tCB
+tCB
+gJf
+mtL
+gJf
+tCB
+tCB
+jFi
+nTJ
+qRT
+wAb
+rhW
+wGm
+oIw
+lMj
abj
-aaa
-aee
-agk
-agF
-agX
-ahD
-ahC
-ail
-ail
-ail
-ail
-ajF
-ahD
-aky
-ala
-bwM
-alH
-agF
-aaa
-acC
-ani
-anT
-aoF
-dzv
-aqd
-aqX
-kjn
-aqW
-atE
-dAY
-ayu
-awn
-ayy
-aBU
-azw
-aAH
-aCz
-aCz
-aCz
-aEF
-aFC
-aGJ
-aJc
-aKw
-aKw
-aJc
-aRH
-aOI
-aCz
-aRK
-dDP
-aCz
-aTk
-aWl
-aEF
-aCz
-aCz
-aCz
-bhM
-bhY
-blq
-bhM
-bSB
-bMb
-bou
-ecK
-bsm
-dIH
-aaa
-bwi
-bxs
-byV
-bFV
-bCr
-bEh
-bFJ
-bHt
-bJh
-bKU
-bMY
-bQf
-bQL
-bSL
-bJh
-aaa
-bYw
-cah
-ccc
-cdO
-cfL
-chp
-ciM
-goP
-cub
-cnv
-csS
-jqd
-crG
-csS
-cue
-cvG
-cxa
-cyn
-czQ
-cBt
-cCQ
-cEi
-qDK
-xwd
-cHK
-dEm
-cKL
-cKL
-cNP
-cPz
-cRh
-cSw
-cSw
-cVC
-cXd
-rTA
-cYC
-daO
-vOX
-cYC
-dgw
-cSw
-diw
-cSw
-cSw
-dmh
-xUv
-dpa
-dnE
-fsz
-dnE
-kOF
-cTW
-dwu
-dxF
-cSw
-dQr
-dBj
-dBQ
-dDd
-dXj
-dFa
-dFA
-dGo
-dGo
-dHU
-dXm
-dJF
-dKq
-xtb
-dLJ
-dMs
-dKo
-dKo
-dNd
-dKo
-dKo
-dKo
-dKo
-xRU
-dRV
-dSt
-dTk
-dTH
-dUs
-dVb
-dVq
-aaa
abj
aaa
-abj
+cxp
+cxp
+xVr
+vjp
+oWB
+ics
+xYh
+xVr
+xtH
+dKu
+xtH
+xtH
+xtH
+xtH
+xtH
+xtH
+xtH
+dKu
+xVr
+mVY
+mll
+xcF
+oGO
+tNI
+kUB
+xnH
+kqm
+xnH
+pEu
aaa
aaa
aaa
@@ -172907,11 +177005,7 @@ aaa
aaa
aaa
"}
-(157,1,1) = {"
-aaa
-aaa
-aaa
-aaa
+(166,1,1) = {"
aaa
aaa
aaa
@@ -172944,198 +177038,191 @@ aaa
aaa
aaa
aaa
-acF
+bvh
aaa
+ajQ
+amz
+aox
+alr
+asH
+alU
+awC
+azu
+dZL
+aBZ
+aEu
+aFU
+aHi
+ePe
+aNy
+aOu
+aTS
+aLH
+ePe
+cbZ
+aOR
+ePe
+awY
+bpI
+baK
+aww
+aww
+sjs
+arR
+aww
+bKd
+aCo
+mBj
+bBK
+bGs
+lPb
+dmq
+cue
+bYJ
+bgx
+uAf
+bxD
+cOS
+bqt
+ctv
+bAk
+cBg
+dri
+dwZ
+bxD
+cBg
+cSh
+daa
+dmu
+etE
+eZu
+fuR
+bai
+dCR
+hdm
+hQz
+iuy
+dOf
+dUN
+dXc
+lJF
+cqB
abj
-aaa
-aee
-agk
-agF
-agU
-ahD
-ahC
-ahC
-ahC
-ahC
-ahC
-ahC
-ahD
-akz
-akX
-agS
-agF
-alb
-aaa
-acC
-ani
-anT
-aoA
-apk
-dZf
-aqY
-arO
-asE
-atF
-apj
-avg
-awk
-cIa
-ayz
-hlT
-aCv
-ayA
-hlT
-ayA
-ayA
-ayA
-deG
-aHT
-koK
-koK
-aQp
-koK
-deG
-deG
-deG
-deG
-aGK
-aWm
-aXK
-aJd
-aGK
-aGK
-aGK
-aJd
-bjz
-blr
-aJd
-aGK
-bnd
-bov
-dxV
-bsn
-bsv
abj
-bwf
-bxt
-byU
-byU
-bCr
-bEi
-bFK
-bHu
-bJh
-bKV
-bMX
-bQX
-bMX
-bMX
-bJh
-aaa
-bYx
-bYx
-bYx
-bYx
-bYx
-bYx
-ciN
-bYx
-clU
-xhR
-ckv
-cpZ
-cue
-csT
-cuf
-cvG
-cwZ
-cyk
-czP
-cBs
-cCR
-cxa
-oCA
-qVC
-cHL
-cJf
-nEb
-cVD
-cNQ
-nEb
-doE
-nEb
-cVD
-cVD
-nEb
-xyK
-cJf
-ddK
-hMR
-ddK
-dfv
-dfv
-qFV
-rNo
-dfv
-dfv
-dmi
-drG
-mwB
-pXD
-dmi
-duk
-duk
-isP
-dBS
-duk
-duk
-duk
-dBJ
-dDa
-uBY
-dFb
-dFB
-dGp
-dFB
-dHV
-dIN
-dJG
-dMY
-dMY
-dMY
-dMY
-dMY
-faI
-rqW
-xtH
-dMY
-dMY
-dMY
-faI
-dNa
-dSE
-dSX
-dTI
-dUt
-dVc
-dVq
abj
+vPO
+cxP
+vPO
abj
+abj
+abj
+vKJ
+bFQ
+cLe
+vUq
+vcG
+vTX
+wwg
+xgF
+vKJ
+obt
+vIi
+pOC
+ydS
+ciS
+cbz
+pbk
+dLi
+uoK
+oVN
+uoK
+asU
+ckB
+aKy
+wAH
+ydS
+tbb
+xLG
+nRC
+cxn
+qul
+qul
+qul
+igV
+bXu
+xlF
+rPE
+vgb
+cJq
+jtE
+cRi
+rOC
+cUk
+cYM
+cJq
+mof
+dWN
+oKR
+gbQ
+pEi
+mGq
+wVd
+ihW
+qsc
+ucf
+pSM
+rFB
+diD
+pke
+tCB
+tML
+wRX
+oqp
+tZh
+kkj
+tCB
+qxs
+pbz
+gsD
+wDC
+grN
+wEP
+wST
+oRg
aaa
-bCI
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abj
aaa
+tzQ
+uWb
+ubJ
+wcP
+oWB
+ics
+ifC
+ubJ
+xtH
+dKu
+dKu
+dKu
+dKu
+dKu
+dKu
+dKu
+dKu
+dKu
+xVr
+gBj
+mll
+xcF
+tqj
+hEh
+pEu
aaa
aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -173163,8 +177250,6 @@ aaa
aaa
aaa
aaa
-"}
-(158,1,1) = {"
aaa
aaa
aaa
@@ -173176,6 +177261,8 @@ aaa
aaa
aaa
aaa
+"}
+(167,1,1) = {"
aaa
aaa
aaa
@@ -173201,190 +177288,191 @@ aaa
aaa
aaa
aaa
-acF
aaa
-abj
aaa
-aee
-agj
-agE
-agT
-ahC
-nlE
-aim
-aim
-aiV
-aim
-bkQ
-ahC
-akA
-agE
aaa
aaa
aaa
aaa
-acC
-jWD
-lQG
-aMh
-klw
-vSC
-mRJ
-wQV
-vSC
-vSC
-vSC
-vSC
-awo
-axk
-ayA
-azx
-aAJ
-aBF
-aCA
-aCA
-aEG
-aFD
-deG
-aHU
-koK
-aMa
-aLW
-aNl
-aOJ
-aQe
-aRL
-deG
-aUN
-aWn
-aXL
-aZg
-baV
-aGK
-bdV
-bfr
-bgC
-bhS
-bjC
-bls
-aJd
-bov
-dxV
-bso
-dIH
aaa
-bwj
-bxu
-byT
-bAA
-bCu
-bEj
-bFL
-bHv
-bJh
-bMY
-bMX
-bOR
-bMY
-bSM
-bJh
+bvh
aaa
-bYx
-cai
-ccg
-cdP
-cfM
-chq
-ciO
-ckw
-clV
-cny
-ulT
-cqd
-crI
-csU
-cug
-cvH
-cxc
-cyo
-czR
-cyo
-cyo
-cxc
-cEX
-pTj
-cHM
-nEb
-cKM
-cVK
-cNR
-cPB
-cRj
-cSx
-cVK
-cXj
-cXf
-cYD
-sda
-daQ
-dcl
-kxa
-dfv
-dgF
-dkY
-lNc
-dnJ
-dfv
-dqi
-drH
-wFU
-duh
-dsN
-duk
-dvs
-dwv
-dxI
-dyU
-dAc
-duk
-dQs
-dDf
-uBY
-uBY
-dFC
-dFC
-dFC
-uBY
-uBY
-dJA
-dJH
-xwf
-dLK
-dJH
-mlB
-dJG
-dMY
-wpn
-lpH
-nMw
-owd
-dJG
-dMY
-wpn
-dSY
-dTJ
-dUu
-dXQ
-dVp
+ajQ
+amE
+ald
+aeL
+afx
+apB
+tfE
+ago
+avF
+azA
+avF
+azA
+aHn
+rqF
+avt
+vEw
+aUc
+aWF
+rqF
+ago
+beV
+bgw
+vsN
+bpQ
+aTY
+bvT
+aNK
+bmw
+apq
+bFU
+lzH
+uCO
+bUq
+cbt
+cfy
+bNF
+dmq
+cuw
+bYJ
+bAk
+uAf
+tiq
+aJg
+bqB
+aBS
+aFL
+cBg
+bAk
+cGk
+bxD
+cBg
+dMJ
+dRj
+aRS
+aRS
+fbH
+fvs
+aWt
+dCS
+hec
+dIV
+bYB
+bcM
+bgR
+beb
+aUE
+cqB
abj
-bCI
+btL
+btL
+iGu
+cxQ
+bQS
+btL
+btL
abj
-bCI
-aaa
-aaa
-aaa
+stI
+uUy
+tQe
+xgu
+vhW
+vUc
+wxT
+xiu
+xTn
+lrf
+vOX
+pOC
+xiA
+uoK
+lXr
+uoK
+uoK
+hOJ
+oVN
+uoK
+uoK
+lXr
+uoK
+uoK
+xiA
+tbb
+xLG
+nRC
+cxn
+kRl
+qNQ
+pWu
+igV
+eEh
+myh
+qrz
+hGs
+cJq
+gnV
+nIr
+kwr
+cMs
+rXo
+cJq
+gCB
+mCs
+gLC
+vBr
+dAl
+mGq
+cZH
+uLv
+pRj
+dms
+aVB
+dka
+qYR
+suJ
+tnr
+dvJ
+eLf
+vQt
+dwA
+oFh
+woE
+qxs
+xpU
+oLJ
+wDC
+vbR
+wGm
+woA
+fdc
aaa
+abj
aaa
+tzQ
+uWb
+ubJ
+wcP
+oWB
+ics
+gZJ
+ubJ
+xtH
+dKu
+xtH
+xtH
+xtH
+xtH
+xtH
+xtH
+xtH
+dKu
+xVr
+xtH
+ecf
+qfq
+tqj
+ubJ
aaa
aaa
aaa
@@ -173420,8 +177508,6 @@ aaa
aaa
aaa
aaa
-"}
-(159,1,1) = {"
aaa
aaa
aaa
@@ -173432,6 +177518,8 @@ aaa
aaa
aaa
aaa
+"}
+(168,1,1) = {"
aaa
aaa
aaa
@@ -173458,186 +177546,190 @@ aaa
aaa
aaa
aaa
-acF
aaa
-abj
aaa
aaa
-agl
-agG
-agS
-ahE
-agS
-agF
-agF
-agF
-agF
-agS
-ahE
-agS
-alb
aaa
aaa
aaa
+abj
aaa
-adb
-ans
-anV
-aoB
-apv
-aqf
-aqZ
-asW
-asZ
-asZ
-axi
-avh
-awp
-axl
-ayA
-ayA
-ayA
-ayA
-ayA
-ayA
-aDL
-ayA
-deG
+irJ
+anb
+alf
+aeM
+afy
+pNr
+afQ
+aLI
+avH
+ahc
+rqF
+rqF
+rqF
+rqF
+ama
aIh
-aEN
-aNx
-aLX
-qnc
-qnc
-aQf
-aRM
-koK
-aUO
-aWo
-aXN
-aZh
-baW
-aTl
-bdW
-bjE
-bgD
-aZk
-aNm
-blt
-aJd
-bov
-dxV
-bso
-dIH
-aaa
-bwk
-bxv
-byX
-byU
-bCl
-bEk
-bFM
-bHw
-bJh
-bKP
-bNa
-bOS
-bQN
-bSN
-bJh
+aLI
+aLI
+akD
+aLI
+aLI
+alX
+vsN
+amC
+bbl
+alI
+bzT
+aww
+sjs
+aww
+kri
+kri
+sjs
+snP
+auw
+cjg
+snP
+cux
+bYJ
+cBP
+uAf
+cKW
+bzc
+cKW
+aBS
+bsY
+cBg
+drG
+cGl
+cKW
+cBg
+dNf
+dRG
+aZq
+aZq
+dqe
+aZq
+aZq
+dDb
+bSH
+dJb
+dHj
+bfA
+jKl
+dXe
+blJ
+cqB
abj
-bYx
-caj
-cce
-cdQ
-cfN
-chr
-ciP
-bYx
-tPv
-tPv
-tPv
-cqe
-crJ
-tPv
-cuh
-csN
-cxa
-cyi
-czS
-cBo
-cCS
-cEf
-xuv
-pTj
-cHM
-cPE
-cVK
-cXg
-cVO
-cMq
-cMq
-cMq
-cMq
-cMp
-cXg
-gWx
-cZD
-dbd
-dch
-ddZ
-hUf
-dgG
-diy
-dlf
-dpf
-dfv
-dnG
-dpd
-dqr
-drO
-dsO
-duk
-dvt
-dww
-pNk
-dzb
-dAj
-duk
-dBU
-dDm
-dEo
-aaa
+btL
+bEo
+oDx
+oTZ
+hPQ
+bEo
+btL
abj
-aaa
+stV
+sUp
+enG
+swx
+hEK
+tct
+lpp
+yjD
+vKJ
+udT
+vQL
+dqO
+eWO
+dVQ
+cnD
+car
+sum
+sum
+ujn
+msV
+sum
+cjY
+dVQ
+msV
+eWO
+rlI
+lnH
+xit
+cxn
+ebt
+cyw
+ebt
+igV
+wRq
+hhq
+qrz
+iKz
+cJq
+fLv
+cRk
+cKV
+cUn
+cYP
+cJq
+lcj
+nAL
+njq
+cHr
+pEi
+mGq
+pfs
+uLv
+pRj
+rDQ
+ehw
+wQu
+xEF
+mGt
+tnr
+dkG
+pLM
+tRG
+vpc
+sFa
+woE
+qxs
+xpU
+lyA
+wDC
+gtc
+wEP
+oIw
+lMj
abj
-aaa
-dIO
-dIO
-dIO
-dIO
-dIO
-dIO
-dIO
-dKQ
-dIO
-dKQ
-dIO
-dIO
-dIO
-dIO
-dIO
-dKQ
-dSZ
-dQI
-dUv
-dVe
-dVq
abj
-bCI
-aaa
-aaa
aaa
+tzQ
+uWb
+xVr
+tOg
+dWJ
+mgc
+wWP
+xVr
+hhe
+mcD
+qvz
+xtH
+xtH
+xtH
+xtH
+xtH
+qvz
+mcD
+xVr
+xtH
+dIU
+pmx
+tqj
+xVr
aaa
aaa
aaa
@@ -173677,14 +177769,14 @@ aaa
aaa
aaa
aaa
-"}
-(160,1,1) = {"
aaa
aaa
aaa
aaa
aaa
aaa
+"}
+(169,1,1) = {"
aaa
aaa
aaa
@@ -173715,180 +177807,186 @@ aaa
aaa
aaa
aaa
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-spK
-ahF
-spK
-abj
aaa
aaa
-abj
-spK
-ahF
-spK
-abj
+irJ
+agO
+irJ
+anc
+alk
+alk
+irJ
+irJ
+vsN
+lFf
+vsN
+vsN
+ahI
+rqF
+rqF
+rqF
+vsN
+vsN
+lFf
+lFf
+vsN
+lFf
+lFf
+vsN
+vsN
+rBk
+rBk
+aSn
+rBk
+rBk
abj
abj
+acF
+acF
abj
+bBS
+bGB
+bNJ
+snP
+cuz
+bYY
+cBQ
+bwt
+aJh
+aJh
+aJh
+aJh
+aJh
+aJm
+aJh
+aJh
+cBQ
+aJm
+dNi
+aZq
+dhb
+aZt
+fbO
+duq
+dzs
+aXV
+bSH
+dJl
+bcD
+bed
+bfx
+bgK
+bia
+cqB
abj
-acC
-anm
-fZB
-aoC
-aoC
-aqu
-kox
-asX
-asF
-aoC
-aoC
-alI
-awq
-axm
-ayA
-azy
-aAK
-aBG
-aJi
-aAK
-aEI
-aFE
-aGL
-aEM
-aEN
-aNp
-aLY
-ikv
-aOL
-aQg
-aRN
-aJe
-aUP
-aWp
-aXO
-aZi
-baX
-aZs
-bdX
-aNn
-bcN
-bec
-bjD
-bba
-bhU
-bov
-dxV
-bso
+btL
+ocg
+kkK
dIH
-aaa
-bwk
-bxw
-byY
-bAB
-bCv
-bDU
-bFy
-bHn
-bJh
-bJh
-bJh
-bJh
-bJh
-bJh
-bJh
-aaa
-bYx
-cak
-ccf
-cdR
-cfl
-cfO
-ciQ
-ckx
-abj
-abj
-coC
-cqf
-crK
-csN
-abj
-abj
-cwZ
-cyp
-czT
-cBu
-cCT
-cEe
-xuv
-dwN
-cPA
-cJh
-cUe
-cSL
-cVP
-cZE
-vRl
-cSz
-cZE
-cZE
-dat
-dax
-dgo
-dcg
-dcs
-dfq
-ggJ
-dgH
-diz
-dmk
-dpg
-npH
-dYb
-dpe
-dqs
-drP
-dsP
-dxG
-dvu
-dwx
-dxJ
-dzc
-dAi
-duk
-dBU
-dDh
-dEp
-abj
-abj
-abj
-abj
-abj
-abj
-abj
+kkK
+bVn
+btL
abj
+vKJ
+nfX
+vsT
+mLI
+ueJ
+pid
+blM
+pkR
+qJK
+udT
+vVv
+pOC
+xiA
+dLi
+dLk
+nQy
+jrG
+jrG
+jrG
+mCg
+jrG
+sps
+uoK
+mCg
+xiA
+dVM
+ogV
+vgU
+cxn
+cxn
+pGu
+cxn
+igV
+igV
+igV
+vlN
+igV
+cJq
+xQH
+wWZ
+hCW
+vCl
+cNW
+cJq
+gCB
+qpm
+gLC
+nMs
+dAl
+mGq
+yhG
+eQA
+qsc
+vWg
+qrR
+pQs
+dnQ
+bPj
+tCB
+qQk
+oHq
+wZR
+dsY
+vQQ
+tCB
+qRt
+vmx
+xHW
+wDC
+njy
+wEP
+woA
+oRg
+aaa
abj
aaa
aaa
-dIO
-dKP
-dIO
-dKP
-dIO
-abj
-abj
-abj
-dIO
-dKP
-dTa
-dTK
-dTa
-abj
+dUJ
+wMx
+xnH
+xnH
+xnH
+xnH
+wMx
+xnH
+xnH
+xnH
+xnH
+xnH
+ubJ
+ubJ
+ubJ
+xnH
+xnH
+wMx
+ubJ
+igF
+igF
+ubJ
+pEu
aaa
aaa
aaa
@@ -173935,7 +178033,8 @@ aaa
aaa
aaa
"}
-(161,1,1) = {"
+(170,1,1) = {"
+aaa
aaa
aaa
aaa
@@ -173967,11 +178066,24 @@ aaa
aaa
aaa
aaa
+abj
+abj
+agO
aaa
aaa
aaa
abj
+aaa
abj
+aaa
+aaa
+vsN
+ajM
+ajM
+ajM
+aKj
+vsN
+aaa
abj
aaa
abj
@@ -173979,150 +178091,143 @@ aaa
aaa
abj
aaa
-spK
-uGF
-spK
-dsI
-spK
-spK
-dsI
-spK
-uGF
-spK
-aaa
+rBk
+aKW
+bvX
+cxz
+rBk
+abj
+bBS
+bBS
+bBS
+snP
+cbu
+cfB
+fyp
+snP
+cuO
+bZh
+bZh
+cdQ
+cLd
+cSf
+cSf
+cSf
+cSf
+btU
+cSf
+cGq
+cSf
+dHd
+dNr
+aZq
+dhn
+duw
+fdQ
+duw
+gfk
+aZq
+bSH
+dJb
+bej
+bfA
+jMn
+dXp
+bib
+cqB
+abj
+btL
+ocw
+cEA
+iwe
+jku
+bVo
+btL
+abj
+vKJ
+rQd
+iHx
+owg
+gNR
+pid
+pid
+mIY
+qJK
+udT
+vVv
+drd
+ydS
+dVH
+cnG
+nQy
+jrG
+jrG
+jrG
+mCg
+jrG
+jrG
+cmd
+mCg
+ydS
+wyI
+xLG
+nRC
+cxn
+hrO
+mlo
+cBH
+cBH
+eNx
+cxn
+hEN
+ibI
+cJq
+oFU
+rnz
+cKX
+cMt
+cms
+cJq
+xFF
+lOG
+njF
+nLE
+ogj
+qnD
+wVd
+uLv
+pRj
+iUH
+ehw
+wQu
+xEF
+dkd
+tnr
+qPG
+pLM
+tRG
+vpc
+vSn
+woE
+qxs
+xpU
+eRm
+wDC
+sUa
+wEP
+ujB
+tkc
+abj
abj
aaa
aaa
aaa
-adb
-ani
-anu
-aoC
-apl
-aqh
-ara
-arR
-asG
-atG
-aoC
-avi
-awr
-axn
-ayA
-azz
-aAL
-aBH
-aCB
-aDj
-aDM
-aFF
-aEL
-aJg
-aJf
-aKy
-aLZ
-aNo
-aNo
-aQh
-aRO
-vOT
-aUQ
-aWq
-aXP
-bLo
-cwr
-cxC
-bdY
-dlc
-dnW
-bgE
-bjE
-blv
-bhV
-bow
-bqv
-bsp
-dIH
aaa
-bwl
-jAa
-bwf
-bAC
-bCl
-bDU
-akK
-bHx
-bHx
-bKX
-bNb
-bOU
-bHx
aaa
-abj
aaa
-bYx
-cal
-ccg
-cdS
-cfP
-chs
-ciR
-bYx
aaa
aaa
-tPv
-cqg
-crP
-csV
-csV
-cvI
-csV
-csV
-csV
-csV
-csV
-csV
-cEY
-pTj
-cHM
-cPE
-cVI
-cXh
-cVO
-cMq
-cMq
-cMq
-cMq
-cMp
-cXh
-gWx
-dlW
-daT
-dcj
-ddN
-hUf
-xhp
-djV
-nSd
-qwy
-dfv
-dYc
-dYi
-dYk
-drQ
-dsQ
-duk
-dvv
-dwy
-dxK
-dyX
-dAf
-duk
-dBV
-dDi
-tLN
aaa
-abj
aaa
aaa
aaa
@@ -174132,19 +178237,9 @@ aaa
aaa
aaa
aaa
-dIO
-dKQ
-dIO
-dKQ
-dIO
aaa
aaa
aaa
-dIO
-dKQ
-dTa
-dQI
-dTa
aaa
aaa
aaa
@@ -174191,11 +178286,13 @@ aaa
aaa
aaa
aaa
-"}
-(162,1,1) = {"
aaa
aaa
aaa
+"}
+(171,1,1) = {"
+aaa
+aaa
aaa
aaa
aaa
@@ -174227,184 +178324,180 @@ aaa
aaa
aaa
aaa
-dfu
-dsI
-dsI
-dfu
-dsI
-spK
-dsI
-dsI
-spK
-spK
-ahF
-spK
-ais
-aiK
-ajd
-wkB
-spK
-ahF
-spK
-spK
-dsI
-dsI
-spK
-dsI
-amN
-ani
-anu
-aoD
-apm
-arM
-arb
-arS
-stl
-atH
-aut
-avj
-aws
-axo
-ayB
-azA
-aAM
-aBI
-aCC
-aBI
-aEK
-aFG
-aGN
-aKv
-aKx
-aKx
-aNy
-aTi
-aOM
-aQi
-deG
-deG
-aUR
-aWr
-aBD
-aZj
-baZ
-aGK
-bbC
-aNm
-bgG
-sIy
-aNm
-blw
-aGK
-bgX
-dxV
-bML
-bsv
abj
+irJ
abj
+bvh
+bCI
+bvh
abj
-byZ
-bAD
-bCw
-bEa
-bFN
-bHy
-bJj
-bKY
-bKY
-bOV
-bHx
-bHx
-bHx
-bHx
-bST
-bST
-bST
-bST
-bST
-cht
-cht
-cht
-cht
-cht
-cht
-yfD
-oTu
-csV
-cuk
-cvK
-cxe
-cyr
-czW
-cBw
-cCV
-csV
-tix
-pTj
-cHM
-nEb
-cKP
-cSO
-cXo
-cPF
-dgI
-cSB
-cUb
-cVI
-cXi
-cYG
-doC
-daU
-fuS
+bCI
+bCI
+abj
+gdv
+aES
+rqF
+rqF
+aKt
+gdv
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+vWy
+buU
+bwF
+aMX
+rBk
+acF
+bBS
+bKe
+bPr
+bUv
+bUv
+cgm
+dnP
+snP
+cuS
+bZI
+bZI
+cdR
+aKF
+bta
+cRn
+cYX
ddO
-dfv
-dgT
-djW
-dmn
-dqt
-dfv
-dYd
-dYj
-dYl
-drR
-dsR
-dum
-dvw
-nGy
-dxL
-dyY
-dyY
-rkD
-lMj
-dDj
-dEo
-aaa
+dko
+bvd
+bvd
+dBg
+dHr
+dNr
+aZq
+dWL
+bGm
+aWx
+duw
+dYp
+dDb
+aZp
+hQT
+bej
+bfA
+bfA
+blE
+bic
+cqB
+abj
+btL
+ocK
+kkK
+obl
+kkK
+qgq
+btL
abj
+suV
+sVC
+vvG
+xtO
+pcj
+gKP
+nPr
+eqP
+vKJ
+qeJ
+rQz
+wOc
+ydS
+pwU
+pwU
+fLk
+pwU
+pwU
+pwU
+krh
+pwU
+pwU
+ydS
+nou
+ydS
+byR
+xxK
+ubT
+fdD
+fMg
+tIY
+fFv
+mdx
+lNw
+xzg
+aPR
+cGL
+cJq
+cJq
+cJq
+ksr
+cVH
+cNX
+cJq
+pEi
+lTM
+dsW
+pEi
+pEi
+fQE
+jSg
+pEC
+pRj
+pof
+rpw
+fIi
+soV
+oCg
+tnr
+kMK
+uKK
+khe
+tuv
+hdk
+woE
+qxs
+xpU
+grm
+wDC
+wDC
+wDC
+mCB
+wDC
+wDC
+dFG
+dFG
+dFG
+dFG
+dFG
+aaa
+ceo
+ake
+qGy
+nIv
+qGy
+mvp
+fJd
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
-dHW
-dIP
-dJI
-dJI
-dKy
-dLL
-dJI
-dJI
-dLB
-dJI
-bUC
-dJI
-dKy
-dKW
-dLL
-dJI
-dLB
-dOA
-dLB
-dJI
-dJI
-dJI
-dVz
aaa
aaa
aaa
@@ -174418,6 +178511,11 @@ aaa
aaa
aaa
aaa
+aae
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -174449,7 +178547,7 @@ aaa
aaa
aaa
"}
-(163,1,1) = {"
+(172,1,1) = {"
aaa
aaa
aaa
@@ -174482,186 +178580,9 @@ aaa
aaa
aaa
aaa
-adg
-ady
-ady
-aaf
-uFV
-spK
-bfp
-hrW
-dZr
-agm
-dZK
-aiL
-aiL
-lqY
-pQP
-aiL
-pQP
-lqY
-pQP
-pQP
-pQP
-lFf
-alG
-irJ
-pQP
-vlh
-iVU
-ant
-anW
-aoC
-apn
-aqj
-arc
-arT
-asH
-atI
-aoC
-avk
-apr
-axp
-ayC
-azB
-aAN
-aBJ
-aCD
-aCf
-aDO
-aFH
-aGL
-aHZ
-aJh
-aKz
-aJh
-aJh
-aON
-aJh
-aRP
-aTm
-aUS
-aWr
-aXM
-aZj
-baY
-aJd
-bcB
-bfv
-bea
-bgF
-aNn
-baX
-bhX
-bou
-dxV
-bso
-dIH
aaa
-abj
aaa
-bwi
-bAE
-bCx
-bDU
-bFO
-bHx
-bJk
-bKZ
-bLb
-bOW
-bQO
-bSO
-bUV
-bHx
-bYy
-cam
-cch
-cdT
-bST
-cgQ
-cgQ
-cky
-clW
-cmX
-cht
-cqc
-crM
-csW
-cul
-cvL
-cxg
-cyt
-cyt
-cBx
-cCW
-csW
-cEZ
-qGg
-cHN
-cPS
-cSF
-cTZ
-cXp
-cZI
-dgO
-cSF
-xte
-cZF
-dze
-xte
-xte
-daV
-cXk
-ddP
-dfv
-dfv
-dfv
-dfv
-dfv
-dfv
-dnK
-dph
-dsU
-aav
-aaw
-duk
-qVE
-jAt
-dQd
-dyZ
-dXq
-duk
-dBU
-dDh
-dEq
-abj
-abj
aaa
-dYe
-dYf
-dIQ
-dLO
-dKt
-dOy
-dOy
-dOy
-dNe
-dNR
-dTL
-dNR
-dNe
-dOy
-dOy
-dOy
-pCx
-dNR
-dIQ
-dTM
-dUw
-yal
-dVr
-dIQ
aaa
aaa
aaa
@@ -174677,10 +178598,154 @@ aaa
aaa
aaa
aaa
+abj
aaa
aaa
+abj
aaa
+abj
aaa
+rBk
+bvv
+aLx
+bgI
+rBk
+abj
+bBS
+bdq
+bPA
+bUN
+cbD
+bGJ
+bNS
+hrt
+dmq
+bZJ
+bve
+cDE
+jAB
+clQ
+bBM
+clQ
+deu
+dkw
+bve
+bve
+bve
+bve
+cSy
+dDb
+dWM
+bGv
+bbh
+duB
+ggf
+dDb
+hgQ
+hRx
+iuG
+bfA
+bfA
+gsC
+bid
+cqB
+abj
+btL
+odf
+hPQ
+bOL
+hPQ
+bEo
+btL
+abj
+suV
+sWs
+vvG
+ygD
+wkK
+wkK
+wkK
+wkK
+wkK
+iEi
+vVv
+tno
+ydS
+gwA
+sxM
+pnb
+mqV
+izf
+pIL
+nuE
+nee
+fKj
+qNd
+mCg
+ydS
+ofG
+dwG
+paK
+cxn
+qxo
+pWo
+cyz
+cxn
+cxn
+cxn
+fxY
+lsh
+lyo
+jbb
+cJq
+kss
+cVH
+cYT
+cPL
+lua
+kbW
+nkN
+nMw
+ohO
+cYN
+wVd
+uLv
+qsc
+uKo
+qwZ
+dRq
+lZb
+yeA
+tCB
+fjs
+exn
+unn
+uFO
+omQ
+tCB
+qxs
+whc
+pxt
+iuQ
+pGt
+fGz
+uuQ
+tCM
+dVj
+dFG
+vLr
+lhs
+ggU
+dXj
+abj
+lSJ
+qMb
+sRa
+dqg
+aam
+ohx
+qNA
+abj
aaa
aaa
aaa
@@ -174705,8 +178770,6 @@ aaa
aaa
aaa
aaa
-"}
-(164,1,1) = {"
aaa
aaa
aaa
@@ -174739,186 +178802,12 @@ aaa
aaa
aaa
aaa
-adh
-adz
-adP
-aeg
-seF
-aeK
-pgG
-cIl
-dZs
-aOx
-aiJ
-aiJ
-aiJ
-lbM
-aiJ
-bgw
-aiJ
-nBZ
-eoI
-aiJ
-aiJ
-asC
-aiJ
-aiJ
-aiJ
-wXd
-sxO
-kri
-anX
-aoC
-aoC
-aoC
-aoC
-aoC
-aoC
-aoC
-awx
-aql
-apr
-axq
-ayA
-azC
-aAO
-aBK
-aCE
-aDN
-aDP
-aFI
-deG
-deG
-koK
-koK
-koK
-deG
-deG
-koK
-koK
-oLb
-aUT
-aWs
-aXS
-aZk
-bba
-xnC
-bcB
-aNm
-bdZ
-bgH
-aNm
-bba
-bhU
-box
-bqx
-bso
-dIH
aaa
-abj
+"}
+(173,1,1) = {"
aaa
-bwf
-bwf
-bCy
-bEl
-bFP
-bHz
-bJl
-bLa
-bNc
-bOX
-bQQ
-bSQ
-bUX
-bWW
-bYz
-can
-cci
-cdU
-bST
-cgQ
-cgQ
-ckz
-clX
-cnz
-coq
-cqh
-crN
-csY
-cum
-cvM
-cxf
-cys
-czV
-cBy
-cCX
-cEk
-cFa
-izX
-dzf
-dAp
-cKR
-cMr
-cXs
-cPH
-dix
-dAp
-cTY
-vtu
-xtz
-ddV
-evX
-wVu
-dck
-ddQ
-ovK
-dfy
-diA
-djX
-dlg
-uLd
-dnL
-dpi
-dqw
-drT
-dsT
-dun
-dvx
-iBL
-qfe
-dzb
-fFu
-duk
-dBU
-dDh
-dEo
aaa
-abj
aaa
-dYe
-dYf
-dIR
-dJK
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dSv
-dTb
-dTM
-dTM
-dTM
-dVr
-dIT
aaa
aaa
aaa
@@ -174962,15 +178851,159 @@ aaa
aaa
aaa
aaa
-"}
-(165,1,1) = {"
aaa
aaa
aaa
aaa
+abj
+aaa
+aaa
+abj
aaa
+abj
aaa
+vWy
+vWy
+bfn
+vWy
+vWy
+abj
+snP
+bKf
+snP
+snP
+bCc
+bdd
+bOm
+hrt
+abj
+abj
+abj
+aAW
+eqA
+bYJ
+wmH
+cSh
+cwH
+cBq
+bvh
+abj
+abj
+abj
+abj
+dDu
+dWS
+dmI
+bId
+bLH
+gkw
+dDu
+hgZ
+bVq
+dNw
+beh
+jQr
+kMn
+bie
+bfL
+abj
+btL
+btL
+btL
+btL
+btL
+btL
+btL
+abj
+vKJ
+tmH
+sZx
+vFG
+wkK
+ovX
+xen
+uSv
+xnx
+xDL
+vVv
+pOC
+ydS
+oqs
+usO
+tXG
+dDK
+guW
+rsd
+lMu
+rfr
+taO
+cmf
+pPo
+mHl
+dVM
+xLG
+ctj
+cxn
+nbP
+wlx
+fFC
+geg
+vhQ
+cxn
+xfV
+lsh
+xci
+wxH
+cJq
+igE
+cMv
+dlp
+cPM
+lWa
+xnD
+qXt
+dup
+lWa
+ePb
+bmo
+hTs
+qsc
+qsc
+xvy
+dgQ
+xvy
+qsc
+tCB
+tCB
+vqL
+dav
+vqL
+tCB
+tCB
+tTW
+xFU
+dxT
+dxT
+pmd
+mzl
+wpY
+sfV
+xVs
+xfy
+chE
+hGB
+nZM
+dFG
aaa
+qGy
+sDx
+xtb
+bVC
+rpN
+hlF
+qGy
+abj
+bCI
aaa
aaa
aaa
@@ -174996,187 +179029,10 @@ aaa
aaa
aaa
aaa
-adi
-ady
-ady
-aag
-grq
-spK
-bfq
-pNr
-afN
-aSm
-agH
-agH
-ahT
-agH
-agH
-agH
-agH
-krc
-akb
-egA
-blx
-ecb
-alK
-agH
-vsN
-nfF
-amM
-xgF
-anY
-alI
-apo
-nUw
-auu
-tVr
-wnO
-atJ
-wnO
-ehC
-awu
-axr
-ayA
-azD
-aAP
-aBL
-aCF
-aCI
-aDR
-aFK
-ayD
-aIa
-aJj
-aKB
-aMc
-aNq
-aOO
-aQk
-aRQ
-aTq
-dEc
-aWr
-aXQ
-aZj
-bbb
-aJd
-bcB
-aNm
-bgG
-aZj
-aNm
-bly
-aJd
-bov
-dxV
-bso
-dIH
aaa
-abj
aaa
-bwf
-bAF
-bCz
-bEm
-bFz
-bHx
-bJm
-bLb
-bNd
-bOY
-bQP
-bSP
-bUW
-bHx
-bYA
-cao
-ccj
-cdV
-bST
-chv
-ciS
-ckA
-clY
-cnA
-cht
-cqj
-crP
-csV
-cuX
-cvN
-cxh
-cyu
-czX
-cBz
-dte
-csV
-xuv
-iSo
-vWz
-cRi
-cKS
-cUa
-cYL
-cZL
-diH
-cSF
-cUd
-cVL
-cXe
-ufH
-flw
-pmP
-ddL
-dfw
-ooV
-dpp
-diB
-djY
-doF
-dml
-dnN
-dpj
-dqx
-drU
-dsV
-duk
-fSY
-dwz
-wAb
-dzc
-dAi
-duk
-dBX
-dDl
-dEo
aaa
-abj
aaa
-dYe
-dYf
-dIS
-dJK
-dKu
-dOz
-dOz
-dOz
-dOz
-dOz
-dKu
-dOz
-dOz
-dOz
-dOz
-dOz
-dKu
-dSv
-dIR
-dTN
-dTM
-dTM
-dVs
-dIU
-dVz
aaa
aaa
aaa
@@ -175204,6 +179060,8 @@ aaa
aaa
aaa
aaa
+"}
+(174,1,1) = {"
aaa
aaa
aaa
@@ -175219,8 +179077,6 @@ aaa
aaa
aaa
aaa
-"}
-(166,1,1) = {"
aaa
aaa
aaa
@@ -175255,195 +179111,156 @@ aaa
aaa
aaa
aaa
-agI
-bms
-agI
-agI
-agI
-agI
-afa
-agI
-dZL
-agY
-aif
-wsE
-wsE
-wsE
-wsE
-wBq
-agK
-akV
-avm
-cbZ
-avm
-ePe
-awY
-lfd
-avm
-anv
-anZ
-alI
-app
-aqk
-amb
-aCo
-alZ
-amb
-amb
-alZ
-amb
-axu
-ayA
-azE
-aAQ
-aBK
-aCG
-aDj
-aEH
-aFK
-ayD
-aIb
-aBS
-aBS
-aBS
-aBS
-aBS
-aBS
-aBa
-aNv
-aUU
-aWr
-aXQ
-aZj
-bbc
-bQb
-bcC
-aNm
-bgG
-aZj
-aNm
-blz
-aJd
-bov
-dxV
-bsq
-bsv
abj
abj
abj
-bwf
-bAG
-bCl
-bDU
-bFQ
-bHx
-bJn
-bLc
-bNe
-bOZ
-bQR
-bSR
-bUY
-bWX
-cbz
-cap
-cck
-cdW
-cfQ
-csL
-ciS
-ckB
-clZ
-cnB
-coF
-cqk
-crO
-csV
-cvJ
-cvY
-cxJ
-cyI
-czZ
-cBB
-cDa
-csV
-nRC
-pTj
-cHM
-cRi
-cKT
-cUk
-cYM
-dbs
-dle
-dWN
-yff
-dlh
-cXm
-cYJ
-sDY
-daY
-dcm
-uTu
-tEo
-rFB
-diD
-djZ
-dli
-uLd
-doa
-dpk
-dqy
-drV
-dsZ
-duk
-pbz
-gsD
-wiM
-dzb
-vbR
-duk
-dBV
-dDh
-dEq
abj
abj
-aaa
-dGW
-dGW
-dIQ
-kMn
-dKu
-dKT
-dLM
-dMt
-dNf
-dKT
-dKu
-dMt
-mgc
-dKT
-dKw
-dMt
-dKu
-dSv
-dIS
-dTN
-dTM
-dVf
-dVr
-dIU
-dIV
-dJI
-dIT
-dJI
-dVz
-aaa
+abj
+abj
+abj
+abj
+vWy
+bfZ
+vWy
+abj
+abj
+bBS
+bdd
+rcP
+bzh
+bCf
+bHl
+jjA
+snP
+abj
aaa
aaa
+dEk
+cff
+dBR
+bve
+dBR
+dev
+cBD
+abj
aaa
aaa
+abj
+abj
+bBQ
+bSJ
+dmP
+bIp
+dmP
+bOT
+dDC
+hhI
+dJn
+dXb
+dPq
+dXb
+kNl
+elh
+cnM
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+suV
+sXY
+dCk
+wkK
+wkK
+vUZ
+wzl
+xiB
+xux
+xPg
+vVv
+pOC
+ydS
+rri
+eNC
+cau
+tiL
+epH
+tiL
+fWP
+oAp
+nKW
+tEg
+ewF
+mHl
+dVM
+xLG
+ctj
+cxn
+nbP
+wlx
+fFC
+cxn
+cxn
+cxn
+wqD
+lsh
+lsh
+cSK
+cJq
+rnT
+cMw
+tta
+cPN
+dqz
+qEX
+hQL
+lbf
+mBm
+gHp
+dgz
+nkN
+rZI
+sHA
+sHA
+vMk
+sHA
+hBg
+gvQ
+sHA
+sHA
+vUu
+sHA
+sHA
+eMl
+efb
+xpU
+pxm
+kzG
+wDC
+oip
+rhU
+uye
+gDm
+dXj
+pKh
+aYo
+fEt
+vCt
+abj
+sQz
+gYL
+mla
+vJQ
+bAi
+mrA
+ens
aaa
+bCI
aaa
aaa
aaa
@@ -175476,8 +179293,6 @@ aaa
aaa
aaa
aaa
-"}
-(167,1,1) = {"
aaa
aaa
aaa
@@ -175502,6 +179317,8 @@ aaa
aaa
aaa
aaa
+"}
+(175,1,1) = {"
aaa
aaa
aaa
@@ -175512,189 +179329,11 @@ aaa
aaa
aaa
aaa
-abj
aaa
-agI
-aeL
-afd
-afx
-afP
-ago
-agI
-dZN
-ahG
-aje
-aje
-aje
-aje
-ajC
-ajI
-avm
-akC
-ald
-xGk
-tYL
-hyX
-tfE
-avm
-anz
-aoe
-alI
-apq
-aww
-aww
-uCO
-aww
-lgN
-lgN
-sjs
-aww
-axt
-ayA
-azF
-aAR
-aBN
-aJk
-aDQ
-aEP
-aFL
-ayD
-aIc
-aBS
-aBS
-aBS
-aBS
-aKE
-aDX
-aRS
-aTq
-aUW
-aWt
-aXT
-aZl
-bbd
-aGK
-bcM
-bcC
-beb
-bgH
-bjF
-blA
-aGK
-boy
-dxV
-bso
-dIH
aaa
-abj
aaa
-bwf
-bAt
-bCl
-bDU
-bFx
-bHx
-bJo
-bLd
-bNf
-bLc
-bQS
-bSS
-bUZ
-bHx
-cfa
-caq
-ccl
-cdX
-cfR
-chx
-ciT
-ckC
-cma
-cnC
-coG
-cql
-wVk
-csV
-csV
-cvO
-cxi
-cyv
-czY
-cBA
-cCZ
-csV
-cFf
-pTj
-cHO
-cJj
-cKU
-cMs
-cNV
-cPI
-dmm
-cTZ
-xSu
-vBr
-cXr
-daZ
-cZH
-xnD
-oCU
-bPi
-sCb
-dgL
-qYR
-dka
-dlj
-dfy
-dfy
-dfy
-dfy
-duk
-duk
-duk
-dvy
-dwA
-dxN
-dzc
-dAi
-duk
-dBU
-dDh
-iMk
aaa
-abj
aaa
-dYe
-dYf
-dIQ
-dJL
-dKu
-dOy
-dOy
-dOy
-dOy
-dOy
-dKu
-dOy
-dOy
-dOy
-dOy
-dOy
-dKu
-dSv
-dIQ
-dTO
-dTM
-dVg
-dVg
-dIQ
-dVE
-dVI
-dVN
-dVS
-dIQ
aaa
aaa
aaa
@@ -175730,20 +179369,157 @@ aaa
aaa
aaa
aaa
+abj
aaa
aaa
+abj
aaa
-"}
-(168,1,1) = {"
+abj
aaa
aaa
+vWy
+bwP
+vWy
+abj
+abj
+bBS
+bdd
+buq
+bUR
+bCc
+aUm
+cji
+bBS
+abj
+czb
+aKD
+aKD
+aRN
+aJl
+aKD
+aJl
+btb
+aKD
+bvf
+dxd
aaa
+abj
+abj
+dDD
+bcL
+dmQ
+aTv
+bMz
+bOU
+dDD
+abj
+dXt
+bfw
+bei
+cbx
+dXt
+abj
+abj
+abj
+bvh
aaa
+bvh
aaa
+bvh
aaa
+bvh
aaa
+wkK
+wkK
+wkK
+wkK
+spS
+jun
+jun
+sTG
+xnx
+xPg
+vVv
+pOC
+ydS
+saS
+gWJ
+cui
+wrc
+dFC
+ylv
+nrr
+sCH
+dOl
+pfR
+bjD
+mHl
+dVM
+xLG
+uRr
+cxn
+nbP
+wlx
+fFC
+ggx
+gLT
+cxn
+wqD
+lsh
+lOi
+gLA
+tYK
+tYK
+pTx
+tYK
+tYK
+mhs
+kwl
+xjj
+jik
+xgP
+pOI
+uFk
+dci
+ddM
+cZN
+tMG
+vxs
+cZN
+ebI
+eZJ
+dxT
+dxT
+uTP
+dGa
+dxT
+gYl
+dxT
+jSU
+pxm
+gnK
+wDC
+wDC
+mCB
+wDC
+wDC
+dFG
+dFG
+wTz
+dFG
+dFG
aaa
+hhJ
+xRU
+dXB
+dKU
+eQp
+dXP
+hOZ
aaa
+abj
+abj
+bCI
aaa
aaa
aaa
@@ -175759,6 +179535,7 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -175769,189 +179546,11 @@ aaa
aaa
aaa
aaa
-bvh
aaa
-aiT
-aeM
-afe
-afy
-afQ
-agp
-agJ
-ahc
-ahH
-ahY
-aiq
-aiM
-aiY
-ajg
-ajJ
-akf
-akD
-ale
-alz
-alX
-ama
-amC
-avm
-alI
-alI
-alI
-app
-aww
-ejz
-mwc
-asI
-mwc
-auw
-lPb
-aww
-axu
-ayA
-ayA
-aAS
-aBO
-ayA
-aDS
-ayA
-ayA
-ayD
-aGO
-aMw
-aBS
-aBS
-aMb
-aMe
-ayD
-aFR
-aTn
-ayD
-bai
-bcI
-aZm
-bbe
-bbe
-bbi
-bin
-bgJ
-blJ
-bbi
-bbe
-bbe
-boz
-dxV
-bso
-dIH
aaa
-abj
aaa
-bwf
-bwf
-bCA
-enG
-bwf
-bHx
-bJp
-bLe
-bNg
-bPa
-bHx
-bST
-bST
-bST
-bST
-car
-ccm
-cdY
-bST
-chy
-ciU
-cjY
-cmb
-cnD
-cht
-cre
-crP
-csZ
-csV
-cvP
-cxj
-cyw
-cAa
-cBC
-cDb
-cEl
-cGK
-pTj
-cHM
-cRk
-cKV
-cUn
-cYP
-dbu
-dnI
-cSG
-xSu
-eQA
-cXr
-vni
-ohB
-eSE
-nXf
-eQA
-dfz
-dpp
-wQu
-dkb
-dlq
-dtc
-dfy
-dpm
-dqA
-duk
-dsX
-gxn
-dvz
-lyA
-dxQ
-dzb
-dAj
-duk
-dBZ
-dDm
-dEo
aaa
-abj
aaa
-dYe
-dYf
-dIT
-xFp
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-oWB
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dSw
-dIU
-dJI
-dTb
-dIT
-dJI
-dVA
-dVF
-dVJ
-dVJ
-dVT
-dIT
aaa
aaa
aaa
@@ -175975,6 +179574,8 @@ aaa
aaa
aaa
aaa
+"}
+(176,1,1) = {"
aaa
aaa
aaa
@@ -175990,8 +179591,6 @@ aaa
aaa
aaa
aaa
-"}
-(169,1,1) = {"
aaa
aaa
aaa
@@ -176025,190 +179624,175 @@ aaa
aaa
aaa
aaa
+bCI
+bCI
+abj
+bCI
+bCI
+abj
+bCI
+abj
+abj
+abj
+abj
+bwQ
+abj
+abj
aaa
+snP
+bKF
+asd
+jyC
+aSl
+aUq
+avq
+bBS
+abj
+cze
+aNk
+aNk
+aNk
+aNk
+dCY
+aNk
+aNk
+aNk
+bvg
+cGw
+dBi
+abj
+abj
+dDb
+dDb
+dDb
+dDb
+dDb
+dDb
+dDb
+abj
+dJH
+boD
+jby
+ceY
+dJH
+abj
bvh
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+svX
+tcb
+qZn
+aPS
+viE
+jun
+jun
+qRV
+xux
+xPg
+cee
+bnL
+uZJ
+fPX
+vIl
+cav
+ccp
+dIN
+dGZ
+iZu
+ciZ
+dOl
+cmf
+cvu
+mHl
+dVM
+xLG
+ctj
+cxn
+nbP
+vuo
+kKi
+cxn
+cxn
+cxn
+xfV
+xci
+lsh
+dNR
+cKY
+ojC
+dxs
+cOa
+dAq
+cPO
+mCW
+nkN
+kyJ
+mrx
+cYQ
+phg
+kLF
+hFe
+xYg
+utI
+xYg
+xYg
+gUN
+xYg
+xYg
+hqS
+bvF
+xYg
+xYg
+hFe
+xYg
+xpU
+xYg
+xYg
+dVv
+xci
+xfV
+mFN
aaa
-aiT
-aeN
-aff
-afz
-afR
-agq
-agJ
-ahc
-wQq
-pTJ
-vEw
-aiP
-tpv
-ajh
-ajH
-akf
-akE
-alf
-kfz
-lhV
-eJC
-amD
-mCs
-aSn
-rvG
-aoE
-aps
-aww
-kvY
-avn
-eUK
-mBj
-aux
-evx
-lgN
-axu
-ayD
-azG
-aAT
-aAY
-dcJ
-aDT
-aFp
-aLV
-aJm
-aId
-aJn
-aKF
-aKF
-aNt
-aQu
-aSq
-aRU
-aZt
-aUX
-aWv
-aXV
-aZn
-bbf
-bcD
-bed
-bfx
-bgK
-bia
-bjG
-blB
-bbe
-boy
-dxV
-bso
-dIH
aaa
-abj
+dFG
+lUo
+dFG
aaa
-bwf
-bAs
-bCB
-bEn
-bAs
-bHx
-bJq
-bLf
-bLf
-bLc
-bQT
-bST
-bVa
-bWY
-bYE
-cas
-ccn
-cdZ
-bST
-chz
-ciS
-ckD
-cmc
-cnE
-coH
-nsl
-crP
-cta
-csV
-cvQ
-cxk
-cyx
-cAb
-cBD
-cDc
-cEp
-cGK
-pTj
-cHM
-cRp
-cKW
-cVF
-cNW
-cPC
-twN
-cSF
-dsa
-tfK
-dAl
-xte
-vOg
-eQA
-nXf
-mBm
-uZP
-dpp
-diE
-bPj
-dnQ
-dmo
-dfy
-dpn
-dqB
-duk
-dsY
-rVw
-sxS
-dwB
-dAo
-dzc
-dAi
-duk
-nye
-dDh
-dEq
+aaa
+qGy
+qIg
+dJN
+hEb
+dXN
+wcE
+qGy
abj
+bCI
abj
+bCI
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaq
+aaa
+aaa
+aaa
aaa
-dGW
-dGW
-dIQ
-hrm
-dKu
-dOz
-dOz
-dOz
-dOz
-dOz
-dKu
-dOz
-dOz
-dOz
-dOz
-dOz
-dKu
-dSv
-dIT
-dTP
-dUx
-dVh
-dVt
-dVB
-dVG
-dVG
-dVO
-dVU
-dIT
aaa
aaa
aaa
@@ -176248,7 +179832,14 @@ aaa
aaa
aaa
"}
-(170,1,1) = {"
+(177,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -176281,191 +179872,167 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bCI
+bCI
+abj
+bCI
bCI
aaa
-bvh
+aaa
abj
-agI
-ajN
-afg
-juc
-dZt
-dZE
-agI
-ahb
-ahI
-aia
-vEw
-aiO
-iyV
-ajh
-rhx
-akf
-akF
-alh
-alA
-alM
-amc
-amE
-avm
-amb
-cxz
-aww
-aww
-sjs
-fkP
-arX
-mwc
-qZe
-ePl
-fyp
-sjs
-axu
-ayD
-azH
-aAV
-ras
-aBS
-aBS
-aBS
-aBS
-aBS
-aBS
-aXZ
-aKG
-aBS
-tiq
-aBS
-aKK
-azL
-aTs
-aTw
-aWw
-aXW
-aZo
-bbg
-bej
-bee
-bfy
-bgL
-bib
-bjH
-blN
-bbi
-bov
-dxV
-bso
-jlH
-kkK
-kkK
-kkK
-bwf
-bAr
-bCl
-bDU
-bFR
-bHx
-bJr
-bLg
-bNh
-bPb
-bQU
-bST
-bVb
-bWZ
-bYF
-cat
-cco
-cea
-bST
-chA
-ciS
-ckF
-cmd
-cnG
-cht
-nsl
-crP
-ctk
-csV
-cvR
-cxl
-cyy
-cBv
-cBH
-cDf
-cEp
-cGK
-pTj
-dzh
-cRs
-cKX
-cMt
-cNW
-cPJ
-cRm
-cSG
-xSu
-eQA
-cXr
-vni
-mXF
-uLv
-ogH
-qkL
-muV
-dfy
-diF
-dkd
-dlm
-duq
-dfy
-dpo
-dfy
-duk
-dtf
-qRt
-dvA
-teK
-dxQ
-dzd
-dAk
-duk
-dCb
-nKX
-iMk
aaa
+aaa
+bCI
+bCI
+abj
+bqc
+abj
+bwT
+abj
+bCI
+abj
+snP
+bKK
+bPB
+aQF
+bCh
+bCh
+avr
+snP
+abj
+cze
+aNk
+aNk
+aNk
+aNk
+aNk
+aNk
+aNk
+aNk
+aNk
+bwx
+cLb
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+hRC
+bii
+dPq
+bfF
+dXw
+abj
+abj
+ykg
+ykg
+oee
+ykg
+mAV
+pGY
+ykg
+oee
+ykg
+wkK
+cJv
+tQq
+jun
+gRO
+vjQ
+jun
+xlq
+xux
+xPg
+vVv
+pOC
+ydS
+aaS
+dBV
+chD
+caw
+dFD
+dHl
+chD
+dLH
+dOn
+dPZ
+dSr
+ydS
+fre
+aXl
+fvU
+cxn
+qla
+jxS
+fFC
+rRA
+cBI
+cxn
+xfV
+lsh
+sod
+tzL
+cKY
+cRq
+nSl
+cOb
+btT
+eTL
+rgY
+rgY
+rgY
+rgY
+cYR
+fro
+dbf
+qTv
+qQu
+dkk
+tdp
+dqR
+mya
+thl
+dqR
+dqR
+dqR
+thl
+dqR
+dqR
+xKE
+mDI
+xKE
+diJ
+diJ
+lsh
+imF
+hLL
+abj
abj
+tvZ
+eLo
+rWu
+abj
+abj
+rmy
+tGA
+oum
+hUP
+qBG
+uCn
+muK
aaa
-dYe
-dYf
-dIR
-kMn
-dKu
-dKT
-dKw
-dMt
-mgc
-dKT
-dKu
-dMt
-dNf
-dKT
-dLM
-dMt
-dKu
-dSv
-dSz
-dJK
-dKu
-dKu
-dVu
-dWJ
-dVG
-dVG
-dVP
-dVV
-dIT
+bCI
+abj
aaa
aaa
aaa
@@ -176504,8 +180071,6 @@ aaa
aaa
aaa
aaa
-"}
-(171,1,1) = {"
aaa
aaa
aaa
@@ -176523,6 +180088,8 @@ aaa
aaa
aaa
aaa
+"}
+(178,1,1) = {"
aaa
aaa
aaa
@@ -176538,191 +180105,9 @@ aaa
aaa
aaa
aaa
-bCI
-abj
-bvh
aaa
-aiT
-akj
-aff
-arU
-dZu
-dZF
-agJ
-ahc
-ahH
-vEw
-nLX
-aiP
-tpv
-ajh
-mKR
-avm
-akG
-ccd
-rqF
-alX
-amd
-amF
-avm
-hCJ
-cxz
-aww
-rRs
-rOG
-ePl
-arY
-lzH
-ePl
-uDV
-dnP
-snP
-tzg
-hES
-azI
-uAf
-aBR
-maw
-aDU
-aER
-aDU
-aDU
-aDU
-aJp
-aKH
-aDU
-aDU
-aDU
-aTV
-azL
-aTt
-aUZ
-aWx
-aXX
-aZp
-bcO
-bcF
-bef
-bfz
-blE
-bic
-bfy
-bnf
-bNB
-boA
-bqv
-bsr
-hPQ
-bxi
-bxi
-oJT
-bwf
-uoW
-eYe
-bDT
-jAa
-bHx
-bHx
-bHx
-bHx
-bHx
-bHx
-bST
-bST
-bST
-bST
-bST
-bST
-bST
-bST
-cht
-cht
-ckG
-cht
-cht
-cht
-crQ
-csX
-csV
-csV
-csV
-csV
-csV
-csV
-csV
-csV
-csV
-cGL
-lyo
-ktO
-cSF
-cSF
-cVH
-cNX
-cQb
-dnO
-drW
-xSu
-eQA
-cXr
-fPQ
-xte
-daZ
-fuv
-lEM
-daZ
-dfy
-dfy
-bQV
-dfy
-dfy
-dfy
-dAn
-tuv
-duk
-duk
-duk
-duk
-isP
-dxR
-duk
-duk
-duk
-dCc
-dDh
-dEo
aaa
-abj
aaa
-dYe
-dYf
-dIS
-dJK
-dKu
-dOy
-dOy
-dOy
-dOy
-dOy
-dKu
-dOy
-dOy
-dOy
-dOy
-dOy
-dKu
-dSv
-dSz
-dJK
-dKu
-dKu
-dVu
-dWJ
-dVG
-dVG
-dVQ
-dVW
-dIT
aaa
aaa
aaa
@@ -176749,25 +180134,164 @@ aaa
aaa
aaa
aaa
+bCI
aaa
aaa
+abj
aaa
aaa
+azQ
+aKx
+aMM
aaa
aaa
+abj
aaa
aaa
+abj
+aEy
aaa
+bCI
+abj
+snP
+bLq
+snP
+hrt
+bBS
+bBS
+snP
+snP
+abj
+cze
+cbT
+aNk
+aNk
+aNk
+aNk
+aNk
+aNk
+aNk
+drH
+bwx
+cLb
+abj
aaa
aaa
+bCI
+bvh
+bvh
aaa
-"}
-(172,1,1) = {"
aaa
+abj
+hih
+cnA
+dUz
+bhZ
+dUz
+cnA
+lJR
+abj
+ykg
+nxE
+ofo
+vfE
+oVx
+pHJ
+rVi
+qwX
+rBA
+wkK
+ugi
+jun
+oGY
+rVa
+bQV
+wzs
+xmo
+xnx
+egq
+vVv
+aYe
+bYM
+bYM
+bYM
+dIW
+dIW
+bgL
+dIW
+dIW
+bYM
+bYM
+ydS
+ydS
+ydS
+ftj
+tUh
+lzN
+cxn
+cxn
+cxn
+ndu
+cxn
+cxn
+cxn
+vov
+mFN
+yaz
+mFN
+cKY
+jqj
+jbQ
+cOc
+dAq
+lWu
+mEt
+cXv
+oKJ
+cXv
+cYS
+pjj
+pFW
+dqR
+iDJ
+vEb
+dut
+uHP
+nKi
+iDE
+xRX
+uAC
+dpw
+lGZ
+kQE
+dqR
+uWi
+oql
+jJn
+eMN
+diJ
+lsh
+hYI
+mFN
aaa
aaa
+tvZ
+act
+rWu
aaa
aaa
+qGy
+uAh
+dXL
+dXM
+dXO
+dXR
+qGy
+abj
+abj
+abj
+bCI
+bCI
aaa
aaa
aaa
@@ -176795,191 +180319,9 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-abj
aaa
-aiT
-amR
-afi
-afB
-dZw
-dZG
-dZM
-ahd
-ahJ
-ovg
-aiu
-aiO
-iyV
-ajh
-yky
-avm
-avm
-ali
-avm
-alO
-tRE
-avm
-avm
-aLx
-aoh
-lgN
-apw
-dkZ
-mBj
-nsP
-aux
-uDV
-mwc
-wsA
-aww
-axu
-ayD
-azJ
-aAV
-jAB
-aCL
-aDi
-aEU
-aBQ
-aBS
-aEZ
-aXZ
-aNw
-aBS
-aMk
-aBS
-aUj
-aRW
-aDU
-aDU
-aWy
-aXY
-aZq
-bbi
-bcG
-beg
-bfA
-bgN
-bid
-bjI
-bnh
-bbi
-bov
-bqy
-bss
-coE
-buZ
-bwm
-buZ
-bza
-bAH
-bCC
-bEo
-bAH
-bHA
-buZ
-buZ
-buZ
-qeJ
-coE
-fYe
-bVc
-sGl
-sxM
-pnb
-sGl
-sGl
-pwU
-sGl
-ciV
-ckH
-sGl
-sGl
-otJ
-cqn
-crR
-xit
-cun
-fIa
-cxm
-cyz
-wts
-xit
-igV
-xit
-cVY
-cGC
-cHP
-dWP
-cSF
-cMu
-cYT
-cPL
-cRn
-drX
-xFI
-ddW
-cYU
-cYN
-dgx
-dba
-sCh
-eqt
-dgx
-dgP
-dob
-bQZ
-qwZ
-dmp
-pkH
-jMO
-qwZ
-dsb
-pLM
-qwZ
-hQc
-dwD
-dxS
-ebz
-dAm
-cOl
-dCd
-dDh
-dEq
-abj
-abj
aaa
-dGW
-dGW
-dIQ
-dJK
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dKu
-dSv
-dIT
-dTQ
-dUy
-dVi
-dUB
-dVB
-dVG
-dVK
-dVO
-dVX
-dIT
aaa
aaa
aaa
@@ -177003,6 +180345,9 @@ aaa
aaa
aaa
aaa
+"}
+(179,1,1) = {"
+aaa
aaa
aaa
aaa
@@ -177018,8 +180363,6 @@ aaa
aaa
aaa
aaa
-"}
-(173,1,1) = {"
aaa
aaa
aaa
@@ -177048,195 +180391,179 @@ aaa
aaa
aaa
aaa
+abj
aaa
+azQ
+aKx
+aMM
aaa
+azQ
+asR
+aMM
aaa
+azQ
+aKx
+aMM
aaa
+abj
+aEy
+abj
bCI
abj
-bvh
+acF
+aaa
+acF
+abj
+abj
+abj
+abj
+abj
+abj
+cze
+aNk
+aNk
+aNk
+aNk
+aNk
+aNk
+aNk
+aNk
+aNk
+bwx
+cLb
+abj
+aaa
aaa
-agI
-aeQ
-afC
-afC
-dZx
-dZH
-agI
-fcT
-ahK
-pTJ
-aiw
-aiP
-tpv
-amf
-ajK
-akh
-akH
-alj
-fPA
-alP
-gaj
-mLS
-agK
-anA
-aoI
-lgN
-lBb
-asN
-auw
-asa
-evl
-uDV
-uDV
-avp
-ayS
-axv
-ayE
-azK
-aAW
-eqA
-aCM
-wmH
-aET
-qyj
-aEW
-aKL
-aJq
-aOQ
-aMi
-aQq
-aTu
-aUo
-aRX
-aTu
-aTu
-bbh
-aXZ
-bcJ
-bbe
-bcH
-beh
-bgU
-bgO
-bie
-bfL
-blF
-bbe
-boB
-bqz
-bst
-bSi
-bva
-bwn
-btK
-bva
-bva
-bCD
-bEp
-obl
-bHB
-bva
-bva
-bva
-bva
-bSi
-iob
-bVd
-pfr
-jmw
-usO
-lqE
-lqE
-lqE
-lqE
-qlg
-ckI
-lqE
-lqE
-fLk
-cqo
-crS
-fjX
-stA
-nbP
-stA
-stA
-stA
-stA
-cDd
-stA
-dak
-cGD
-duE
-dWQ
-cHR
-cMv
-cNY
-cPM
-dnS
-cSH
-dsW
-dup
-dBk
-dbb
-dgy
-pot
-dcr
-ddX
-dgy
-dgQ
-diI
-dkg
-dpr
-dKV
-xvy
-nnU
-dqF
-pOL
-xvy
-dKV
-dpr
-dwE
-dxT
-vAb
-uzn
-dBm
-dCe
-dDq
-dEo
aaa
abj
aaa
-dYe
-dYf
-dIT
-dLO
-dKv
-dOz
-dKu
-dKu
-dOz
-dOz
-dWB
-dOz
-dOz
-dOz
-dNR
-dNR
-dKv
-dLO
-dIU
-dJI
-dJI
-dOA
-dWD
-dTd
-dVF
-dVL
-dVL
-dVY
-dIT
+aaa
+aaa
+abj
+ckR
+hSA
+dnV
+dnV
+blN
+kln
+ckR
+abj
+mAN
+guX
+ogG
+eJV
+oVM
+pIq
+heh
+qxP
+rCs
+wkK
+tcH
+rYY
+eMZ
+vlU
+cOt
+gRO
+xlq
+xux
+vUF
+oXa
+fnm
+bYM
+hzN
+fyk
+cay
+dLI
+bgN
+ccq
+dJc
+sCp
+bYM
+dQa
+cnI
+dTS
+hgR
+bUH
+fAl
+trA
+qfW
+nAl
+hHL
+vwy
+cnP
+hid
+wqD
+mPE
+jbb
+ibI
+cKY
+dAq
+cKY
+dAq
+cKY
+kVs
+pfN
+uez
+scS
+vLq
+xOX
+gYp
+cKY
+dqR
+ppG
+rrR
+dmj
+dke
+ufp
+bRk
+nmy
+izP
+nmy
+oyq
+fed
+dqR
+sYW
+xrn
+kEp
+hPb
+diJ
+oVf
+xfV
+yaz
+aaa
+dFG
+dFG
+uFl
+dFG
+dFG
+snF
+qGy
+uju
+dKy
+dKW
+tMV
+dLL
+qGy
+dFG
+dFG
+abj
+abj
+abj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaq
+cDs
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -177276,7 +180603,19 @@ aaa
aaa
aaa
"}
-(174,1,1) = {"
+(180,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -177311,193 +180650,162 @@ aaa
aaa
bCI
aaa
-bvh
+azQ
+asR
+aMM
+aaa
+azQ
+asR
+aMM
+aaa
+azQ
+asR
+aMM
+aaa
abj
-agI
-amV
-afl
-afl
-dZy
-agI
-agI
-ahf
-lgx
-aia
-aiw
-aiO
-iyV
-vEw
-vEw
-vEw
-ahY
-afA
-nLX
-alQ
-amf
-oIq
-agK
-bkR
-aoh
-lgN
-apx
-eUK
-avq
-arY
-rcP
-gKi
-kfh
-jjA
-awy
+aEy
+aaa
+abj
+abj
+abj
+aaa
+abj
+aaa
kyY
-ayD
-dAZ
-aFO
-aBS
-aBS
-aBS
-aBY
-dBR
-aKC
-aBS
-aBS
-aBS
-aMj
-aBS
-aBS
-aKK
-azL
-aBS
-aBS
-aWA
-aYa
-bcK
-bbe
-bbe
-bbi
-bio
-bgJ
-blK
-bbi
-bbe
-bbe
-boC
-bqA
-bsu
-bSV
-bvb
-bwo
-bxz
-bzb
-bvb
-bCE
-bEq
-dBg
-bvb
-bvb
-bvb
-bvb
-bPc
-bSV
-bSU
-cGB
-bXa
-kCZ
-cau
-kCZ
-kCZ
-cfS
-tiL
-ciW
-ckJ
-cme
-kCZ
-iTT
-cqp
-crT
-ctb
-cuo
-tjW
-jCn
-cyA
-jCn
-jCn
-lUP
-jCn
-cFc
-cGE
-cHQ
-dWR
-uKR
-cMw
-dlp
-cPN
-dqz
-cSF
-hQL
-lbf
-iwx
-gHp
-dgz
-dbc
-xTh
-ddY
-iFS
-dgR
-tnw
-kUQ
-tnw
-tnw
-neq
-dnR
-dnR
-kUQ
-tnw
-tnw
-dvE
-dwF
-sio
-nYK
-jeI
-gPh
-dBV
-dDm
-dEo
+kyY
+aaa
aaa
abj
+cze
+aNk
+aNk
+aNk
+aNk
+cRo
+aNk
+aNk
+aNk
+drK
+cGw
+dBl
+abj
aaa
-dYe
-dYf
-dIU
-dJI
-dKw
-dIT
-dOa
-dOa
-dIT
-dNT
-dOA
-dJI
-dJI
-dJI
-dQt
-dQt
-dJI
-dJI
-dTd
-dTc
-dUz
-dWC
-dWE
-dIQ
-dVH
-dVM
-dVR
-dVZ
-dIQ
aaa
aaa
+abj
+aaa
aaa
aaa
+abj
+dUz
+dJJ
+blN
+dnV
+blN
+kUb
+lKG
+abj
+ykg
+nxM
+ejm
+vfE
+gVB
+naQ
+rVi
+qzh
+dfd
+wkK
+tdm
+jun
+uhn
+xYn
+bXi
+daU
+fXv
+arw
+dCV
+mDK
+kYC
+xBx
+wsP
+pHP
+wsP
+dLK
+vYj
+dHm
+dLK
+rwM
+bYM
+dQa
+dVM
+vSD
+vSD
+fVM
+iXb
+vSD
+vSD
+vSD
+hHL
+bEa
+cnP
+jdn
+xWh
+xWS
+xWS
+uJx
+cKY
+pPx
+riA
+cOd
+dAq
+bQc
+tMm
+cKY
+hzS
+luG
+lAO
+cZM
+pbw
+dqR
+ghk
+rvh
+oHL
+spC
+gVa
+lMW
+tSz
+vfc
+tSz
+vsp
+dsh
+dqR
+huT
+xnm
+feD
+xYy
+diJ
+lsh
+imF
+mFN
+abj
+dFG
+bXA
+egU
+rzv
+qsZ
+gVU
+sNW
+tXT
+tkR
+vJw
+tkR
+tkR
+jJW
+mjk
+dFG
+jsa
+hZV
+abj
aaa
aaa
aaa
@@ -177507,6 +180815,10 @@ aaa
aaa
aaa
aaa
+cDs
+cDs
+abj
+abj
aaa
aaa
aaa
@@ -177532,8 +180844,6 @@ aaa
aaa
aaa
aaa
-"}
-(175,1,1) = {"
aaa
aaa
aaa
@@ -177549,6 +180859,8 @@ aaa
aaa
aaa
aaa
+"}
+(181,1,1) = {"
aaa
aaa
aaa
@@ -177568,189 +180880,8 @@ aaa
aaa
aaa
aaa
-bvh
aaa
-agI
-anB
-afm
-avd
-dZz
-agJ
-dZN
-ahg
-ahL
-bbn
-aix
-aiP
-tpv
-vEw
-vEw
-vEw
-vEw
-vEw
-vEw
-vEw
-vEw
-amH
-agK
-aql
-aoh
-aww
-apy
-rBk
-mwc
-asa
-asN
-uDV
-uDV
-mwc
-awy
-atN
-ayD
-azM
-aFO
-aEY
-aCN
-aEQ
-aJl
-ayD
-aKD
-aEX
-aGQ
-aEQ
-aMj
-aOS
-aGQ
-aKK
-azL
-aTv
-aUZ
-aWA
-aYb
-bcL
-bbe
-bfw
-bei
-bfD
-bgP
-big
-bjK
-bni
-bng
-boK
-bng
-bsv
-hPQ
-kkK
-bwp
-bxA
-kkK
-kkK
-hPQ
-hPQ
-bLh
-bLh
-cZa
-bLh
-cZa
-bLh
-bLh
-bXC
-bYL
-ciA
-bYG
-bYH
-bYH
-bYH
-bYH
-cfT
-cui
-bYK
-bYH
-bYH
-bYH
-bYH
-bYH
-cBh
-cCY
-ddk
-cxn
-cxn
-cxn
-cxn
-cHT
-cHT
-dal
-cGF
-duL
-cJq
-cJq
-cJq
-cMx
-cJq
-cJq
-cJq
-gYp
-kwl
-xgP
-eJl
-xjj
-dci
-ddM
-dfr
-dms
-dms
-cZN
-vxs
-cZN
-dms
-dvJ
-dvJ
-dGa
-hDC
-dGa
-dvJ
-dvJ
-mUg
-wVA
-jMs
-gPh
-oXV
-dBV
-dDh
-dEq
-abj
-abj
aaa
-dGW
-dGW
-dIQ
-dTz
-dXB
-dKU
-dXN
-dXP
-dNg
-dNU
-dIQ
-dKR
-dLN
-dPO
-dNR
-dNR
-dRe
-dRY
-dIQ
-dTR
-dUA
-dVk
-dJI
-dVC
-dOA
-dJI
-dIT
-dJI
-dVD
aaa
aaa
aaa
@@ -177774,23 +180905,164 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+azQ
+asR
+aEx
+abj
+azQ
+asR
+aMM
+abj
+azQ
+asR
+aMM
+abj
+abj
+aEy
aaa
+bCI
+bCI
+acF
aaa
+acF
aaa
aaa
aaa
aaa
aaa
+abj
+czi
+aKD
+aKD
+aKD
+aKD
+aKD
+cZi
+aKD
+aKD
+drL
+dxn
aaa
+abj
aaa
aaa
aaa
+abj
aaa
aaa
aaa
+abj
+ckR
+bjS
+dnV
+dnV
+blN
+kWR
+ckR
+abj
+ykg
+rVi
+qGj
+ykg
+mvI
+ixc
+ykg
+vPt
+vfE
+wkK
+ten
+lwy
+xfE
+bFS
+cSB
+lwy
+xno
+xux
+vUF
+dnw
+wPh
+xBx
+pzH
+wnD
+dfE
+dLK
+dtb
+dHo
+dLK
+dLN
+bYM
+dQa
+dVM
+vSD
+cJc
+fVM
+vSD
+vSD
+bws
+uHf
+cyG
+cAg
+cnP
+gLA
+rxr
+cUz
+cUz
+cZS
+cKY
+vSm
+lUZ
+gwx
+hoH
+jxN
+mFb
+vLq
+vFU
+vUh
+tnS
+gFV
+vPl
+dqR
+rab
+nmy
+nmy
+xvo
+qKS
+tGD
+vDe
+rOm
+fNQ
+vqK
+uXl
+dqR
+lde
+elW
+eUt
+xYM
+diJ
+tzL
+xfV
+hLL
aaa
-"}
-(176,1,1) = {"
+tvZ
+uLW
+jzY
+dLa
+lbP
+qmz
+isF
+pWb
+dKz
+vwj
+uRB
+cOA
+hiQ
+lQm
+jWC
+fju
+abj
+abj
aaa
aaa
aaa
@@ -177801,6 +181073,10 @@ aaa
aaa
aaa
aaa
+abj
+abj
+cDs
+aaa
aaa
aaa
aaa
@@ -177825,185 +181101,9 @@ aaa
aaa
aaa
aaa
-bvh
aaa
-aiT
-anC
-afn
-cwC
-dZA
-dZI
-ahd
-ahh
-ahe
-gDz
-ivL
-usE
-xWx
-amI
-ajL
-aki
-mAN
-alk
-amI
-alS
-pCL
-amI
-lor
-aoa
-ozQ
-aww
-aww
-sjs
-arj
-aww
-jyC
-mBj
-uDV
-avq
-awy
-kyY
-ayD
-azN
-aFO
-aIe
-aCN
-aEX
-dwp
-dCY
-dEk
-aEQ
-aGQ
-aQn
-duo
-aEX
-aGQ
-aKK
-azL
-aTw
-aVa
-aWA
-aYc
-aZu
-bel
-bfC
-bej
-bfy
-bgL
-bih
-bjL
-boD
-bNC
-boE
-bng
-abj
-abj
-abj
-bwp
-bxA
-kkK
-abj
-abj
-abj
-bLh
-bHE
-bHI
-bLi
-bNi
-bPd
-bLh
-bSW
-bVg
-bXc
-bYH
-cav
-ccp
-ceb
-cay
-chC
-ciY
-cax
-cmf
-cvu
-coI
-cqq
-bYH
-ctd
-crW
-lpT
-cxn
-cBE
-cBE
-cBE
-cHT
-cEm
-cFd
-ckW
-dvT
-cJq
-cMA
-cMy
-cOa
-cPP
-cPO
-cJq
-cUg
-dvB
-cXt
-cYQ
-xjj
-cbV
-eqy
-dea
-dms
-dgS
-wFg
-utI
-dFE
-dmt
-dvJ
-dpu
-dqH
-dsd
-dul
-dur
-dvJ
-eMa
-dxX
-dVv
-sgM
-iYV
-dBU
-dDi
-dEo
aaa
-abj
aaa
-dYe
-dYf
-dIR
-dYg
-dJN
-dKU
-dXN
-dXP
-dNg
-dJN
-dJJ
-dNR
-dOB
-dPP
-dPP
-dPP
-dRW
-dSx
-dIQ
-dTS
-dUB
-dVl
-dWF
-dIU
-dVD
aaa
aaa
aaa
@@ -178016,6 +181116,8 @@ aaa
aaa
aaa
aaa
+"}
+(182,1,1) = {"
aaa
aaa
aaa
@@ -178046,8 +181148,6 @@ aaa
aaa
aaa
aaa
-"}
-(177,1,1) = {"
aaa
aaa
aaa
@@ -178062,7 +181162,24 @@ aaa
aaa
aaa
aaa
+abj
+aaa
+azQ
+asR
+aMM
+aaa
+azQ
+asR
+aMM
+aaa
+azQ
+asR
+aMM
aaa
+abj
+aEy
+abj
+bCI
aaa
aaa
aaa
@@ -178072,6 +181189,138 @@ aaa
aaa
aaa
aaa
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+bvh
+bvh
+bvh
+abj
+abj
+abj
+hjA
+cnA
+dUz
+chL
+dUz
+cnA
+ewm
+abj
+ykg
+nAw
+nJf
+vfE
+oWp
+fON
+rVi
+qzP
+rtn
+wkK
+tfS
+hSs
+cYJ
+lTt
+cYJ
+dAn
+nzz
+xnx
+uZR
+qze
+wPK
+xBx
+wsP
+chI
+wsP
+dLK
+cFe
+nOs
+dLK
+jRq
+bYM
+dQa
+dVM
+fcN
+evQ
+iFR
+vSD
+cti
+bNl
+fcN
+hHL
+jrh
+cnP
+iBj
+gLA
+byn
+lsh
+daS
+cKY
+dAq
+cKY
+dAq
+cKY
+wwI
+hNH
+cKY
+qjy
+ikS
+wFR
+gay
+dbj
+dqR
+xNb
+fUr
+usN
+dld
+tMO
+cYK
+dmv
+uAC
+dpA
+fUO
+qvY
+dqR
+lvv
+eYF
+xKL
+diJ
+dgW
+lsh
+imF
+mFN
+abj
+dFG
+mEL
+gRd
+dHg
+dLd
+gRd
+lSx
+xNy
+sgw
+oPH
+dAz
+jVb
+oPH
+dRf
+dFG
+nNJ
+cAa
+abj
+abj
aaa
aaa
aaa
@@ -178082,184 +181331,12 @@ aaa
aaa
aaa
aaa
-bvh
aaa
-aiT
-aoi
-aec
-cEA
-dZB
-dZJ
-ahc
-alT
-mMr
-ggD
-mMr
-ggD
-iDF
-vEw
-ajM
-aia
-ahL
-all
-vEw
-alT
-hUe
-ajh
-agK
-apK
-aoh
-amb
-alZ
-vWy
-two
-asb
-mwc
-atS
-auy
-avr
-hrt
-atN
-ayD
-azO
-aFO
-aEQ
-aCN
-aEY
-aEU
-dDe
-aBS
-aMf
-aGQ
-aEQ
-aMj
-aEX
-aGQ
-aWC
-aRY
-aTx
-aVb
-aWB
-aYd
-aZv
-bey
-bfM
-bek
-bfF
-bgR
-bii
-bjM
-boF
-bQa
-bQg
-bng
+cDs
abj
-btL
-btL
-bwq
-bxB
-bzc
-btL
-btL
aaa
-dcA
-bHC
-bRa
-bLj
-bNj
-bPe
-bQW
-bSX
-dee
-bXd
-bYI
-caw
-caw
-cec
-cec
-chD
-ciZ
-caw
-caw
-caw
-caw
-cec
-bYI
-cte
-crW
-lpT
-cxn
-cyC
-cAd
-cBF
-cHT
-cJx
-den
-cGI
-dAr
-cJq
-cLa
-cRr
-cOb
-cPQ
-cRq
-cJq
-cUh
-cVQ
-cXu
-cYR
-cZK
-dbf
-dct
-dea
-cZP
-dgU
-diL
-dkk
-dlr
-dmu
-dvJ
-dpv
-dqI
-dse
-dtg
-dus
-dvH
-nCN
-jxk
-dzj
-sgM
-hKm
-dBV
-dDm
-iMk
aaa
-abj
aaa
-dYe
-dYf
-dIS
-dYh
-dJN
-dKU
-dXN
-dXP
-dNg
-dJN
-dJJ
-dNR
-dPh
-dPQ
-dPQ
-dPQ
-dRX
-dSx
-dIQ
-dTR
-dSv
-dJK
-dWF
-dIT
aaa
aaa
aaa
@@ -178296,6 +181373,8 @@ aaa
aaa
aaa
aaa
+"}
+(183,1,1) = {"
aaa
aaa
aaa
@@ -178303,8 +181382,6 @@ aaa
aaa
aaa
aaa
-"}
-(178,1,1) = {"
aaa
aaa
aaa
@@ -178339,184 +181416,27 @@ aaa
aaa
aaa
aaa
+bCI
abj
+bCI
+bCI
+abj
+azQ
+asR
+aMM
aaa
-agI
-aox
-aGV
-cLA
-dZC
-agJ
-dZT
-alm
-jYz
-eQd
-vEw
-vEw
-vEw
-vEw
-gdW
-miK
-alm
-alm
-qjW
-alm
-alm
-vib
-agK
-xdH
-aog
-aoL
-apW
-aww
-sjs
-aww
-lgN
-lgN
-sjs
-asd
-awz
-axx
-asd
-azP
-aFO
-aBP
-aCN
-aEZ
-aEV
-aEZ
-aBS
-aFJ
-aGQ
-aNw
-aMl
-aEZ
-aGQ
-aWG
-aRZ
-aSa
-aVc
-bbj
-aYe
-aZw
-aSb
-bfN
-bhZ
-bfG
-bfA
-bij
-bjN
-bsC
-bng
-boG
-bqB
-bvh
-btL
-bvc
-bwr
-bxC
-bwv
-bvc
-btL
aaa
-dcA
-buY
-cXw
-bLk
-bNk
-bPf
-bLh
-bSY
-bVg
-bXc
-bZi
-cax
-ccq
-chC
-ced
-ccq
-cja
-ckK
-ccq
-cax
-cax
-chC
-bZi
-ctf
-cur
-cvT
-cxn
-cyD
-cAc
-cUw
-cHT
-cSU
-dep
-dpC
-dBI
-cJq
-cLb
-cSM
-cOc
-cRr
-cZp
-cJq
-cUi
-cVR
-cXv
-cYS
-xjj
-dbh
-dcu
-dea
-cZP
-dgV
-diK
-dkj
-dls
-vEb
-dvJ
-dpw
-dqJ
-dsf
-dth
-dut
-dvH
-eMa
-wJA
-qIk
-sgM
-wDC
-dBU
-dDh
-dEq
-abj
+aKK
+aaa
+aaa
+azQ
+asR
+aMM
+aaa
abj
+aEy
aaa
-dYe
-dYf
-dIQ
-dXt
-dXL
-dXM
-dXO
-dXR
-dNh
-dNV
-dOC
-dKS
-dPi
-dPR
-dRd
-dRd
-dLO
-dSy
-dIQ
-dLO
-dUC
-dVm
-dWF
-dIQ
+bCI
aaa
aaa
aaa
@@ -178547,7 +181467,118 @@ aaa
aaa
aaa
aaa
+abj
+abj
+abj
+acF
+jgl
+acF
+abj
+abj
+abj
+mAV
+nAA
+fMS
+xbB
+oVM
+mDN
+vzV
+qAH
+vBE
+wkK
+xuF
+xnx
+xuF
+ycJ
+xuF
+xnx
+xuF
+xnx
+iOk
+irq
+bXD
+bYM
+hCd
+umL
+caB
+ccs
+otC
+wsP
+wsP
+slF
+bYM
+cnP
+jNM
+vSD
+lLz
+ffi
+vSD
+qAT
+nSA
+fcN
+czU
+cnP
+cnP
+vsF
+vsF
+vsF
+vsF
+jww
+cKY
+gfJ
+oKb
+vdX
+xIw
+tGR
+mFb
+vLq
+iFu
+olb
+cKd
+ihs
+dbk
+qTv
+dqR
+dqR
+dqR
+dqR
+dqR
+dqR
+dqR
+dqR
+dqR
+dqR
+dqR
+dqR
+diJ
+diJ
+diJ
+diJ
+lsh
+xci
+vEU
+xLH
aaa
+dFG
+xOy
+nKr
+gcs
+dLQ
+xOy
+xOy
+xOy
+nTY
+xOy
+dLR
+dMw
+nKr
+xOy
+dFG
+dFG
+dFG
+dFG
+abj
+bCI
aaa
aaa
aaa
@@ -178558,10 +181589,10 @@ aaa
aaa
aaa
aaa
+abj
+abj
aaa
aaa
-"}
-(179,1,1) = {"
aaa
aaa
aaa
@@ -178596,184 +181627,11 @@ aaa
aaa
aaa
aaa
-agI
-bms
-agI
-aph
-art
-art
-agI
-agI
-agK
-akI
-agK
-agK
-weg
-vEw
-vEw
-vEw
-agK
-agK
-akI
-akI
-agK
-akI
-akI
-agK
-agK
-aeB
-aeB
-aoM
-aeB
-aeB
-abj
-abj
-acF
-acF
-abj
-asc
-azf
-axy
-asd
-awg
-aAX
-hpc
-aFa
-aKI
-aKI
-aKI
-aKI
-aKI
-aGR
-aKI
-aKI
-hpc
-aGR
-aXU
-aSa
-aTy
-aVd
-aWD
-aYf
-aZx
-bbl
-bfN
-bif
-bfH
-kln
-bik
-bjO
-aOK
-bng
-boG
-bqC
-abj
-btL
-bvd
-bws
-bxD
-bwu
-bAI
-btL
-abj
-bLh
-bHH
-bXg
-bLl
-bNl
-bPg
-bQY
-bSZ
-bVh
-bXe
-bYK
-cay
-ccq
-cqu
-ced
-cAH
-cjb
-ckL
-cmg
-cnI
-coJ
-cqr
-crU
-ctg
-sRr
-cvU
-cxn
-cyE
-cAe
-cBG
-cHT
-cHT
-cHT
-dsl
-cHT
-cJq
-cSI
-cXq
-cZd
-qZt
-dcE
-cJq
-cUh
-uez
-lrV
-lbD
-gYp
-kLF
-wRB
-ppG
-dms
-diG
-dke
-dlk
-dmj
-fNB
-dvJ
-dpx
-dqK
-dsg
-dti
-duu
-dvJ
-kEp
-lQw
-dzk
-sgM
-dBq
-dCa
-dDr
-dEo
aaa
-abj
aaa
aaa
-dHY
-dIV
-dJI
-dKy
-dKW
-dKW
-dLL
-dJI
-dJI
-dIV
-dJI
-dKy
-dKW
-dKW
-dKW
-dLL
-dJI
-dIV
-dIT
-dTT
-dTT
-dIT
-dVD
+"}
+(184,1,1) = {"
aaa
aaa
aaa
@@ -178815,20 +181673,32 @@ aaa
aaa
aaa
aaa
+bCI
aaa
+abj
aaa
-"}
-(180,1,1) = {"
aaa
aaa
+aKK
+aaa
aaa
aaa
+aEy
aaa
aaa
aaa
+aKK
+abj
+abj
+abj
+aEy
+abj
+bCI
+abj
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -178853,159 +181723,135 @@ aaa
aaa
aaa
aaa
+bCI
abj
abj
-bms
+cri
+cri
+cri
+cri
+laz
+lLU
+cri
+cri
+nCX
+jmN
+vfE
+oWt
+jdI
+rVi
+qAY
+hRD
+ykg
+tif
+baC
+ntt
+eRr
+jqp
+wzK
+cRe
+rZF
+ncC
+pQN
+drR
+bYM
+bYM
+bYM
+bYM
+bYM
+xzk
+cjf
+chH
+wti
+bYM
+gBu
+tbb
+fcN
+fHj
+cAk
+vSD
+mxv
+eCU
+vSD
+mTh
+piW
+cnP
+eMU
+vAa
+icS
+vsF
+xfV
+cKY
+jfE
+onT
+izJ
+dAq
+uNE
+oYp
+cKY
+uZn
+lGJ
+oJX
+ufP
+orl
+mFN
+nlJ
+tzL
+dwC
+sNa
+dgY
+tzL
+sNa
+sNa
+lsh
+vtW
+xZu
+wqx
+rFn
+wqx
+feb
+xZu
+yfK
+yfK
+pWn
+xLH
+abj
+dFG
+lfv
+fBw
+vJw
+dLU
+dMv
+xOy
+ehl
+dKA
+xOy
+ipw
+iGE
+fvV
+eMz
+dOF
+imN
+uaF
+dFG
+abj
+bCI
+abj
+bCI
aaa
aaa
aaa
-abj
aaa
-abj
aaa
aaa
-agK
-aiy
-aiy
-aiy
-wHK
-agK
aaa
-abj
aaa
abj
+cDs
aaa
aaa
-abj
aaa
-aeB
-dtF
-duO
-dGZ
-aeB
-abj
-asc
-asc
-asc
-asd
-avs
-awB
-axz
-asd
-azQ
-aBn
-aBn
-aCO
-aDW
-aDX
-aDX
-aDX
-aDX
-aNk
-aDX
-dwh
-aDX
-aQv
-aYt
-aSa
-aTz
-aVe
-aWE
-aYg
-aZy
-aSa
-bfN
-bhZ
-bfI
-bfA
-bfA
-bjP
-bxy
-bng
-boH
-bqC
-abj
-btL
-bve
-bwt
-bxE
-bzd
-bAJ
-btL
aaa
-bLh
-bHD
-cXw
-bNk
-bJv
-bPh
-dcA
-bTa
-bVg
-qTP
-bYH
-ccO
-dgN
-cax
-ced
-ccq
-cja
-cax
-ccq
-ccq
-coK
-chC
-bYH
-wRP
-crW
-lpT
-cxn
-cyF
-cAf
-cCU
-cEj
-cEn
-cxn
-cGJ
-daS
-cJq
-cYg
-cYb
-cOd
-cRr
-dqD
-cJq
-cUj
-hzS
-mrx
-fAO
-cZM
-pbw
-ciB
-cDA
-dms
-dJE
-dJE
-oHL
-dJE
-dJE
-dvJ
-duv
-duv
-dsh
-duv
-duv
-dvJ
-dwG
-wJA
-dzl
-sgM
-kgz
-dCg
-dDs
-dEp
-abj
-abj
aaa
aaa
aaa
@@ -179041,6 +181887,8 @@ aaa
aaa
aaa
aaa
+"}
+(185,1,1) = {"
aaa
aaa
aaa
@@ -179074,8 +181922,6 @@ aaa
aaa
aaa
aaa
-"}
-(181,1,1) = {"
aaa
aaa
aaa
@@ -179084,6 +181930,27 @@ aaa
aaa
aaa
aaa
+abj
+abj
+aCc
+aEV
+aEV
+aEV
+aLe
+aEy
+aEy
+aEy
+aEy
+aEy
+aEy
+aEy
+aEy
+aEy
+aEy
+aEy
+aEy
+aaa
+abj
aaa
aaa
aaa
@@ -179096,6 +181963,7 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -179105,182 +181973,137 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
aaa
aaa
aaa
-abj
-agI
-abj
-bvh
-bCI
-bvh
-abj
-bCI
bCI
abj
-ahM
-bzu
-vEw
-dZq
-dZv
-ahM
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-aeC
-dtG
-aoN
-dZS
-aeB
-acF
-asc
-asP
-atT
-avt
-avt
-awC
-axA
-asd
-aAZ
-aBa
-aBa
-aCK
-aDY
-aFM
-aIf
-aKJ
-aIi
-aKb
-aJE
-aJE
-aQs
-aNu
-aYt
-aSa
-aTA
-aVf
-aWF
-aYg
-aZz
-aSb
-bgM
-bem
-bfI
-bfA
-bfA
-bjQ
-bHG
-bng
-boI
-bqB
+cri
+cri
+iwC
+jkl
+dUG
+lbp
+lMd
+mkf
+cri
+rVi
+ldR
+ykg
+nEj
+pIy
+ykg
+wPH
+vfE
+ykg
+tir
+dcA
+dcA
+dcA
+dcA
+gBU
+dcA
+dcA
+eHF
+vTk
+plB
+gDB
+jmj
+iAy
+caD
+bYM
+bYM
+bYM
+bYM
+bYM
+bYM
+jLp
+tbb
+vSD
+sDV
+qjN
+cyK
+vSD
+cJc
+vSD
+mTh
+ggD
+eMg
+fMN
+eCs
+gHO
+vsF
+vov
+cKY
+cKY
+cKY
+cKY
+cKY
+miK
+cKY
+cKY
+cKY
+cKY
+cKY
+dcD
+cKY
+mFN
+lsh
+toW
+lsh
+lsh
+xci
+xci
+lsh
+toW
+lsh
+mAE
+xRL
+xCQ
+lsh
+lsh
+lsh
+xci
+xci
+qTn
+mFN
+xLH
+aaa
+bWB
+xYw
+rUF
+dYD
+dHa
+oKv
+xOy
+xUR
+tkR
+dNW
+sdb
+dMy
+dNl
+dbY
+mUc
+nLe
+vZi
+gQV
+aaa
abj
-btL
-bvf
-bwu
-bxF
-bwu
-bAK
-btL
aaa
-dcA
-bJu
-cXw
-bfh
-cXw
-dbw
-bLh
-bTb
-bVi
-bXf
-bYH
-dfE
-dfE
-dll
-dln
-dfE
-cjc
-dtb
-dfE
-dfE
-bYH
-cqs
-bYH
-jUM
-crW
-lpT
-cxo
-cyG
-cAg
-cBI
-cDg
-rxr
-cJl
-dzi
-cHW
-cJq
-cJq
-cJq
-cOe
-dAu
-dDD
-cJq
-xjj
-vFU
-lwS
-xjj
-xjj
-vPl
-dcv
-exv
-dms
-nmy
-xvo
-qKS
-gpV
-vDe
-dvJ
-dqv
-pzW
-uyQ
-dtk
-lBo
-dvJ
-eMa
-mdQ
-eUt
-sgM
-sgM
-dbo
-dDt
-sgM
-sgM
-dFG
-dFG
-dFG
-dFG
-dFG
+bCI
aaa
-dKz
-vwj
-oum
-cOA
-oum
-hYu
-dOD
aaa
aaa
aaa
aaa
aaa
aaa
+abj
+cDs
aaa
aaa
aaa
@@ -179298,7 +182121,6 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -179322,6 +182144,8 @@ aaa
aaa
aaa
aaa
+"}
+(186,1,1) = {"
aaa
aaa
aaa
@@ -179331,8 +182155,6 @@ aaa
aaa
aaa
aaa
-"}
-(182,1,1) = {"
aaa
aaa
aaa
@@ -179365,16 +182187,28 @@ aaa
aaa
aaa
aaa
+bCI
aaa
+abj
aaa
aaa
aaa
+awg
aaa
aaa
aaa
+aEy
aaa
aaa
aaa
+awg
+abj
+abj
+abj
+abj
+abj
+bCI
+abj
aaa
aaa
aaa
@@ -179385,154 +182219,139 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
-abj
aaa
-abj
aaa
-aeB
-fMG
-dZR
-dZU
-aeB
-abj
-asc
-asQ
-auA
-awA
-avu
-awD
-cvX
-auE
-ayD
-aBb
-aBZ
-aCP
-aGP
-aFN
-aFR
-aFN
-aIk
-aJt
-aBZ
-aBZ
-aBZ
-aBZ
-aQw
-aSb
-aTB
-aVg
-bbk
-aYh
-aZA
-aSb
-bgV
-ben
-blN
-bfA
-bfA
-bjR
-bJs
-bng
-bng
-bng
-bvh
-btL
-bvg
-bwv
-bxG
-bwv
-bvc
-btL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
abj
-akR
-aln
-bJt
-cXw
-bNn
-bLt
-bLh
-bQz
-bVB
-bVD
-bYH
-caA
-ccr
-bTe
-cfU
-chF
-cjd
-cFe
-cmh
-cnJ
-coL
-chC
-bYH
-cnO
-cti
-dWO
-cxn
-cyH
-cAh
-cBJ
-cxn
-cxn
-cxn
-ckV
-lsh
-cFg
+hmq
+hWX
+iwS
+jkT
+jRg
+ldS
+fuF
+rbR
+cri
+nDc
+wDh
+vfE
+gVB
+lTm
+oLH
+xyW
+xyW
+hjT
+tiJ
+xEM
+xwM
+xwM
+xEM
+nzg
+xEM
+xwM
+gDx
+llN
+sGl
+duJ
+uvJ
+uvJ
+uvJ
+vTW
+ndq
+uvJ
+ctt
+cjh
+cnP
+yae
+tbb
+dUe
+eZt
+cAj
+dYP
+fef
+oIm
+fef
+mMg
+hJZ
+pIt
+oET
+pRa
+ieh
vsF
-cJq
-cOf
-dAv
-drM
-cSN
-hPC
-cRo
-dkh
-wFR
-ikS
-dbj
-dcn
-vWg
-fZs
-usN
-dld
-tMO
-cYK
-dmv
-dvJ
-dpA
-qIy
-qvY
-yah
-duw
-xzK
-dwK
-mlF
-dgW
-fLM
-dBn
-dCh
-dDu
-dEr
-dFc
-dFD
-dLa
-dLd
-dXs
-dIW
-abj
-imH
-dMA
+xWh
+xWS
+xWS
+xWS
+xWS
+xWS
+flW
+tzL
+cUf
+bKr
+jbb
+lsh
+xfV
+deg
+tzL
+lsh
+lsh
+lsh
+xci
+xci
+lsh
+lsh
+lsh
+lsh
+daS
+uWH
+mFN
+xLH
+hLL
+hLL
+yaz
+mFN
+xLH
+mFN
+mFN
+aaa
+wWW
+kEz
+hKG
+ogS
dOc
-dQv
-dQH
-dRf
-dOE
+lOI
+eMz
+xdP
+mkj
+dNX
+fvQ
+dlu
+dNm
+xOy
+xOy
+xOy
+xOy
+dFG
+abj
+bCI
abj
+bCI
aaa
aaa
aaa
@@ -179582,14 +182401,14 @@ aaa
aaa
aaa
aaa
+"}
+(187,1,1) = {"
aaa
aaa
aaa
aaa
aaa
aaa
-"}
-(183,1,1) = {"
aaa
aaa
aaa
@@ -179625,10 +182444,27 @@ aaa
aaa
aaa
aaa
+bCI
+bCI
+bCI
+bCI
+abj
+azQ
+aLf
+aMM
aaa
aaa
+awg
aaa
aaa
+azQ
+aLf
+aMM
+abj
+bCI
+abj
+bCI
+bCI
aaa
aaa
aaa
@@ -179642,155 +182478,11 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
-abj
aaa
-abj
aaa
-aeC
-aeC
-wtR
-aeC
-aeC
-abj
-asd
-afO
-asd
-asd
-avw
-aqG
-axB
-auE
-abj
-abj
-abj
-aCQ
-aGf
-aFO
-aFS
-aKK
-aIj
-aJu
-bvh
-abj
-abj
-abj
-abj
-aSc
-aTC
-aVh
-aWH
-aYi
-aZB
-aSc
-bgW
-beo
-dnV
-bgU
-bim
-bjS
-bMn
-bnj
-abj
-abj
-abj
-btL
-btL
-btL
-btL
-btL
-btL
-btL
-abj
-bLh
-bHI
-amk
-bHJ
-bLp
-bPk
-bLh
-bXD
-bVg
-bXc
-bYH
-caB
-ccs
-ceg
-cfV
-cgL
-cje
-ckN
-cmi
-cnK
-coM
-cqt
-cHu
-cth
-crW
-vSD
-cxn
-czU
-cAf
-cBK
-cDh
-mfz
-cxn
-cUz
-lsh
-uJx
-cSK
-cJq
-cSV
-cPU
-cSP
-deb
-iqS
-cXl
-cXK
-gHL
-iqS
-dbk
-qTv
-ded
-dms
-dms
-cXx
-cVT
-cXx
-dms
-dvJ
-dvJ
-eeE
-wbx
-eeE
-dvJ
-dvJ
-fmC
-dxZ
-dux
-dAt
-dBo
-dCi
-dDv
-dgX
-dFd
-dTx
-dLb
-dLQ
-dMa
-dFG
aaa
-oum
-dMG
-dLR
-dMw
-dNj
-dRg
-oum
-abj
-bCI
aaa
aaa
aaa
@@ -179800,6 +182492,124 @@ aaa
aaa
aaa
aaa
+bCI
+bCI
+bCI
+abj
+hnB
+hXy
+ixk
+kEH
+nJr
+vIt
+miq
+qjU
+cri
+nDm
+ogZ
+bNo
+oVM
+iwI
+mhi
+gEL
+gEL
+swQ
+tle
+cKQ
+dcA
+dcA
+dcA
+dcA
+dcA
+dcA
+dcA
+vTk
+kRP
+gDB
+dye
+syj
+caF
+syj
+syj
+syj
+syj
+rRV
+cnP
+gGI
+wdW
+ovJ
+cuf
+jBX
+bnf
+cuv
+ude
+eTe
+rMl
+rAA
+gRQ
+bOh
+inS
+jaP
+vsF
+kzW
+fTd
+xmh
+eSr
+eab
+hVP
+sGS
+yfK
+yfK
+yfK
+plt
+nOr
+hqc
+uDx
+yfK
+nlq
+nlq
+wxS
+fVv
+nlq
+aUK
+fiP
+cPf
+sMH
+sxp
+mDP
+mFN
+pBZ
+bUo
+ylm
+tAC
+xLH
+lsh
+dbT
+mFN
+abj
+dFG
+wsG
+sVV
+jTF
+oPH
+jSh
+xOy
+uNZ
+oPH
+nTY
+gRd
+vnQ
+dNn
+dWT
+qrH
+qZZ
+vZi
+gQV
+aaa
+abj
+aaa
+bCI
+aaa
aaa
aaa
aaa
@@ -179845,11 +182655,11 @@ aaa
aaa
aaa
aaa
-"}
-(184,1,1) = {"
aaa
aaa
aaa
+"}
+(188,1,1) = {"
aaa
aaa
aaa
@@ -179894,160 +182704,29 @@ aaa
aaa
aaa
aaa
+bCI
aaa
+azQ
+aLf
+aMM
aaa
+azQ
+aLf
+aMM
aaa
+azQ
+aLf
+aMM
aaa
+bCI
abj
abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-aeC
-pcV
-aeC
-abj
-abj
-asc
-aqG
-atV
-auB
-aof
-aHJ
-axC
-asd
-abj
aaa
aaa
-aCR
-aIg
-aFP
-aBZ
-aFP
-aJs
-aJv
-abj
aaa
aaa
-abj
-abj
-aSd
-aTD
-aVi
-aWI
-aVi
-aZC
-bbm
-bcP
-bep
-bbi
-blG
-bbi
-bjT
-blO
-bnk
-abj
aaa
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-bFS
-bFS
-bFS
-bFS
-bFS
-bFS
-bFS
-bTb
-bVg
-bXc
-bYH
-caC
-cct
-ceh
-cfW
-chH
-cjf
-ckO
-cmj
-cnL
-coN
-cyJ
-cHu
-cth
-crW
-vSD
-cxn
-czU
-cAf
-cBK
-cxn
-cxn
-cxn
-cUx
-lsh
-lsh
-cLd
-cJq
-cOh
-dBl
-dDE
-dfG
-cUs
-cOn
-cNT
-oJX
-ufP
-orl
-dcq
-eDv
-dil
-dlu
-dlu
-dgY
-dwC
-dwC
-sNa
-oWV
-dwC
-dsi
-dwC
-dwC
-uOJ
-feb
-iMi
-dgA
-yfK
-hek
-dCj
-dDw
-dEs
-dFe
-dFF
-dLc
-dLU
-dMv
-dIX
-abj
-dKA
-dNi
-dLS
-dMx
-dNk
-dRh
-dOF
aaa
-bCI
aaa
aaa
aaa
@@ -180069,9 +182748,129 @@ aaa
aaa
aaa
aaa
+bCI
+bCI
+abj
+abj
+abj
+hpg
+dJP
+bJA
+sCb
+ugu
+sCb
+cqt
+chN
+mpI
+nFL
+oAc
+vfE
+gVB
+pID
+ykg
+rVi
+hED
+ykg
+iST
+pPR
+wqd
+jHV
+vWz
+wAe
+jXH
+xTp
+tle
+vTk
+lMk
+gDB
+yhz
+dtr
+tBR
+tBR
+yhz
+syj
+syj
+glJ
+cnP
+cnP
+cnP
+rRS
+cnP
+cnP
+cnP
+cnP
+cnP
+cnP
+cnP
+cnP
+cnP
+vHh
+mSR
+igC
+pts
+pts
+pts
+pts
+pts
+pts
+oVf
+xfV
+cTg
+cTg
+sQK
+cTg
+cTg
+rpb
+cTg
+cTg
+sQK
+cTg
+cTg
+cTg
+sQK
+vbJ
+sQK
+cTg
+cTg
+jkE
+sNa
+hLL
+hpG
+ubV
+xci
+fmV
+xLH
+vVr
+lkA
+xLH
+abj
+dFG
+xOy
+xOy
+glv
+xOy
+dMx
+xOy
+gPL
+jAL
+xOy
+dPg
+jFn
+dLY
+eMz
+oQg
+wMS
+uaF
+dFG
+abj
+bCI
+abj
+bCI
+aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -180102,8 +182901,6 @@ aaa
aaa
aaa
aaa
-"}
-(185,1,1) = {"
aaa
aaa
aaa
@@ -180118,6 +182915,8 @@ aaa
aaa
aaa
aaa
+"}
+(189,1,1) = {"
aaa
aaa
aaa
@@ -180156,157 +182955,35 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
-abj
aaa
-abj
aaa
aaa
-aeC
-mjE
-aeC
-abj
-abj
-asc
-aqG
-aus
-auC
-avw
-ayH
-aLa
-asc
-abj
-aBc
-aCa
-aCa
-aHV
-aFb
-aCa
-aFb
-aJr
-aCa
-aKM
-aMm
aaa
abj
abj
-aSe
-aTE
-aVj
-aWJ
-aYj
-aZD
-aSe
-abj
-beq
-blC
-blH
-blL
-beq
+azQ
+aLf
+aMM
abj
+azQ
+aLf
+aMM
abj
+azQ
+aLf
+aMM
abj
+bCI
aaa
aaa
-bvh
aaa
-bvh
aaa
-bvh
aaa
-bvh
aaa
-bFS
-bHK
-bJw
-bFS
-bNp
-bPl
-bFS
-bTb
-bVg
-bXc
-bYH
-caD
-ccu
-cei
-cfX
-chI
-cjg
-ckP
-cmk
-cnM
-coO
-czd
-cHu
-ctj
-cuu
-cvW
-cxn
-czU
-cAi
-cBL
-rZU
-cEq
-cxn
-cUx
-lsh
-cSJ
-cFj
-dbv
-dbv
-dLP
-dbv
-dbv
-vLq
-cWc
-dbi
-qiU
-dcD
-nQG
-dcw
-cNS
-dfC
-xLt
-kPJ
-vzY
-dlv
-qcG
-dof
-jig
-jhR
-pHr
-hhH
-jig
-dvK
-jig
-qut
-okX
-mLE
-sgM
-dbo
-uAe
-sgM
-sgM
-dFG
-dFG
-dHa
-dFG
-dFG
aaa
-owP
-dNW
-dLj
-dMy
-dNl
-dRi
-qFN
aaa
-abj
-abj
-bCI
aaa
aaa
aaa
@@ -180328,8 +183005,124 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+abj
+vMK
+gGZ
+cri
+wrH
+wrH
+aSF
+wrH
+grU
+kAm
+kzU
+cri
+rVi
+qGj
+ykg
+rpF
+pJi
+xnX
+npN
+uga
+xnX
+xnX
+xnX
+xnX
+vmX
+vWE
+wAh
+xnX
+xnX
+wLu
+gbS
+fks
+xJj
+xJj
+xJj
+xJj
+xJj
+xJj
+cgg
+tBR
+aJa
+kJu
+owB
+wgt
+coQ
+kJu
+vBm
+yhz
+cDo
+cvZ
+vkb
+mcs
+qBw
+cDo
+cDi
+hHP
+cFh
+pts
+iUs
+eCZ
+naE
+wga
+pts
+tzL
+xfV
+cTg
+uYt
+tQL
+vxJ
+cTg
+pnz
+cTg
+tQL
+bif
+xek
+cTg
+tWM
+vvP
+hFG
+wXp
+poE
+cTg
+jkE
+lsh
+hLL
+tAC
+xrA
+qBZ
+lsh
+mFN
+xci
+lNt
+xLH
+abj
+abj
+dFG
+tGs
+egU
+dHe
+vMZ
+dFG
+dFG
+dFG
+dFG
+dFG
+xqm
+dFG
+dFG
+dFG
+dFG
+dFG
+dFG
+abj
aaa
aaa
+bCI
aaa
aaa
aaa
@@ -180359,8 +183152,6 @@ aaa
aaa
aaa
aaa
-"}
-(186,1,1) = {"
aaa
aaa
aaa
@@ -180381,6 +183172,16 @@ aaa
aaa
aaa
aaa
+"}
+(190,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -180411,164 +183212,27 @@ aaa
aaa
aaa
aaa
-bCI
-bCI
-abj
-bCI
-bCI
-abj
-bCI
-abj
-abj
-abj
-abj
-wiW
-abj
-abj
aaa
-asd
-asR
-atW
-auZ
-awE
-azS
-axD
-asc
-abj
-aBd
-aCb
-aCb
-aCb
-aCb
-aFT
-aCb
-aCb
-aCb
-aKN
-aMn
-aNz
-abj
-abj
-aSb
-aSb
-aSb
-aSb
-aSb
-aSb
-aSb
-abj
-ber
-blD
-blI
-blM
-ber
-abj
aaa
-bvh
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-bFT
-bHL
-bJx
-bLq
-bNq
-bPm
-cee
-bTb
-eWO
-bXh
-bVF
-caE
-ccv
-cej
-cfY
-ctt
-cjh
-ckQ
-cml
-cnM
-coM
-cEo
-cHu
-cth
-crW
-vSD
-cxn
-czU
-cAf
-cBM
-cxn
-cxn
-cxn
-cUz
-uJx
-lsh
-cUC
-cKY
-dAs
-dCn
-cMI
-dAq
-cUf
-qJo
-eKM
-cZQ
-ddw
-deg
-gWK
-xfc
-dvL
-duz
-fds
-dej
-eRU
-dmw
-eRU
-eRU
-dqL
-uWH
-eRU
-eRU
-dvL
-eRU
-eXw
-xpn
-eWM
-uYt
-cms
-dDz
-mFN
aaa
aaa
-dFG
-dHb
-dFG
aaa
aaa
-oum
-dNX
-dTu
-dTv
-dNm
-dWS
-oum
-abj
-bCI
-abj
bCI
aaa
+azQ
+aLf
+aMM
aaa
+azQ
+aLf
+aMM
aaa
+azQ
+aLf
+aMM
aaa
-aaZ
+bCI
aaa
aaa
aaa
@@ -180593,13 +183257,129 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
aaa
aaa
+abj
+vMK
+rzh
+gHB
+hph
+uKk
+rzh
+rzh
+rzh
+gTK
+ihw
+lFu
+baI
+nGq
+pFA
+ojn
+gVB
+pKE
+xpW
+qEZ
+rCy
+rHV
+tmp
+xpW
+uHk
+hox
+tNL
+cIW
+tXZ
+xpW
+nRT
+nzR
+iGG
+jTh
+cHU
+dZV
+ckS
+cuC
+xJj
+xqu
+xqu
+xqu
+xqu
+xqu
+xqu
+xqu
+xqu
+bNk
+syj
+cDo
+xvv
+oDk
+oDk
+oDk
+qmT
+eVy
+hNJ
+cFi
+cGM
+rzq
+rzq
+vZG
+gnn
+pts
+lJn
+xfV
+cTg
+cTg
+nuG
+vxJ
+lGd
+rpb
+mWM
+dfI
+xct
+vVp
+cTg
+ofn
+bJp
+dqS
+iqU
+siJ
+knS
+mAE
+xci
+mFN
+puM
+fBW
+mFN
+cHt
+mFN
+nlJ
+mFN
+xLH
+abj
+abj
+tvZ
+jjb
+kqN
+dIm
+tLO
+rWu
aaa
+abj
+abj
+abj
aaa
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+bCI
+abj
+bCI
aaa
aaa
aaa
@@ -180616,8 +183396,6 @@ aaa
aaa
aaa
aaa
-"}
-(187,1,1) = {"
aaa
aaa
aaa
@@ -180651,6 +183429,8 @@ aaa
aaa
aaa
aaa
+"}
+(191,1,1) = {"
aaa
aaa
aaa
@@ -180664,162 +183444,11 @@ aaa
aaa
aaa
aaa
-bCI
-bCI
-abj
-bCI
-bCI
aaa
aaa
-abj
aaa
aaa
-bCI
-bCI
-abj
-aES
-abj
-qUR
-abj
-bCI
-abj
-asd
-asS
-atX
-avv
-awF
-awF
-axE
-asd
-abj
-aBd
-aCb
-aCb
-aCb
-aCb
-aCb
-aCb
-aCb
-aCb
-aCb
-aMo
-aNA
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-bes
-bfO
-blG
-bip
-bjU
-abj
-bvh
-bvh
-bqD
-bsw
-btM
-bsw
-bsw
-btM
-bsw
-bsw
-bCF
-abj
-bFS
-bHM
-bJy
-bLr
-bNr
-bPn
-bFS
-bTb
-bVg
-bXc
-bYH
-caF
-ccw
-cek
-cfZ
-ctV
-cji
-chJ
-cmm
-cnN
-coP
-cqu
-bYH
-cth
-cuv
-vSD
-cxn
-oqt
-cAj
-cBK
-vHW
-cFb
-cxn
-cUz
-lsh
-cJu
-cjn
-cKY
-cOj
-cRv
-nuj
-drZ
-hFg
-iFu
-iFu
-iFu
-iFu
-uDx
-pXO
-def
-dxA
-dha
-gHM
-dkl
-dqR
-dmx
-dod
-dqR
-dqR
-dqR
-dod
-dqR
-dqR
-rKQ
-orT
-rKQ
-diJ
-diJ
-sMs
-dDy
-hLL
-abj
-abj
-dFH
-dHc
-jSh
-abj
-abj
-iGQ
-dNY
-dLT
-dMz
-dNn
-dWT
-oPH
aaa
-bCI
-abj
aaa
aaa
aaa
@@ -180832,6 +183461,7 @@ aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -180845,10 +183475,21 @@ aaa
aaa
aaa
aaa
+bCI
aaa
+azQ
+aLf
+aMM
aaa
+azQ
+aLf
+aMM
aaa
+azQ
+aLf
+aMM
aaa
+abj
aaa
aaa
aaa
@@ -180864,6 +183505,7 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -180873,12 +183515,126 @@ aaa
aaa
aaa
aaa
-"}
-(188,1,1) = {"
+aaq
aaa
aaa
aaa
+bCI
+abj
+fwA
+glb
+gHY
+uFM
+bHH
+mLo
+jll
+vWO
+lfc
+ihw
+ubg
+ubg
+nJm
+ohN
+nNu
+oWy
+tMQ
+dmm
+ktO
+rxF
+oZD
+tmW
+dcz
+uhP
+voP
+kfS
+til
+mqp
+xTJ
+mpW
+mDi
+ktI
+jKW
+fyH
+glR
+vyq
+fKI
+jTh
+hbA
+tcC
+sDy
+eFi
+dXg
+gPW
+rof
+xqu
+kNt
+ctn
+cDo
+pVu
+fgB
+cyM
+bEd
+cDo
+aRG
+pVy
+cFj
+pts
+fif
+gLP
+cLj
+kMC
+pts
+ibI
+wqD
+cTg
+gdD
+vxJ
+dtm
+omO
+ntj
+dfI
+egu
+isq
+oCc
+cTg
+cTg
+sLa
+dJM
+uUx
+cTg
+cTg
+mAE
+koH
+xLH
+mFN
+mFN
+mFN
+lsh
+inQ
+dDF
+rvd
+yaz
+aaa
+abj
+dFG
+qUW
+dGu
+hbD
+dIe
+dFG
+abj
+bCI
+bCI
+bCI
+abj
+bCI
+bCI
+bCI
aaa
+bCI
+bCI
+bCI
+bCI
aaa
aaa
aaa
@@ -180921,164 +183677,26 @@ aaa
aaa
aaa
aaa
-bCI
aaa
aaa
-abj
aaa
aaa
-abW
-ace
-aco
aaa
aaa
-abj
aaa
aaa
-abj
-acp
aaa
-bCI
-abj
-asd
-asT
-asd
-auE
-asc
-asc
-asd
-asd
-abj
-aBd
-aCc
-aCb
-aCb
-aCb
-aCb
-aCb
-aCb
-aCb
-aKO
-aMo
-aNA
-abj
+"}
+(192,1,1) = {"
aaa
aaa
aaa
-bvh
-bCI
-bCI
aaa
-abj
-bcQ
-bet
-bcS
-bgY
-bcS
-bet
-blP
-abj
aaa
-bqE
-bsx
-btN
-bvi
-bww
-bxH
-bze
-bAL
-bCG
-abj
-bFS
-bHN
-cog
-bLs
-bNs
-bPo
-bFS
-bTb
-bVg
-bXi
-bYM
-bYM
-bYM
-bTf
-ckU
-don
-dtr
-dtr
-bYM
-bYM
-bYH
-bYH
-bYH
-cwa
-cuw
-cJc
-cxn
-cyE
-cxn
-cBN
-cxn
-cxn
-cxn
-xHb
-mFN
-ryy
-mFN
-cKY
-cOk
-cPW
-cRw
-dAq
-cVV
-cXB
-cYW
-cZS
-cYW
-gtK
-eYQ
-uYE
-dqR
-dhb
-gCR
-jPm
-dly
-dAg
-doe
-dpF
-dfD
-ixo
-dtn
-duA
-dqR
-nCy
-ubV
-hSU
-dXw
-diJ
-sMs
-iwe
-mFN
aaa
aaa
-dFH
-dHd
-jSh
aaa
aaa
-oum
-dXG
-dPg
-dQw
-dLY
-dWU
-oum
-abj
-abj
-abj
-bCI
-bCI
aaa
aaa
aaa
@@ -181114,14 +183732,21 @@ aaa
aaa
aaa
aaa
+bCI
aaa
aaa
+abj
aaa
aaa
+azQ
+aLf
+aMM
aaa
aaa
+abj
aaa
aaa
+bCI
aaa
aaa
aaa
@@ -181130,8 +183755,6 @@ aaa
aaa
aaa
aaa
-"}
-(189,1,1) = {"
aaa
aaa
aaa
@@ -181153,14 +183776,119 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+fzv
+dzu
+eyR
+uRG
+qhW
+dNE
+jlz
+jUM
+jUM
+sTk
+gsY
+bLu
+ttc
+wuf
+ojn
+gVB
+pKE
+okq
+pZL
+llt
+itv
+bmd
+okq
+uiA
+mZK
+jCC
+tOT
+rxD
+okq
+nRT
+tLv
+tMU
+bJn
+yky
+vZy
+tpt
+ggQ
+gQr
+nRp
+uQR
+xds
+uvp
+cqb
+jnZ
+xgc
+dkK
+eJv
+yhz
+cDo
+cDo
+cDo
+cDo
+cDo
+cDo
+ecO
+wlH
+cFs
+pts
+pts
+pts
+pts
+pts
+pts
+oIQ
+bDv
+sQK
+rye
+dfI
+nJv
+sGs
+sdj
+gio
+nJv
+ilL
+rHM
+sQK
+ezY
+dpC
+tqf
+tZN
+doi
+sQK
+xed
+xci
+mFN
+mkh
+kQD
+rCi
+pbv
+lsh
+vBt
+lsh
+hLL
aaa
+abj
+dFG
+dFG
+dFG
+dFG
+dFG
+dFG
aaa
+abj
aaa
aaa
aaa
aaa
aaa
+abj
aaa
+abj
aaa
aaa
aaa
@@ -181178,164 +183906,18 @@ aaa
aaa
aaa
aaa
-abj
aaa
-abW
-ace
-aco
aaa
-abW
-acf
-aco
aaa
-abW
-ace
-aco
aaa
-abj
-acp
-abj
-bCI
-abj
-acF
aaa
-acF
-abj
-abj
-abj
-abj
-abj
-abj
-aBd
-aCb
-aCb
-aCb
-aCb
-aCb
-aCb
-aCb
-aCb
-aCb
-aMo
-aNA
-abj
aaa
aaa
aaa
-abj
-abj
aaa
aaa
-abj
-bcR
-beu
-bfP
-bfP
-bfQ
-bjV
-bcR
-abj
aaa
-bqF
-bsy
-btO
-bvj
-bww
-bww
-bww
-bAL
-bCG
-abj
-bFS
-bHO
-bJz
-dDN
-bOL
-bPp
-bRc
-bTg
-bVm
-bXj
-bYM
-caG
-ccy
-cem
-cga
-chL
-dpq
-ckR
-cmn
-chG
-coQ
-cqv
-crV
-ctl
-cux
-cvZ
-cxp
-cyK
-cAk
-cBO
-cDi
-cnP
-cFh
-cUx
-cTX
-vsF
-daS
-cKY
-dAq
-cKY
-dAq
-cKY
-dps
-vtW
-hhI
-tJk
-lSN
-sEO
-tQL
-cKY
-dqR
-fYm
-diN
-nol
-dlz
-kmh
-dog
-xXf
-tWM
-xXf
-dMi
-duB
-dqR
-fFC
-jub
-uuu
-dvO
-diJ
-dCm
-dDz
-ryy
aaa
-dFG
-dFG
-dHe
-dFG
-dFG
-dFG
-oum
-vMZ
-dLV
-dMB
-jJr
-qtp
-oum
-dFG
-dFG
-abj
-abj
-abj
aaa
aaa
aaa
@@ -181361,6 +183943,8 @@ aaa
aaa
aaa
aaa
+"}
+(193,1,1) = {"
aaa
aaa
aaa
@@ -181387,8 +183971,6 @@ aaa
aaa
aaa
aaa
-"}
-(190,1,1) = {"
aaa
aaa
aaa
@@ -181407,10 +183989,21 @@ aaa
aaa
aaa
aaa
+bCI
+bCI
+abj
+bCI
+bCI
aaa
aaa
+abj
aaa
aaa
+bCI
+bCI
+abj
+bCI
+bCI
aaa
aaa
aaa
@@ -181435,164 +184028,127 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-abW
-acf
-aco
aaa
-abW
-acf
-aco
aaa
-abW
-acf
-aco
aaa
-abj
-acp
aaa
+bCI
abj
+fAq
+luw
+bHH
+sWN
+xpr
+ixu
+cjM
+gLz
+ubg
+anz
+mlM
+mBL
+nJx
+jIx
+vMK
+oWT
+mmK
+xnX
+xnX
+fGK
+xGB
+xnX
+xnX
+xnX
+vTF
+qpU
+xGB
+xnX
+xnX
+vud
+lIZ
+iXr
+thO
+tuU
+jeh
+lPv
+vGN
+faY
+sFj
+aXc
+fev
+oEz
+rHl
+aba
+jeC
+xqu
+bNk
+yhz
+gnf
+hUQ
+jQn
+cyO
+ghY
+gnf
+rja
+pVy
+kYQ
+lov
+ycU
+kBM
+cLl
+kNv
+lov
+bXk
+xfV
+cTg
+jAn
+iMx
+dfI
+cZW
+vQs
+rQt
+dfI
+isq
+rwl
+cTg
+cTg
+sLa
+tpA
+tYg
+cTg
+cTg
+jkE
+sNa
+hLL
+dDF
+xci
+wYQ
+xci
+wUE
+xci
+dDF
+hLL
abj
abj
-aaa
-abj
-aaa
-abi
-abi
-aaa
-aaa
-abj
-aBd
-aCb
-aCb
-aCb
-aCb
-aFU
-aCb
-aCb
-aCb
-aKP
-aMn
-aNB
abj
aaa
aaa
aaa
abj
-aaa
-aaa
-aaa
abj
-bcS
-bev
-bfQ
-bfP
-bfQ
-bjW
-blQ
abj
-aaa
-bqG
-bsz
-btP
-bvk
-bwx
-bxI
-bww
-bAL
-bCG
+bCI
+bCI
abj
-bFS
-bHP
-bJA
-bLu
-ufN
-bPq
-bFS
-bTh
-bVn
-bXk
-bYO
-cep
-ccz
-ckT
-cnQ
-chM
-cjk
-ckS
-cmo
-bYM
-coR
-cqw
-crW
-ctm
-crW
-cxd
-crW
-cyL
-crW
-cBP
-cDj
-cnP
-cFi
-cGM
-ctv
-ctv
-cLi
-cKY
-cMH
-cST
-cMJ
-dAq
-cXz
-xci
-cKY
-cYX
-jll
-srH
-hiB
-dXp
-dqR
-dhc
-uVD
-lOT
-dlA
-dmz
-dol
-dpG
-dqO
-dpG
-dtp
-duC
-dqR
-gmI
-vaC
-uuu
-dvP
-diJ
-sMs
-dDy
-mFN
abj
-dFG
-dGt
-dHf
-dId
-dIY
-dJP
-dKC
-dLe
-dLW
-dMC
-dNo
-dOd
-dOG
-dPj
-dFG
-dWX
-dXd
abj
+bCI
+bCI
+bCI
+bCI
+bCI
+aaa
+aaa
aaa
aaa
aaa
@@ -181645,7 +184201,9 @@ aaa
aaa
aaa
"}
-(191,1,1) = {"
+(194,1,1) = {"
+aaa
+aaa
aaa
aaa
aaa
@@ -181693,163 +184251,23 @@ aaa
aaa
aaa
bCI
+bCI
abj
-abW
-acf
-aco
-abj
-abW
-acf
-aco
-abj
-abW
-acf
-aco
-abj
-abj
-acp
-aaa
bCI
bCI
-acF
-aaa
-acF
-aaa
-aaa
-aaa
+abj
+bCI
aaa
aaa
-abj
-aBe
-aCa
-aCa
-aCa
-aCa
-aCa
-aGS
-aCa
-aCa
-aKQ
-aMp
aaa
-abj
aaa
aaa
aaa
-abj
aaa
aaa
aaa
-abj
-bcR
-bew
-bfP
-bfP
-bfQ
-bjX
-bcR
-abj
aaa
-bqH
-bsw
-btQ
-bsw
-bsw
-bsw
-bzf
-bsw
-bCH
-abj
-bFT
-bNo
-bJB
-bLv
-bNu
-dcz
-ddU
-bTh
-bVo
-bXl
-wYS
-caI
-ccA
-ceo
-cjj
-chN
-cjk
-ckS
-cmp
-bYM
-coR
-cqw
-crW
-ctn
-crW
-cwb
-cxq
-cyM
-crW
-cBP
-cDk
-cnP
-cFj
-cGN
-dbp
-dbp
-cLj
-cKY
-rBg
-daa
-qRI
-cUm
-iNS
-cXG
-lSN
-cZU
-ovT
-gHB
-haX
-dtm
-dqR
-dhd
-uVD
-xBg
-dJM
-xBT
-doh
-dpH
-dqP
-jxG
-pgO
-uGo
-dqR
-oud
-nWB
-hqG
-diJ
-tpA
-jAx
-dDz
-hLL
aaa
-dFH
-dGu
-dHg
-dIe
-dIZ
-dJQ
-xOy
-dLf
-iso
-dMD
-dNp
-dOe
-dOH
-dPk
-dPT
-dWY
-abj
-abj
aaa
aaa
aaa
@@ -181872,6 +184290,109 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+vMK
+hDD
+fzQ
+uLY
+lnW
+rzh
+cjM
+pQP
+smw
+lMn
+xKp
+tKK
+tFv
+niI
+enV
+oZd
+pLb
+qgz
+xiE
+xiE
+xiE
+myQ
+lvO
+xiE
+gpH
+nzR
+xiE
+xiE
+bkf
+kzc
+tLv
+tMU
+jTh
+hqC
+sja
+pcp
+njk
+thO
+cBE
+sVU
+slv
+mkb
+kxq
+sVU
+pFn
+xqu
+gJQ
+tBR
+gnf
+nGl
+tYo
+eFc
+eFc
+evL
+sEW
+hKH
+cFl
+cGP
+nOT
+osJ
+nOT
+kzj
+lov
+jbb
+xfV
+cTg
+cTg
+jmK
+usM
+vfH
+thS
+dbn
+mde
+rKM
+vVp
+cTg
+gvU
+bJp
+dqS
+dmC
+dhi
+cTg
+jkE
+tzL
+mFN
+hmB
+dDF
+xci
+dBr
+oIH
+wAp
+lsh
+hLL
+abj
+bCI
+bCI
+bCI
+abj
+bCI
+bCI
+bCI
aaa
aaa
aaa
@@ -181901,8 +184422,6 @@ aaa
aaa
aaa
aaa
-"}
-(192,1,1) = {"
aaa
aaa
aaa
@@ -181938,6 +184457,8 @@ aaa
aaa
aaa
aaa
+"}
+(195,1,1) = {"
aaa
aaa
aaa
@@ -181949,24 +184470,10 @@ aaa
aaa
aaa
aaa
-abj
aaa
-abW
-acf
-aco
aaa
-abW
-acf
-aco
aaa
-abW
-acf
-aco
aaa
-abj
-acp
-abj
-bCI
aaa
aaa
aaa
@@ -181976,138 +184483,9 @@ aaa
aaa
aaa
aaa
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-bvh
-bvh
-bvh
-abj
-abj
-abj
-bcT
-bet
-bcS
-bgZ
-bcS
-bet
-blR
-abj
aaa
aaa
-bsA
-btS
-bsA
aaa
-rhD
-xKH
-rhD
-abj
-abj
-bFT
-bHQ
-bJC
-bLw
-bNv
-bPr
-ddU
-bTi
-bVk
-bXk
-bYO
-cep
-ccB
-cep
-cjk
-chO
-cjk
-ckS
-dvQ
-bYM
-coR
-cqw
-crX
-cto
-cuy
-cwc
-cxr
-cyN
-crX
-cBP
-cDl
-cnP
-cFk
-cGO
-cHZ
-cSW
-cLk
-cKY
-dAq
-cKY
-dAq
-cKY
-cJg
-cZe
-cKY
-cZV
-vHs
-ocB
-dcy
-lnf
-dqR
-faL
-lQT
-nlr
-dbF
-dmA
-doi
-dpI
-dfD
-raC
-dtq
-lwX
-dqR
-rCi
-dya
-dzm
-diJ
-dBL
-sMs
-dDy
-mFN
-abj
-dFG
-dGv
-dHh
-dIk
-dJe
-dJR
-dKD
-dLg
-dLX
-dME
-dNq
-dOf
-dOI
-dPl
-dFG
-dWZ
-dXe
-abj
-abj
aaa
aaa
aaa
@@ -182158,8 +184536,6 @@ aaa
aaa
aaa
aaa
-"}
-(193,1,1) = {"
aaa
aaa
aaa
@@ -182172,9 +184548,106 @@ aaa
aaa
aaa
aaa
+abj
+vMK
+vMK
+vMK
+vMK
+vMK
+vMK
+hOE
+rGx
+iGn
+bHQ
+pjT
+glQ
+mqj
+mfo
+bCB
+vsb
+ePB
+vsb
+qFz
+vsb
+vsb
+vsb
+vsb
+uiX
+vpu
+ocu
+vsb
+vsb
+vsb
+vsb
+wQr
+cLr
+nkm
+rPP
+qZO
+jPw
+tpe
+thO
+mtX
+sqs
+sPy
+sPy
+sPy
+sqs
+lbj
+xqu
+gJQ
+hbX
+gnf
+ifw
+vmq
+fLD
+gjh
+gnf
+oPP
+pVy
+tHZ
+lov
+lNM
+ovP
+ktJ
+kRE
+lov
+uWH
+xfV
+cTg
+yfp
+dfI
+dfI
+cTg
+pjP
+cTg
+dec
+eZl
+vcq
+cTg
+kov
+ker
+tVz
+tZg
+uFV
+cTg
+jkE
+lsh
+vpV
+qJO
+xci
+hBR
+vTf
+oEO
+vPn
+qgZ
+mFN
+abj
aaa
aaa
+abj
aaa
+abj
aaa
aaa
aaa
@@ -182203,27 +184676,12 @@ aaa
aaa
aaa
aaa
-bCI
-abj
-bCI
-bCI
-abj
-abW
-acf
-aco
aaa
aaa
-acG
aaa
aaa
-abW
-acf
-aco
aaa
-abj
-acp
aaa
-bCI
aaa
aaa
aaa
@@ -182235,141 +184693,29 @@ aaa
aaa
aaa
aaa
-bvh
-bvh
-bvh
aaa
aaa
aaa
-abj
aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
-abj
aaa
aaa
aaa
-abj
-abj
-abj
-acF
-cve
-acF
-abj
-abj
-abj
aaa
aaa
-bsB
-btT
-bsB
aaa
-aKV
-pKE
-aKV
-abj
-abj
-bFS
-bHR
-bJD
-bLx
-bNw
-bPs
-bFS
-bTb
-bVg
-caz
-bYM
-caK
-ccC
-ceq
-cgS
-chP
-dqu
-duD
-dwH
-bYM
-cnP
-cqx
-crW
-ctp
-cuz
-cwc
-cxs
-cyO
-crX
-cBQ
-cnP
-cnP
-aFx
-aFx
-aFx
-aFx
-cLl
-cKY
-cQa
-jlK
-pts
-cUp
-psk
-cXG
-lSN
-cZW
-vQs
-cLx
-vsT
-ygW
-dxA
-dqR
-dqR
-dqR
-dqR
-dqR
-dqR
-dqR
-dqR
-dqR
-dqR
-dqR
-dqR
-diJ
-diJ
-diJ
-diJ
-oOf
-dCo
-dDB
-ncP
aaa
-dFG
-dGw
-dNr
-dJa
-dJf
-dGw
-dGw
-dGw
-dKB
-dGw
-yeL
-dOg
-dHi
-dGw
-dFG
-dFG
-dFG
-dFG
-abj
-bCI
aaa
aaa
aaa
aaa
+"}
+(196,1,1) = {"
aaa
aaa
aaa
@@ -182415,8 +184761,6 @@ aaa
aaa
aaa
aaa
-"}
-(194,1,1) = {"
aaa
aaa
aaa
@@ -182461,31 +184805,119 @@ aaa
aaa
aaa
bCI
-aaa
abj
+nSZ
+qoN
+jzz
+tKh
+lTh
+lAZ
+uOt
+jVg
+xpz
+pNV
+rWt
+scn
+hQX
+kXF
+mTP
+iyV
+qFw
+uKw
+ozk
+lUL
+lUL
+tnd
+lUL
+ryr
+vpW
+pMx
+pMx
+xol
+xUA
+iyV
+tLv
+tMU
+faY
+nRY
+tku
+uLp
+wYM
+nfN
+jqi
+rtG
+uDf
+ufw
+llx
+vMY
+nsR
+xqu
+bNk
+syj
+gnf
+gnf
+gnf
+gnf
+gnf
+gnf
+pXz
+uuA
+cFn
+lov
+lov
+lov
+lov
+lov
+lov
+tzL
+xfV
+knS
+cTg
+sQK
+cTg
+cTg
+pjV
+cTg
+cTg
+sQK
+cTg
+cTg
+cTg
+sQK
+fwR
+sQK
+cTg
+cTg
+jkE
+lsh
+mFN
+kzy
+dBr
+gku
+aBb
+xFw
+pGk
+dDF
+hLL
+abj
+abj
+bCI
+bCI
+bCI
+bCI
+bCI
aaa
aaa
aaa
-acG
aaa
aaa
aaa
-acp
aaa
aaa
aaa
-acG
-abj
-abj
-abj
-acp
-abj
-bCI
-abj
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -182493,138 +184925,24 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
-abj
-abj
aaa
aaa
aaa
aaa
-abj
-abj
aaa
aaa
-abj
aaa
-bnl
-boJ
-gsY
-bsB
-btS
-bsB
-gsY
-aKV
-xKH
-aKV
-ima
-ima
-bFS
-bFS
-cPZ
-bFS
-cPZ
-bFS
-bFS
-bQz
-bVB
-bVD
-bYM
-bYM
-bYM
-bYM
-bYM
-caL
-dqN
-dvC
-dwI
-bYM
-vxc
-cqy
-crY
-ctq
-cuA
-cwc
-cxt
-cyP
-crW
-cBR
-cDm
-cnP
-cFl
-cGP
-cIb
-aFx
-cUz
-cKY
-njH
-yhz
-oKS
-dAq
-cWj
-cXH
-cKY
-cZX
-oRf
-dbn
-gGc
-vfH
-mFN
-dCr
-cjn
-kss
-dqS
-dmC
-dok
-dqS
-dqS
-lsh
-fQd
-oMH
-xiu
-nFl
-xiu
-olb
-oMH
-npx
-qLE
-rbH
-ncP
-abj
-dFG
-dGx
-dHj
-dJb
-dXb
-dJS
-dGw
-dLh
-dPo
-dGw
-dNs
-dOh
-dOJ
-dPm
-dPU
-dQx
-dXf
-dFG
-abj
-bCI
-abj
-bCI
aaa
aaa
aaa
@@ -182653,6 +184971,8 @@ aaa
aaa
aaa
aaa
+"}
+(197,1,1) = {"
aaa
aaa
aaa
@@ -182672,8 +184992,6 @@ aaa
aaa
aaa
aaa
-"}
-(195,1,1) = {"
aaa
aaa
aaa
@@ -182717,27 +185035,7 @@ aaa
aaa
aaa
aaa
-abj
-abj
-acE
-abG
-abG
-abG
-ach
-acp
-acp
-acp
-acp
-acp
-acp
-acp
-acp
-acp
-acp
-acp
-acp
aaa
-abj
aaa
aaa
aaa
@@ -182750,138 +185048,118 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
-bCI
-bvh
-bvh
aaa
aaa
-bCI
-bvh
-bCI
aaa
aaa
aaa
-abj
aaa
aaa
aaa
aaa
aaa
+bCI
abj
-abj
-abj
-abj
-abj
-bnm
-boW
-bqL
-bsZ
-shA
-osU
-gsY
-bzi
-upr
-mxy
-bEw
-bEr
-jFg
-uNi
-urC
-eTz
-urC
-ilr
+fAx
+gld
+gJO
+hpZ
+hYQ
+iAf
+jlH
+mfo
+fCJ
+ubg
+ubg
+vmj
+vPC
+oyT
+rzh
+nRT
+vQG
+nvV
+tzh
+tzh
+jtg
+tzh
+tQs
+unM
+lTn
+tzh
+jtg
+tzh
+tzh
+nRT
+teD
+jCH
+thO
+aPA
+tmF
ouw
-pCQ
-lHP
-pYt
-lKV
-dza
-wHM
-cXL
-bYM
-bYM
-bYM
-bYM
-bYM
-bYM
-coS
-cqz
-cHs
-ctr
-cuB
-cwd
-cxu
-cyQ
-cAl
-cBS
-cDn
-cuJ
-cFm
-cGQ
-cIc
-aFx
-xHb
-cKY
-cKY
-cKY
-cKY
-cKY
-uYt
-cKY
-cKY
-cKY
-cKY
-cKY
-dec
-cKY
-mFN
-lsh
-qIs
-lsh
-lsh
-uJx
-jyl
+qSJ
+thO
+roC
+svL
+qLc
+rtG
+fEc
+rbm
+usx
+xqu
+hYl
+cgg
+vsF
+iBC
+iBC
+cyS
+iBC
+ojx
+xhV
+pVy
+cFw
+ojx
+iBC
+gJy
+iBC
+iBC
+vsF
+crX
+dtn
+xZu
+iXG
+guF
+guF
+xZu
+vEN
+dbq
+uud
+del
+faD
+xfR
+kTl
+guF
+kPF
+wMq
+guF
+cEE
+hgF
lsh
-qIs
+hLL
lsh
-dtt
-duF
-sgu
-cSW
-cSW
-cSW
-eKI
-eKI
-dCp
-mFN
-ncP
-aaa
-dFI
-dGy
-dIj
-nak
-dXc
-dJT
-dGw
-dLi
-dLZ
-dMF
-dNt
-dOi
-dOK
-dWV
-dPV
-dQy
-dXg
-tML
-aaa
+dBr
+vkX
+pGk
+dzp
+dBr
+xci
+hLL
+abj
abj
aaa
-bCI
+abj
aaa
aaa
aaa
@@ -182929,8 +185207,6 @@ aaa
aaa
aaa
aaa
-"}
-(196,1,1) = {"
aaa
aaa
aaa
@@ -182952,6 +185228,8 @@ aaa
aaa
aaa
aaa
+"}
+(198,1,1) = {"
aaa
aaa
aaa
@@ -182974,28 +185252,16 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-abj
aaa
aaa
aaa
-ahk
aaa
aaa
aaa
-acp
aaa
aaa
aaa
-ahk
-abj
-abj
-abj
-abj
-abj
-bCI
-abj
aaa
aaa
aaa
@@ -183007,138 +185273,22 @@ aaa
aaa
aaa
aaa
-abj
-abj
aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
-abj
aaa
aaa
-abj
-abj
-bvh
-bvh
-bvh
aaa
-abj
aaa
-bnn
-boL
-wbl
-iru
-shA
-wMp
-egR
-nNy
-upr
-kaz
-bCL
-qxv
-iQf
-nNN
-bVp
-wJG
-xrn
-sMt
-qnB
-xXq
-nxM
-ugx
-bYQ
-xme
-xme
-xme
-bqJ
-xme
-fho
-xme
-ktJ
-cnP
-oJO
-cqA
-crZ
-cts
-cuC
-cwe
-cxv
-cyR
-cxv
-cBT
-cDo
-cuw
-cFn
-cGR
-cId
-aFx
-cME
-dsj
-dsj
-dsj
-dsj
-dsj
-cUt
-nhX
-cXD
-cZc
-dbe
-dbp
-dcB
-dek
-cWa
-dhg
-dsj
-dsj
-dlF
-dmD
-dqW
-dsj
-dsj
-dsj
-dtu
-duG
-mFN
-ncP
-hLL
-hLL
-ryy
-mFN
-ncP
-mFN
-mFN
aaa
-dFJ
-dGz
-dHl
-dJc
-dXh
-dJU
-dIc
-uTP
-dQG
-dYF
-dNu
-dOj
-dOL
-dGw
-dGw
-dGw
-dGw
-dFG
-abj
-bCI
-abj
-bCI
aaa
aaa
aaa
@@ -183168,7 +185318,105 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+nSZ
+dzY
+dOd
+mPL
+fye
+dhX
+uOt
+nXK
+xpz
+ubg
+szb
+ubg
+xpz
+pif
+inl
+nRT
+vQG
+nvV
+tzh
+thk
+ojk
+tnM
+mBR
+uob
+wkl
+lhR
+vWq
+xou
+tzh
+pYG
+tLv
+tMU
+jTh
+dle
+ttw
+pcp
+lNp
+thO
+gui
+jqi
+sUb
+rtG
+sUb
+iLc
+uEr
+xqu
+bNk
+tBR
+vsF
+gdw
+fsK
+fsK
+fsK
+cVX
+xhV
+pVy
+cFw
+cVX
+fsK
+fsK
+fsK
+jAl
+vsF
+gYg
+jkE
+lsh
+xci
+xci
+xci
+lsh
+xci
+lsh
+lsh
+lsh
+bXk
+lsh
+lsh
+xci
+xci
+qrL
+lsh
+lsh
+ygQ
+mDP
+xLH
+gYg
+ukA
+dBr
+dBr
+lsh
+uVl
+pbv
+hLL
+abj
+bCI
aaa
+abj
aaa
aaa
aaa
@@ -183177,6 +185425,7 @@ aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -183186,8 +185435,6 @@ aaa
aaa
aaa
aaa
-"}
-(197,1,1) = {"
aaa
aaa
aaa
@@ -183231,30 +185478,15 @@ aaa
aaa
aaa
aaa
-bCI
-bCI
-bCI
-bCI
-abj
-abW
-acj
-aco
aaa
aaa
-ahk
aaa
aaa
-abW
-acj
-aco
-abj
-bCI
-abj
-bCI
-bCI
aaa
aaa
aaa
+"}
+(199,1,1) = {"
aaa
aaa
aaa
@@ -183265,137 +185497,22 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
aaa
-abj
aaa
aaa
-bvh
-bvh
-bvh
-abj
-abj
aaa
aaa
-abj
-abj
aaa
-abj
aaa
-gsY
-boP
-iLi
-rnY
-shA
-tBr
-egR
-jXd
-upr
-bfY
-bCM
-bEt
-iQf
-kaE
-bVq
-oCG
-kkV
-qjr
-bVq
-lsf
-nLE
-hcV
-lKV
-tmF
-gNb
-cJp
-cJp
-tmF
-vrM
-rPP
-xMf
-cnP
-coT
-cqB
-csa
-coW
-cuD
-cwf
-cxw
-cyS
-cAm
-cYh
-cDp
-cvV
-cFo
-cGS
-cIk
-aFx
-cLn
-cML
-cZi
-cQd
-cRz
-cSW
-cUu
-cWb
-cWb
-cWb
-cZT
-dbq
-dcC
-del
-cWb
-dhh
-cSW
-cRz
-hqn
-cSW
-dsm
-cML
-dyc
-dbr
-dtv
-duH
-mFN
-dwO
-dyd
-dzp
-dAy
-ncP
-lsh
-dDF
-mFN
-abj
-dFG
-dGA
-dHm
-dJd
-dXi
-dJV
-dGw
-dLk
-dMb
-dMH
-dNv
-dOk
-dOM
-dWW
-dPW
-dQz
-dXg
-tML
aaa
-abj
aaa
-bCI
aaa
aaa
aaa
@@ -183443,8 +185560,6 @@ aaa
aaa
aaa
aaa
-"}
-(198,1,1) = {"
aaa
aaa
aaa
@@ -183460,6 +185575,105 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+nSZ
+dAc
+bHO
+mwg
+pVL
+iTQ
+uOt
+wwO
+xpz
+pBd
+mlX
+mCj
+vJJ
+tuY
+rzh
+paa
+wdd
+nvV
+hgM
+lhe
+syf
+hIB
+hIB
+riJ
+pgO
+xpx
+wAM
+mMi
+xWZ
+nRT
+tLv
+ecU
+wss
+lyU
+wwM
+uLp
+usy
+nfN
+iDs
+jqi
+gGh
+hdG
+bBt
+iLc
+sMh
+xqu
+bNk
+yhz
+vsF
+lyd
+xWJ
+xWJ
+xWJ
+ojx
+xOP
+pom
+iMK
+ojx
+fRN
+xWJ
+xWJ
+xWJ
+vsF
+lsh
+xfV
+tzL
+wqy
+xLH
+hLL
+hLL
+mFN
+mFN
+dHX
+mFN
+mFN
+hLL
+hLL
+sNx
+mFN
+dmL
+fMt
+fMt
+dqT
+fMt
+fMt
+jOe
+xci
+oFL
+vGi
+vBg
+xci
+vai
+xLH
+abj
+bCI
+abj
+bCI
aaa
aaa
aaa
@@ -183491,23 +185705,10 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-abW
-acj
-aco
aaa
-abW
-acj
-aco
aaa
-abW
-acj
-aco
aaa
-bCI
-abj
-abj
aaa
aaa
aaa
@@ -183522,142 +185723,28 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
aaa
-abj
-abj
aaa
aaa
aaa
-abj
-abj
-abj
-abj
aaa
-abj
aaa
aaa
aaa
aaa
aaa
-abj
-abj
-abj
-abj
-gsY
-gsY
-jIV
-pln
-shA
-vLX
-gsY
-bzt
-nHN
-laF
-bId
-pNO
-jFg
-ucF
-pob
-wck
-pob
-pob
-kci
-vCg
-qZG
-bHk
-qbM
-qbM
-qbM
-qbM
-qbM
-qbM
-qbM
-aQr
-xMf
-cnP
-cnP
-cnP
-csc
-cnP
-cnP
-cnP
-cnP
-cnP
-cnP
-cnP
-cnP
-cnP
-cFw
-cVX
-cIm
-ghR
-ghR
-ghR
-ghR
-ghR
-ghR
-cSX
-cUz
-cTg
-cTg
-cLG
-cTg
-cTg
-dJO
-cTg
-cTg
-cLG
-cTg
-cTg
-cTg
-cLG
-dhi
-cLG
-cTg
-cTg
-dtw
-dAA
-hLL
-dwP
-dyb
-uJx
-dAz
-ncP
-dDC
-dDG
-ncP
-abj
-dFG
-dGw
-dGw
-dIl
-dJg
-dJW
-dGw
-dLl
-dYE
-dGw
-dNw
-dOl
-dON
-dPm
-dPX
-dQA
-dXf
-dFG
-abj
-bCI
-abj
-bCI
aaa
aaa
aaa
aaa
-aaZ
+aaa
+aaa
+"}
+(200,1,1) = {"
+aaa
aaa
aaa
aaa
@@ -183700,8 +185787,6 @@ aaa
aaa
aaa
aaa
-"}
-(199,1,1) = {"
aaa
aaa
aaa
@@ -183749,18 +185834,101 @@ aaa
aaa
aaa
abj
+fAx
+gmA
+ozX
+lAU
+qHb
+cVU
+uOt
+jWI
+opE
+ojn
+wMw
+qie
+nJR
+rIw
+wMw
+wlk
+vQG
+nvV
+qFD
+rCV
+mdH
+aun
+pQU
+xwc
+jJj
+fCz
+hoU
+hgg
+bNL
+mpW
+tLv
+tMU
+faY
+eAt
+ttw
+qEm
+pWD
+thO
+sVU
+sTO
+buC
+iYJ
+buC
+wvd
+xqu
+xqu
+nve
+qEC
+vsF
+vsF
+ojx
+ojx
+vsF
+vsF
+vHh
+mSR
+igC
+vsF
+vsF
+ojx
+ojx
+vsF
+vsF
+qEC
+hkp
+qEC
+qEC
+qEC
abj
-abW
-acj
-aco
+aaa
+hLL
+lsh
+lsh
+lsh
+hLL
+aaa
abj
-abW
-acj
-aco
+mFN
+aJu
+qrL
+fMt
+jrD
+swW
+uip
+fMt
+mFN
+hLL
+yaz
+xLH
+xLH
+hLL
+mFN
+mFN
abj
-abW
-acj
-aco
+bCI
abj
bCI
aaa
@@ -183778,138 +185946,18 @@ aaa
aaa
aaa
aaa
-bCI
-bvh
-bvh
-aaa
-aaa
-aaa
-aaa
-abj
aaa
-abj
-bvh
-bvh
-bvh
aaa
aaa
aaa
-abj
-abj
aaa
aaa
aaa
aaa
-abj
aaa
-abj
aaa
-gsY
-boO
-oKR
-wCd
-tGM
-muE
-lPJ
-pjj
-lIH
-bbw
-bCO
-tnT
-jFg
-bzC
-ggx
-bLB
-ggx
-ggx
-bzC
-eYO
-fef
-eYO
-qbM
-aSi
-cgj
-itc
-xMu
-aSk
-qbM
-cJp
-lGD
-nin
-nDj
-nin
-uaK
-nin
-mZm
-rba
-gnf
-cyT
-xWJ
-cBV
-cDq
-gnf
-cFq
-cGT
-cIg
-ghR
-foY
-goR
-cOp
-lAc
-ghR
-cjn
-cUz
-cTg
-cZb
-dfI
-cRG
-cTg
-dHX
-cTg
-dfI
-dhj
-diQ
-cTg
-dlG
-dmL
-doo
-dpL
-dqT
-cTg
-dtw
-dpO
-hLL
-dAy
-dye
-dzq
-lsh
-mFN
-uJx
-dDH
-ncP
-abj
-abj
-dFG
-dHo
-dIm
-dJh
-dJX
-dFG
-dFG
-dFG
-dFG
-dFG
-oUh
-dFG
-dFG
-dFG
-dFG
-dFG
-dFG
-abj
aaa
aaa
-bCI
aaa
aaa
aaa
@@ -183951,14 +185999,14 @@ aaa
aaa
aaa
aaa
+"}
+(201,1,1) = {"
aaa
aaa
aaa
aaa
aaa
aaa
-"}
-(200,1,1) = {"
aaa
aaa
aaa
@@ -184005,24 +186053,14 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-abW
-acj
-aco
aaa
-abW
-acj
-aco
aaa
-abW
-acj
-aco
aaa
-bCI
aaa
aaa
aaa
+bxe
aaa
aaa
aaa
@@ -184037,126 +186075,108 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
aaa
-abj
-abj
-abj
aaa
aaa
-abj
aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
aaa
-bLA
-ggx
-ggx
-ggx
-gsY
-uLi
-rEx
-sfU
-odT
-fCs
-gsY
-bxO
-hGE
-ksr
-bCP
-guK
-jFg
-bHW
-gmd
-aQD
-nEY
-aQH
-mFk
-tPd
-bWs
-yjg
-qbM
-aSj
-qyy
-scT
-sQZ
-aSl
-kfF
-wmn
-wmn
-wmn
-wmn
-wmn
-wmn
-wmn
-cAJ
-cmt
-gnf
-cyU
-aFv
-aFv
-aFv
-cEt
-kYQ
-nPa
-vHh
-fKA
-gJy
-gJy
-cOq
-cQe
-ghR
-cSZ
-cUz
-cTg
-cTg
-dab
-cRG
-dlB
-dJO
-dXT
-cQz
-dhk
-diR
-cTg
-dpt
-dmG
-dty
-dwS
-jWA
-sEZ
-dtt
-cqE
-mFN
-dwR
-dyf
-mFN
-dAB
-mFN
-dCr
-mFN
-ncP
+bCI
abj
+nSZ
+gnv
+dDE
+fRj
+qoN
+dNG
+uOt
+jXd
+xpz
+lMr
+wMw
+cRC
+mBF
+fXV
+wMw
+yhA
+lAB
+oau
+qIz
+lhf
+oan
+hIB
+hIB
+uoW
+hIB
+hIB
+vxU
+cjk
+uIx
+yhA
+tcP
+rhQ
+xAB
+pJN
+qek
+ejN
+tNa
+pJU
+xqu
+xqu
+xqu
+xqu
+xqu
+xqu
+xqu
+cmr
+jLc
+toB
+hqP
+doc
+cAV
+ezU
+yeE
+ooV
+pqM
+ucN
+jGi
+sil
+uws
+sHi
+xva
+xIZ
+oTB
+hko
+nBI
+qdI
+kud
+qEC
abj
-dFH
-dHp
-dIn
-dJi
-dJY
-jSh
-aaa
abj
+mFN
+cQz
+qGq
+cQz
+mFN
abj
+coE
+hLL
+tsi
+rEe
+fMt
+wTQ
+qTI
+vUL
+tGG
abj
-aaa
abj
abj
abj
@@ -184164,12 +186184,14 @@ abj
abj
abj
abj
-bCI
abj
+aaa
+aaa
bCI
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -184214,8 +186236,6 @@ aaa
aaa
aaa
aaa
-"}
-(201,1,1) = {"
aaa
aaa
aaa
@@ -184236,6 +186256,21 @@ aaa
aaa
aaa
aaa
+"}
+(202,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -184248,7 +186283,6 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -184262,21 +186296,10 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-abW
-acj
-aco
aaa
-abW
-acj
-aco
aaa
-abW
-acj
-aco
aaa
-abj
aaa
aaa
aaa
@@ -184294,13 +186317,8 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
-abj
-bvh
-bvh
-bvh
aaa
aaa
aaa
@@ -184308,107 +186326,113 @@ abj
abj
aaa
aaa
+abj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bCI
+abj
+nSZ
+nSZ
+bgt
+nSZ
+nSZ
+nSZ
+uOt
+jXk
+vyi
+uSY
+qie
+kyw
+nKc
+lCu
+rIw
+nRT
+vQG
+nvV
+tzh
+wnX
+lvI
+vkj
+igk
+hTw
+jbH
+ijD
+lyD
+cac
+tzh
+nRT
+tLv
+tMU
+mSc
+rDK
+hcg
+qHk
+uHW
+pJU
+abj
+abj
+abj
+abj
+abj
+abj
+csj
+hqP
+mIV
+wdC
+orT
+orT
+orT
+orT
+wdC
+wdC
+orT
+wDs
+mwa
+wdC
+wdC
+wdC
+wdC
+wdC
+wKe
+wdC
+mpg
+nxK
+sil
+csj
+abj
aaa
-aMt
-aMt
-eDD
-eDD
-aMt
-bLA
-bqO
-tqf
-puv
-gsY
-gsY
-egR
-poq
-wCy
-gsY
-gsY
-jFg
-wkt
-xPY
-gZH
-jFg
-jFg
-bHX
-bJI
-jSV
-aQE
-bPt
-mFk
-kaO
-bVA
-rKZ
-btG
-wns
-exd
-xhi
-cgk
-hLs
-kfF
-ozW
-kMl
-etE
-wna
-kMl
-ozW
-wmn
-cAJ
-mTB
-gnf
-cyV
-cAn
-aFw
-aHA
-gnf
-iHW
-cGV
-cIh
-ghR
-cLo
-cMM
-ezU
-cQf
-ghR
-daS
-cUx
-cTg
-cZf
-cRG
-dcI
-duy
-dMu
-cQz
-deq
-dhn
-diS
-cTg
-cTg
-dmH
-dtz
-iWk
-cTg
-cTg
-dtt
-duJ
-ncP
-mFN
mFN
+qtz
+oLV
+qtz
mFN
-lsh
-dyg
-dDL
-dDJ
-ryy
aaa
abj
-dFG
-dHq
-dIo
-dJj
-dJZ
-dFG
+hLL
+vLs
+uWW
+fMt
+kma
+kBY
+jco
+fMt
abj
bCI
bCI
@@ -184417,11 +186441,11 @@ abj
bCI
bCI
bCI
+abj
+abj
+abj
+abj
aaa
-bCI
-bCI
-bCI
-bCI
aaa
aaa
aaa
@@ -184461,6 +186485,7 @@ aaa
aaa
aaa
aaa
+bEx
aaa
aaa
aaa
@@ -184471,8 +186496,6 @@ aaa
aaa
aaa
aaa
-"}
-(202,1,1) = {"
aaa
aaa
aaa
@@ -184490,6 +186513,8 @@ aaa
aaa
aaa
aaa
+"}
+(203,1,1) = {"
aaa
aaa
aaa
@@ -184513,27 +186538,22 @@ aaa
aaa
aaa
aaa
+aae
+aaa
aaa
aaa
aaa
aaa
aaa
aaa
-bCI
aaa
aaa
-abj
aaa
aaa
-abW
-acj
-aco
aaa
aaa
-abj
aaa
aaa
-bCI
aaa
aaa
aaa
@@ -184551,131 +186571,29 @@ aaa
aaa
aaa
aaa
-abj
aaa
-abj
-abj
aaa
aaa
-abj
aaa
aaa
aaa
aaa
+aaa
+abj
+cDs
+cDs
+abj
abj
aaa
aaa
-aMt
-aMt
-wVK
-uPm
-qHo
-omO
-bAN
-bqP
-ghY
-htt
-mYf
-qMp
-htt
-lfQ
-htt
-htt
-woE
-jOq
-htt
-lfQ
-htt
-gkQ
-bzC
-bHY
-nCX
-iGj
-bNA
-aQI
-mFk
-aST
-rGM
-acV
-qbM
-caN
-kSH
-lXs
-cgl
-kfF
-kfF
-uYl
-kHa
-wOc
-clk
-kHa
-uYl
-wmn
-nwh
-twl
-gnf
-gnf
-gnf
-gnf
-gnf
-gnf
-jGi
-cGU
-cIi
-ghR
-ghR
-ghR
-ghR
-ghR
-ghR
-nxK
-fPD
-cLG
-cZg
-cQz
-ddR
-dxM
-dNZ
-dbA
-ddR
-dhm
-diT
-cLG
-dqd
-cKa
-dtB
-cTn
-dqV
-cLG
-dzn
-cqE
-mFN
-dwT
-dAC
-dzo
-dBr
-lsh
-dDI
-lsh
-hLL
aaa
-abj
-dFG
-dFG
-dFG
-dFG
-dFG
-dFG
aaa
-abj
aaa
aaa
aaa
aaa
aaa
-abj
aaa
-abj
aaa
aaa
aaa
@@ -184685,15 +186603,105 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+abj
+abj
+abj
+abj
+abj
+acF
+hOE
+jZY
+krK
+lOu
+wMw
+mDL
+gxI
+bLv
+wMw
+nRT
+vQG
+mzo
+tzh
+tzh
+gNP
+ego
+tzh
+upN
+tzh
+vWS
+wCd
+tzh
+tzh
+wlk
+fWL
+xAV
+oTg
+wrC
+lNg
+fZr
+iad
+pJU
+abj
+aaa
+aaa
aaa
aaa
aaa
+csj
+nze
+tNl
+aWS
+nft
+nft
+bJy
+xyi
+wkE
+xoP
+fEP
+wwK
+fEP
+iJZ
+nNy
+xyi
+qjY
+xoK
+xIB
+wop
+pCW
+lyM
+sil
+csj
+abj
+abj
+tWj
+qtz
+rxs
+qtz
+tWj
+abj
+coE
+hLL
+hLL
+mFN
+tGG
+tGG
+dqY
+tGG
+tGG
+abj
aaa
aaa
+abj
aaa
aaa
+abj
+abj
aaa
+abj
aaa
+bCI
aaa
aaa
aaa
@@ -184728,8 +186736,6 @@ aaa
aaa
aaa
aaa
-"}
-(203,1,1) = {"
aaa
aaa
aaa
@@ -184764,6 +186770,8 @@ aaa
aaa
aaa
aaa
+"}
+(204,1,1) = {"
aaa
aaa
aaa
@@ -184776,21 +186784,10 @@ aaa
aaa
aaa
aaa
-bCI
-bCI
-abj
-bCI
-bCI
aaa
aaa
-abj
aaa
aaa
-bCI
-bCI
-abj
-bCI
-bCI
aaa
aaa
aaa
@@ -184808,132 +186805,13 @@ aaa
aaa
aaa
aaa
-bvh
-bvh
-bvh
aaa
aaa
aaa
-abj
-abj
aaa
-aMt
-pen
-pen
-pen
-aMt
-aMt
-uRQ
-hCR
-uTk
-mFd
-sUp
-bqN
-tCj
-ieh
-mQI
-koC
-qgz
-jby
-fFv
-mQI
-mQI
-oNJ
-tqL
-mQI
-fFv
-jrm
-ceI
-bzC
-bzC
-spC
-tnF
-spC
-spC
-bzC
-xZu
-pnM
-xZu
-qbM
-ezv
-exo
-ezv
-qbM
-kfF
-vNk
-wou
-exx
-uVS
-qRK
-uVS
-gVN
-wmn
-cAJ
-twl
-kGY
-aKh
-cAo
-cBW
-wkE
-kGY
-cFq
-cGU
-cIg
-kSt
-qjY
-cMN
-cOr
-cQg
-kSt
-cTa
-cUz
-cTg
-cZh
-dac
-cQz
-dAX
-dOb
-dXY
-cQz
-dhn
-dmE
-cTg
-cTg
-dmH
-dtE
-dwY
-cTg
-cTg
-dtw
-dAA
-hLL
-dDL
-uJx
-dzr
-uJx
-dbm
-uJx
-dDL
-hLL
-abj
-abj
-abj
aaa
aaa
aaa
-abj
-abj
-abj
-bCI
-bCI
-abj
-abj
-abj
-bCI
-bCI
-bCI
-bCI
-bCI
aaa
aaa
aaa
@@ -184958,6 +186836,12 @@ aaa
aaa
aaa
aaa
+cDs
+cDs
+abj
+abj
+abj
+abj
aaa
aaa
aaa
@@ -184983,20 +186867,98 @@ aaa
aaa
aaa
aaa
+iAK
+jnn
+kbT
+pgE
+krM
+qie
+kyw
+xxx
+lCu
+ykI
+nRT
+pLm
+qhn
+lhS
+rDM
+rrl
+dtj
+tzh
+lYj
+tzh
+ciT
+igH
+lhS
+lhS
+pby
+ija
+pgI
+gJB
+aEY
+bPv
+weZ
+prh
+pJU
+abj
aaa
aaa
-"}
-(204,1,1) = {"
aaa
aaa
aaa
+csj
+ttY
+tNl
+soM
+cza
+cza
+kSt
+xyi
+hcu
+nNN
+oCP
+fXZ
+qef
+hPg
+oId
+xyi
+fVK
+cQj
+cQj
+iUT
+mjE
+msG
+sil
+csj
+abj
aaa
aaa
+vgI
+der
+pQl
aaa
aaa
+abj
+abj
+abj
+abj
+abj
+tGG
+gEK
+tGG
+abj
aaa
aaa
+bCI
+bCI
+abj
+bCI
+bCI
+bCI
+bCI
+abj
aaa
+abj
aaa
aaa
aaa
@@ -185037,13 +186999,6 @@ aaa
aaa
aaa
aaa
-bCI
-bCI
-abj
-bCI
-bCI
-abj
-bCI
aaa
aaa
aaa
@@ -185066,122 +187021,14 @@ aaa
aaa
aaa
aaa
-abj
-abj
aaa
aaa
aaa
aaa
-abj
-aMt
-aMt
-oss
-vRH
-hes
-qwi
-uHU
-vAZ
-oLr
-xLY
-lZe
-xpQ
-ice
-kvr
-vYT
-iSO
-tda
-btV
-tIh
-btV
-btV
-btV
-lGo
-hYd
-btV
-soV
-tdt
-nHa
-kRE
-qMp
-htt
-frh
-htt
-htt
-qiv
-kGl
-xYy
-bZr
-bsE
-xYg
-rCV
-bsD
-ohO
-wmn
-jks
-nLD
-ihP
-wWN
-uLP
-mcu
-inw
-nyN
-cHv
-fGU
-kGY
-cyW
-cAp
-cAq
-cAq
-cEu
-cFs
-vQz
-cIj
-cJy
-cLp
-cMO
-cLp
-cQi
-kSt
-vsF
-cUz
-cTg
-cTg
-daR
-deo
-dem
-dcF
-dXZ
-dfJ
-dho
-diR
-cTg
-dqe
-dmG
-dty
-dpM
-dqX
-cTg
-dtw
-diO
-mFN
-dwV
-dDL
-uJx
-dCv
-dBT
-dDK
-lsh
-hLL
-abj
-bCI
-bCI
-bCI
-abj
-bCI
-bCI
-bCI
aaa
aaa
+"}
+(205,1,1) = {"
aaa
aaa
aaa
@@ -185242,8 +187089,6 @@ aaa
aaa
aaa
aaa
-"}
-(205,1,1) = {"
aaa
aaa
aaa
@@ -185251,6 +187096,9 @@ aaa
aaa
aaa
aaa
+abj
+cDs
+abj
aaa
aaa
aaa
@@ -185272,10 +187120,74 @@ aaa
aaa
aaa
aaa
+bCI
+bCI
+abj
+abj
+acF
+vMK
+kdd
+tby
+exv
+wMw
+mEu
+jdU
+dNo
+wMw
+pby
+vQG
+nvV
+lhS
+rGK
+szM
+aMD
+ixm
+uqu
+sei
+vXH
+iOV
+hWb
+lhS
+mpW
+tLv
+tMU
+gNl
+qXd
+rSK
+suW
+pCX
+pJU
+abj
+abj
aaa
aaa
aaa
aaa
+csj
+pTS
+ufU
+soM
+ecK
+cza
+kSt
+xyi
+nol
+nNN
+lAy
+hOp
+lAy
+hPg
+rqh
+xyi
+cQj
+cQj
+tzt
+cQh
+mjE
+foa
+nop
+csj
+abj
aaa
aaa
aaa
@@ -185283,11 +187195,28 @@ aaa
aaa
aaa
aaa
+bCI
aaa
+bCI
+bCI
+abj
+tGG
+bBD
+tGG
+abj
+abj
+bCI
+bCI
aaa
aaa
+abj
aaa
aaa
+abj
+abj
+bCI
+bCI
+bCI
aaa
aaa
aaa
@@ -185324,117 +187253,13 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
aaa
-kSE
-gxk
-rbA
-rRH
-hwt
-oQz
-vBQ
-oAg
-jCX
-kny
-aMt
-aIl
-aIl
-aMt
-heg
-tYg
-rLl
-dUD
-dUD
-bvq
-dUD
-gLT
-dUD
-gVd
-dUD
-dUD
-vNZ
-mKu
-mQI
-mQI
-mQI
-xpv
-oyr
-mQI
-mQI
-fKr
-mQI
-oHd
-hkG
-ihc
-xiz
-iYw
-oCt
-gyo
-yaz
-nMs
-xDv
-lZA
-gRQ
-qmu
-lov
-pBl
-wmn
-cAJ
-aRV
-kGY
-cyX
-fpv
-cBX
-aKk
-kGY
-evp
-cGU
-rqh
-kSt
-cLq
-pLb
-tzt
-cQh
-kSt
-cTb
-cUz
-cTg
-cZj
-cQz
-cQz
-cTg
-dSC
-cTg
-der
-dhp
-diU
-cTg
-dlH
-dom
-dop
-dpN
-dqY
-cTg
-dtw
-dpO
-bLn
-dwW
-uJx
-dzs
-dBp
-dBs
-dCt
-dDM
-mFN
-abj
aaa
aaa
-abj
aaa
-abj
aaa
aaa
aaa
@@ -185459,6 +187284,8 @@ aaa
aaa
aaa
aaa
+"}
+(206,1,1) = {"
aaa
aaa
aaa
@@ -185499,8 +187326,6 @@ aaa
aaa
aaa
aaa
-"}
-(206,1,1) = {"
aaa
aaa
aaa
@@ -185528,6 +187353,9 @@ aaa
aaa
aaa
aaa
+abj
+cDs
+cDs
aaa
aaa
aaa
@@ -185545,10 +187373,78 @@ aaa
aaa
aaa
aaa
+bCI
+bCI
+bCI
aaa
+abj
+abj
+abj
+ftc
+ftc
+ftc
+ftc
+aru
+aru
+aru
+aru
+aru
+aru
+aru
+hdu
+pLB
+bzC
+lhS
+rGO
+tHS
+dIj
+oPR
+uqM
+stT
+vYk
+bVZ
+lhS
+lhS
+mzW
+lqG
+vfb
+xAB
+pJN
+exy
+xuA
+tNa
+pJU
+sBL
+abj
+abj
aaa
aaa
aaa
+csj
+xun
+tNl
+soM
+cza
+cza
+kSt
+xyi
+hcu
+nNN
+hng
+psy
+oCP
+hPg
+oId
+xyi
+fIE
+cQj
+iUT
+cQj
+pww
+cTc
+wkE
+csj
+abj
aaa
aaa
aaa
@@ -185560,14 +187456,24 @@ aaa
aaa
aaa
aaa
+abj
aaa
+vzF
+abj
+abj
aaa
+abj
aaa
aaa
+wAE
+oTL
+wQO
aaa
aaa
+abj
aaa
aaa
+bCI
aaa
aaa
aaa
@@ -185581,118 +187487,10 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
aaa
aaa
-pmu
-bTo
-bTj
-cgr
-orw
-vMt
-jHN
-tZg
-oEj
-eXx
-gfv
-bfU
-hUk
-aKR
-bru
-rZV
-bsH
-dUD
-boT
-nwK
-bNz
-bzh
-dQu
-rwz
-bAQ
-hHP
-ixP
-ycV
-btV
-btV
-btV
-hbR
-btV
-btV
-sHI
-rUa
-btV
-eYG
-rEd
-xHa
-sJQ
-mWP
-gRY
-cHU
-cHU
-cHU
-cHU
-wmn
-prX
-prX
-prX
-wmn
-wmn
-cAJ
-cmt
-kGY
-kGY
-kGY
-kGY
-kGY
-kGY
-cFu
-cGU
-oId
-kSt
-kSt
-kSt
-kSt
-kSt
-kSt
-cjn
-cUz
-sEZ
-cTg
-cLG
-cTg
-cTg
-dcG
-cTg
-cTg
-cLG
-cTg
-cTg
-cTg
-cLG
-dvM
-cLG
-cTg
-cTg
-dtw
-dpO
-mFN
-dwX
-dCv
-dzt
-dAE
-dBt
-dCu
-dDL
-hLL
-abj
-abj
-bCI
-bCI
-bCI
-bCI
-bCI
aaa
aaa
aaa
@@ -185743,6 +187541,8 @@ aaa
aaa
aaa
aaa
+"}
+(207,1,1) = {"
aaa
aaa
aaa
@@ -185756,8 +187556,6 @@ aaa
aaa
aaa
aaa
-"}
-(207,1,1) = {"
aaa
aaa
aaa
@@ -185814,6 +187612,8 @@ aaa
aaa
aaa
aaa
+cDs
+abj
aaa
aaa
aaa
@@ -185825,9 +187625,84 @@ aaa
aaa
aaa
aaa
+bCI
+bCI
+bCI
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+ftc
+ftc
+ftc
+iBE
+joq
+keE
+aru
+vvh
+vbh
+aru
+vbh
+vhp
+aru
+oIn
+qug
+mml
+lhS
+rHW
+tHS
+iTk
+jPK
+vNX
+vSt
+wwZ
+qjM
+lhS
+sxn
+vcX
+nHu
+uEq
+pJg
+uQq
+qWw
+nHz
+bMM
+wnE
+sBL
+sBL
+abj
aaa
aaa
aaa
+csj
+lNV
+tNl
+dYX
+nwh
+nwh
+pBj
+xyi
+wkE
+cuM
+cFv
+bOZ
+cFv
+uTr
+nNy
+xyi
+ydL
+lTT
+lkn
+lPH
+mlB
+fOE
+pVa
+csj
+abj
+bCI
aaa
aaa
aaa
@@ -185838,115 +187713,25 @@ aaa
aaa
aaa
aaa
+bCI
abj
+ujV
abj
aaa
+wAE
+rze
+wQO
aaa
-tGu
-vxJ
-des
-cgr
-cgr
-qjp
-wqD
-kZD
-mJH
-wLt
-pGI
-aGW
-beC
-bfZ
-bhi
-mQI
-bsF
-bsH
-weY
-boU
-vcj
-eEg
-hfx
-ugH
-kVT
-bCK
-dUD
-gLT
-pDi
-pDi
-rPi
-rPi
-fZE
-rPi
-rPi
-pDi
-pDi
-loZ
-cet
-loZ
-eTP
-eTP
-sLa
-cLe
-cHX
-eSM
-krI
-eyI
-abj
+wAE
+oTL
+wQO
aaa
+wAE
+oTL
+wQO
aaa
abj
-abj
-lKV
-nwh
-lJD
-aFx
-cyY
-cyY
-cBY
-cyY
-bmW
-cFv
-cXI
-cIk
-bmW
-cyY
-cMP
-cyY
-cyY
-aFx
-cTc
-cUA
-dko
-ctu
-dqU
-dqU
-dko
-dcH
-det
-dkm
-dhq
-dmI
-dmK
-dsk
-dqU
-dvR
-dqU
-dqU
-dym
-dtA
-dpO
-hLL
-lsh
-dCv
-dwZ
-dCu
-dBu
-dCv
-uJx
-hLL
-abj
-abj
aaa
-abj
aaa
aaa
aaa
@@ -186084,6 +187869,8 @@ aaa
aaa
aaa
aaa
+abj
+abj
aaa
aaa
aaa
@@ -186095,115 +187882,114 @@ aaa
aaa
aaa
aaa
-aaa
+bCI
abj
-aMt
-aMt
-aMt
-sMF
-bTj
-aSh
-quV
-bYY
-pBu
-bYY
-ccK
-wTD
-kXX
-kws
-aIO
-aJC
-eSK
-bru
-kAY
-tHH
-weY
-btZ
-scZ
-hvI
-bzj
-nTk
-kVT
-bCN
-kHk
-sIX
-pDi
-aPg
-tnr
-twU
-rcX
-qfg
-jku
-lLV
-pDi
-nlp
-xMw
-nUy
-bZa
-eTP
-cJr
-hid
-xpU
-ckE
-nXe
-eyI
abj
abj
+aru
+aru
+mAr
+fdX
+fAB
+aru
+aru
+hsI
+hZW
+iCk
+iCk
+kfc
+aru
+lPJ
+mmA
+aru
+nKe
+oij
+aru
+pbM
+mqz
+iUI
+lhS
+rJG
+tHS
+sMP
+qdp
+vNX
+pyk
+ePU
+dZt
+lhS
+xXA
+vcX
+tNf
+ugH
+oVy
+oVy
+tzk
+uZU
+nHz
+bMM
+rKg
+sBL
abj
-bvh
aaa
-cqJ
-cAJ
-fGU
-aFx
-cyZ
-cAr
-cAr
-cAr
-cEv
-cFt
-cGU
-cIk
+aaa
+aaa
+csj
+udZ
+tuT
+wQJ
+wQJ
+wQJ
+wQJ
+wQJ
+rqk
+rqk
+eaq
cEv
-cAr
-cAr
-cAr
-cQj
-aFx
-cjp
-cUB
-cSW
-cML
-cML
-cML
-cSW
-cML
-cSW
-cSW
-cSW
-diV
-cSW
-cSW
-cML
-dvS
-dsm
-cSW
-cSW
-duN
-duM
-ncP
-cjp
-dyk
-dCv
-dCv
-lsh
-dEt
-dBr
-hLL
+rqk
+mBo
+rqk
+rqk
+rqk
+rqk
+rqk
+rqk
+tOb
+xyi
+pVa
+csj
abj
bCI
aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+abj
+aaa
+bRp
+abj
abj
+wAE
+oTL
+wQO
+aaa
+wAE
+oTL
+wQO
+aaa
+wAE
+oTL
+wQO
+aaa
+bCI
+aaa
+aaa
aaa
aaa
aaa
@@ -186212,7 +187998,6 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -186291,6 +188076,7 @@ aaa
aaa
aaa
aaa
+aac
aaa
aaa
aaa
@@ -186353,114 +188139,113 @@ aaa
aaa
aaa
aaa
-aMt
-aMt
-hVo
-aMt
-pCn
-cgr
-wyy
-vbw
-kCg
-jrU
-hrX
-nYp
-fbO
-lgH
-aMt
-hcE
-hcE
-aMt
-jFS
-rZV
-tsi
-dUD
-bvl
-wap
-oXm
-mfL
-kfn
-wiC
-ugH
-ugH
-ygf
-ryt
-bGm
-vxO
-jRV
-lKU
-jRV
-nbA
-vww
-sCf
-xwq
-bXb
-hgL
-rJr
-cHV
-cJr
-cLe
-vQt
-rrR
-eJH
-eyI
abj
+abj
+dCr
+aru
+aru
+dWV
+etR
+ffs
+fAM
+gnI
+aru
+aru
+dgo
+iCk
+cfs
+cJM
+aru
+lSM
+xbO
+aru
+nKl
+kmJ
+aru
+pcc
+qug
+mfd
+lhS
+rLl
+tHS
+toP
+qdp
+vNX
+pyk
+ePU
+lSA
+lhS
+lhS
+vcX
+iHp
+uZU
+xFL
+xFL
+syB
+vnH
+vic
+uEq
+wio
+bHI
+abj
+aaa
+aaa
+aaa
+csj
+udZ
+udZ
+udZ
+udZ
+fhY
+tUH
+tUH
+tUH
+udZ
+hnQ
+uDH
+uDH
+nhC
+pVa
+nQZ
+nQZ
+iqR
+nQZ
+pVa
+pVa
+pVa
+rHr
+csj
+abj
+aaa
+aaa
+aaa
+aaa
aaa
aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bCI
abj
+bRp
abj
-lKV
-cAJ
-twl
-aFx
-cza
-cAs
-cAs
-cAs
-bmW
-cFt
-fJi
-cIk
-bmW
-cLr
-cAs
-cAs
-cAs
-aFx
-lsh
-cUz
-cjn
-omJ
-ncP
-hLL
-hLL
-mFN
-mFN
-dew
-mFN
-mFN
-hLL
-hLL
-dfK
-mFN
-dev
-tGG
-tGG
-dtC
-tGG
-tGG
-dxa
-uJx
-dzu
-dAF
-dBv
-uJx
-dDO
-ncP
+aaa
+wAE
+oTL
+wQO
+abj
+wAE
+oTL
+wQO
+abj
+wAE
+oTL
+wQO
abj
-bCI
abj
-bCI
+aaa
aaa
aaa
aaa
@@ -186609,114 +188394,113 @@ aaa
aaa
aaa
aaa
-aaa
-aMt
-aSf
-oYt
-aMt
-dYW
-cgr
-ceA
-aOZ
-ehG
-rxs
-xHM
-aOZ
-ydv
-fBe
-ofj
-bzy
-mFb
-bEu
-bru
-rZV
-btU
-btW
-rvh
-scZ
-bxJ
-bzk
-bzl
-ktB
-xtw
-eVL
-scD
-ntb
-tbK
-rpw
-lDu
-bix
-wir
-uST
-rXU
-sCf
-tHC
-lnt
-xbk
-jGf
-cHV
-cJr
-pMV
-cHU
-cHU
-cHU
-cHU
+bCI
abj
-aaa
-aaa
abj
-csi
-csi
-cuI
-cwl
-aFx
-aFx
-bmW
-bmW
-aFx
-aFx
-cFw
-cVX
-cIm
-aFx
-aFx
-bmW
-bmW
-aFx
-aFx
-csi
-cUD
-csi
-csi
-csi
+dBo
+dHs
+dNy
+dRJ
+dWW
+wkn
+wkn
+jxB
+wTJ
+gKa
+aru
+bUG
+aru
+aru
+aru
+aru
+aru
+wDS
+aru
+wDS
+aru
+aru
+pdt
+onq
+ioU
+lhS
+rLF
+rAs
+toS
+qoy
+vNX
+vqM
+nhY
+lSr
+pNI
+xXC
+vcX
+nHu
+xFL
+xFL
+xFL
+syB
+mIk
+hvr
+uEq
+eVO
+uFp
abj
aaa
-hLL
-lsh
-lsh
-lsh
-hLL
aaa
+aaa
+csj
+dZa
+dZa
+dZa
+csj
+csj
+csj
+csj
+csj
+csj
+lpH
+csj
+csj
+eBn
+csj
+csj
+csj
+csj
+csj
+csj
+tON
+jMT
+mbs
+csj
abj
-mFN
-diW
-dpO
-tGG
-egF
-nIo
-hwl
-tGG
-mFN
-hLL
-ryy
-ncP
-ncP
-hLL
-mFN
-mFN
-abj
bCI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bCI
+aaa
+bRp
abj
+abj
+wAE
+oTL
+wQO
+aaa
+wAE
+oTL
+wQO
+aaa
+wAE
+oTL
+wQO
+aaa
bCI
aaa
aaa
@@ -186784,6 +188568,7 @@ aaa
aaa
aaa
aaa
+aaa
"}
(211,1,1) = {"
aaa
@@ -186847,7 +188632,6 @@ aaa
aaa
aaa
aaa
-aoP
aaa
aaa
aaa
@@ -186865,121 +188649,122 @@ aaa
aaa
aaa
aaa
+bCI
+bCI
+bCI
+abj
+aru
+anZ
+dHH
+fzL
+uPb
+czx
+xan
+pIp
+vIm
+qDW
+uPb
+wTJ
+vIm
+qbt
+drU
+cfz
+ult
+lTH
+fgI
+djZ
+nLI
+otM
+aru
+pdP
+qug
+mml
+lhS
+lhS
+xmw
+tsW
+vuE
+urn
+vuE
+vYt
+wCH
+myZ
+xXZ
+oNP
+icp
+kzP
+kzP
+fDB
+uEV
+ply
+cKC
+lMi
+oCk
+seo
+abj
aaa
aaa
-aOR
-aSg
-oEk
-uQV
-lVe
-lVe
-bXB
-oNp
-ecN
-ecN
-ecN
-oNp
-sBx
-pGI
-bfT
-bzz
-bzB
-aKS
-mQI
-uOY
-mQI
-btX
-mmS
-fWc
-bxK
-bAM
-kna
-mIi
-gmH
-bzl
-iuS
-ryt
-uuD
-lHR
-mxZ
-jQq
-mBa
-rop
-ylQ
-sCf
-oBj
-eyU
-rrI
-xEf
-cHV
-cJr
-cLe
-cHX
-uHv
-krI
-eyI
-abj
+aaa
+csj
+wKZ
+piB
+ehL
+csj
aaa
aaa
abj
-csi
-ctw
-cuK
-cwm
-qxG
-czb
-cAt
-cBZ
-fbS
-lBC
-cFx
-cGX
-cIn
-cJz
-cLs
-cMQ
-cOs
-cQk
-cRA
-cJz
-cUE
-cWe
-cXM
-csi
-abj
-abj
-mFN
-dhs
-dht
-dhs
-mFN
-abj
-xOq
-hLL
-dmF
-dor
-tGG
-laB
-dtD
-dHZ
-llM
-abj
-abj
-abj
+aaa
+csj
+ljF
+qEC
+qEC
+lGv
+csj
+aaa
abj
+aaa
+aaa
+csj
+nSr
+dxG
+aon
+csj
abj
+bCI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bCI
abj
+bRp
abj
+aaa
+wAE
+oTL
+wQO
+aaa
abj
+ujV
abj
aaa
+wAE
+oTL
+wQO
aaa
bCI
+abj
+bCI
+bCI
aaa
aaa
aaa
-aaZ
-aaa
aaa
aaa
aaa
@@ -187121,119 +188906,120 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+abj
+abj
+aru
+dCj
+fzL
+czx
+fLm
+xan
+cPu
+tLD
+fBo
+val
+gKm
+val
+ibj
+nfZ
+joA
+kfn
+lga
+chy
+mmE
+dcs
+nLY
+ojL
+xxI
+oIn
+qug
+mml
+blZ
+lhS
+meo
+gES
+uTS
+vdJ
+uTS
+uTS
+mbY
+jBm
+eEb
+vcX
+nHu
+xFL
+xFL
+xFL
+syB
+aaL
+hvr
+uEq
+rAl
+nrJ
+abj
aaa
aaa
aaa
-aMt
-aSf
-vNU
-aMt
-qTE
-cgr
-cjx
-bEu
-xLH
-hop
-qzk
-bEu
-ydv
-jAF
-kws
-qqO
-bKS
-aOZ
-bru
-rZV
-bsG
-btY
-nTk
-nop
-aks
-bAO
-bzl
-jqe
-bEs
-xcG
-mzZ
-pDi
-bEC
-jvK
-lTH
-hrb
-klj
-wqy
-kfX
-pDi
-izQ
-wqx
-vzx
-mDm
-eTP
-wrJ
-fzQ
-qLS
-ckE
-nXe
-eyI
-abj
+qEC
+csj
+csj
+csj
+qEC
abj
-aaa
+ldC
+dGX
+dGX
+dGX
+rFC
+csj
+csj
+jwE
+psx
+psx
+psx
+rSL
abj
+qEC
+csj
csj
-ctx
-cuL
-cwn
-cxx
-viQ
-cxx
-nCI
-czc
-czc
-cFy
-cIs
-cIo
-czc
-czc
-czc
-czc
-czc
-cRB
-czc
-cUF
-cuM
-cJz
csj
+qEC
abj
aaa
-mFN
-dhr
-diX
-dhr
-mFN
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
abj
-hLL
-dot
-dos
-tGG
-dRx
-dGq
-dIa
-tGG
+aaa
+bRp
abj
-bCI
-bCI
-bCI
+aaa
abj
-bCI
-bCI
-bCI
+ujV
+abj
+abj
+abj
+bRp
abj
abj
abj
+ujV
abj
aaa
aaa
+abj
+aaa
+bCI
+aaa
aaa
aaa
aaa
@@ -187272,7 +189058,6 @@ aaa
aaa
aaa
aaa
-dWe
aaa
aaa
aaa
@@ -187325,7 +189110,6 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -187379,116 +189163,133 @@ aaa
aaa
aaa
aaa
+abj
+abj
+aru
+aru
+aru
+aru
+adR
+euA
+dRZ
+jQW
+jQW
+ffK
+jQW
+jQW
+gLN
+wxD
+iLK
+iCu
+fda
+riX
+wSO
+fxR
+kaJ
+xan
+wxD
+jnU
+wyT
+pee
+gBH
+mml
+rbU
+lhS
+sBd
+tfh
+nGa
+vpi
+kaB
+vYL
+jDw
+lhS
+lhS
+oHJ
+unN
+hbT
+xFL
+xFL
+syB
+vnH
+vic
+uEq
+wio
+mqW
+abj
+aaa
+aaa
+aaa
+aaa
aaa
aaa
-aMt
-aMt
-rdB
-aMt
-ajo
-cgr
-lRy
-pjV
-mAa
-mAO
-hmq
-vlP
-yka
-nTK
-aMt
-bzA
-bzA
-aMt
-ogj
-rZV
-uAL
-dUD
-bvm
-nop
-pYJ
-lIO
-bzl
-mCW
-ugH
-fmF
-gmp
-pDi
-pDi
-fYM
-pDi
-wjr
-pDi
-fYM
-pDi
-pDi
-prU
-lRT
-vzx
-uHu
-eTP
-dcL
-cLe
-vQt
-rrR
-eJH
-eyI
aaa
-bvh
-abj
-abj
csj
-cUr
-dRn
-cwo
-cLm
-cLm
-mKg
-mSP
-cAu
-cEw
-cFz
-cFz
-cIp
-cJA
-cLt
-cuM
-cOt
-opy
-cRC
-cTe
-cUG
-tHP
-cJz
+aaa
+hjz
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+rIU
+aaa
csj
abj
abj
-cSy
-dhr
-yhS
-dhr
-cSy
abj
-xOq
-hLL
-hLL
-mFN
-llM
-llM
-dGr
-llM
-llM
abj
+abj
+bCI
+aaa
aaa
aaa
-abj
aaa
aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bCI
abj
+bRp
+dtD
+ycV
+ycV
+ycV
+ycV
+ycV
+ycV
+aAE
+bRp
+bRp
+bRp
+dtD
+ycV
+ycV
+ycV
+utf
abj
+bCI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
-abj
aaa
-bCI
aaa
aaa
aaa
@@ -187539,6 +189340,8 @@ aaa
aaa
aaa
aaa
+"}
+(214,1,1) = {"
aaa
aaa
aaa
@@ -187555,8 +189358,6 @@ aaa
aaa
aaa
aaa
-"}
-(214,1,1) = {"
aaa
aaa
aaa
@@ -187618,6 +189419,60 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+aru
+aru
+aOn
+dxN
+aru
+dXz
+xmf
+vGv
+vGv
+vGv
+gIs
+kNh
+kNh
+vjr
+wxD
+aru
+xwO
+qic
+vOF
+aru
+vTG
+kaJ
+nHp
+qDW
+wTJ
+ugN
+pfE
+pLF
+qiv
+aru
+lhS
+lhS
+lhS
+lhS
+lhS
+lhS
+lhS
+lhS
+lhS
+lhS
+fQh
+uYT
+rdT
+vZk
+vZk
+eAw
+hbT
+gLn
+rWW
+vEu
+sBL
+abj
aaa
aaa
aaa
@@ -187625,124 +189480,56 @@ aaa
aaa
aaa
aaa
+csj
aaa
+hjz
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+rIU
aaa
+csj
+abj
aaa
aaa
+bCI
+bCI
+bCI
aaa
aaa
aaa
+aaq
aaa
+aaq
aaa
aaa
aaa
aaa
+bCI
aaa
aaa
-mha
-mha
-mha
-fFm
-ccL
-lMF
-quV
-ccK
-yjp
-bYY
-ccK
-hWM
-geg
-ofj
-bfU
-hUk
-aKR
-bru
-lQL
-mQO
-weY
-bvn
-sPl
-bzg
-bAP
-xcG
-ibC
-qhw
-ugH
-oNx
-eCU
-aPh
-bNK
-eCU
-pjP
-eCU
-jsJ
-lUS
-eCU
-hVk
-wqx
-rrI
-szc
-cHV
-uxS
-gqh
-cHU
-cHU
-cHU
-cHU
-abj
abj
aaa
abj
-csj
-cty
-dRn
-cwp
-cxA
-cxA
-lia
-mSP
-cDr
-cEx
-cze
-cze
-cIq
-cJB
-cLu
-cuM
-cOu
-cWf
-cWf
-sYj
-cUI
-eyt
-cJz
-csj
+lLX
abj
-aaa
-aaa
-aat
-vpc
-aau
-aaa
-aaa
abj
abj
+bRp
abj
abj
abj
-llM
-dGs
-llM
+lLX
abj
aaa
aaa
-bCI
-bCI
-abj
-bCI
-bCI
-bCI
-bCI
abj
aaa
abj
@@ -187810,8 +189597,6 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
"}
(215,1,1) = {"
aaa
@@ -187891,90 +189676,91 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+aru
+dlr
+drT
+mdB
+aru
+dHO
+fgv
+jwd
+xxG
+ojU
+fhd
+pkc
+xxG
+gLR
+wxD
+yeN
+fWz
+fgj
+ryP
+xxI
+fzL
+xfr
+wUT
+xan
+okX
+aru
+jMx
+qug
+mml
+qJB
+kIb
+sBk
+nMG
+vku
+nhs
+uOb
+sOS
+sTA
+lqe
+xZs
+kKZ
+dYU
+uEq
+cuV
+wYY
+alO
+cmq
+aky
+nEB
+sBL
+sBL
+abj
aaa
aaa
aaa
aaa
aaa
-mha
-dBG
-mha
-mha
-gKX
-cgr
-cgr
-fcf
-xLU
-rFG
-vEZ
-loD
-pGI
-bdd
-beC
-bfZ
-aKT
-mQI
-gXM
-bsH
-weY
-bvo
-lWl
-tiZ
-orS
-lev
-wRU
-eUc
-fzF
-gTr
-wjc
-kfc
-aQx
-rnS
-kNv
-nBl
-aQF
-uPB
-gYJ
-vzx
-vHG
-vMV
-yhO
-cHV
-cJr
-cLe
-cHX
-sFQ
-jWl
-eyI
-abj
aaa
aaa
-abj
csj
-ctz
-hQT
-cwp
-rMN
-cxA
-lia
-mSP
-knb
-cEx
-cze
-hev
-cze
-cJB
-jCG
-cuM
-cWf
-cWf
-acg
-pjr
-cUI
-tBB
-cXN
+abj
+mYv
+foh
+lER
+lER
+xHm
+lER
+lER
+xHm
+lER
+lER
+eCY
+xiC
+abj
csj
abj
+bCI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -187982,27 +189768,27 @@ aaa
aaa
aaa
aaa
-bCI
aaa
bCI
bCI
abj
-llM
-dGX
-llM
-abj
abj
-bCI
-bCI
aaa
+wAE
+ojd
+wQO
aaa
abj
+lLX
+abj
aaa
+wAE
+ojd
+wQO
aaa
-abj
-abj
bCI
bCI
+abj
bCI
aaa
aaa
@@ -188068,7 +189854,6 @@ aaa
aaa
aaa
aaa
-aaa
"}
(216,1,1) = {"
aaa
@@ -188082,7 +189867,6 @@ aaa
aaa
aaa
aaa
-abv
aaa
aaa
aaa
@@ -188149,89 +189933,85 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+aru
+dlJ
+drX
+ceT
+qJM
+dcs
+xLJ
+qbW
+tLD
+xxG
+xxG
+xxG
+tLD
+gOi
+lme
+ibF
+lme
+fjL
+lme
+bMB
+lUg
+syC
+mFd
+chy
+olj
+oGM
+pfV
+txt
+bAw
+nDy
+rOD
+rOD
+twd
+vku
+utB
+vqY
+vYT
+wEm
+sut
+xZR
+mzW
+lqG
+vfb
+pLz
+pLz
+fWr
+fIm
+iwp
+pLz
+pLz
+abj
+abj
+aaa
aaa
aaa
aaa
aaa
-mha
-dBN
-dCz
-nVJ
-bAV
-oQz
-nSr
-raW
-fhY
-jHN
-xxi
-uRI
-xUN
-mAn
-aIO
-aJC
-eSK
-bru
-tdt
-bsH
-dUD
-bvp
-bwz
-lXa
-uAC
-hZW
-rzU
-bHS
-gWH
-gWH
-eCU
-aPi
-bLH
-aQz
-eev
-sLl
-rfB
-vPu
-bWC
-oRr
-hOs
-ucA
-lZJ
-cHV
-rGw
-ibI
-von
-jUp
-fbk
-eyI
-abj
aaa
aaa
-abj
csj
-ctA
-dRn
-cwp
-cxA
-cxA
-lia
-mSP
-cDr
-cEx
-cFA
-cze
-cze
-cJB
-cLu
-cuM
-cOv
-cWf
-sYj
-cWf
-cUJ
-cWg
-cAu
+aaa
+hjz
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+rIU
+aaa
csj
abj
+bCI
aaa
aaa
aaa
@@ -188243,29 +190023,27 @@ aaa
aaa
aaa
aaa
-abj
aaa
-dKx
-abj
-abj
aaa
-abj
aaa
aaa
-wve
-vYp
-wAE
aaa
aaa
abj
+abj
+wAE
+ojd
+wQO
aaa
+wAE
+ojd
+wQO
aaa
-bCI
-aaa
-aaa
-aaa
-aaa
+wAE
+ojd
+wQO
aaa
+bCI
aaa
aaa
aaa
@@ -188281,6 +190059,7 @@ aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -188326,14 +190105,14 @@ aaa
aaa
aaa
aaa
-"}
-(217,1,1) = {"
aaa
aaa
aaa
aaa
aaa
aaa
+"}
+(217,1,1) = {"
aaa
aaa
aaa
@@ -188410,84 +190189,60 @@ aaa
aaa
aaa
aaa
-mha
-dCy
-dCA
-mha
-muf
-kbd
-fQv
-hSN
-oQz
-mOV
-uTR
-eht
-noF
-aMt
-aMt
-aMt
-aMt
-heg
-tYg
-bOn
-qQu
-qQu
-brf
-aKW
-buk
-aNH
-nZz
-qQu
-qQu
-nsU
-eCU
-gIb
-bLH
-aQA
-hHa
-kCF
-icl
-aQJ
-eCU
-aQK
-xPe
-imB
-aQL
-eTP
-cJs
-cLe
-vQt
-cLh
-qyd
-eyI
-abj
aaa
+bCI
abj
+aru
+dlr
+bda
+mdB
+aru
+dHR
+don
+qMN
+xxG
+duN
+iRA
+jEA
+xxG
+gLR
+wxD
+ice
+eKe
+qqA
+ltq
+ugN
+eHP
+mnQ
+xmf
+xan
+omi
+aru
+oIn
+qug
+mml
+qKW
+uBX
+rdo
+iml
+vku
+tUB
+mUQ
+uOu
+fQD
+sut
+ctp
+umy
+xDp
+scP
+pLz
+wMC
+hfM
+pvu
+hfM
+kDP
+pLz
abj
-csj
-lNM
-dRn
-cwq
-czf
-czf
-kaD
-mSP
-cAu
-cEy
-cFB
-cGZ
-cGZ
-cJC
-cLt
-cuM
-lER
-kcq
-wSx
-cTf
-cUK
-iGo
-cWh
-csj
abj
bCI
aaa
@@ -188496,33 +190251,31 @@ aaa
aaa
aaa
aaa
+csj
aaa
+hjz
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+lER
+rIU
aaa
-aaa
-aaa
-bCI
-abj
-emm
+csj
abj
+bCI
aaa
-wve
-oTL
-wAE
-aaa
-wve
-vYp
-wAE
-aaa
-wve
-vYp
-wAE
-aaa
-abj
aaa
aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -188533,7 +190286,21 @@ aaa
aaa
aaa
aaa
+bCI
aaa
+wAE
+ojd
+wQO
+abj
+wAE
+ojd
+wQO
+abj
+wAE
+ojd
+wQO
+abj
+bCI
aaa
aaa
aaa
@@ -188583,8 +190350,6 @@ aaa
aaa
aaa
aaa
-"}
-(218,1,1) = {"
aaa
aaa
aaa
@@ -188603,6 +190368,8 @@ aaa
aaa
aaa
aaa
+"}
+(218,1,1) = {"
aaa
aaa
aaa
@@ -188644,6 +190411,19 @@ aaa
aaa
aaa
aaa
+aad
+adI
+aat
+aat
+aaf
+aaf
+acj
+adJ
+acK
+aat
+aat
+aat
+acE
aaa
aaa
aaa
@@ -188667,84 +190447,59 @@ aaa
aaa
aaa
aaa
-mha
-mha
-mha
-mha
-aMt
-aMt
-fLD
-jxu
-oXK
-abb
-xUV
-yhY
-bNF
-uZX
-ejf
-bPw
-bxW
-bru
-rZV
-bsH
-qQu
-bpe
-brk
-bsW
-bul
-bvy
-aNQ
-aPa
-qQu
-nsU
-eCU
-xAj
-bLH
-xrA
-hHa
-kCF
-icl
-gdA
-eCU
-kSW
-eCU
-cHU
-cHU
-cHU
-cJt
-kfi
-cHU
-cHU
-cHU
-cHU
-abj
+bCI
abj
-bvh
-xjZ
-csj
-ctB
-dRn
-cuM
-cuM
-tAs
-cuM
-vcG
-czg
-czg
-cFC
-czg
-czg
-czg
-czg
-czg
-czg
-czg
-czg
-czg
-cUL
-cuM
-cWh
-csj
+aru
+aru
+aOn
+eEj
+aru
+dXz
+wUT
+uPb
+uPb
+uPb
+fiU
+fCQ
+fCQ
+gOj
+wxD
+aru
+xwO
+eHM
+vOF
+aru
+wbR
+kaJ
+nQC
+cqf
+kTh
+xxI
+oIn
+eTs
+wvA
+tWn
+tWn
+oAa
+tWn
+tWn
+uvs
+jtI
+xOk
+gzc
+jry
+dHy
+jaz
+xzi
+scP
+tXF
+yak
+twe
+nXz
+hfM
+oCG
+pLz
+pLz
abj
bCI
aaa
@@ -188753,27 +190508,23 @@ aaa
aaa
aaa
aaa
-aaa
-aaZ
-aaa
-aaa
+qEC
abj
-aaa
-sWL
+dcj
+dGX
+dGX
+dGX
+cem
+csj
+csj
+kmC
+psx
+psx
+psx
+pBq
abj
+qEC
abj
-wve
-vYp
-wAE
-aaa
-wve
-vYp
-wAE
-aaa
-wve
-vYp
-wAE
-aaa
bCI
aaa
aaa
@@ -188792,9 +190543,21 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+wAE
+ojd
+wQO
aaa
+wAE
+ojd
+wQO
aaa
+wAE
+ojd
+wQO
aaa
+abj
aaa
aaa
aaa
@@ -188840,9 +190603,6 @@ aaa
aaa
aaa
aaa
-"}
-(219,1,1) = {"
-aaa
aaa
aaa
aaa
@@ -188865,6 +190625,8 @@ aaa
aaa
aaa
aaa
+"}
+(219,1,1) = {"
aaa
aaa
aaa
@@ -188906,6 +190668,19 @@ aaa
aaa
aaa
aaa
+aaf
+aau
+aen
+abX
+abr
+aeq
+abr
+abr
+abr
+abr
+afi
+afZ
+skw
aaa
aaa
aaa
@@ -188929,108 +190704,83 @@ aaa
aaa
aaa
aaa
-aMt
-rEq
-rEq
-rEq
-aMt
-ffs
-cex
-jAv
-toS
-ktI
-bQn
-iHJ
-bru
-rZV
-hvW
-pfs
-bpf
-brk
-aMq
-bum
-biJ
-brk
-aPb
-qQu
-nsU
-eCU
-nDV
-uKQ
-xrA
-hHa
-kCF
-knA
-sHT
-eCU
-wcc
-eCU
-gFf
-xbA
-cHX
-cJr
-cLe
-cHX
-lxQ
-jWl
-eyI
-abj
aaa
abj
abj
-csj
-ctB
-hDZ
-cxD
-cxD
-czh
-cAv
-cAv
-cAv
-cxD
-cFD
-cHa
-cHa
-cJD
-cLv
-cMR
-cMR
-cQo
-cMR
-cLv
-cUM
-cWh
-cXO
-csj
+aru
+aru
+aru
+aru
+dIk
+fsu
+gLB
+juW
+juW
+iWk
+juW
+juW
+gPM
+wxD
+iLK
+qbt
+qEP
+xvh
+ult
+wNO
+kaJ
+xan
+wxD
+omz
+wyT
+pee
+gBH
+mml
+tWn
+cOO
+cjL
+sXQ
+tWn
+uvG
+vFi
+hrL
+oQn
+sut
+yah
+umy
+xDp
+scP
+rDA
+lsH
+wuv
+nXz
+vTL
+hfM
+tFz
+pLz
abj
+bCI
aaa
aaa
aaa
aaa
aaa
aaa
+csj
aaa
aaa
+abj
aaa
+csj
+ljF
+qEC
+qEC
+lGv
+csj
aaa
-aaa
-bCI
-abj
-sWL
abj
aaa
-wve
-vYp
-wAE
-abj
-wve
-vYp
-wAE
-abj
-wve
-vYp
-wAE
-abj
+aaa
+csj
abj
aaa
aaa
@@ -189050,8 +190800,21 @@ aaa
aaa
aaa
aaa
+bCI
+aaa
+wAE
+ojd
+wQO
+aaa
+wAE
+ojd
+wQO
aaa
+wAE
+ojd
+wQO
aaa
+bCI
aaa
aaa
aaa
@@ -189097,8 +190860,6 @@ aaa
aaa
aaa
aaa
-"}
-(220,1,1) = {"
aaa
aaa
aaa
@@ -189121,6 +190882,8 @@ aaa
aaa
aaa
aaa
+"}
+(220,1,1) = {"
aaa
aaa
aaa
@@ -189162,6 +190925,19 @@ aaa
aaa
aaa
aaa
+aag
+aav
+abq
+aaf
+abr
+abr
+abr
+adK
+abr
+abr
+aeO
+afZ
+skw
aaa
aaa
aaa
@@ -189186,79 +190962,82 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+abj
+abj
+aru
+dCw
+gJJ
+iwv
+vsn
+xan
+eue
+tLD
+cxr
+val
+gQC
+xan
+xan
+iDp
+jqd
+sdz
+lgH
+chy
+xgm
+xan
+wxD
+pPW
+ugN
+oIn
+mqz
+mml
+gVL
+rOY
+sCY
+xYa
+tWn
+uxL
+mEK
+aJr
+kas
+sut
+qKm
+drW
+xDp
+scP
+pLz
+sha
+wuv
+nXz
+uAd
+hfM
+ybW
+gOb
+abj
aaa
aaa
aaa
aaa
aaa
-boN
-qnC
-bqK
-bNJ
-ljp
-hKo
-uVC
-mQI
-wGM
-vnS
-pfs
-bpg
-bri
-bsX
-bun
-aNI
-aNR
-aPc
-qQu
-nsU
-eCU
-nTD
-enb
-uIT
-hHa
-tkf
-iuY
-fkB
-eCU
-eCU
-egD
-sxZ
-vUu
-tLH
-cJv
-fEr
-fXK
-jUp
-fbk
-eyI
-abj
aaa
aaa
-abj
-csj
-ctC
-ctC
-ctC
csj
csj
csj
csj
csj
csj
-cFE
+lpH
csj
csj
-cJE
+eBn
csj
csj
csj
csj
csj
csj
-cUN
-cWi
-cXP
-csj
abj
bCI
aaa
@@ -189271,39 +191050,28 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-sWL
-abj
-abj
-wve
-vYp
-wAE
-aaa
-wve
-vYp
-wAE
aaa
-wve
-vYp
-wAE
-aaa
-bCI
aaa
aaa
aaa
aaa
aaa
+bCI
aaa
aaa
aaa
aaa
aaa
+wAE
+ojd
+wQO
aaa
aaa
aaa
aaa
aaa
+bCI
aaa
aaa
aaa
@@ -189354,8 +191122,6 @@ aaa
aaa
aaa
aaa
-"}
-(221,1,1) = {"
aaa
aaa
aaa
@@ -189373,6 +191139,8 @@ aaa
aaa
aaa
aaa
+"}
+(221,1,1) = {"
aaa
aaa
aaa
@@ -189384,6 +191152,7 @@ aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -189413,6 +191182,19 @@ aaa
aaa
aaa
aaa
+aak
+aat
+aat
+aaf
+aaf
+aaf
+abr
+adN
+abr
+abr
+afh
+afZ
+skw
aaa
aaa
aaa
@@ -189437,92 +191219,106 @@ aaa
aaa
aaa
aaa
+bCI
+bCI
+bCI
+abj
+aru
+dCr
+dIo
+gJJ
+vGv
+iwv
+xan
+ojw
+vIm
+cqf
+vGv
+qBV
+icl
+iCu
+jqn
+rEC
+wSO
+lTH
+ylo
+vGv
+kTh
+ooA
+aru
+pbM
+qug
+mml
+qNc
+rPi
+soE
+gNS
+tWn
+uyo
+nzk
+tWn
+oIN
+qKm
+qKm
+eTR
+nNL
+lwk
+uBD
+vup
+wLw
+vhI
+hQg
+pxD
+nmX
+tcS
+abj
+bCI
aaa
aaa
aaa
aaa
aaa
aaa
+abj
+abj
+abj
+abj
+abj
+csj
+vCY
+nVA
+nvg
+dHT
+csj
+abj
+abj
+abj
+abj
+abj
+abj
aaa
aaa
aaa
aaa
aaa
-boN
-wzK
-scx
-ioo
-hiT
-iwV
-fnQ
-bru
-pTP
-xdb
-pfs
-bph
-brk
-bsY
-aMu
-aNJ
-brk
-aPd
-qQu
-nsU
-eCU
-gjh
-oMF
-bPB
-fEC
-nnH
-wNc
-fLX
-eCU
-nsU
-eCU
-rjs
-vom
-vQt
-cJr
-cLe
-vQt
-cLh
-qyd
-eyI
-abj
aaa
aaa
-abj
-csj
-ctD
-cuN
-cws
-csj
aaa
aaa
-abj
aaa
-csj
-cFF
-csi
-csi
-cJF
-csj
aaa
-abj
aaa
aaa
-csj
-cUO
-dlC
-cXQ
-csj
-abj
-bCI
aaa
aaa
aaa
aaa
aaa
+bCI
+bCI
+abj
+bCI
+bCI
aaa
aaa
aaa
@@ -189530,25 +191326,14 @@ aaa
aaa
bCI
abj
-sWL
+bCI
+abj
abj
aaa
-wve
-vYp
-wAE
aaa
-abj
-emm
-abj
aaa
-wve
-vYp
-wAE
aaa
-bCI
-abj
-bCI
-bCI
+aaa
aaa
aaa
aaa
@@ -189659,24 +191444,21 @@ aaa
aaa
aaa
aaa
+aaf
+abr
+adS
+aec
+abr
+qTG
+aaf
+acg
aaa
aaa
aaa
-ajj
-ajO
-ajO
-ajO
-akm
-akm
-akM
-amj
-alo
-ajO
-ajO
-akQ
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -189696,84 +191478,82 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+abj
+dCA
+ekp
+wSo
+fFB
+kdO
+iZf
+iZf
+fCT
+kTh
+gQN
+aru
+aru
+aru
+aru
+aru
+wyD
+wyD
+wyD
+pcQ
+nQl
+wyD
+wyD
+hdu
+pLB
+qiB
+tWn
+xCt
+sip
+eJI
+gyp
+uyr
+iJN
+tWn
+tSn
+uFZ
+qKm
+umy
+xDp
+scP
+pLz
+uzl
+vTL
+bzg
+hhF
+hfM
+ppp
+iqP
+abj
+bCI
aaa
aaa
aaa
aaa
aaa
aaa
+bCI
+bCI
aaa
+bCI
+abj
+qEC
+eAS
+cRB
+rdK
+sct
+qEC
+abj
aaa
+bCI
+bCI
aaa
-bxW
-bxW
-bPy
-neQ
-vxT
-bPz
-bxW
-wpP
-pTP
-bsH
-qQu
-bpi
-brk
-btR
-aMv
-aNK
-aNS
-aPe
-qQu
-nsU
-eCU
-hhg
-aQy
-ffi
-ffi
-ffi
-aQG
-xZw
-eCU
-nsU
-eCU
-cHU
-nUq
-cHU
-mGo
-tmW
-cHU
-cHU
-cHU
-cHU
-abj
aaa
aaa
-abj
-csi
-csj
-csj
-csj
-csi
-abj
-cAw
-cCa
-cCa
-cCa
-cFG
-csj
-csj
-cJG
-cLw
-cLw
-cLw
-cQp
-abj
-csi
-csj
-csj
-csj
-csi
-abj
aaa
aaa
aaa
@@ -189785,32 +191565,23 @@ aaa
aaa
aaa
aaa
-abj
aaa
-sWL
-abj
aaa
-abj
-emm
-abj
-abj
-abj
-sWL
-abj
-abj
-abj
-emm
-abj
aaa
aaa
-abj
aaa
-bCI
aaa
aaa
aaa
aaa
aaa
+bCI
+bCI
+abj
+bCI
+bCI
+abj
+bCI
aaa
aaa
aaa
@@ -189868,8 +191639,6 @@ aaa
aaa
aaa
aaa
-"}
-(223,1,1) = {"
aaa
aaa
aaa
@@ -189884,6 +191653,8 @@ aaa
aaa
aaa
aaa
+"}
+(223,1,1) = {"
aaa
aaa
aaa
@@ -189919,18 +191690,6 @@ aaa
aaa
aaa
aaa
-akm
-alU
-alU
-akJ
-alU
-alU
-alU
-akn
-akn
-amW
-anD
-aok
aaa
aaa
aaa
@@ -189939,6 +191698,17 @@ aaa
aaa
aaa
aaa
+aad
+acj
+acK
+aaf
+abr
+adT
+aef
+aes
+run
+aaf
+aaa
aaa
aaa
aaa
@@ -189963,74 +191733,59 @@ aaa
aaa
aaa
aaa
-bxW
-rLv
-bxW
-bqM
-eVK
-bxW
-whM
-pTP
-vSn
-qQu
-qQu
-brl
-bta
-aNC
-aNL
-aOT
-qQu
-qQu
-nsU
-eCU
-aPj
-mog
-aQB
-xHW
-pMh
-lxo
-tMj
-eCU
-nsU
-eCU
-jTU
-uXj
-cHX
-tdT
-hOp
-wjF
-vmn
-ubu
-uoM
-abj
aaa
aaa
-abj
-abj
-abj
-abj
-abj
-csj
aaa
-cAx
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cQq
aaa
-csj
abj
abj
+anZ
+aru
+aru
+dXG
+eur
+fkB
+kti
+gof
+aru
+aru
+abj
abj
abj
abj
+wyD
+lVa
+mop
+gxY
+nQo
+iYE
+goZ
+umy
+pNG
+qiD
+qPr
+hLe
+yjJ
+hsU
+tCN
+uAL
+jPU
+tWn
+wGd
+uNG
+qKm
+gGi
+xDp
+scP
+mOq
+riK
+vTL
+bzg
+vTL
+hfM
+igo
+pLz
+abj
bCI
aaa
aaa
@@ -190042,28 +191797,13 @@ aaa
aaa
aaa
aaa
-bCI
-abj
-sWL
-dPn
-fLB
-fLB
-fLB
-fLB
-fLB
-fLB
-vCq
-sWL
-sWL
-sWL
-dPn
-fLB
-fLB
-fLB
-dJk
-abj
-bCI
aaa
+csj
+gYX
+gtS
+cCb
+gYX
+csj
aaa
aaa
aaa
@@ -190125,8 +191865,6 @@ aaa
aaa
aaa
aaa
-"}
-(224,1,1) = {"
aaa
aaa
aaa
@@ -190172,22 +191910,12 @@ aaa
aaa
aaa
aaa
+"}
+(224,1,1) = {"
aaa
aaa
aaa
aaa
-ajl
-ajQ
-akl
-akm
-akm
-akm
-alU
-aml
-akn
-amX
-anD
-aok
aaa
aaa
aaa
@@ -190222,73 +191950,28 @@ aaa
aaa
aaa
aaa
-bxW
-cwk
-tzb
-bxW
-bzC
-qDq
-bzC
-bzC
-qQu
-fvE
-btb
-aND
-aNM
-fvE
-qQu
-nsU
-nsU
-eCU
-eCU
-eCU
-eCU
-eCU
-eCU
-eCU
-eCU
-eCU
-nsU
-eCU
-kzN
-vUu
-vgG
-lpO
-qXH
-hfS
-hfS
-mmn
-poa
-abj
-abj
-abj
-abj
-abj
aaa
aaa
-abj
-csj
aaa
-cAx
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cQq
aaa
-csj
-abj
+aad
+aaf
+acn
+acn
+aaf
+adG
+aat
+aat
+aat
+aat
+aat
+aat
+aat
+aat
+aat
+acE
aaa
aaa
-bCI
-bCI
-bCI
aaa
aaa
aaa
@@ -190299,27 +191982,129 @@ aaa
aaa
aaa
aaa
-bCI
aaa
aaa
-abj
aaa
-abj
-sss
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bCI
abj
abj
abj
-sWL
+aru
+aru
+mAr
+nos
+fEI
+aru
+aru
abj
abj
+bCI
+bCI
abj
-sss
+lgN
+dZu
+mrN
+mFk
+eyt
+iwt
+oHz
+phf
+pNN
+dsg
+tWn
+rQw
+nud
+xLB
+fWl
+bzr
+mbM
+tWn
+tSn
+rSr
+qKm
+kew
+ewx
+scP
+wEY
+npS
+wpk
+sxW
+hfM
+sLr
+pLz
+pLz
abj
aaa
aaa
-abj
aaa
-abj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+csj
+csj
+csj
+csj
+csj
+csj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -190425,7 +192210,26 @@ aaa
aaa
aaa
aaa
+aad
+aat
+acn
+abr
+abr
+aaf
+abr
+aaf
+aec
+aet
+afj
+agt
+agQ
+ahn
+aia
+akb
+aaf
+acE
aaa
+aaq
aaa
aaa
aaa
@@ -190433,18 +192237,7 @@ aaa
aaa
aaa
aaa
-ajm
-ajO
-ajO
-akL
aaa
-akm
-alU
-amm
-akn
-amY
-akm
-akL
aaa
aaa
aaa
@@ -190458,8 +192251,56 @@ aaa
aaa
aaa
aaa
+bCI
+bCI
+bCI
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
+abj
aaa
aaa
+bCI
+abj
+lgS
+lWf
+fEz
+xxF
+xRC
+ozo
+xKm
+umy
+vwQ
+dsg
+tWn
+tWn
+vZl
+xAb
+tWn
+vZl
+xAb
+tWn
+qKm
+qKm
+qKm
+xqY
+xDp
+scP
+pLz
+gqf
+wjn
+yhL
+vBG
+pLz
+pLz
+abj
+abj
+bCI
aaa
aaa
aaa
@@ -190479,69 +192320,9 @@ aaa
aaa
aaa
aaa
-bxW
-tSz
-oWk
-bxW
-bAU
-jqu
-qST
-bzC
-qQu
-brn
-btR
-aNE
-aNN
-aOV
-qQu
-nsU
-nsU
-nsU
-nsU
-nsU
-nsU
-nsU
-nsU
-nsU
-nsU
-nsU
-nsU
-egD
-joW
-lof
-vQt
-tdT
-pOK
-mHr
-hfS
-sgK
-uoM
-kCE
-uoM
-uoM
aaa
-abj
aaa
aaa
-abj
-csj
-abj
-cAy
-cCc
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cOw
-cwl
-abj
-csj
-abj
-bCI
aaa
aaa
aaa
@@ -190556,27 +192337,10 @@ aaa
aaa
aaa
aaa
-bCI
-bCI
-abj
-abj
aaa
-wve
-vUL
-wAE
aaa
-abj
-sss
-abj
aaa
-wve
-vUL
-wAE
aaa
-bCI
-bCI
-abj
-bCI
aaa
aaa
aaa
@@ -190639,8 +192403,6 @@ aaa
aaa
aaa
aaa
-"}
-(226,1,1) = {"
aaa
aaa
aaa
@@ -190662,6 +192424,8 @@ aaa
aaa
aaa
aaa
+"}
+(226,1,1) = {"
aaa
aaa
aaa
@@ -190695,12 +192459,6 @@ aaa
aaa
aaa
aaa
-akm
-alU
-amn
-akn
-amZ
-akm
aaa
aaa
aaa
@@ -190709,6 +192467,24 @@ aaa
aaa
aaa
aaa
+abt
+aaw
+abr
+abr
+acW
+aaf
+acW
+aaf
+abr
+abr
+abr
+abr
+abr
+ahT
+aiR
+akh
+alx
+aaf
aaa
aaa
aaa
@@ -190736,69 +192512,52 @@ aaa
aaa
aaa
aaa
-bxW
-bxW
-bxW
-bxW
-bzC
-hKw
-bzC
-bzC
-qQu
-bro
-aMr
-aNE
-aNO
-aOX
-qQu
-eCU
-eCU
-eCU
-eCU
-eCU
-eCU
-jFH
-jFH
-jFH
-ozi
-ozi
-jFH
-jFH
-cHU
-cHU
-cHU
-pFW
-fwc
-tjR
-nqS
-fVA
-rfK
-twh
-aQC
-qgu
aaa
-abj
+bCI
+bCI
+bCI
aaa
-abj
-abj
-csj
+bCI
+bCI
+bCI
aaa
-cAx
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cQq
aaa
-csj
+aaa
+abj
+wyD
+haO
+pku
+mfF
+fPF
+wyD
+wyD
+iDF
+vwQ
+iAj
+tIz
+xHT
+xHT
+xHT
+xHT
+xHT
+xHT
+rkP
+wGW
+xqb
+qCA
+uhY
+xDp
+slQ
+pLz
+pLz
+jTt
+mNe
+vyW
+pLz
+abj
abj
bCI
+bCI
aaa
aaa
aaa
@@ -190816,21 +192575,9 @@ aaa
aaa
aaa
aaa
-abj
-abj
-wve
-vUL
-wAE
aaa
-wve
-vUL
-wAE
aaa
-wve
-vUL
-wAE
aaa
-bCI
aaa
aaa
aaa
@@ -190846,13 +192593,13 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -190896,8 +192643,6 @@ aaa
aaa
aaa
aaa
-"}
-(227,1,1) = {"
aaa
aaa
aaa
@@ -190936,6 +192681,8 @@ aaa
aaa
aaa
aaa
+"}
+(227,1,1) = {"
aaa
aaa
aaa
@@ -190949,15 +192696,6 @@ aaa
aaa
aaa
aaa
-ajj
-akM
-alo
-akm
-alU
-amo
-amJ
-ana
-akm
aaa
aaa
aaa
@@ -190986,6 +192724,24 @@ aaa
aaa
aaa
aaa
+abT
+abb
+abO
+abr
+ada
+adG
+abr
+adG
+abr
+abr
+aec
+abr
+abr
+adG
+abr
+abr
+aUH
+aaf
aaa
aaa
aaa
@@ -190993,76 +192749,19 @@ aaa
aaa
aaa
aaa
-bPS
-tou
-tou
-tou
-tou
-tou
-tou
-tou
-qQu
-aKU
-aMs
-aNF
-aNP
-aOY
-qQu
aaa
-abj
aaa
aaa
-abj
aaa
-uoM
-uoM
-qQS
-ljm
-hwz
-uoM
-uoM
-ffK
-siM
-xDU
-jtE
-pYe
-ddI
-qfb
-kGQ
-gUe
-iuW
-jkc
-uoM
-abj
-abj
-abj
-bvh
aaa
-csj
aaa
-cAx
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cCb
-cQq
aaa
-csj
-abj
-bCI
aaa
aaa
aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -191073,21 +192772,53 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-wve
-vUL
-wAE
-abj
-wve
-vUL
-wAE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bCI
abj
-wve
-vUL
-wAE
+lhC
+fHL
+wpA
+eYP
+ucR
+wyD
+nXs
+umy
+pQa
+jvK
+qPF
+jvK
+sDU
+cyD
+jvK
+uBr
+jvK
+jvK
+wHR
+xqg
+ycj
+jvK
+mRg
+gYq
+pLz
+kBs
+mak
+tbM
+ikr
+gOb
abj
bCI
+bCI
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -191153,8 +192884,6 @@ aaa
aaa
aaa
aaa
-"}
-(228,1,1) = {"
aaa
aaa
aaa
@@ -191205,26 +192934,12 @@ aaa
aaa
aaa
aaa
-ajj
-akm
-akN
-akN
-akm
-alU
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-akQ
aaa
aaa
aaa
aaa
+"}
+(228,1,1) = {"
aaa
aaa
aaa
@@ -191250,69 +192965,8 @@ aaa
aaa
aaa
aaa
-abj
-tou
-tou
-tou
-tou
-tou
-tou
-tou
-qQu
-qQu
-tHb
-aNG
-nDf
-qQu
-qQu
-abj
-bvh
-abj
-abj
-bvh
-abj
-uoM
-ndc
-jpa
-pIy
-utT
-iNP
-uoM
-eIk
-xDD
-hfS
-hfS
-gqF
-rwl
-hfS
-fVA
-rfK
-oel
-meo
-qgu
aaa
-abj
aaa
-abj
-abj
-csi
-abj
-cAz
-cCa
-cCa
-cCa
-cFH
-csj
-csj
-cJH
-cLw
-cLw
-cLw
-cQr
-abj
-csi
-abj
-bCI
aaa
aaa
aaa
@@ -191327,24 +192981,31 @@ aaa
aaa
aaa
aaa
+acv
+abi
+abr
+abr
+acW
+aaf
+acW
+aaf
+abr
+aec
+abr
+abr
+abr
+ahn
+aiU
+akk
+idn
+aaf
aaa
aaa
aaa
-bCI
-abj
-wve
-vUL
-wAE
aaa
-wve
-vUL
-wAE
aaa
-wve
-vUL
-wAE
aaa
-abj
+aaq
aaa
aaa
aaa
@@ -191375,6 +193036,39 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+lhQ
+lYc
+kQx
+kQW
+kVH
+mIR
+oHY
+phO
+oxF
+qiL
+kHz
+hTU
+oxF
+two
+tQF
+uBz
+vJn
+vJn
+vJn
+wHC
+mCK
+vJn
+vJn
+vlD
+nbb
+dTJ
+jxh
+jfp
+jjc
+gcx
+abj
aaa
aaa
aaa
@@ -191398,6 +193092,7 @@ aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -191410,8 +193105,6 @@ aaa
aaa
aaa
aaa
-"}
-(229,1,1) = {"
aaa
aaa
aaa
@@ -191461,24 +193154,6 @@ aaa
aaa
aaa
aaa
-ajj
-ajO
-akn
-akn
-akn
-akm
-alU
-alB
-akn
-anb
-anE
-aol
-aoQ
-apD
-aqq
-ark
-akm
-akQ
aaa
aaa
aaa
@@ -191507,68 +193182,24 @@ aaa
aaa
aaa
aaa
-bvh
-tou
-tou
-tou
-tou
-tou
-tou
-tou
-abj
aaa
-abj
aaa
-abj
aaa
-abj
aaa
-abj
aaa
aaa
-abj
aaa
-vhZ
-mIX
-jIv
-xsS
-pGY
-pGY
-rNJ
-kMd
-kpG
-tud
-kpG
-hOT
-vvG
-hfS
-irZ
-uoM
-sHq
-uoM
-uoM
aaa
-abj
aaa
aaa
-abj
-csj
aaa
aaa
-abj
aaa
-csj
-cFF
-csi
-csi
-cJF
-csj
+"}
+(229,1,1) = {"
aaa
-abj
aaa
aaa
-csj
-abj
aaa
aaa
aaa
@@ -191587,21 +193218,10 @@ aaa
aaa
aaa
aaa
-bCI
aaa
-wve
-vUL
-wAE
aaa
-wve
-vUL
-wAE
aaa
-wve
-vUL
-wAE
aaa
-bCI
aaa
aaa
aaa
@@ -191618,6 +193238,24 @@ aaa
aaa
aaa
aaa
+aak
+aat
+acw
+abr
+abr
+aaf
+abr
+aaf
+aec
+aeu
+afO
+agM
+ahg
+ahT
+ajR
+aks
+aaf
+acg
aaa
aaa
aaa
@@ -191625,6 +193263,7 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -191654,6 +193293,39 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+wyD
+fWW
+dbC
+gIa
+fGA
+wyD
+xUP
+wqh
+pRy
+xUP
+soa
+soz
+soa
+xUP
+wxC
+wxC
+wps
+wap
+wxC
+bwO
+wxC
+vEd
+nrF
+wxC
+pLz
+rmB
+kjs
+njj
+pLz
+pLz
+abj
aaa
aaa
aaa
@@ -191667,8 +193339,6 @@ aaa
aaa
aaa
aaa
-"}
-(230,1,1) = {"
aaa
aaa
aaa
@@ -191712,6 +193382,7 @@ aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -191719,23 +193390,6 @@ aaa
aaa
aaa
aaa
-ajR
-ako
-akn
-alp
-akm
-ajO
-akm
-akn
-akn
-akn
-akn
-akn
-apE
-aqr
-arl
-ase
-akm
aaa
aaa
aaa
@@ -191764,69 +193418,12 @@ aaa
aaa
aaa
aaa
-abj
-tou
-tou
-tou
-tou
-tou
-tou
-tou
-bPS
-abj
-bvh
-abj
-bvh
-abj
-bvh
-abj
-bvh
aaa
aaa
-bvh
-abj
-uoM
-fkX
-utT
-hph
-hnQ
-hzk
-uoM
-rlj
-fgB
-rJJ
-ihm
-jxv
-hfS
-hfS
-tUW
-poa
-abj
-abj
aaa
aaa
-abj
aaa
aaa
-abj
-csj
-csj
-csj
-csj
-csj
-csj
-cFE
-csj
-csj
-cJE
-csj
-csj
-csj
-csj
-csj
-csj
-abj
-bCI
aaa
aaa
aaa
@@ -191844,22 +193441,19 @@ aaa
aaa
aaa
aaa
-bCI
aaa
aaa
aaa
aaa
aaa
-wve
-vUL
-wAE
aaa
aaa
aaa
aaa
aaa
-bCI
aaa
+"}
+(230,1,1) = {"
aaa
aaa
aaa
@@ -191902,6 +193496,22 @@ aaa
aaa
aaa
aaa
+aak
+aaf
+acw
+acw
+aaf
+adG
+aat
+aat
+aat
+aat
+aat
+aat
+aat
+aat
+aat
+acg
aaa
aaa
aaa
@@ -191924,8 +193534,6 @@ aaa
aaa
aaa
aaa
-"}
-(231,1,1) = {"
aaa
aaa
aaa
@@ -191939,14 +193547,43 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
aaa
+abj
+wyD
+rLL
+sky
+epC
+nvS
+wyD
+abj
aaa
+abj
aaa
+soa
+gps
+soa
aaa
+wxC
+jHJ
+oUP
+sSD
+wJs
+xqW
+mxM
+xcU
+pJx
+xTL
+pLz
+pLz
+mWY
+pLz
+pLz
+abj
+abj
+bCI
aaa
aaa
aaa
@@ -191976,23 +193613,6 @@ aaa
aaa
aaa
aaa
-ajS
-akp
-akO
-alq
-alB
-alV
-alB
-akn
-akn
-akn
-akn
-akn
-alB
-akn
-akn
-asf
-akm
aaa
aaa
aaa
@@ -192021,15 +193641,6 @@ aaa
aaa
aaa
aaa
-acF
-tou
-tou
-tou
-tou
-tou
-tou
-tou
-bvh
aaa
aaa
aaa
@@ -192040,49 +193651,8 @@ aaa
aaa
aaa
aaa
-abj
aaa
-uoM
-gaE
-hEN
-pkE
-muM
-uoM
-uoM
-nGQ
-peE
-lqJ
-psH
-olZ
-icS
-nSt
-kWY
-uoM
aaa
-bvh
-abj
-bvh
-bvh
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-csj
-cFI
-cHb
-cIr
-cJI
-csj
-abj
-abj
-abj
-abj
-abj
-abj
aaa
aaa
aaa
@@ -192101,21 +193671,11 @@ aaa
aaa
aaa
aaa
-bCI
-bCI
-abj
-bCI
-bCI
aaa
aaa
aaa
aaa
aaa
-bCI
-abj
-bCI
-abj
-abj
aaa
aaa
aaa
@@ -192149,6 +193709,8 @@ aaa
aaa
aaa
aaa
+"}
+(231,1,1) = {"
aaa
aaa
aaa
@@ -192181,8 +193743,6 @@ aaa
aaa
aaa
aaa
-"}
-(232,1,1) = {"
aaa
aaa
aaa
@@ -192194,6 +193754,16 @@ aaa
aaa
aaa
aaa
+aak
+acA
+adr
+aaf
+abr
+adW
+abr
+abr
+ndK
+aaf
aaa
aaa
aaa
@@ -192218,6 +193788,7 @@ aaa
aaa
aaa
aaa
+aae
aaa
aaa
aaa
@@ -192233,27 +193804,43 @@ aaa
aaa
aaa
aaa
-ajT
-akq
-akn
-akn
-akm
-ajO
-akm
-akn
-akn
-akn
-akn
-akn
-apD
-aqs
-arm
-asg
-akm
aaa
aaa
aaa
+bCI
+abj
+lia
+lYu
+kCD
+hHy
+kmh
+wyD
+abj
+abj
+abj
+abj
+gNn
+fcZ
+gNn
aaa
+tQG
+tgF
+vrL
+wuY
+eZb
+xqW
+oqG
+rAN
+pgR
+teS
+tQG
+abj
+abj
+abj
+abj
+abj
+bCI
+bCI
aaa
aaa
aaa
@@ -192278,15 +193865,6 @@ aaa
aaa
aaa
aaa
-bPS
-tou
-tou
-tou
-tou
-tou
-tou
-tou
-bvh
aaa
aaa
aaa
@@ -192297,47 +193875,15 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
-uoM
-gqd
-gqd
-gqd
-uoM
-uoM
-uoM
-whO
-whO
-uoM
-uoM
-whO
-whO
-uoM
-uoM
-abj
-abj
aaa
-abj
aaa
aaa
aaa
aaa
-bCI
-bCI
aaa
-bCI
-abj
-csi
-cFJ
-cHc
-cJm
-cJJ
-csi
-abj
aaa
-bCI
-bCI
aaa
aaa
aaa
@@ -192362,13 +193908,6 @@ aaa
aaa
aaa
aaa
-bCI
-bCI
-abj
-bCI
-bCI
-abj
-bCI
aaa
aaa
aaa
@@ -192427,6 +193966,8 @@ aaa
aaa
aaa
aaa
+"}
+(232,1,1) = {"
aaa
aaa
aaa
@@ -192438,8 +193979,6 @@ aaa
aaa
aaa
aaa
-"}
-(233,1,1) = {"
aaa
aaa
aaa
@@ -192475,6 +194014,14 @@ aaa
aaa
aaa
aaa
+aaf
+abr
+adX
+abr
+abr
+abr
+aaf
+acE
aaa
aaa
aaa
@@ -192489,24 +194036,6 @@ aaa
aaa
aaa
aaa
-ajm
-ajO
-akn
-akn
-akn
-akm
-alU
-alB
-akn
-anc
-anF
-aom
-ajk
-apE
-aqt
-arn
-akm
-akL
aaa
aaa
aaa
@@ -192535,16 +194064,39 @@ aaa
aaa
aaa
aaa
-bvh
-bvh
-acF
+bCI
abj
-bPS
-bPS
+lhC
+lZw
+sGp
+fSo
+sAQ
+dbt
+abj
+ylx
+ylx
+ylx
+ylx
+ylx
+ylx
+ylx
+sws
+uCv
+gLr
+dpW
+nCY
+cqg
+sXk
+wuY
+qji
+amS
+sws
abj
-acF
-acF
+bCI
+bCI
+bCI
aaa
+bCI
aaa
aaa
aaa
@@ -192554,28 +194106,20 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
-abj
aaa
aaa
-abj
aaa
aaa
aaa
-abj
aaa
aaa
aaa
-abj
aaa
aaa
-abj
aaa
-abj
aaa
-abj
aaa
aaa
aaa
@@ -192585,12 +194129,6 @@ aaa
aaa
aaa
aaa
-csj
-cFK
-cHd
-cIt
-cFK
-csj
aaa
aaa
aaa
@@ -192656,6 +194194,92 @@ aaa
aaa
aaa
aaa
+rUr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(233,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aat
+aat
+aaf
+aaf
+aaf
+abr
+adY
+aem
+abr
+lRC
+afZ
+skw
+aaa
aaa
aaa
aaa
@@ -192667,6 +194291,7 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -192695,9 +194320,35 @@ aaa
aaa
aaa
aaa
-"}
-(234,1,1) = {"
aaa
+bCI
+abj
+lhQ
+gko
+fGa
+uoA
+gzs
+hkr
+abj
+ylx
+ylx
+ylx
+ylx
+ylx
+ylx
+ylx
+tRb
+iLb
+xQM
+inP
+jIR
+dEO
+ycr
+bdR
+sWf
+eeI
+bEv
+abj
aaa
aaa
aaa
@@ -192747,22 +194398,6 @@ aaa
aaa
aaa
aaa
-ajm
-akm
-udT
-udT
-akm
-alU
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-akL
aaa
aaa
aaa
@@ -192811,28 +194446,6 @@ aaa
aaa
aaa
aaa
-bvh
-abj
-abj
-bvh
-abj
-abj
-bvh
-abj
-abj
-abj
-bvh
-abj
-abj
-abj
-bvh
-abj
-abj
-bvh
-abj
-bvh
-abj
-bvh
aaa
aaa
aaa
@@ -192842,12 +194455,6 @@ aaa
aaa
aaa
aaa
-csj
-csj
-csj
-csj
-csj
-csj
aaa
aaa
aaa
@@ -192873,6 +194480,8 @@ aaa
aaa
aaa
aaa
+"}
+(234,1,1) = {"
aaa
aaa
aaa
@@ -192914,6 +194523,19 @@ aaa
aaa
aaa
aaa
+aas
+abl
+abV
+aaf
+abr
+abr
+abr
+adZ
+abr
+aec
+abr
+afZ
+skw
aaa
aaa
aaa
@@ -192925,6 +194547,7 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -192952,12 +194575,38 @@ aaa
aaa
aaa
aaa
-"}
-(235,1,1) = {"
aaa
aaa
aaa
aaa
+abj
+wyD
+maB
+fHp
+fWD
+eqO
+wyD
+abj
+ylx
+ylx
+ylx
+ylx
+ylx
+ylx
+ylx
+wxC
+srS
+bmZ
+nCY
+xaE
+xsS
+xaE
+nCY
+ljP
+vZo
+wxC
+abj
+bCI
aaa
aaa
aaa
@@ -193005,15 +194654,6 @@ aaa
aaa
aaa
aaa
-ajm
-akP
-alr
-akm
-alU
-amp
-akn
-and
-akm
aaa
aaa
aaa
@@ -193097,6 +194737,8 @@ aaa
aaa
aaa
aaa
+"}
+(235,1,1) = {"
aaa
aaa
aaa
@@ -193138,6 +194780,19 @@ aaa
aaa
aaa
aaa
+aaf
+aau
+aep
+acJ
+abr
+aer
+abr
+abr
+abr
+abr
+afX
+afZ
+skw
aaa
aaa
aaa
@@ -193181,6 +194836,34 @@ aaa
aaa
aaa
aaa
+abj
+wyD
+maX
+xqr
+ihp
+hmo
+wyD
+abj
+ylx
+ylx
+ylx
+ylx
+ylx
+ylx
+ylx
+wxC
+wxC
+vkC
+oKG
+vkC
+wxC
+vkC
+oKG
+vkC
+wxC
+wxC
+abj
+bCI
aaa
aaa
aaa
@@ -193209,8 +194892,6 @@ aaa
aaa
aaa
aaa
-"}
-(236,1,1) = {"
aaa
aaa
aaa
@@ -193265,12 +194946,6 @@ aaa
aaa
aaa
aaa
-akm
-alU
-amq
-akn
-akn
-akm
aaa
aaa
aaa
@@ -193319,6 +194994,8 @@ aaa
aaa
aaa
aaa
+"}
+(236,1,1) = {"
aaa
aaa
aaa
@@ -193360,6 +195037,19 @@ aaa
aaa
aaa
aaa
+aak
+ael
+aat
+aat
+aaf
+aaf
+acA
+aea
+adr
+aat
+aat
+aat
+acg
aaa
aaa
aaa
@@ -193386,7 +195076,6 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -193403,8 +195092,35 @@ aaa
aaa
aaa
aaa
+bCI
+abj
+abj
+abj
+eGR
+xkY
+abj
+abj
+abj
+ylx
+ylx
+ylx
+ylx
+ylx
+ylx
+ylx
aaa
+abj
+vkC
+naI
+vkC
aaa
+vkC
+ghI
+vkC
+abj
+abj
+abj
+bCI
aaa
aaa
aaa
@@ -193466,8 +195182,6 @@ aaa
aaa
aaa
aaa
-"}
-(237,1,1) = {"
aaa
aaa
aaa
@@ -193517,18 +195231,7 @@ aaa
aaa
aaa
aaa
-ajj
-ajO
-ajO
-akQ
aaa
-akm
-alU
-amr
-amK
-ane
-akm
-akQ
aaa
aaa
aaa
@@ -193548,6 +195251,8 @@ aaa
aaa
aaa
aaa
+"}
+(237,1,1) = {"
aaa
aaa
aaa
@@ -193597,8 +195302,10 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -193606,6 +195313,7 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -193641,8 +195349,33 @@ aaa
aaa
aaa
aaa
+bCI
+bCI
+bCI
+abj
+acF
+acF
+abj
aaa
+abj
+ylx
+ylx
+ylx
+ylx
+ylx
+ylx
+ylx
+abj
+abj
+ukt
+fwe
+ukt
aaa
+ukt
+fwe
+ukt
+abj
+abj
aaa
aaa
aaa
@@ -193723,8 +195456,6 @@ aaa
aaa
aaa
aaa
-"}
-(238,1,1) = {"
aaa
aaa
aaa
@@ -193774,21 +195505,11 @@ aaa
aaa
aaa
aaa
-ajn
-ajU
-akr
-akm
-akm
-akm
-alU
-ams
-akn
-akn
-anD
-aok
aaa
aaa
aaa
+"}
+(238,1,1) = {"
aaa
aaa
aaa
@@ -193879,7 +195600,6 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -193894,6 +195614,26 @@ aaa
aaa
aaa
aaa
+abj
+abj
+abj
+acF
+cIV
+acF
+abj
+abj
+abj
+uCS
+rEU
+waG
+rEU
+rEU
+ydy
+kRB
+rEU
+bva
+abj
+bCI
aaa
aaa
aaa
@@ -193980,8 +195720,6 @@ aaa
aaa
aaa
aaa
-"}
-(239,1,1) = {"
aaa
aaa
aaa
@@ -194027,22 +195765,12 @@ aaa
aaa
aaa
aaa
+"}
+(239,1,1) = {"
aaa
aaa
aaa
aaa
-akm
-alU
-alU
-akS
-alU
-alU
-alU
-akn
-akn
-amW
-anD
-aok
aaa
aaa
aaa
@@ -194151,6 +195879,18 @@ aaa
aaa
aaa
aaa
+abj
+uDP
+vrN
+efR
+mlL
+wUg
+yeQ
+wUg
+xLK
+lKn
+abj
+bCI
aaa
aaa
aaa
@@ -194169,7 +195909,6 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -194237,8 +195976,6 @@ aaa
aaa
aaa
aaa
-"}
-(240,1,1) = {"
aaa
aaa
aaa
@@ -194285,21 +196022,11 @@ aaa
aaa
aaa
aaa
+"}
+(240,1,1) = {"
aaa
aaa
aaa
-ajm
-ajO
-ajO
-ajO
-akm
-akm
-akP
-amt
-alr
-ajO
-ajO
-akL
aaa
aaa
aaa
@@ -194346,6 +196073,7 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -194356,6 +196084,7 @@ aaa
aaa
aaa
aaa
+aaq
aaa
aaa
aaa
@@ -194407,6 +196136,18 @@ aaa
aaa
aaa
aaa
+abj
+uDV
+lvb
+nrg
+fpt
+wUg
+wUg
+wUg
+xLK
+lKn
+abj
+bCI
aaa
aaa
aaa
@@ -194494,8 +196235,6 @@ aaa
aaa
aaa
aaa
-"}
-(241,1,1) = {"
aaa
aaa
aaa
@@ -194540,6 +196279,8 @@ aaa
aaa
aaa
aaa
+"}
+(241,1,1) = {"
aaa
aaa
aaa
@@ -194575,7 +196316,6 @@ aaa
aaa
aaa
aaa
-aaZ
aaa
aaa
aaa
@@ -194653,6 +196393,17 @@ aaa
aaa
aaa
aaa
+abj
+uFy
+iHu
+kzg
+qaX
+scg
+iZp
+wUg
+xLK
+lKn
+abj
aaa
aaa
aaa
@@ -194751,8 +196502,6 @@ aaa
aaa
aaa
aaa
-"}
-(242,1,1) = {"
aaa
aaa
aaa
@@ -194787,6 +196536,8 @@ aaa
aaa
aaa
aaa
+"}
+(242,1,1) = {"
aaa
aaa
aaa
@@ -194899,6 +196650,23 @@ aaa
aaa
aaa
aaa
+abj
+uHc
+rEU
+ldq
+rEU
+rEU
+rEU
+rlh
+rEU
+tpS
+abj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -194981,7 +196749,6 @@ aaa
aaa
aaa
aaa
-ykx
aaa
aaa
aaa
@@ -195008,8 +196775,6 @@ aaa
aaa
aaa
aaa
-"}
-(243,1,1) = {"
aaa
aaa
aaa
@@ -195028,6 +196793,15 @@ aaa
aaa
aaa
aaa
+"}
+(243,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -195133,6 +196907,17 @@ aaa
aaa
aaa
aaa
+abj
+abj
+acF
+uFL
+acF
+abj
+acF
+uFL
+acF
+abj
+abj
aaa
aaa
aaa
@@ -195689,7 +197474,7 @@ aaa
aaa
aaa
aaa
-aaa
+aae
aaa
aaa
aaa
@@ -196204,7 +197989,7 @@ aaa
aaa
aaa
aaa
-aaZ
+aaa
aaa
aaa
aaa
@@ -197469,8 +199254,8 @@ aaa
aaa
aaa
aaa
+aae
aaa
-aaZ
aaa
aaa
aaa
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/ussp.dmm b/_maps/map_files/RandomRuins/SpaceRuins/ussp.dmm
index d8d711001d061..3a3e0a19a2343 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/ussp.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/ussp.dmm
@@ -6878,7 +6878,7 @@
})
"nS" = (
/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/beetsoup,
+/obj/item/reagent_containers/food/snacks/soup/beetsoup,
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
diff --git a/_maps/map_files/RandomZLevels/academy.dmm b/_maps/map_files/RandomZLevels/academy.dmm
index 9237881653b0f..29c8998fbf0e4 100644
--- a/_maps/map_files/RandomZLevels/academy.dmm
+++ b/_maps/map_files/RandomZLevels/academy.dmm
@@ -1,21144 +1,24141 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/space,
-/area/space)
-"ab" = (
-/turf/simulated/wall/r_wall,
-/area/awaymission/academy/headmaster)
-"ac" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/headmaster)
-"ad" = (
-/obj/structure/filingcabinet/filingcabinet,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"ae" = (
-/obj/structure/computerframe{
- anchored = 1
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"af" = (
-/obj/structure/table/reinforced,
-/obj/item/pen/red,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"ag" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/blue,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"ah" = (
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"ai" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"aj" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/apc/noalarm{
- dir = 1;
- environ = 0;
- equipment = 3;
- locked = 0;
- req_access = ""
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"ak" = (
-/obj/structure/table/reinforced,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"al" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"am" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"an" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"ao" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"ap" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"aq" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/drinks/coffee,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"ar" = (
-/obj/structure/table/reinforced,
-/obj/item/paper{
- info = "We're upgrading to the latest mainframes for our consoles, the shipment should be in before spring break is over!";
- name = "Console Maintenance"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"as" = (
-/turf/simulated/wall,
-/area/awaymission/academy/headmaster)
-"at" = (
-/obj/structure/mineral_door/wood,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"au" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"av" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"aw" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"ax" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"ay" = (
-/obj/effect/decal/cleanable/cobweb,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"az" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/item/stack/sheet/animalhide/monkey,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"aA" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"aB" = (
-/obj/structure/bed,
-/obj/item/bedsheet/purple,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"aC" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/drinks/tea,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"aD" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"aE" = (
-/obj/structure/filingcabinet,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"aF" = (
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"aG" = (
-/obj/structure/safe/floor,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"aH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"aI" = (
-/obj/structure/table/reinforced,
-/obj/item/laser_pointer/upgraded,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"aJ" = (
-/obj/structure/cult/archives,
-/obj/item/twohanded/staff,
-/obj/item/spellbook/oneuse/charge,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"aK" = (
-/obj/structure/chair/wood/wings{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"aL" = (
-/obj/item/clothing/suit/space/hardsuit/shielded/wizard,
-/obj/structure/table/wood,
-/obj/item/stack/sheet/mineral/silver{
- amount = 20
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"aM" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/briefcase,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"aN" = (
-/obj/structure/table/reinforced,
-/obj/item/coin/plasma,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"aO" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"aP" = (
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"aQ" = (
-/obj/machinery/door/airlock/gold{
- locked = 1
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"aR" = (
-/obj/machinery/door/airlock/gold{
- locked = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"aS" = (
-/turf/simulated/mineral/random/high_chance,
-/area/awaymission/academy)
-"aT" = (
-/obj/structure/noticeboard,
-/turf/simulated/wall,
-/area/awaymission/academy/headmaster)
-"aU" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"aV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"aW" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"aX" = (
-/obj/machinery/photocopier,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"aY" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"aZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/awaymission/academy/headmaster)
-"ba" = (
-/obj/structure/table/wood,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/item/pen/red,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"bb" = (
-/obj/structure/table/wood,
-/obj/item/twohanded/staff,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"bc" = (
-/obj/structure/table/wood,
-/obj/item/hand_labeler,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"bd" = (
-/obj/structure/table/wood,
-/obj/item/pen/invisible,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"be" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"bf" = (
-/obj/structure/table/wood,
-/obj/item/pen/red,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"bg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"bh" = (
-/obj/structure/table/wood,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/item/dice/d20,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"bi" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/tea,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"bj" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"bk" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"bl" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"bm" = (
-/obj/structure/table/wood,
-/obj/item/folder/blue,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"bn" = (
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"bo" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"bp" = (
-/obj/structure/chair/office/dark,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"bq" = (
-/obj/machinery/door/airlock/gold,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"br" = (
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/headmaster)
-"bs" = (
-/turf/simulated/wall/r_wall,
-/area/awaymission/academy/classrooms)
-"bt" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "AcademyAuto"
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"bu" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "AcademyAuto"
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"bv" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "AcademyAuto"
- },
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"bw" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "AcademyAuto"
- },
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"bx" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/awaymission/academy/headmaster)
-"by" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
- },
-/area/awaymission/academy/headmaster)
-"bz" = (
-/mob/living/simple_animal/hostile/mimic/crate,
-/turf/simulated/floor/plasteel{
- tag = "icon-vault";
- icon_state = "vault"
- },
-/area/awaymission/academy/classrooms)
-"bA" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "AcademyAuto"
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"bB" = (
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"bC" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"bD" = (
-/obj/machinery/door_control{
- id = "AcademyAuto";
- pixel_y = 24
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"bE" = (
-/turf/simulated/wall,
-/area/awaymission/academy/classrooms)
-"bF" = (
-/turf/simulated/shuttle/wall{
- tag = "icon-swallc2";
- icon_state = "swallc2"
- },
-/area/awaymission/academy/classrooms)
-"bG" = (
-/turf/simulated/shuttle/wall{
- tag = "icon-swall12";
- icon_state = "swall12";
- dir = 2
- },
-/area/awaymission/academy/classrooms)
-"bH" = (
-/turf/simulated/shuttle/wall{
- tag = "icon-swallc1";
- icon_state = "swallc1"
- },
-/area/awaymission/academy/classrooms)
-"bI" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/headmaster)
-"bJ" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/awaymission/academy/headmaster)
-"bK" = (
-/turf/simulated/floor/plasteel{
- icon_state = "chapel"
- },
-/area/awaymission/academy/headmaster)
-"bL" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/headmaster)
-"bM" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/headmaster)
-"bN" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"bO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/headmaster)
-"bP" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/awaymission/academy/headmaster)
-"bQ" = (
-/obj/effect/decal/cleanable/cobweb2,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/headmaster)
-"bR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/awaymission/academy/headmaster)
-"bS" = (
-/obj/effect/landmark{
- name = "awaystart"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "showroomfloor"
- },
-/area/awaymission/academy/headmaster)
-"bT" = (
-/turf/simulated/floor/plasteel{
- icon_state = "showroomfloor"
- },
-/area/awaymission/academy/headmaster)
-"bU" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/headmaster)
-"bV" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"bW" = (
-/turf/simulated/shuttle/wall{
- tag = "icon-swall3";
- icon_state = "swall3";
- dir = 2
- },
-/area/awaymission/academy/classrooms)
-"bX" = (
-/obj/effect/decal/cleanable/ash,
-/turf/simulated/floor/engine,
-/area/awaymission/academy/classrooms)
-"bY" = (
-/obj/structure/target_stake,
-/turf/simulated/floor/engine,
-/area/awaymission/academy/classrooms)
-"bZ" = (
-/turf/simulated/floor/engine,
-/area/awaymission/academy/classrooms)
-"ca" = (
-/obj/structure/target_stake,
-/obj/item/target/alien,
-/turf/simulated/floor/engine,
-/area/awaymission/academy/classrooms)
-"cb" = (
-/obj/machinery/vending/cigarette,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/headmaster)
-"cc" = (
-/obj/structure/table,
-/obj/item/lighter/random,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/headmaster)
-"cd" = (
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/awaymission/academy/headmaster)
-"ce" = (
-/obj/machinery/autolathe,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"cf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/headmaster)
-"cg" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/simulated/floor/plasteel{
- icon_state = "showroomfloor"
- },
-/area/awaymission/academy/headmaster)
-"ch" = (
-/obj/structure/chair/stool,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "showroomfloor"
- },
-/area/awaymission/academy/headmaster)
-"ci" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable,
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/headmaster)
-"cj" = (
-/obj/effect/decal/cleanable/blood/oil,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"ck" = (
-/obj/machinery/door/airlock/plasma,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"cl" = (
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/headmaster)
-"cm" = (
-/obj/structure/table,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"cn" = (
-/obj/machinery/computer/area_atmos/area,
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/headmaster)
-"co" = (
-/obj/machinery/portable_atmospherics/scrubber/huge/stationary,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/headmaster)
-"cp" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- icon_state = "showroomfloor"
- },
-/area/awaymission/academy/headmaster)
-"cq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/awaymission/academy/headmaster)
-"cr" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"cs" = (
-/turf/simulated/shuttle/wall{
- tag = "icon-swall1";
- icon_state = "swall1"
- },
-/area/awaymission/academy/classrooms)
-"ct" = (
-/obj/structure/chair,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/headmaster)
-"cu" = (
-/turf/simulated/floor/carpet{
- icon_state = "carpetsymbol"
- },
-/area/awaymission/academy/headmaster)
-"cv" = (
-/obj/machinery/door/window{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/headmaster)
-"cw" = (
-/turf/simulated/floor/plating,
-/area/awaymission/academy/headmaster)
-"cx" = (
-/obj/structure/table,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/item/pen/red,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"cy" = (
-/obj/structure/table,
-/turf/simulated/floor/plasteel{
- icon_state = "showroomfloor"
- },
-/area/awaymission/academy/headmaster)
-"cz" = (
-/obj/machinery/door/window{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/headmaster)
-"cA" = (
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
- },
-/area/awaymission/academy/classrooms)
-"cB" = (
-/obj/item/target,
-/turf/simulated/floor/engine,
-/area/awaymission/academy/classrooms)
-"cC" = (
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
- },
-/area/awaymission/academy/classrooms)
-"cD" = (
-/obj/structure/table,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/headmaster)
-"cE" = (
-/obj/structure/table,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/item/stack/cable_coil/random,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"cF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"cG" = (
-/obj/machinery/door/airlock/plasma,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"cH" = (
-/obj/structure/sign/nosmoking_1,
-/turf/simulated/wall,
-/area/awaymission/academy/headmaster)
-"cI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/awaymission/academy/headmaster)
-"cJ" = (
-/obj/item/stack/sheet/metal,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"cK" = (
-/obj/structure/table,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"cL" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/headmaster)
-"cM" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"cN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"cO" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"cP" = (
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
- },
-/area/awaymission/academy/classrooms)
-"cQ" = (
-/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/awaymission/academy/classrooms)
-"cR" = (
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"cS" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/headmaster)
-"cT" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/pump,
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/headmaster)
-"cU" = (
-/obj/structure/closet/crate/internals,
-/obj/item/tank/oxygen,
-/obj/item/tank/oxygen/red,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/awaymission/academy/headmaster)
-"cV" = (
-/obj/structure/closet/crate,
-/obj/item/crowbar/red,
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/headmaster)
-"cW" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/headmaster)
-"cX" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"cY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"cZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"da" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"db" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
-"dc" = (
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
-"dd" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
-"de" = (
-/turf/simulated/floor/greengrid,
-/area/awaymission/academy/classrooms)
-"df" = (
-/obj/structure/table/wood,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
-"dg" = (
-/obj/structure/table,
-/obj/item/paper{
- info = "Grade: A+ Educator's Notes: Excellent form.";
- name = "Summoning Midterm Exam"
- },
-/obj/item/gun/projectile/shotgun/toy/tommygun,
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/classrooms)
-"dh" = (
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "green"
- },
-/area/awaymission/academy/classrooms)
-"di" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "green"
- },
-/area/awaymission/academy/classrooms)
-"dj" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "green"
- },
-/area/awaymission/academy/classrooms)
-"dk" = (
-/obj/structure/sink/kitchen{
- pixel_y = 28
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "green"
- },
-/area/awaymission/academy/classrooms)
-"dl" = (
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "green"
- },
-/area/awaymission/academy/classrooms)
-"dm" = (
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"dn" = (
-/obj/machinery/gibber,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"do" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"dp" = (
-/turf/simulated/floor/mech_bay_recharge_floor,
-/area/awaymission/academy/classrooms)
-"dq" = (
-/obj/machinery/mech_bay_recharge_port,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"dr" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"ds" = (
-/obj/structure/chair/wood{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
-"dt" = (
-/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
- },
-/area/awaymission/academy/classrooms)
-"du" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"dv" = (
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"dw" = (
-/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
- },
-/area/awaymission/academy/classrooms)
-"dx" = (
-/obj/machinery/computer/mech_bay_power_console,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/simulated/floor/greengrid,
-/area/awaymission/academy/classrooms)
-"dy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/greengrid,
-/area/awaymission/academy/classrooms)
-"dz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/item/weldingtool,
-/turf/simulated/floor/greengrid,
-/area/awaymission/academy/classrooms)
-"dA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/greengrid,
-/area/awaymission/academy/classrooms)
-"dB" = (
-/turf/simulated/floor/grass,
-/area/awaymission/academy/headmaster)
-"dC" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/glass/bucket,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"dD" = (
-/obj/structure/closet/crate/hydroponics/prespawned,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"dE" = (
-/obj/machinery/door/airlock/freezer,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"dF" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/chem_master/condimaster,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"dG" = (
-/obj/machinery/mech_bay_recharge_port,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"dH" = (
-/obj/machinery/computer/mech_bay_power_console,
-/obj/structure/cable,
-/turf/simulated/floor/greengrid,
-/area/awaymission/academy/classrooms)
-"dI" = (
-/obj/item/seeds/replicapod,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"dJ" = (
-/obj/structure/table/wood,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"dK" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"dL" = (
-/obj/item/seeds/tomato/blue/bluespace,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"dM" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"dN" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"dO" = (
-/obj/machinery/door/airlock/freezer,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"dP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
- },
-/area/awaymission/academy/classrooms)
-"dQ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"dR" = (
-/obj/structure/kitchenspike,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"dS" = (
-/obj/structure/mineral_door/iron,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"dT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"dU" = (
-/obj/effect/landmark{
- name = "awaystart"
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
-"dV" = (
-/obj/machinery/seed_extractor,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"dW" = (
-/obj/structure/cable,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"dX" = (
-/obj/structure/closet/crate/freezer,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"dY" = (
-/obj/structure/mineral_door/iron,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"dZ" = (
-/obj/machinery/igniter/on,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"ea" = (
-/turf/simulated/floor/plasteel{
- icon_state = "yellowcorner"
- },
-/area/awaymission/academy/classrooms)
-"eb" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "yellow"
- },
-/area/awaymission/academy/classrooms)
-"ec" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellowcorner"
- },
-/area/awaymission/academy/classrooms)
-"ed" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
- },
-/area/awaymission/academy/classrooms)
-"ee" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"ef" = (
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/obj/item/paper{
- name = "Automotive Repair 101"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/classrooms)
-"eg" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/classrooms)
-"eh" = (
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/obj/item/paper{
- name = "Pyromancy 250"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/classrooms)
-"ei" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/classrooms)
-"ej" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/apc/noalarm{
- dir = 1;
- environ = 3;
- equipment = 3;
- locked = 0;
- req_access = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/classrooms)
-"ek" = (
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/classrooms)
-"el" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
- },
-/area/awaymission/academy/classrooms)
-"em" = (
-/turf/simulated/floor/plasteel{
- tag = "icon-green (SOUTHWEST)";
- icon_state = "green";
- dir = 10
- },
-/area/awaymission/academy/classrooms)
-"en" = (
-/turf/simulated/floor/plasteel{
- tag = "icon-green";
- icon_state = "green"
- },
-/area/awaymission/academy/classrooms)
-"eo" = (
-/obj/machinery/vending/hydroseeds{
- slogan_delay = 700
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"ep" = (
-/obj/machinery/vending/hydronutrients,
-/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"eq" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"er" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"es" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "yellow"
- },
-/area/awaymission/academy/classrooms)
-"et" = (
-/obj/singularity/academy,
-/turf/space,
-/area/space/nearstation)
-"eu" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "yellow";
- dir = 10
- },
-/area/awaymission/academy/classrooms)
-"ev" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/classrooms)
-"ew" = (
-/obj/structure/mineral_door/wood,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"ex" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/classrooms)
-"ey" = (
-/obj/machinery/door/airlock/freezer,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"ez" = (
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/door/airlock/external,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"eA" = (
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"eB" = (
-/obj/structure/table/wood,
-/obj/item/folder/blue,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"eC" = (
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"eD" = (
-/obj/structure/chair,
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"eE" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"eF" = (
-/obj/structure/table/reinforced,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "barber"
- },
-/area/awaymission/academy/classrooms)
-"eG" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "barber"
- },
-/area/awaymission/academy/classrooms)
-"eH" = (
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating/airless,
-/area/awaymission/academy)
-"eI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
- },
-/area/awaymission/academy/classrooms)
-"eJ" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
- },
-/area/awaymission/academy/classrooms)
-"eK" = (
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "yellow"
- },
-/area/awaymission/academy/classrooms)
-"eL" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/awaymission/academy/classrooms)
-"eM" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
- },
-/area/awaymission/academy/classrooms)
-"eN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/classrooms)
-"eO" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/classrooms)
-"eP" = (
-/obj/structure/table,
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"eQ" = (
-/obj/machinery/processor,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "barber"
- },
-/area/awaymission/academy/classrooms)
-"eR" = (
-/turf/simulated/floor/plasteel{
- icon_state = "yellow"
- },
-/area/awaymission/academy/classrooms)
-"eS" = (
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "yellow"
- },
-/area/awaymission/academy/classrooms)
-"eT" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/awaymission/academy/classrooms)
-"eU" = (
-/turf/simulated/floor/plasteel{
- icon_state = "chapel"
- },
-/area/awaymission/academy/classrooms)
-"eV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "barber"
- },
-/area/awaymission/academy/classrooms)
-"eW" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating/airless,
-/area/awaymission/academy)
-"eX" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"eY" = (
-/obj/structure/table,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "barber"
- },
-/area/awaymission/academy/classrooms)
-"eZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/awaymission/academy/classrooms)
-"fa" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"fb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/awaymission/academy/classrooms)
-"fc" = (
-/obj/structure/mineral_door/wood,
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"fd" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating/airless,
-/area/awaymission/academy)
-"fe" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/classrooms)
-"ff" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/classrooms)
-"fg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/classrooms)
-"fh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/classrooms)
-"fi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/classrooms)
-"fj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"fk" = (
-/obj/structure/mineral_door/wood,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"fl" = (
-/obj/structure/table,
-/obj/machinery/kitchen_machine/microwave,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "barber"
- },
-/area/awaymission/academy/classrooms)
-"fm" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "yellow"
- },
-/area/awaymission/academy/classrooms)
-"fn" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "yellow"
- },
-/area/awaymission/academy/classrooms)
-"fo" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"fp" = (
-/obj/structure/table,
-/obj/item/trash/semki,
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"fq" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"fr" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "barber"
- },
-/area/awaymission/academy/classrooms)
-"fs" = (
-/turf/simulated/floor/plasteel{
- icon_state = "cautioncorner";
- dir = 4
- },
-/area/awaymission/academy/classrooms)
-"ft" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
- },
-/area/awaymission/academy/classrooms)
-"fu" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
- },
-/area/awaymission/academy/classrooms)
-"fv" = (
-/obj/structure/table,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"fw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "barber"
- },
-/area/awaymission/academy/classrooms)
-"fx" = (
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "barber"
- },
-/area/awaymission/academy/classrooms)
-"fy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "barber"
- },
-/area/awaymission/academy/classrooms)
-"fz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/noticeboard{
- pixel_y = -32
- },
-/obj/item/paper{
- name = "Biology Lab"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/classrooms)
-"fA" = (
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"fB" = (
-/turf/simulated/wall,
-/area/awaymission/academy/academyaft)
-"fC" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
- },
-/area/awaymission/academy/classrooms)
-"fD" = (
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"fE" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/classrooms)
-"fF" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/classrooms)
-"fG" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/classrooms)
-"fH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"fI" = (
-/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 1
- },
-/area/awaymission/academy/classrooms)
-"fJ" = (
-/obj/structure/chair,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"fK" = (
-/obj/effect/decal/cleanable/cobweb,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
-"fL" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/academyaft)
-"fM" = (
-/obj/structure/closet/crate/trashcart,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/academyaft)
-"fN" = (
-/turf/simulated/floor/plasteel{
- tag = "icon-vault";
- icon_state = "vault"
- },
-/area/awaymission/academy/classrooms)
-"fO" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"fP" = (
-/obj/structure/chair,
-/turf/simulated/floor/plasteel{
- tag = "icon-vault";
- icon_state = "vault"
- },
-/area/awaymission/academy/classrooms)
-"fQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 1
- },
-/area/awaymission/academy/classrooms)
-"fR" = (
-/obj/machinery/shieldwallgen,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"fS" = (
-/obj/item/target,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"fT" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"fU" = (
-/obj/structure/target_stake,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"fV" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"fW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 1
- },
-/area/awaymission/academy/classrooms)
-"fX" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/simulated/floor/plasteel{
- tag = "icon-vault";
- icon_state = "vault"
- },
-/area/awaymission/academy/classrooms)
-"fY" = (
-/obj/structure/window/reinforced,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"fZ" = (
-/obj/structure/table,
-/obj/item/pen/red,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"ga" = (
-/obj/structure/table,
-/obj/item/lazarus_injector,
-/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
- },
-/area/awaymission/academy/classrooms)
-"gb" = (
-/obj/structure/chair/wood,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
-"gc" = (
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
-"gd" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"ge" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"gf" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitehall"
- },
-/area/awaymission/academy/classrooms)
-"gg" = (
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/classrooms)
-"gh" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"gi" = (
-/obj/structure/table/reinforced,
-/obj/item/pen/red,
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/classrooms)
-"gj" = (
-/obj/structure/filingcabinet/filingcabinet,
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/classrooms)
-"gk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"gl" = (
-/obj/item/storage/box/monkeycubes,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"gm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/academyaft)
-"gn" = (
-/obj/structure/table,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"go" = (
-/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
- },
-/area/awaymission/academy/classrooms)
-"gp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/recharger,
-/obj/structure/table/reinforced,
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/classrooms)
-"gq" = (
-/obj/machinery/door/window{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"gr" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"gs" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
- },
-/area/awaymission/academy/classrooms)
-"gt" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
-"gu" = (
-/obj/structure/bookcase,
-/obj/item/book/manual/medical_cloning,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
-"gv" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/academyaft)
-"gw" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/classrooms)
-"gx" = (
-/obj/machinery/door/window{
- dir = 4
- },
-/obj/machinery/door/window{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"gy" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"gz" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"gA" = (
-/obj/structure/table,
-/obj/item/scalpel,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"gB" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable,
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"gC" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable,
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"gD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/classrooms)
-"gE" = (
-/obj/structure/table,
-/obj/item/paper{
- info = "Grade: B- Educator's Notes: Keep applying yourself, you're showing improvement.";
- name = "Summoning Midterm Exam"
- },
-/obj/item/gun/projectile/shotgun/toy/tommygun,
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/classrooms)
-"gF" = (
-/obj/structure/window/reinforced,
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/trophy/gold_cup,
-/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/awaymission/academy/academyaft)
-"gG" = (
-/obj/structure/table,
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/classrooms)
-"gH" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/mineral/gold{
- amount = 5
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"gI" = (
-/mob/living/simple_animal/hostile/bear,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"gJ" = (
-/obj/structure/bookcase,
-/obj/item/book/manual/hydroponics_pod_people,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
-"gK" = (
-/obj/structure/bookcase,
-/obj/item/book/manual/barman_recipes,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
-"gL" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/classrooms)
-"gM" = (
-/obj/machinery/door/window{
- dir = 4
- },
-/obj/item/ammo_casing,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"gN" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/mob/living/simple_animal/hostile/bear,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"gO" = (
-/obj/structure/mineral_door/iron,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/classrooms)
-"gP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"gQ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"gR" = (
-/obj/structure/window/reinforced,
-/obj/item/ammo_casing,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"gS" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"gT" = (
-/obj/structure/table,
-/obj/item/gun/energy/floragun,
-/obj/item/paper{
- info = "Grade: D- Educator's Notes: SEE ME AFTER CLASS.";
- name = "Summoning Midterm Exam"
- },
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/classrooms)
-"gU" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/glass,
-/obj/item/target,
-/obj/item/target,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"gV" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"gW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"gX" = (
-/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
- },
-/area/awaymission/academy/classrooms)
-"gY" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
- },
-/area/awaymission/academy/classrooms)
-"gZ" = (
-/turf/simulated/wall/r_wall,
-/area/awaymission/academy/academyaft)
-"ha" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/academyaft)
-"hb" = (
-/obj/structure/mineral_door/wood,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"hc" = (
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"hd" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"he" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"hf" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"hg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/classrooms)
-"hh" = (
-/obj/machinery/door/airlock/gold{
- locked = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/classrooms)
-"hi" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/apc/noalarm{
- dir = 1;
- environ = 3;
- equipment = 3;
- locked = 0;
- req_access = ""
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"hj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
- },
-/area/awaymission/academy/classrooms)
-"hk" = (
-/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
- },
-/area/awaymission/academy/academyaft)
-"hl" = (
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"hm" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"hn" = (
-/turf/simulated/floor/plasteel{
- tag = "icon-green (EAST)";
- icon_state = "green";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"ho" = (
-/obj/item/crowbar/red,
-/turf/simulated/floor/plasteel{
- tag = "icon-green (EAST)";
- icon_state = "green";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"hp" = (
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"hq" = (
-/obj/machinery/shieldwallgen,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"hr" = (
-/obj/structure/mineral_door/wood,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"hs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"ht" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"hu" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"hv" = (
-/obj/machinery/power/smes/magical,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"hw" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"hx" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- layer = 2.4;
- on = 1
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"hy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/headmaster)
-"hz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"hA" = (
-/obj/machinery/door/airlock/gold,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-"hB" = (
-/obj/machinery/atmospherics/unary/vent_pump,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/classrooms)
-"hC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/classrooms)
-"hD" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"hE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/classrooms)
-"hF" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"hG" = (
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"hH" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- layer = 2.4;
- on = 1
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/classrooms)
-"hI" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"hJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"hK" = (
-/obj/machinery/constructable_frame/machine_frame,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"hL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"hM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"hN" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"hO" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"hP" = (
-/obj/structure/closet,
-/obj/item/candle,
-/obj/item/candle,
-/obj/item/storage/box/matches,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"hQ" = (
-/obj/structure/closet,
-/obj/item/storage/belt/soulstone,
-/obj/item/clothing/under/schoolgirl,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"hR" = (
-/obj/structure/closet,
-/obj/item/clothing/under/blackskirt,
-/obj/item/clothing/glasses/regular,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"hS" = (
-/obj/structure/closet,
-/obj/item/clothing/under/color/lightpurple,
-/obj/item/clothing/shoes/sandal,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"hT" = (
-/obj/structure/closet,
-/obj/item/lipstick/random,
-/obj/item/clothing/under/schoolgirl,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"hU" = (
-/turf/simulated/floor/wood,
-/area/awaymission/academy/academyaft)
-"hV" = (
-/obj/structure/closet,
-/obj/item/clothing/under/color/lightpurple,
-/obj/item/twohanded/staff,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"hW" = (
-/obj/structure/closet,
-/obj/item/storage/wallet/random,
-/obj/item/clothing/glasses/regular/hipster,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"hX" = (
-/obj/structure/closet,
-/obj/item/clothing/head/wizard/fake,
-/obj/item/clothing/suit/wizrobe/fake,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"hY" = (
-/obj/structure/closet,
-/obj/item/clothing/under/color/purple,
-/obj/item/poster/random_contraband,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"hZ" = (
-/obj/structure/closet,
-/obj/item/storage/box/snappops,
-/obj/item/storage/backpack,
-/obj/item/paper{
- info = "Current Grade: F. Educator's Notes: No improvement shown despite multiple private lessons. Suggest additional tutilage.";
- name = "Pyromancy Evaluation"
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"ia" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"ib" = (
-/obj/effect/decal/cleanable/blood/oil,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"ic" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"id" = (
-/obj/item/stack/cable_coil/random,
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"ie" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 50
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"if" = (
-/turf/simulated/floor/grass,
-/area/awaymission/academy/academyaft)
-"ih" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- layer = 2.4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"ii" = (
-/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
- },
-/area/awaymission/academy/academyaft)
-"ij" = (
-/obj/structure/mirror{
- pixel_y = 28
- },
-/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
- },
-/area/awaymission/academy/academyaft)
-"ik" = (
-/obj/effect/decal/cleanable/cobweb2,
-/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
- },
-/area/awaymission/academy/academyaft)
-"im" = (
-/obj/machinery/power/smes/magical,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"in" = (
-/obj/structure/rack,
-/obj/item/clothing/glasses/welding,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"io" = (
-/obj/structure/mineral_door/iron,
-/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
- },
-/area/awaymission/academy/academyaft)
-"ir" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/mechanical,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"is" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
- },
-/area/awaymission/academy/academyaft)
-"it" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
- },
-/area/awaymission/academy/academyaft)
-"iu" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/academyaft)
-"iv" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/academyaft)
-"iw" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
- },
-/area/awaymission/academy/academyaft)
-"ix" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"iz" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/landmark{
- name = "awaystart"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
- },
-/area/awaymission/academy/academyaft)
-"iA" = (
-/obj/structure/toilet{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
- },
-/area/awaymission/academy/academyaft)
-"iB" = (
-/mob/living/simple_animal/hostile/statue,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/headmaster)
-"iC" = (
-/obj/machinery/power/port_gen/pacman,
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"iD" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
- },
-/area/awaymission/academy/academyaft)
-"iE" = (
-/obj/item/paper,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/academyaft)
-"iF" = (
-/obj/item/stack/cable_coil/random,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"iG" = (
-/obj/machinery/door/airlock/maintenance_hatch,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"iH" = (
-/obj/item/multitool,
-/turf/simulated/floor/engine,
-/area/awaymission/academy/academyaft)
-"iI" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/engine,
-/area/awaymission/academy/academyaft)
-"iJ" = (
-/turf/simulated/floor/engine,
-/area/awaymission/academy/academyaft)
-"iK" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/decal/cleanable/vomit,
-/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
- },
-/area/awaymission/academy/academyaft)
-"iL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"iM" = (
-/obj/effect/decal/cleanable/cobweb2,
-/turf/simulated/floor/engine,
-/area/awaymission/academy/academyaft)
-"iN" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"iO" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/beach_ball/holoball,
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
- },
-/area/awaymission/academy/academyaft)
-"iP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"iQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance_hatch,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"iR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
- },
-/area/awaymission/academy/academyaft)
-"iS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"iT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- tag = "icon-green (EAST)";
- icon_state = "green";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"iU" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/soulstone,
-/turf/simulated/floor/plasteel/airless{
- tag = "icon-whitered (EAST)";
- icon_state = "whitered";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"iV" = (
-/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l";
- icon_state = "propulsion_l"
- },
-/turf/space,
-/area/awaymission/academy/academyaft)
-"iW" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/space,
-/area/awaymission/academy/academyaft)
-"iX" = (
-/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r";
- icon_state = "propulsion_r"
- },
-/turf/space,
-/area/awaymission/academy/academyaft)
-"iY" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"iZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"ja" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"jb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"jc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"jd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/item/caution,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- tag = "icon-green (EAST)";
- icon_state = "green";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"je" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"jf" = (
-/obj/structure/table,
-/obj/item/clothing/glasses/meson/truesight,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"jg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"jh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"ji" = (
-/obj/structure/noticeboard,
-/turf/simulated/wall,
-/area/awaymission/academy/academyaft)
-"jj" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"jk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"jl" = (
-/obj/structure/table,
-/turf/simulated/floor/plasteel/airless{
- tag = "icon-whitered (EAST)";
- icon_state = "whitered";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"jm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"jn" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
- },
-/area/awaymission/academy/academyaft)
-"jo" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
- },
-/area/awaymission/academy/academyaft)
-"jp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"jq" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/item/shard,
-/turf/simulated/floor/plating/airless,
-/area/awaymission/academy/academyaft)
-"jr" = (
-/mob/living/simple_animal/hostile/mimic/crate,
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/awaymission/academy/classrooms)
-"js" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
- },
-/area/awaymission/academy/academyaft)
-"jt" = (
-/obj/structure/cult/pylon,
-/turf/simulated/floor/plasteel{
- icon_state = "yellow";
- dir = 10
- },
-/area/awaymission/academy/academyaft)
-"ju" = (
-/turf/simulated/floor/plasteel{
- icon_state = "yellow"
- },
-/area/awaymission/academy/academyaft)
-"jv" = (
-/obj/structure/cult/pylon,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "yellow"
- },
-/area/awaymission/academy/academyaft)
-"jw" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel/airless{
- tag = "icon-white (EAST)";
- icon_state = "white";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"jx" = (
-/obj/structure/table,
-/obj/structure/window/reinforced,
-/obj/item/batterer,
-/turf/simulated/floor/plasteel/airless{
- tag = "icon-whitered (EAST)";
- icon_state = "whitered";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"jy" = (
-/obj/item/shard{
- icon_state = "medium"
- },
-/turf/space,
-/area/space/nearstation)
-"jz" = (
-/obj/machinery/igniter/on,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"jA" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"jB" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"jC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"jD" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"jE" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"jF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"jG" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11
- },
-/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
- },
-/area/awaymission/academy/academyaft)
-"jH" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"jI" = (
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "yellow"
- },
-/area/awaymission/academy/academyaft)
-"jJ" = (
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "yellow"
- },
-/area/awaymission/academy/academyaft)
-"jK" = (
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "yellow"
- },
-/area/awaymission/academy/academyaft)
-"jL" = (
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "yellow"
- },
-/area/awaymission/academy/academyaft)
-"jM" = (
-/obj/effect/landmark{
- name = "awaystart"
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"jN" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/academyaft)
-"jO" = (
-/obj/machinery/door/airlock/hatch,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"jP" = (
-/turf/simulated/wall/r_wall,
-/area/awaymission/academy/academygate)
-"jQ" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/grass,
-/area/awaymission/academy/academygate)
-"jR" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"jS" = (
-/turf/simulated/floor/grass,
-/area/awaymission/academy/academygate)
-"jT" = (
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academygate)
-"jU" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"jV" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/grass,
-/area/awaymission/academy/academygate)
-"jW" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
- },
-/area/awaymission/academy/academyaft)
-"jX" = (
-/obj/machinery/door/window/southright,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academygate)
-"jY" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"jZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"ka" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"kb" = (
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"kc" = (
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"kd" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plasteel/airless{
- tag = "icon-white (EAST)";
- icon_state = "white";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"ke" = (
-/obj/machinery/power/apc/noalarm{
- dir = 1;
- environ = 3;
- equipment = 3;
- locked = 0;
- req_access = ""
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academygate)
-"kf" = (
-/obj/item/stack/cable_coil/random,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"kg" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable,
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"kh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"ki" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable,
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"kj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"kk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plasteel/airless{
- tag = "icon-white (EAST)";
- icon_state = "white";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"kl" = (
-/obj/machinery/gateway{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"km" = (
-/obj/machinery/gateway{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"kn" = (
-/obj/structure/cable,
-/obj/machinery/gateway/centeraway{
- calibrated = 0
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"ko" = (
-/obj/machinery/gateway{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"kp" = (
-/obj/machinery/gateway{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"kq" = (
-/obj/machinery/gateway,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"kr" = (
-/obj/machinery/gateway{
- dir = 6
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"ks" = (
-/obj/machinery/light,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academygate)
-"kt" = (
-/obj/machinery/door_control{
- id = "AcademyGate";
- pixel_y = -24
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academygate)
-"ku" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/window/reinforced{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"kv" = (
-/mob/living/simple_animal/hostile/mimic/crate,
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
- },
-/area/awaymission/academy/classrooms)
-"kw" = (
-/mob/living/simple_animal/hostile/mimic/crate,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"kx" = (
-/mob/living/simple_animal/hostile/statue,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"ky" = (
-/mob/living/simple_animal/hostile/creature,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/awaymission/academy/classrooms)
-"kz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel/airless{
- tag = "icon-whitered (EAST)";
- icon_state = "whitered";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"kA" = (
-/obj/structure/bookcase,
-/obj/item/spellbook/oneuse/summonitem,
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
-"kB" = (
-/mob/living/simple_animal/hostile/carp/megacarp{
- name = "Elmo"
- },
-/turf/simulated/mineral/random/high_chance,
-/area/awaymission/academy)
-"kD" = (
-/obj/effect/landmark{
- name = "awaystart"
- },
-/turf/simulated/floor/engine,
-/area/awaymission/academy/academyaft)
-"kE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/classrooms)
-"kF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/classrooms)
-"kG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"kH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/classrooms)
-"kI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/classrooms)
-"kJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"kK" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/classrooms)
-"kL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"kM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/wall,
-/area/awaymission/academy/classrooms)
-"kN" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"kO" = (
-/obj/structure/chair,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"kP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- layer = 2.4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
- },
-/area/awaymission/academy/classrooms)
-"kQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
- },
-/area/awaymission/academy/classrooms)
-"kR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "chapel"
- },
-/area/awaymission/academy/classrooms)
-"kS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel/airless{
- tag = "icon-white (EAST)";
- icon_state = "white";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"kT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall,
-/area/awaymission/academy/academyaft)
-"kU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/awaymission/academy/academyaft)
-"kV" = (
-/obj/effect/landmark{
- name = "awaystart"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"kW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"kX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"kY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plasteel/airless{
- tag = "icon-white (EAST)";
- icon_state = "white";
- dir = 4
- },
-/area/awaymission/academy/academyaft)
-"kZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"la" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"lb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"lc" = (
-/obj/machinery/door/airlock/hatch,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"ld" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academygate)
-"le" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/window/southleft,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academygate)
-"lf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academygate)
-"lg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academygate)
-"lh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academygate)
-"li" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academygate)
-"lj" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"lk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academygate)
-"ll" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"lm" = (
-/obj/machinery/gateway{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"ln" = (
-/obj/machinery/gateway{
- dir = 9
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"lo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10;
- initialize_directions = 10
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"lp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"lq" = (
-/obj/machinery/atmospherics/binary/valve,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"lr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"ls" = (
-/obj/machinery/atmospherics/unary/tank/air{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
-"lt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"lv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
-"lw" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "AcademyGate"
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"lx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
-"ly" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "yellow"
- },
-/area/awaymission/academy/academyaft)
-"lz" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- layer = 2.4;
- on = 1
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"lA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academyaft)
-"lB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/awaymission/academy/academyaft)
-"lC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/grass,
-/area/awaymission/academy/academygate)
-"lD" = (
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/grass,
-/area/awaymission/academy/academygate)
-"lF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/academygate)
-"lG" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academygate)
-"vq" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/academy/headmaster)
-
-(1,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(2,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(3,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(4,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(5,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(6,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(7,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(8,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(9,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(10,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(11,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(12,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(13,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(14,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(15,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(16,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(17,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(18,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(19,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(20,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(21,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(22,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(23,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(24,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(25,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(26,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(27,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aS
-aS
-aa
-aa
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(28,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aS
-aS
-aa
-aa
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(29,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(30,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(31,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(32,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-kB
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(33,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(34,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(35,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(36,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aa
-aa
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(37,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(38,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(39,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-aS
-aS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(40,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(41,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(42,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(43,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-eH
-eW
-eW
-fd
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(44,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bs
-bs
-bs
-ez
-bs
-bs
-ez
-bs
-bs
-bs
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(45,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bs
-bs
-bs
-bs
-bs
-bs
-bs
-bs
-bs
-bs
-bs
-bs
-bs
-bs
-dZ
-er
-bB
-bB
-bB
-bB
-er
-dZ
-bs
-bs
-bs
-bs
-bs
-bs
-bs
-bs
-bs
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(46,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bs
-bs
-ce
-cm
-cx
-cE
-cK
-cN
-cZ
-de
-dq
-dz
-dG
-de
-bs
-dZ
-er
-hH
-bB
-bB
-bB
-er
-dZ
-bs
-bB
-fV
-gl
-gr
-gz
-bB
-gN
-bB
-gZ
-hc
-hc
-hc
-hc
-hc
-hc
-hc
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(47,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bt
-dv
-dv
-dv
-bV
-dv
-dv
-dv
-cY
-de
-dp
-dy
-dp
-de
-bs
-bs
-bs
-hG
-er
-er
-eA
-bs
-bs
-bs
-bB
-bB
-bB
-gr
-gz
-gI
-bB
-bB
-gZ
-hd
-hv
-hL
-hv
-hL
-im
-hc
-hp
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(48,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bv
-bC
-bB
-bB
-bB
-bB
-bB
-cO
-da
-de
-dx
-dA
-dH
-de
-bE
-ea
-es
-kE
-eJ
-eR
-dv
-fm
-fs
-bs
-bB
-bB
-bB
-gr
-gz
-bB
-bB
-gI
-gZ
-he
-hw
-hc
-hw
-hc
-hw
-hc
-hl
-hp
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(49,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bu
-bB
-bB
-cj
-bB
-bB
-bB
-bB
-da
-bV
-bV
-cY
-bV
-dv
-bE
-eb
-et
-hI
-eJ
-eR
-fa
-et
-ft
-bs
-fO
-ge
-gx
-ge
-ge
-gx
-ge
-gV
-gZ
-he
-he
-hc
-he
-hc
-he
-hc
-id
-hp
-hp
-gZ
-gZ
-gZ
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(50,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bu
-bB
-bB
-bB
-bB
-bB
-cJ
-bB
-da
-bV
-dv
-cY
-dv
-bV
-bE
-ec
-eu
-kE
-eJ
-eR
-dv
-fn
-fu
-bE
-fR
-gf
-gf
-gf
-gf
-gf
-gf
-hq
-gZ
-hf
-ih
-jm
-jp
-jC
-jF
-hp
-hp
-hl
-hl
-gZ
-iH
-iJ
-iN
-iV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(51,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bw
-bN
-bB
-bB
-bB
-bB
-bB
-cX
-da
-dv
-dv
-cY
-dv
-dv
-dS
-ed
-ed
-kE
-eK
-eS
-dv
-ed
-ed
-dS
-fQ
-dv
-dv
-dv
-dv
-dv
-dv
-gX
-gZ
-hs
-kX
-hp
-id
-hp
-hp
-hl
-hp
-hl
-hp
-gZ
-iI
-iJ
-iN
-iW
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(52,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bA
-dv
-bV
-dv
-dv
-dv
-dv
-dv
-do
-cN
-cN
-dM
-cN
-cN
-dY
-el
-el
-eI
-el
-el
-el
-el
-fC
-dY
-fW
-dv
-gn
-du
-gA
-du
-gn
-gY
-gZ
-ht
-iL
-hp
-hl
-hp
-hp
-hp
-hl
-hp
-hp
-iG
-iJ
-iJ
-iN
-iW
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(53,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bs
-bD
-dv
-dv
-cr
-kw
-jr
-jr
-dv
-dv
-dr
-dv
-dv
-dv
-bE
-ef
-ei
-kF
-ei
-ei
-ei
-ei
-fz
-bE
-fI
-dv
-dv
-dv
-dv
-dv
-dv
-gX
-gZ
-hi
-ix
-hN
-ie
-ie
-in
-ir
-hN
-iC
-hl
-gZ
-iJ
-iJ
-iN
-iX
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(54,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bs
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-eg
-ei
-kH
-ek
-ek
-ek
-ei
-fi
-bE
-fI
-fZ
-dv
-dv
-gn
-du
-gn
-gY
-gZ
-gZ
-iQ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(55,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bs
-bF
-bW
-bW
-cs
-cA
-cA
-cP
-db
-dc
-dc
-dc
-dc
-dc
-bE
-eh
-ei
-kH
-eL
-eT
-ek
-ei
-fi
-bE
-fJ
-ga
-go
-gs
-go
-go
-go
-dm
-gZ
-hD
-iP
-hO
-gZ
-aa
-aa
-aa
-aa
-aa
-aP
-aa
-aP
-aP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(56,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bs
-bG
-bX
-bZ
-bZ
-cB
-cM
-cQ
-dc
-dc
-dc
-dc
-dc
-dc
-ew
-ei
-ei
-kH
-eM
-eU
-ek
-ei
-fi
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-gZ
-gZ
-iQ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(57,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aP
-bs
-bG
-bY
-bZ
-bZ
-bZ
-cM
-cQ
-dc
-df
-ds
-dU
-dc
-dc
-ew
-ei
-ei
-kH
-ek
-ek
-ek
-ei
-fi
-bE
-fK
-dc
-dc
-gt
-dc
-dc
-dc
-dc
-fB
-hk
-iR
-hk
-fB
-ii
-ii
-is
-ii
-is
-ii
-is
-ii
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(58,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aP
-aP
-bs
-bG
-bZ
-bZ
-bZ
-bZ
-cM
-cQ
-dc
-dc
-dc
-dc
-dc
-dc
-bE
-ei
-ei
-kH
-eL
-eT
-ek
-ei
-fE
-er
-dc
-gb
-df
-ds
-gb
-df
-ds
-dc
-fB
-hl
-iS
-hP
-fB
-ii
-ii
-ii
-ii
-ii
-ii
-ii
-ii
-gZ
-gZ
-iY
-gZ
-iY
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(59,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aP
-aP
-aa
-bs
-bG
-bZ
-bX
-bZ
-bZ
-cM
-cQ
-dc
-df
-ds
-df
-ds
-dc
-bE
-hB
-hE
-kI
-eM
-eU
-ek
-ei
-ei
-er
-dc
-dc
-dc
-dc
-dc
-dc
-dc
-dc
-fB
-hl
-iS
-hQ
-fB
-ii
-ii
-ii
-ii
-ii
-ii
-ii
-ii
-fB
-iO
-kh
-jf
-kh
-gF
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(60,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aP
-ab
-aP
-aP
-bs
-bG
-ca
-bZ
-bZ
-bZ
-cM
-cQ
-dc
-dc
-dc
-dc
-dc
-dc
-bE
-ei
-ei
-kH
-ek
-ek
-ek
-ei
-ei
-er
-dc
-gc
-dc
-kA
-dc
-gJ
-dc
-dc
-fB
-hm
-iS
-hR
-fB
-ij
-ii
-it
-ii
-ii
-ii
-it
-ii
-fB
-jW
-kj
-kG
-kV
-js
-jz
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(61,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aP
-aP
-aP
-aa
-aa
-bs
-bG
-bZ
-bZ
-bZ
-bZ
-cM
-cQ
-dc
-df
-ds
-df
-ds
-dc
-bE
-ej
-ex
-eN
-eZ
-fb
-ev
-ex
-fF
-er
-dc
-gc
-dc
-gu
-dc
-gK
-dc
-dc
-fB
-hl
-iS
-hS
-fB
-ii
-ii
-fB
-io
-fB
-io
-fB
-io
-fB
-jR
-ki
-ki
-ki
-ki
-ki
-jB
-gZ
-gZ
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(62,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-aP
-aP
-aP
-aP
-aP
-aP
-aa
-aP
-aa
-aa
-bs
-bH
-bW
-bW
-cs
-cC
-cC
-cR
-dd
-dc
-dc
-dc
-dc
-dc
-bE
-ei
-ei
-kH
-eM
-eU
-ek
-ei
-fi
-bE
-dc
-dc
-dc
-dc
-dc
-dc
-dc
-dc
-fB
-hl
-iS
-hT
-fB
-ik
-ii
-fB
-iz
-fB
-iD
-fB
-iK
-fB
-gm
-fL
-fL
-fL
-fL
-fL
-fL
-fL
-fL
-fL
-gZ
-aa
-aa
-aa
-aa
-aa
-jP
-jP
-jP
-jP
-jP
-jP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(63,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ak
-ar
-ae
-aC
-ae
-aM
-aN
-ab
-ab
-ab
-ab
-ac
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-as
-as
-as
-as
-as
-as
-as
-as
-as
-as
-as
-as
-as
-as
-eg
-ei
-kH
-ek
-ek
-ek
-ei
-fi
-bE
-bE
-gh
-gC
-gC
-gB
-bE
-gO
-bE
-fB
-hn
-iT
-fB
-fB
-fB
-io
-fB
-fB
-fB
-fB
-fB
-fB
-fB
-jY
-fH
-kJ
-fH
-fH
-fH
-kZ
-la
-fL
-jI
-gZ
-jP
-aa
-aa
-aa
-jP
-jP
-jT
-jT
-jT
-jT
-jP
-jP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(64,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ah
-ah
-ah
-ax
-ah
-ax
-ah
-ah
-ah
-ab
-aT
-aF
-aF
-aX
-bd
-aF
-aF
-as
-br
-br
-bI
-br
-br
-br
-br
-br
-cS
-br
-br
-aF
-aF
-aF
-aF
-as
-ei
-ei
-kH
-eL
-eT
-ek
-ei
-fi
-fB
-fL
-gm
-fL
-fL
-gm
-fL
-fD
-fL
-fB
-fD
-iZ
-hU
-hU
-hU
-hU
-iu
-hU
-hU
-iE
-hU
-hU
-fB
-gP
-fD
-fB
-fD
-fD
-jA
-et
-lb
-fL
-jJ
-gZ
-jP
-jU
-jU
-jU
-jP
-jT
-jT
-kc
-kc
-jT
-ks
-jP
-jP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(65,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ad
-ah
-ah
-ah
-ah
-aD
-ah
-ah
-ah
-ah
-ab
-aF
-aF
-ah
-ah
-ah
-ah
-hx
-as
-br
-bx
-bJ
-cb
-br
-ct
-cD
-cL
-bx
-bJ
-br
-aF
-dB
-dB
-dB
-as
-ei
-ei
-kH
-eM
-eU
-fe
-ex
-fG
-fH
-fH
-gk
-fD
-fD
-gP
-fD
-fD
-fD
-fB
-fD
-iZ
-hU
-if
-if
-if
-if
-if
-if
-if
-if
-hU
-fB
-gP
-fD
-fB
-jn
-jt
-fD
-jD
-gP
-fL
-fL
-gZ
-jQ
-jS
-jS
-jV
-jT
-jT
-kf
-kc
-kc
-kc
-jT
-kt
-jP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(66,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ae
-ai
-ah
-as
-as
-as
-as
-as
-ah
-ah
-ab
-aF
-aF
-ah
-ah
-be
-ah
-hy
-as
-br
-by
-bK
-cc
-br
-ct
-cD
-br
-by
-bK
-br
-aF
-dB
-dB
-dB
-as
-ei
-ei
-kH
-ek
-ek
-ff
-ei
-ek
-fD
-fD
-fD
-fD
-fD
-gQ
-fH
-gW
-fH
-hr
-fH
-jb
-hU
-hU
-hU
-hU
-hU
-hU
-hU
-hU
-hU
-jN
-hr
-jZ
-fD
-ji
-hl
-ju
-fD
-fD
-gQ
-fH
-fH
-lc
-ld
-ld
-ld
-le
-lg
-kb
-lj
-ln
-km
-kp
-kc
-kc
-lw
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(67,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-af
-ah
-ah
-as
-ay
-aE
-aJ
-as
-ah
-ah
-aQ
-ah
-ah
-ah
-aY
-bf
-ah
-hy
-as
-br
-br
-br
-br
-br
-br
-br
-br
-br
-br
-br
-aF
-aF
-aF
-aF
-as
-ei
-ei
-kH
-eL
-eT
-ff
-ei
-ei
-fB
-fL
-fL
-fL
-fL
-fL
-fL
-gm
-fL
-fB
-fD
-ja
-fH
-fH
-fH
-fH
-fH
-fH
-fH
-fH
-fH
-gk
-fB
-gP
-fD
-fB
-kx
-ju
-fD
-fD
-fD
-fD
-lz
-gZ
-jS
-jS
-jS
-jV
-lf
-jT
-kc
-lm
-kn
-kq
-kc
-kc
-lw
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(68,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ae
-ah
-am
-at
-az
-aF
-aK
-as
-aO
-aV
-aZ
-bg
-bg
-bp
-eB
-eE
-aV
-hz
-hA
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-hC
-hE
-kK
-kQ
-kR
-fh
-hE
-hE
-kT
-kU
-kU
-kU
-kU
-kU
-kU
-ha
-kU
-kT
-kW
-jc
-kW
-kW
-kW
-kW
-kW
-kW
-kW
-kW
-kW
-kW
-kT
-ka
-kW
-kT
-lx
-ly
-kW
-kW
-kW
-kW
-lA
-lB
-lC
-lC
-lC
-lD
-lh
-lF
-lG
-kl
-ko
-kr
-kc
-kc
-lw
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(69,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ae
-ah
-al
-as
-aA
-aF
-aF
-as
-ah
-ah
-ab
-aF
-aU
-ao
-ba
-bh
-bk
-ao
-bq
-ao
-ao
-ao
-ao
-ao
-ao
-cF
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ev
-ex
-eN
-ev
-ev
-fg
-ei
-ek
-fD
-fD
-fD
-fD
-fD
-fD
-fD
-gP
-fD
-hb
-fD
-iZ
-hU
-hU
-hU
-hU
-hU
-hU
-hU
-hU
-hU
-hU
-hb
-gP
-fD
-ji
-hl
-ju
-fD
-fD
-fD
-fD
-fD
-jO
-jT
-jT
-jT
-jX
-lf
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-lw
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(70,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ag
-ai
-an
-as
-aB
-aG
-aL
-as
-am
-ao
-aR
-ao
-au
-ah
-bb
-bi
-bl
-aF
-as
-br
-br
-br
-br
-ah
-cu
-an
-br
-br
-br
-br
-aF
-aF
-aF
-aF
-as
-ei
-ei
-kH
-eL
-eT
-ff
-ei
-ek
-fD
-fD
-fD
-fD
-fD
-fD
-fD
-gP
-fD
-fB
-fD
-iZ
-hU
-if
-if
-if
-if
-if
-if
-if
-if
-hU
-fB
-gP
-fD
-fB
-jo
-jv
-fD
-jE
-fD
-fL
-fL
-gZ
-jQ
-jS
-jS
-jV
-li
-ld
-ll
-kc
-kc
-kc
-jT
-jT
-jP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(71,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ae
-ah
-an
-as
-as
-as
-as
-as
-an
-ah
-ab
-aF
-aF
-ah
-ah
-ah
-ah
-aF
-as
-br
-bx
-bJ
-br
-ah
-ah
-an
-br
-bx
-bJ
-br
-aF
-dB
-dB
-dB
-as
-ei
-ei
-kH
-eM
-eU
-ff
-ei
-ei
-fB
-fM
-fL
-fL
-gv
-fL
-fL
-gP
-fL
-fB
-fD
-iZ
-hU
-hU
-hU
-hU
-iv
-hU
-hU
-hU
-hU
-hU
-fB
-gP
-fD
-fB
-fD
-fD
-jA
-et
-jH
-fL
-jK
-gZ
-jP
-jU
-jU
-jU
-jP
-ke
-lk
-kc
-kc
-jT
-ks
-jP
-jP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(72,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ah
-ah
-ap
-av
-ao
-aH
-ao
-ao
-au
-ah
-ab
-aF
-aF
-ah
-ah
-ah
-ah
-bn
-as
-iB
-by
-bK
-br
-ah
-cu
-an
-br
-by
-bK
-br
-aF
-dB
-dB
-dB
-as
-ei
-ei
-kH
-ek
-ek
-ff
-ei
-ei
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-hh
-bE
-fB
-hk
-iR
-fB
-fB
-fB
-io
-fB
-fB
-fB
-fB
-fB
-fB
-fB
-gP
-fD
-jj
-fD
-fD
-fD
-jD
-fD
-fL
-jL
-gZ
-jP
-aa
-aa
-aa
-jP
-jP
-jT
-jT
-jT
-jT
-jP
-jP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(73,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-aj
-ao
-au
-vq
-ah
-vq
-ah
-ah
-ah
-ab
-as
-aF
-aW
-bc
-bj
-bm
-bo
-as
-br
-br
-bL
-br
-ah
-ah
-an
-br
-bL
-br
-br
-aF
-aF
-aF
-aF
-as
-ei
-ei
-kF
-eO
-ei
-fi
-ei
-ei
-bE
-fN
-gg
-gg
-gw
-gg
-gg
-hg
-gg
-fB
-hl
-iS
-hV
-fB
-ii
-ii
-fB
-iA
-fB
-iA
-fB
-iA
-fB
-gm
-fL
-fL
-fL
-fL
-fL
-fL
-fL
-fL
-fL
-gZ
-aa
-aa
-aa
-aa
-aa
-jP
-jP
-jP
-jP
-jP
-jP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(74,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-aq
-aw
-ae
-aI
-ae
-ak
-af
-ab
-ab
-ab
-ab
-ac
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-as
-ab
-ck
-ab
-cG
-ab
-as
-as
-as
-as
-as
-as
-as
-as
-bE
-bE
-kM
-bE
-fc
-fk
-bE
-bE
-bE
-fX
-gp
-gD
-gD
-gD
-gD
-hj
-gg
-fB
-hl
-iS
-hW
-fB
-ii
-ii
-fB
-io
-fB
-io
-fB
-io
-fB
-kg
-ku
-ku
-ku
-ku
-ku
-jB
-gZ
-gZ
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(75,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ab
-aP
-aP
-aP
-aP
-aP
-aP
-aa
-aP
-aa
-aa
-ab
-bM
-cd
-cl
-cd
-bO
-cd
-cT
-as
-dh
-dt
-dt
-dt
-dt
-dt
-em
-bE
-kL
-eC
-eC
-fj
-eC
-eC
-bE
-fP
-gi
-gg
-gg
-dg
-gL
-gG
-gL
-fB
-hm
-iS
-hX
-fB
-ij
-ii
-iw
-ii
-ii
-ii
-iw
-ii
-fB
-kd
-kk
-kS
-kY
-jw
-jz
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(76,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aP
-aP
-aP
-aa
-aa
-ab
-bP
-cf
-cq
-cf
-cI
-cl
-cd
-as
-di
-du
-dv
-du
-dv
-du
-en
-bE
-kL
-eC
-eC
-fj
-fo
-eC
-bE
-bz
-gj
-gg
-gg
-gE
-gL
-gG
-gL
-fB
-hl
-iS
-hY
-fB
-ii
-ii
-ii
-ii
-ii
-ii
-ii
-ii
-fB
-iU
-kz
-jl
-kz
-jx
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(77,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aP
-ab
-aP
-aP
-ab
-bO
-cd
-cn
-cd
-cl
-cd
-cl
-as
-dj
-dv
-dv
-dv
-dv
-dv
-en
-bE
-kL
-eC
-eC
-fj
-fp
-eC
-bE
-bz
-gg
-gg
-gg
-gG
-gL
-gT
-gL
-fB
-hl
-iS
-hZ
-fB
-ii
-ii
-ii
-ii
-ii
-ii
-ii
-ii
-gZ
-gZ
-je
-gZ
-jq
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(78,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aP
-aP
-aa
-ab
-bR
-as
-as
-cv
-cH
-cl
-cU
-as
-dk
-jM
-dv
-dv
-dv
-dv
-en
-bE
-kO
-eP
-eX
-fj
-fq
-eC
-bE
-kv
-cA
-cA
-cA
-cA
-cA
-cA
-cA
-fB
-ho
-jd
-hn
-fB
-ii
-ii
-jG
-ii
-jG
-ii
-jG
-ii
-gZ
-aa
-aa
-aa
-aa
-jy
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(79,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aP
-aP
-ab
-bQ
-as
-co
-cw
-as
-cd
-cV
-as
-di
-du
-dv
-du
-dv
-dv
-en
-bE
-kN
-eC
-eC
-fj
-eC
-fA
-bE
-fY
-dv
-fY
-dv
-gR
-dv
-gU
-bs
-gZ
-gZ
-iQ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(80,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aP
-ab
-bU
-ci
-ci
-cz
-ci
-ci
-cW
-as
-di
-dv
-dv
-dI
-dv
-dV
-en
-bE
-kP
-eC
-eD
-fv
-eX
-eC
-bE
-gd
-gq
-gH
-gM
-gd
-gS
-bs
-bs
-gZ
-hD
-jg
-hO
-gZ
-aa
-aa
-aa
-aa
-aa
-aP
-aa
-aP
-aP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(81,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-bT
-bT
-bT
-bT
-bT
-cg
-bT
-as
-di
-dv
-dv
-dv
-dv
-dv
-dv
-ew
-eC
-eC
-eC
-fj
-eC
-eC
-bE
-fS
-dv
-dv
-dv
-fU
-bs
-bs
-aP
-gZ
-gZ
-iQ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(82,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-bT
-cg
-bT
-bT
-bS
-bT
-bT
-as
-dj
-dv
-dC
-dJ
-dL
-dv
-dv
-ew
-eC
-eC
-eC
-fj
-eC
-eC
-bE
-fT
-dv
-dv
-gy
-bs
-bs
-aP
-aa
-gZ
-hp
-jk
-ia
-hp
-hl
-hl
-hp
-ia
-hl
-hl
-gZ
-iJ
-iJ
-iN
-iV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(83,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ch
-cp
-cy
-cp
-ch
-ab
-ab
-di
-dv
-dD
-dK
-dN
-dW
-eo
-bE
-eC
-eC
-eC
-fj
-eC
-eC
-bE
-dv
-dv
-fU
-bs
-bs
-aP
-aa
-aa
-gZ
-hF
-jh
-ib
-hp
-hp
-hp
-hp
-hl
-hl
-hp
-iG
-iJ
-kD
-iN
-iW
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(84,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-bs
-dl
-dw
-dw
-dw
-dP
-dw
-ep
-bE
-eF
-eF
-eF
-fx
-eF
-eF
-bE
-dv
-dv
-bs
-bs
-aP
-aa
-aa
-aa
-gZ
-hM
-lp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-hp
-gZ
-iI
-iJ
-iN
-iW
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(85,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bs
-bE
-bE
-dE
-bE
-dO
-bE
-bE
-bE
-eG
-eG
-eG
-fw
-eG
-eG
-bE
-fU
-bs
-bs
-aP
-aa
-aa
-aa
-aa
-gZ
-hJ
-lo
-lq
-lr
-lt
-lv
-hp
-hp
-hp
-hp
-gZ
-iM
-iJ
-iN
-iX
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(86,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bs
-dm
-dm
-dm
-dm
-dT
-dX
-dX
-bE
-eG
-eG
-eG
-fw
-eG
-eG
-bE
-bs
-bs
-aP
-aa
-aa
-aa
-aa
-aa
-gZ
-ic
-hK
-hc
-ls
-hc
-ls
-hc
-hp
-hl
-iF
-gZ
-gZ
-gZ
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(87,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bs
-dm
-dm
-ky
-dm
-dQ
-ee
-ee
-ey
-eV
-eV
-eV
-fy
-eG
-eG
-bs
-bs
-aP
-aa
-aa
-aa
-aa
-aa
-aa
-gZ
-hu
-hc
-hc
-hc
-hc
-hc
-hc
-hl
-hp
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(88,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bs
-dn
-dm
-dm
-dm
-dm
-dm
-dm
-bE
-eG
-eQ
-eY
-fl
-fr
-bs
-bs
-aP
-aP
-aP
-aP
-aP
-aP
-aP
-aP
-gZ
-hc
-hK
-hc
-hK
-hc
-hK
-hc
-hp
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(89,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bs
-bs
-dm
-dF
-dm
-dR
-dR
-eq
-bs
-bs
-bs
-bs
-bs
-bs
-bs
-aP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-gZ
-hc
-hc
-hc
-hc
-hc
-hc
-hc
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(90,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bs
-bs
-bs
-bs
-bs
-bs
-bs
-bs
-bs
-aP
-aP
-aP
-aP
-aP
-aP
-aP
-aP
-aP
-aP
-aP
-aP
-aP
-aP
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-gZ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(91,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(92,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(93,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(94,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(95,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(96,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(97,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(98,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(99,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(100,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(101,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(102,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(103,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(104,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(105,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(106,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(107,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(108,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(109,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(110,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(111,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(112,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(113,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(114,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(115,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(116,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(117,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(118,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(119,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(120,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(121,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(122,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(123,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(124,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(125,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(126,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(127,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(128,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/space,
+/area/space)
+"ab" = (
+/turf/simulated/wall/r_wall,
+/area/awaymission/academy/headmaster)
+"ac" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/headmaster)
+"ad" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"ae" = (
+/obj/structure/computerframe{
+ anchored = 1
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"af" = (
+/obj/structure/table/reinforced,
+/obj/item/pen/red,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"ag" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/blue,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"ah" = (
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"ai" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"aj" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/noalarm{
+ dir = 1;
+ environ = 0;
+ equipment = 3;
+ locked = 0;
+ req_access = ""
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"ak" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"al" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"am" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"an" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"ao" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"ap" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"aq" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/drinks/coffee,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"ar" = (
+/obj/structure/table/reinforced,
+/obj/item/paper{
+ info = "We're upgrading to the latest mainframes for our consoles, the shipment should be in before spring break is over!";
+ name = "Console Maintenance"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"as" = (
+/turf/simulated/wall,
+/area/awaymission/academy/headmaster)
+"at" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/mineral_door/gold,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"au" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"av" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"aw" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"ax" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"ay" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/closet/wardrobe/black,
+/obj/item/clothing/accessory/necklace,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/head/fedora/whitefedora,
+/obj/item/clothing/suit/blacktrenchcoat,
+/obj/item/clothing/suit/leathercoat,
+/obj/item/coin/iron,
+/obj/item/coin/iron,
+/turf/simulated/floor/noslip,
+/area/awaymission/academy/headmaster)
+"az" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/item/stack/sheet/animalhide/monkey,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark";
+ tag = "icon-dark"
+ },
+/area/awaymission/academy/headmaster)
+"aA" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/mirror{
+ pixel_y = 28
+ },
+/turf/simulated/floor/noslip,
+/area/awaymission/academy/headmaster)
+"aB" = (
+/obj/structure/bed,
+/obj/item/bedsheet/purple,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark";
+ tag = "icon-dark"
+ },
+/area/awaymission/academy/headmaster)
+"aC" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/drinks/tea,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"aD" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"aE" = (
+/obj/structure/filingcabinet,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark";
+ tag = "icon-dark"
+ },
+/area/awaymission/academy/headmaster)
+"aF" = (
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"aG" = (
+/obj/structure/safe/floor,
+/obj/item/documents/syndicate/red,
+/obj/item/coin/gold,
+/obj/item/melee/cultblade,
+/turf/simulated/floor/noslip,
+/area/awaymission/academy/headmaster)
+"aH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"aI" = (
+/obj/structure/table/reinforced,
+/obj/item/laser_pointer/upgraded,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"aJ" = (
+/obj/structure/cult/archives,
+/obj/item/twohanded/staff,
+/obj/item/spellbook/oneuse/charge,
+/turf/simulated/floor/noslip,
+/area/awaymission/academy/headmaster)
+"aK" = (
+/obj/structure/chair/wood/wings{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark";
+ tag = "icon-dark"
+ },
+/area/awaymission/academy/headmaster)
+"aL" = (
+/obj/item/clothing/suit/space/hardsuit/shielded/wizard,
+/obj/structure/table/wood,
+/obj/item/stack/sheet/mineral/silver{
+ amount = 20
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark";
+ tag = "icon-dark"
+ },
+/area/awaymission/academy/headmaster)
+"aM" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/briefcase,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"aN" = (
+/obj/structure/table/reinforced,
+/obj/item/coin/plasma,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"aO" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"aP" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"aQ" = (
+/obj/machinery/door/airlock/gold{
+ locked = 1
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"aR" = (
+/obj/machinery/door/airlock/gold{
+ locked = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"aS" = (
+/turf/simulated/mineral/random/high_chance,
+/area/awaymission/academy)
+"aU" = (
+/obj/effect/decal/remains/human,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark";
+ tag = "icon-dark"
+ },
+/area/awaymission/academy/headmaster)
+"aV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"aW" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"aX" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"aY" = (
+/obj/item/paper_bin,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"aZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/wall/r_wall,
+/area/awaymission/academy/headmaster)
+"ba" = (
+/obj/structure/table/wood,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/pen/red,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"bb" = (
+/obj/structure/table/wood,
+/obj/item/twohanded/staff,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"bc" = (
+/obj/structure/table/wood,
+/obj/item/hand_labeler,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"bd" = (
+/obj/structure/table/wood,
+/obj/item/pen/invisible,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"be" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"bf" = (
+/obj/item/pen/red,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"bg" = (
+/turf/simulated/floor/noslip,
+/area/awaymission/academy/headmaster)
+"bh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/dice/d20,
+/obj/structure/table/wood,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"bi" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/tea,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"bj" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"bk" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"bl" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"bm" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"bn" = (
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"bo" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"bp" = (
+/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"bq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/gold,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"br" = (
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/headmaster)
+"bs" = (
+/turf/simulated/wall/r_wall,
+/area/awaymission/academy/classrooms)
+"bt" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "AcademyAuto"
+ },
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"bu" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "AcademyAuto"
+ },
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"bv" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "AcademyAuto"
+ },
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"bw" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "AcademyAuto"
+ },
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"bx" = (
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"by" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"bz" = (
+/mob/living/simple_animal/hostile/mimic/crate,
+/turf/simulated/floor/plasteel{
+ icon_state = "vault";
+ tag = "icon-vault"
+ },
+/area/awaymission/academy/classrooms)
+"bA" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "AcademyAuto"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"bB" = (
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"bC" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"bD" = (
+/obj/machinery/door_control{
+ id = "AcademyAuto";
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"bE" = (
+/turf/simulated/wall,
+/area/awaymission/academy/classrooms)
+"bF" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc2";
+ tag = "icon-swallc2"
+ },
+/area/awaymission/academy/classrooms)
+"bG" = (
+/turf/simulated/shuttle/wall{
+ dir = 2;
+ icon_state = "swall12";
+ tag = "icon-swall12"
+ },
+/area/awaymission/academy/classrooms)
+"bH" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc1";
+ tag = "icon-swallc1"
+ },
+/area/awaymission/academy/classrooms)
+"bI" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"bJ" = (
+/obj/item/stack/sheet/metal{
+ pixel_y = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"bK" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"bL" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/headmaster)
+"bM" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/headmaster)
+"bN" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"bO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/headmaster)
+"bP" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/item/stack/sheet/metal{
+ pixel_x = -10;
+ pixel_y = -6
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light_construct{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/awaymission/academy/headmaster)
+"bQ" = (
+/obj/effect/decal/cleanable/cobweb2,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/headmaster)
+"bR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/stack/sheet/metal{
+ pixel_x = -11
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/awaymission/academy/headmaster)
+"bS" = (
+/obj/effect/landmark{
+ name = "awaystart"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/awaymission/academy/headmaster)
+"bT" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/awaymission/academy/headmaster)
+"bU" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/headmaster)
+"bV" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"bW" = (
+/turf/simulated/shuttle/wall{
+ dir = 2;
+ icon_state = "swall3";
+ tag = "icon-swall3"
+ },
+/area/awaymission/academy/classrooms)
+"bX" = (
+/obj/structure/table/reinforced,
+/obj/item/wrench,
+/obj/item/storage/belt/utility,
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
+ },
+/area/awaymission/academy/classrooms)
+"bY" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty{
+ amount = 10
+ },
+/obj/item/stack/sheet/metal/fifty{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"bZ" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/stack/sheet/glass/fifty{
+ amount = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
+ },
+/area/awaymission/academy/classrooms)
+"ca" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
+ },
+/area/awaymission/academy/classrooms)
+"cb" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/headmaster)
+"cc" = (
+/obj/structure/table,
+/obj/item/lighter/random,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/headmaster)
+"cd" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/awaymission/academy/headmaster)
+"ce" = (
+/obj/machinery/autolathe,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"cf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/headmaster)
+"cg" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/awaymission/academy/headmaster)
+"ch" = (
+/obj/structure/chair/stool,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/awaymission/academy/headmaster)
+"ci" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/headmaster)
+"cj" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"ck" = (
+/obj/machinery/door/airlock/plasma,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"cl" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/headmaster)
+"cm" = (
+/obj/structure/table,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/toolbox/fakesyndi,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"cn" = (
+/obj/machinery/computer/area_atmos/area,
+/obj/machinery/light_construct{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/headmaster)
+"co" = (
+/obj/machinery/portable_atmospherics/scrubber/huge/stationary,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/headmaster)
+"cp" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/awaymission/academy/headmaster)
+"cq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/awaymission/academy/headmaster)
+"cr" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"cs" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall1";
+ tag = "icon-swall1"
+ },
+/area/awaymission/academy/classrooms)
+"ct" = (
+/obj/structure/chair,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/headmaster)
+"cu" = (
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/headmaster)
+"cv" = (
+/obj/machinery/door/window{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/headmaster)
+"cw" = (
+/turf/simulated/floor/plating,
+/area/awaymission/academy/headmaster)
+"cx" = (
+/obj/structure/table,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/pen/red,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"cy" = (
+/obj/structure/table,
+/obj/item/katana,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/awaymission/academy/headmaster)
+"cz" = (
+/obj/machinery/door/window{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/headmaster)
+"cA" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/awaymission/academy/classrooms)
+"cB" = (
+/obj/machinery/constructable_frame/machine_frame,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"cD" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/pill/patch/nicotine,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/headmaster)
+"cE" = (
+/obj/structure/table,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/stack/cable_coil/random,
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"cF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"cG" = (
+/obj/machinery/door/airlock/plasma,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"cH" = (
+/obj/structure/sign/nosmoking_1,
+/turf/simulated/wall,
+/area/awaymission/academy/headmaster)
+"cI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/awaymission/academy/headmaster)
+"cJ" = (
+/obj/item/stack/sheet/metal,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"cK" = (
+/obj/structure/table,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/storage/wallet/random,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"cL" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"cM" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
+ },
+/area/awaymission/academy/classrooms)
+"cN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"cO" = (
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"cP" = (
+/obj/structure/table/reinforced,
+/obj/item/stock_parts/cell/high,
+/obj/machinery/cell_charger,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"cQ" = (
+/obj/structure/chair/office/light{
+ dir = 1;
+ pixel_y = 3
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"cR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"cS" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/headmaster)
+"cT" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/pump,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault";
+ tag = "icon-vault (WEST)"
+ },
+/area/awaymission/academy/headmaster)
+"cU" = (
+/obj/structure/closet/crate/internals,
+/obj/item/tank/oxygen,
+/obj/item/tank/oxygen/red,
+/obj/item/reagent_containers/food/pill/patch/silver_sulf,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault";
+ tag = "icon-vault (WEST)"
+ },
+/area/awaymission/academy/headmaster)
+"cV" = (
+/obj/structure/closet/crate,
+/obj/item/crowbar/red,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault";
+ tag = "icon-vault (WEST)"
+ },
+/area/awaymission/academy/headmaster)
+"cW" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/headmaster)
+"cX" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"cY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"cZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"da" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"db" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"dc" = (
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"dd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"de" = (
+/turf/simulated/floor/greengrid,
+/area/awaymission/academy/classrooms)
+"df" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"dg" = (
+/obj/structure/table,
+/obj/item/paper{
+ info = "Grade: A+ Educator's Notes: Excellent form.";
+ name = "Summoning Midterm Exam"
+ },
+/obj/item/gun/projectile/shotgun/toy/tommygun,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"dh" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/hydroponics_pod_people,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"di" = (
+/obj/structure/closet/secure_closet/hydroponics{
+ locked = 0
+ },
+/obj/item/clothing/glasses/hud/hydroponic,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/clothing/under/rank/hydroponics,
+/obj/item/circuitboard/hydroponics,
+/obj/item/hatchet/wooden,
+/obj/item/plant_analyzer,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"dj" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/hydroponics{
+ locked = 0
+ },
+/obj/item/clothing/glasses/hud/hydroponic,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/clothing/under/rank/hydroponics,
+/obj/item/circuitboard/hydroponics,
+/obj/item/hatchet/wooden,
+/obj/item/plant_analyzer,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"dk" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/obj/item/reagent_containers/glass/bucket,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"dl" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"dm" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"dn" = (
+/obj/machinery/gibber,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/awaymission/academy/classrooms)
+"do" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"dp" = (
+/turf/simulated/floor/mech_bay_recharge_floor,
+/area/awaymission/academy/classrooms)
+"dq" = (
+/obj/machinery/mech_bay_recharge_port,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"dr" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"ds" = (
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"dt" = (
+/obj/structure/table/wood,
+/obj/item/seeds/ambrosia/gaia{
+ pixel_x = -4;
+ pixel_y = 6;
+ potency = 95
+ },
+/obj/item/seeds/ambrosia/gaia{
+ pixel_x = -5;
+ pixel_y = -3;
+ potency = 95
+ },
+/obj/item/seeds/ambrosia/gaia{
+ pixel_x = 6;
+ pixel_y = 6;
+ potency = 95
+ },
+/obj/item/seeds/ambrosia/gaia{
+ pixel_x = -7;
+ pixel_y = 6;
+ potency = 95
+ },
+/obj/item/seeds/ambrosia/gaia{
+ pixel_y = 6;
+ potency = 95
+ },
+/obj/item/seeds/ambrosia/gaia{
+ pixel_x = -5;
+ potency = 95
+ },
+/obj/item/seeds/ambrosia/gaia{
+ pixel_x = 4;
+ potency = 95
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"du" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"dv" = (
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"dw" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"dx" = (
+/obj/machinery/computer/mech_bay_power_console,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/greengrid,
+/area/awaymission/academy/classrooms)
+"dy" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/greengrid,
+/area/awaymission/academy/classrooms)
+"dz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/item/weldingtool,
+/turf/simulated/floor/greengrid,
+/area/awaymission/academy/classrooms)
+"dA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"dB" = (
+/obj/item/grown/sunflower,
+/obj/effect/decal/straw/light,
+/turf/simulated/floor/grass,
+/area/awaymission/academy/headmaster)
+"dC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"dD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/headmaster)
+"dE" = (
+/obj/machinery/door/airlock/freezer,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"dF" = (
+/obj/machinery/chem_master/condimaster,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/awaymission/academy/classrooms)
+"dG" = (
+/obj/machinery/mech_bay_recharge_port,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"dH" = (
+/obj/machinery/computer/mech_bay_power_console,
+/obj/structure/cable,
+/turf/simulated/floor/greengrid,
+/area/awaymission/academy/classrooms)
+"dI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/pda/botanist,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/classrooms)
+"dK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/headmaster)
+"dL" = (
+/obj/machinery/hydroponics/constructable,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"dM" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"dN" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"dO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/wall,
+/area/awaymission/academy/classrooms)
+"dP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/chem_dispenser,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"dQ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/vomit/green,
+/obj/effect/decal/cleanable/blood/writing{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/awaymission/academy/classrooms)
+"dR" = (
+/obj/structure/kitchenspike,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/awaymission/academy/classrooms)
+"dS" = (
+/obj/structure/mineral_door/iron,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"dT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/melee/baseball_bat,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkblue"
+ },
+/area/awaymission/academy/classrooms)
+"dU" = (
+/obj/effect/landmark{
+ name = "awaystart"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"dV" = (
+/obj/effect/decal/straw,
+/turf/simulated/floor/grass,
+/area/awaymission/academy/classrooms)
+"dW" = (
+/obj/structure/cable,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"dX" = (
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/obj/effect/decal/cleanable/vomit{
+ pixel_x = 6;
+ pixel_y = 7
+ },
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/classrooms)
+"dY" = (
+/obj/structure/mineral_door/iron,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"dZ" = (
+/obj/machinery/igniter/on,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"ea" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowcorner"
+ },
+/area/awaymission/academy/classrooms)
+"eb" = (
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plasteel{
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/classrooms)
+"ec" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "yellowcorner"
+ },
+/area/awaymission/academy/classrooms)
+"ed" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/classrooms)
+"ee" = (
+/obj/machinery/door/airlock/freezer,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/blood/writing,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"ef" = (
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/obj/item/paper{
+ name = "Automotive Repair 101"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"eg" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"eh" = (
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/obj/item/paper{
+ name = "Pyromancy 250"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"ei" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"ej" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/noalarm{
+ dir = 1;
+ environ = 3;
+ equipment = 3;
+ locked = 0;
+ req_access = ""
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"ek" = (
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"el" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/classrooms)
+"em" = (
+/obj/machinery/seed_extractor,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "green";
+ tag = "icon-green (SOUTHWEST)"
+ },
+/area/awaymission/academy/classrooms)
+"en" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "green";
+ tag = "icon-green"
+ },
+/area/awaymission/academy/classrooms)
+"eo" = (
+/obj/item/reagent_containers/glass/bucket,
+/obj/machinery/light,
+/obj/effect/decal/cleanable/greenglow,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"ep" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/vending/hydroseeds,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"eq" = (
+/obj/machinery/kitchen_machine/oven,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"er" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"es" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/classrooms)
+"et" = (
+/obj/singularity/academy,
+/turf/space,
+/area/space/nearstation)
+"eu" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/classrooms)
+"ev" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"ew" = (
+/obj/structure/mineral_door/wood,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"ex" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"ey" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/headmaster)
+"ez" = (
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/door/airlock/external,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"eA" = (
+/obj/machinery/door/airlock/public/glass,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"eB" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"eC" = (
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"eD" = (
+/obj/structure/chair,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"eE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/wood,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"eF" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/drinks/drinkingglass/soda,
+/obj/item/reagent_containers/food/drinks/drinkingglass/soda{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass/soda{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass/soda{
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"eG" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"eH" = (
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plating/airless,
+/area/awaymission/academy)
+"eI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/classrooms)
+"eJ" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/classrooms)
+"eK" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/classrooms)
+"eL" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/classrooms)
+"eM" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/classrooms)
+"eN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"eO" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/structure/chair/sofa/left{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"eP" = (
+/obj/structure/table,
+/obj/item/trash/tastybread,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"eQ" = (
+/obj/machinery/processor,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"eR" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/classrooms)
+"eS" = (
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/classrooms)
+"eT" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/classrooms)
+"eU" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/classrooms)
+"eV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"eW" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating/airless,
+/area/awaymission/academy)
+"eX" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"eY" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/kitchen_machine/microwave,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"eZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/classrooms)
+"fa" = (
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"fb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/classrooms)
+"fc" = (
+/obj/structure/mineral_door/wood,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"fd" = (
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plating/airless,
+/area/awaymission/academy)
+"fe" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"ff" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"fg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"fh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"fi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"fj" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"fk" = (
+/obj/structure/mineral_door/wood,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"fl" = (
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"fm" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/classrooms)
+"fn" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/classrooms)
+"fo" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"fp" = (
+/obj/structure/table,
+/obj/item/trash/semki,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"fq" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"fr" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"fs" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "cautioncorner"
+ },
+/area/awaymission/academy/classrooms)
+"ft" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/light_construct,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/classrooms)
+"fu" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellowcorner"
+ },
+/area/awaymission/academy/classrooms)
+"fv" = (
+/obj/structure/table,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/trash/cheesie,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"fw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"fx" = (
+/obj/structure/table/reinforced,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/trash/snack_bowl,
+/obj/item/trash/tray{
+ pixel_x = -1;
+ pixel_y = 11
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"fy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"fz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/noticeboard{
+ pixel_y = -32
+ },
+/obj/item/paper{
+ name = "Biology Lab"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"fA" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"fB" = (
+/turf/simulated/wall,
+/area/awaymission/academy/academyaft)
+"fC" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/classrooms)
+"fD" = (
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"fE" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/table,
+/obj/item/candle,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"fF" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/table,
+/obj/item/cane,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"fG" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/classrooms)
+"fH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"fI" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitehall"
+ },
+/area/awaymission/academy/classrooms)
+"fJ" = (
+/obj/structure/chair,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"fK" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/table/wood,
+/obj/item/camera_film,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"fL" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/academyaft)
+"fM" = (
+/obj/structure/closet/crate/trashcart,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/academyaft)
+"fN" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plasteel{
+ icon_state = "vault";
+ tag = "icon-vault"
+ },
+/area/awaymission/academy/classrooms)
+"fO" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"fP" = (
+/obj/structure/chair,
+/turf/simulated/floor/plasteel{
+ icon_state = "vault";
+ tag = "icon-vault"
+ },
+/area/awaymission/academy/classrooms)
+"fQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitehall"
+ },
+/area/awaymission/academy/classrooms)
+"fR" = (
+/obj/machinery/shieldwallgen,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"fS" = (
+/obj/item/target,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"fT" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"fU" = (
+/obj/structure/target_stake,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"fV" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"fW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitehall"
+ },
+/area/awaymission/academy/classrooms)
+"fX" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "vault";
+ tag = "icon-vault"
+ },
+/area/awaymission/academy/classrooms)
+"fY" = (
+/obj/structure/window/reinforced,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"fZ" = (
+/obj/structure/table,
+/obj/item/pen/red,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"ga" = (
+/obj/structure/table,
+/obj/item/lazarus_injector,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitehall"
+ },
+/area/awaymission/academy/classrooms)
+"gb" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"gc" = (
+/obj/item/clipboard,
+/obj/item/clipboard{
+ pixel_x = -5
+ },
+/obj/item/phone,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"gd" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/east,
+/obj/item/rcd,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"ge" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"gf" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitehall"
+ },
+/area/awaymission/academy/classrooms)
+"gg" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"gh" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"gi" = (
+/obj/structure/table/reinforced,
+/obj/item/pen/red,
+/obj/item/megaphone{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"gj" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/belt/security,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"gk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"gl" = (
+/obj/item/storage/box/monkeycubes,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"gm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/academyaft)
+"gn" = (
+/obj/structure/table,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"go" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitehall"
+ },
+/area/awaymission/academy/classrooms)
+"gp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/recharger,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"gq" = (
+/obj/machinery/door/window{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/east,
+/obj/item/rcd_ammo,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"gr" = (
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"gs" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitehall"
+ },
+/area/awaymission/academy/classrooms)
+"gt" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
+ },
+/obj/structure/table/wood,
+/obj/item/storage/pill_bottle/random_drug_bottle,
+/obj/item/storage/pill_bottle/random_drug_bottle{
+ pixel_x = 9;
+ pixel_y = 6
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"gu" = (
+/obj/structure/bookcase,
+/obj/item/book/manual/medical_cloning,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"gv" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/academyaft)
+"gw" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"gx" = (
+/obj/machinery/door/window{
+ dir = 4
+ },
+/obj/machinery/door/window{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"gy" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"gz" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"gA" = (
+/obj/structure/table,
+/obj/item/scalpel,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"gB" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable,
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"gC" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"gD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"gE" = (
+/obj/structure/table,
+/obj/item/paper{
+ info = "Grade: B- Educator's Notes: Keep applying yourself, you're showing improvement.";
+ name = "Summoning Midterm Exam"
+ },
+/obj/item/gun/projectile/shotgun/toy/tommygun,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"gF" = (
+/obj/structure/window/reinforced,
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/trophy/gold_cup,
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/awaymission/academy/academyaft)
+"gG" = (
+/obj/structure/table,
+/obj/item/restraints/handcuffs,
+/obj/item/crowbar,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"gH" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/mineral/gold{
+ amount = 5
+ },
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"gI" = (
+/mob/living/simple_animal/hostile/bear,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"gJ" = (
+/obj/structure/bookcase,
+/obj/item/book/manual/hydroponics_pod_people,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"gK" = (
+/obj/structure/bookcase,
+/obj/item/book/manual/barman_recipes,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"gL" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"gM" = (
+/obj/machinery/door/window{
+ dir = 4
+ },
+/obj/item/ammo_casing,
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"gN" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/mob/living/simple_animal/hostile/bear,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"gO" = (
+/obj/structure/mineral_door/iron,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"gP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"gQ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"gR" = (
+/obj/structure/window/reinforced,
+/obj/item/ammo_casing,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"gS" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"gT" = (
+/obj/structure/table,
+/obj/item/gun/energy/floragun,
+/obj/item/paper{
+ info = "Grade: D- Educator's Notes: SEE ME AFTER CLASS.";
+ name = "Summoning Midterm Exam"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"gU" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/glass,
+/obj/item/target,
+/obj/item/target,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"gV" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"gW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"gX" = (
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "whitehall"
+ },
+/area/awaymission/academy/classrooms)
+"gY" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "whitehall"
+ },
+/area/awaymission/academy/classrooms)
+"gZ" = (
+/turf/simulated/wall/r_wall,
+/area/awaymission/academy/academyaft)
+"ha" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/academyaft)
+"hb" = (
+/obj/structure/mineral_door/wood,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"hc" = (
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"hd" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"he" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"hf" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"hg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"hh" = (
+/obj/machinery/door/airlock/gold{
+ locked = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"hi" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/noalarm{
+ dir = 1;
+ environ = 3;
+ equipment = 3;
+ locked = 0;
+ req_access = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"hj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"hl" = (
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"hm" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"hn" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "green";
+ tag = "icon-green (EAST)"
+ },
+/area/awaymission/academy/academyaft)
+"ho" = (
+/obj/item/crowbar/red,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"hp" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"hq" = (
+/obj/machinery/shieldwallgen,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"hr" = (
+/obj/structure/mineral_door/wood,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"hs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"ht" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"hu" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"hv" = (
+/obj/machinery/power/smes/magical,
+/obj/structure/cable,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"hw" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"hx" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ layer = 2.4;
+ on = 1
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"hy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"hz" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/headmaster)
+"hA" = (
+/obj/machinery/door/airlock/gold,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"hB" = (
+/obj/machinery/atmospherics/unary/vent_pump,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/computer/arcade,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"hC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/classrooms)
+"hD" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"hE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"hF" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"hG" = (
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"hH" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ layer = 2.4;
+ on = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"hI" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"hJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"hK" = (
+/obj/machinery/constructable_frame/machine_frame,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"hL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"hM" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"hN" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"hO" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"hP" = (
+/obj/structure/computerframe,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"hR" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/pill/patch/nicotine{
+ pixel_x = -13
+ },
+/obj/item/reagent_containers/food/pill/patch/nicotine,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/headmaster)
+"hS" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"hT" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"hU" = (
+/turf/simulated/floor/wood,
+/area/awaymission/academy/academyaft)
+"hV" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"hW" = (
+/obj/item/stack/sheet/metal,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/headmaster)
+"hX" = (
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/headmaster)
+"hY" = (
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"hZ" = (
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"ia" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"ib" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"ic" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"id" = (
+/obj/item/stack/cable_coil/random,
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"ie" = (
+/obj/structure/rack,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 50
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"if" = (
+/turf/simulated/floor/grass,
+/area/awaymission/academy/academyaft)
+"ih" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ layer = 2.4;
+ on = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"ii" = (
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"ij" = (
+/obj/structure/closet/secure_closet/hydroponics{
+ locked = 0
+ },
+/obj/item/clothing/glasses/hud/hydroponic,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/clothing/under/rank/hydroponics,
+/obj/item/circuitboard/hydroponics,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/hatchet/wooden,
+/obj/item/plant_analyzer,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"ik" = (
+/obj/structure/table/wood,
+/obj/item/clothing/glasses/hud/hydroponic/night,
+/obj/item/clothing/mask/cigarette/robustgold{
+ pixel_x = 8;
+ pixel_y = 12
+ },
+/obj/item/clothing/mask/cigarette/robustgold{
+ pixel_x = -5;
+ pixel_y = 12
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"im" = (
+/obj/machinery/power/smes/magical,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"in" = (
+/obj/structure/rack,
+/obj/item/clothing/glasses/welding,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"io" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/storage/fancy/cigarettes/cigpack_robust{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/storage/fancy/cigarettes/cigpack_robust{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"ir" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"is" = (
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"it" = (
+/obj/structure/closet/crate/hydroponics/prespawned,
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_x = 5;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_x = 5;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_x = 5;
+ pixel_y = 6
+ },
+/obj/item/clothing/gloves/botanic_leather,
+/obj/item/clothing/gloves/botanic_leather,
+/obj/item/clothing/gloves/botanic_leather,
+/obj/item/cultivator,
+/obj/item/cultivator,
+/obj/item/cultivator,
+/obj/item/shovel/spade,
+/obj/item/watertank,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"iu" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_containers/food/snacks/meat/corgi,
+/obj/item/reagent_containers/food/snacks/meat/corgi,
+/obj/effect/decal/cleanable/cobweb,
+/obj/item/organ/internal/brain,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/awaymission/academy/classrooms)
+"iv" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/item/reagent_containers/food/snacks/meat/corgi,
+/obj/item/reagent_containers/food/snacks/meat/corgi,
+/obj/item/organ/internal/heart,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/awaymission/academy/classrooms)
+"iw" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"ix" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"iz" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"iA" = (
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/classrooms)
+"iB" = (
+/mob/living/simple_animal/hostile/statue,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"iC" = (
+/obj/machinery/power/port_gen/pacman,
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"iD" = (
+/obj/structure/table,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/reagentgrinder{
+ pixel_x = -1;
+ pixel_y = 9
+ },
+/obj/machinery/vending/wallmed{
+ pixel_x = 30
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"iE" = (
+/obj/item/paper,
+/turf/simulated/floor/grass,
+/area/awaymission/academy/academyaft)
+"iF" = (
+/obj/item/stack/cable_coil/random,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"iG" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"iH" = (
+/obj/item/multitool,
+/turf/simulated/floor/engine,
+/area/awaymission/academy/academyaft)
+"iI" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/engine,
+/area/awaymission/academy/academyaft)
+"iJ" = (
+/turf/simulated/floor/engine,
+/area/awaymission/academy/academyaft)
+"iK" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken7";
+ tag = "icon-wood-broken7"
+ },
+/area/awaymission/academy/academyaft)
+"iL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"iM" = (
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/floor/engine,
+/area/awaymission/academy/academyaft)
+"iN" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"iO" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/beach_ball/holoball,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/awaymission/academy/academyaft)
+"iP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"iQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance_hatch,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"iR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"iS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"iT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/mineral_door/iron,
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/awaymission/academy/academyaft)
+"iU" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/soulstone,
+/turf/simulated/floor/plasteel/airless{
+ dir = 4;
+ icon_state = "whitered";
+ tag = "icon-whitered (EAST)"
+ },
+/area/awaymission/academy/academyaft)
+"iV" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_l";
+ tag = "icon-propulsion_l"
+ },
+/turf/space,
+/area/awaymission/academy/academyaft)
+"iW" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/space,
+/area/awaymission/academy/academyaft)
+"iX" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_r";
+ tag = "icon-propulsion_r"
+ },
+/turf/space,
+/area/awaymission/academy/academyaft)
+"iY" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"iZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"ja" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"jb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"jc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"jd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/caution,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "green";
+ tag = "icon-green (EAST)"
+ },
+/area/awaymission/academy/academyaft)
+"je" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"jf" = (
+/obj/structure/table,
+/obj/item/clothing/glasses/meson/truesight,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"jg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"jh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"ji" = (
+/obj/structure/noticeboard,
+/turf/simulated/wall,
+/area/awaymission/academy/academyaft)
+"jj" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"jk" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"jl" = (
+/obj/structure/table,
+/turf/simulated/floor/plasteel/airless{
+ dir = 4;
+ icon_state = "whitered";
+ tag = "icon-whitered (EAST)"
+ },
+/area/awaymission/academy/academyaft)
+"jm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"jn" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/academyaft)
+"jo" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/academyaft)
+"jp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"jq" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/item/shard,
+/turf/simulated/floor/plating/airless,
+/area/awaymission/academy/academyaft)
+"jr" = (
+/mob/living/simple_animal/hostile/mimic/crate,
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/classrooms)
+"js" = (
+/obj/structure/window/reinforced,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/card/emag_broken,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/awaymission/academy/academyaft)
+"jt" = (
+/obj/structure/cult/pylon,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/academyaft)
+"ju" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/academyaft)
+"jv" = (
+/obj/structure/cult/pylon,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/academyaft)
+"jw" = (
+/obj/structure/window/reinforced,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel/airless{
+ dir = 4;
+ icon_state = "white";
+ tag = "icon-white (EAST)"
+ },
+/area/awaymission/academy/academyaft)
+"jx" = (
+/obj/structure/table,
+/obj/structure/window/reinforced,
+/obj/item/batterer,
+/turf/simulated/floor/plasteel/airless{
+ dir = 4;
+ icon_state = "whitered";
+ tag = "icon-whitered (EAST)"
+ },
+/area/awaymission/academy/academyaft)
+"jy" = (
+/obj/item/shard{
+ icon_state = "medium"
+ },
+/turf/space,
+/area/space/nearstation)
+"jz" = (
+/obj/machinery/igniter/on,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"jA" = (
+/obj/structure/window/reinforced,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"jB" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"jC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"jD" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"jE" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"jF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"jG" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11
+ },
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"jH" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"jI" = (
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/academyaft)
+"jJ" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/academyaft)
+"jK" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/academyaft)
+"jL" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/academyaft)
+"jM" = (
+/obj/effect/landmark{
+ name = "awaystart"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"jN" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/academyaft)
+"jO" = (
+/obj/machinery/door/airlock/hatch,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"jP" = (
+/turf/simulated/wall/r_wall,
+/area/awaymission/academy/academygate)
+"jQ" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/academy/academygate)
+"jR" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"jS" = (
+/turf/simulated/floor/grass,
+/area/awaymission/academy/academygate)
+"jT" = (
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academygate)
+"jU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"jV" = (
+/obj/structure/window/reinforced,
+/turf/simulated/floor/grass,
+/area/awaymission/academy/academygate)
+"jW" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/awaymission/academy/academyaft)
+"jX" = (
+/obj/machinery/door/window/southright,
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/academygate)
+"jY" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"jZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/academyaft)
+"ka" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"kb" = (
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"kc" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"kd" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel/airless{
+ dir = 4;
+ icon_state = "white";
+ tag = "icon-white (EAST)"
+ },
+/area/awaymission/academy/academyaft)
+"ke" = (
+/obj/machinery/power/apc/noalarm{
+ dir = 1;
+ environ = 3;
+ equipment = 3;
+ locked = 0;
+ req_access = ""
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academygate)
+"kf" = (
+/obj/item/stack/cable_coil/random,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"kg" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable,
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"kh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"ki" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"kj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/awaymission/academy/academyaft)
+"kk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel/airless{
+ dir = 4;
+ icon_state = "white";
+ tag = "icon-white (EAST)"
+ },
+/area/awaymission/academy/academyaft)
+"kl" = (
+/obj/machinery/gateway{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"km" = (
+/obj/machinery/gateway{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"kn" = (
+/obj/structure/cable,
+/obj/machinery/gateway/centeraway{
+ calibrated = 0
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"ko" = (
+/obj/machinery/gateway{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"kp" = (
+/obj/machinery/gateway{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"kq" = (
+/obj/machinery/gateway,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"kr" = (
+/obj/machinery/gateway{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"ks" = (
+/obj/machinery/light,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academygate)
+"kt" = (
+/obj/machinery/door_control{
+ id = "AcademyGate";
+ pixel_y = -24
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academygate)
+"ku" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/window/reinforced{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"kv" = (
+/mob/living/simple_animal/hostile/mimic/crate,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/awaymission/academy/classrooms)
+"kw" = (
+/mob/living/simple_animal/hostile/mimic/crate,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"kx" = (
+/mob/living/simple_animal/hostile/statue,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"ky" = (
+/mob/living/simple_animal/hostile/creature,
+/turf/simulated/floor/plasteel/dark/telecomms,
+/area/awaymission/academy/classrooms)
+"kz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel/airless{
+ dir = 4;
+ icon_state = "whitered";
+ tag = "icon-whitered (EAST)"
+ },
+/area/awaymission/academy/academyaft)
+"kA" = (
+/obj/structure/bookcase,
+/obj/item/spellbook/oneuse/summonitem,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"kB" = (
+/mob/living/simple_animal/hostile/carp/megacarp{
+ name = "Elmo"
+ },
+/turf/simulated/mineral/random/high_chance,
+/area/awaymission/academy)
+"kD" = (
+/obj/effect/landmark{
+ name = "awaystart"
+ },
+/turf/simulated/floor/engine,
+/area/awaymission/academy/academyaft)
+"kE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"kF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"kG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/awaymission/academy/academyaft)
+"kH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"kI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"kJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"kK" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"kL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/trash/spacetwinkie{
+ pixel_x = -13
+ },
+/obj/machinery/light_construct{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"kM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/awaymission/academy/classrooms)
+"kN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"kO" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"kP" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ layer = 2.4;
+ on = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"kQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/classrooms)
+"kR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/classrooms)
+"kS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel/airless{
+ dir = 4;
+ icon_state = "white";
+ tag = "icon-white (EAST)"
+ },
+/area/awaymission/academy/academyaft)
+"kT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/wall,
+/area/awaymission/academy/academyaft)
+"kU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/academyaft)
+"kV" = (
+/obj/effect/landmark{
+ name = "awaystart"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/awaymission/academy/academyaft)
+"kW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"kX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"kY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel/airless{
+ dir = 4;
+ icon_state = "white";
+ tag = "icon-white (EAST)"
+ },
+/area/awaymission/academy/academyaft)
+"kZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"la" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"lb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"lc" = (
+/obj/machinery/door/airlock/hatch,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"ld" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academygate)
+"le" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/window/southleft,
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/academygate)
+"lf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academygate)
+"lg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academygate)
+"lh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academygate)
+"li" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academygate)
+"lj" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"lk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academygate)
+"ll" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"lm" = (
+/obj/machinery/gateway{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"ln" = (
+/obj/machinery/gateway{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"lo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10;
+ initialize_directions = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"lp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"lq" = (
+/obj/machinery/atmospherics/binary/valve,
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/academyaft)
+"lr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"ls" = (
+/obj/machinery/atmospherics/unary/tank/air{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academyaft)
+"lt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"lv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"lw" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "AcademyGate"
+ },
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"lx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"ly" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "yellow"
+ },
+/area/awaymission/academy/academyaft)
+"lz" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ layer = 2.4;
+ on = 1
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"lA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11;
+ level = 1
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"lB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/wall/r_wall,
+/area/awaymission/academy/academyaft)
+"lC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/grass,
+/area/awaymission/academy/academygate)
+"lD" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/grass,
+/area/awaymission/academy/academygate)
+"lF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academygate)
+"lG" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/academygate)
+"lV" = (
+/obj/machinery/biogenerator,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"mn" = (
+/obj/item/trash/liquidfood,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"mr" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"mu" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"mz" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/drinks/cans/beer,
+/obj/item/reagent_containers/food/drinks/cans/beer{
+ pixel_x = 5;
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/food/drinks/cans/beer{
+ pixel_x = -7;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/food/drinks/cans/beer{
+ pixel_x = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"mD" = (
+/obj/effect/decal/remains/xeno,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark";
+ tag = "icon-dark"
+ },
+/area/awaymission/academy/classrooms)
+"mN" = (
+/obj/structure/closet,
+/obj/item/lipstick/random,
+/obj/item/clothing/under/schoolgirl,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"mQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/headmaster)
+"mY" = (
+/obj/structure/flora/tree/dead,
+/turf/simulated/floor/grass,
+/area/awaymission/academy/academyaft)
+"nb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/sheet/metal{
+ pixel_x = -6;
+ pixel_y = -6
+ },
+/obj/item/stack/sheet/metal{
+ pixel_x = 9;
+ pixel_y = 11
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"nd" = (
+/obj/structure/decorative_structures/metal/statue/sun,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"ne" = (
+/obj/structure/dispenser/plasma,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/awaymission/academy/headmaster)
+"ng" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/caution,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"nm" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"nr" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/awaymission/academy/classrooms)
+"nI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/sign/restroom{
+ pixel_y = 31
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/academyaft)
+"nL" = (
+/obj/item/stack/sheet/metal{
+ pixel_x = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"nW" = (
+/obj/item/circuitboard/chem_dispenser,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"nX" = (
+/obj/structure/table/wood,
+/obj/item/seeds/tomato/blue/bluespace,
+/obj/item/seeds/replicapod{
+ pixel_x = 6;
+ pixel_y = 2
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"og" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/classrooms)
+"oh" = (
+/obj/structure/lattice,
+/turf/simulated/wall/r_wall,
+/area/space/nearstation)
+"os" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/robot_parts/r_leg,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"oD" = (
+/obj/structure/closet,
+/obj/item/clothing/under/color/lightpurple,
+/obj/item/clothing/shoes/sandal,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"pa" = (
+/obj/structure/flora/bush,
+/turf/simulated/floor/grass,
+/area/awaymission/academy/academyaft)
+"pz" = (
+/obj/structure/closet,
+/obj/item/storage/box/snappops,
+/obj/item/storage/backpack,
+/obj/item/paper{
+ info = "Current Grade: F. Educator's Notes: No improvement shown despite multiple private lessons. Suggest additional tutilage.";
+ name = "Pyromancy Evaluation"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"pN" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/item/stack/sheet/metal{
+ pixel_x = -11;
+ pixel_y = 7
+ },
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"pS" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/academyaft)
+"pX" = (
+/obj/machinery/vending/coffee/free,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"qa" = (
+/obj/structure/table,
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = 5
+ },
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/classrooms)
+"qm" = (
+/obj/structure/sign/botany,
+/turf/simulated/wall,
+/area/awaymission/academy/classrooms)
+"qE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/closet/secure_closet/bar,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"qP" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"qQ" = (
+/obj/item/reagent_containers/glass/bottle,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"rk" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"rn" = (
+/obj/item/stack/sheet/wood{
+ pixel_y = -15
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"ry" = (
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"rA" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/rum{
+ pixel_x = -17
+ },
+/obj/item/reagent_containers/food/drinks/bottle/cognac,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"rD" = (
+/obj/item/stack/sheet/metal{
+ pixel_y = -7
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"rP" = (
+/obj/item/stack/sheet/metal{
+ pixel_x = -8
+ },
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"rR" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"rS" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"rV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding.";
+ dir = 4;
+ icon_state = "plaque";
+ name = "Comemmorative Plaque"
+ },
+/area/awaymission/academy/classrooms)
+"sd" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_containers/food/snacks/meat/corgi,
+/obj/item/reagent_containers/food/snacks/meat/corgi,
+/obj/item/organ/internal/lungs,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/awaymission/academy/classrooms)
+"sf" = (
+/obj/item/toner,
+/obj/structure/table_frame/wood,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"so" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/academyaft)
+"sx" = (
+/obj/machinery/light_construct{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/awaymission/academy/headmaster)
+"sF" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/academyaft)
+"sH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table,
+/obj/machinery/computer/mob_healer_terminal,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"sM" = (
+/obj/structure/table,
+/obj/machinery/smartfridge/disks,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"sQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/remains/robot,
+/turf/simulated/floor/plasteel/dark/telecomms,
+/area/awaymission/academy/classrooms)
+"sU" = (
+/obj/machinery/constructable_frame/machine_frame,
+/obj/machinery/light_construct{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/headmaster)
+"sZ" = (
+/obj/structure/closet/chefcloset,
+/obj/item/storage/fancy/cigarettes/syndicate,
+/obj/item/lighter/random,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/awaymission/academy/classrooms)
+"ta" = (
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/academygate)
+"tp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/academyaft)
+"tr" = (
+/obj/item/healthanalyzer/advanced,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkbluecorners"
+ },
+/area/awaymission/academy/classrooms)
+"tv" = (
+/obj/item/stack/sheet/wood{
+ pixel_x = -15;
+ pixel_y = -15
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"ub" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/drinkingglass,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = 4;
+ pixel_y = -10
+ },
+/obj/item/clothing/mask/cigarette/pipe{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"ui" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"uj" = (
+/obj/structure/table/wood,
+/obj/random/plushie,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/academyaft)
+"um" = (
+/obj/structure/bookcase,
+/obj/item/spellbook/oneuse/smoke,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"un" = (
+/obj/item/stack/sheet/wood,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"uv" = (
+/obj/item/shard,
+/obj/item/shard{
+ icon_state = "medium";
+ pixel_x = -5;
+ pixel_y = 13
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"uw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/caution,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"uA" = (
+/obj/machinery/vending/boozeomat/syndicate_access,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"uB" = (
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/classrooms)
+"uI" = (
+/obj/item/stack/sheet/wood{
+ pixel_x = -5;
+ pixel_y = -6
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"uQ" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/vodka,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"uU" = (
+/obj/item/grown/cotton,
+/obj/effect/decal/leaves{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/awaymission/academy/headmaster)
+"va" = (
+/obj/machinery/mech_bay_recharge_port{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"vb" = (
+/obj/item/disk/plantgene{
+ pixel_y = 7
+ },
+/obj/item/disk/plantgene{
+ pixel_x = 6
+ },
+/obj/item/disk/plantgene{
+ pixel_x = -8
+ },
+/obj/item/disk/plantgene{
+ pixel_x = -6;
+ pixel_y = -5
+ },
+/obj/item/disk/plantgene{
+ pixel_x = -8;
+ pixel_y = 1
+ },
+/obj/item/disk/plantgene,
+/obj/item/disk/plantgene{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"vc" = (
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/awaymission/academy/academyaft)
+"vq" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"vs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/computer/arcade,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"vv" = (
+/obj/item/stack/sheet/wood{
+ pixel_x = 12;
+ pixel_y = 6
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"vG" = (
+/obj/structure/sign/restroom{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/academyaft)
+"vT" = (
+/obj/structure/mopbucket,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"wa" = (
+/obj/machinery/r_n_d/circuit_imprinter,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"wj" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/wall/r_wall,
+/area/awaymission/academy/academyaft)
+"wk" = (
+/obj/structure/chair/sofa,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"wn" = (
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"wp" = (
+/obj/item/scythe,
+/obj/structure/flora/ash/cacti,
+/turf/simulated/floor/grass,
+/area/awaymission/academy/academyaft)
+"ws" = (
+/obj/structure/chair/sofa/corner,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"wz" = (
+/obj/effect/decal/ants,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"wB" = (
+/obj/structure/table/wood,
+/obj/item/gps,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/academyaft)
+"wE" = (
+/obj/item/trash/gum{
+ pixel_x = 11
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"wG" = (
+/obj/structure/chair/comfy/red{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"wO" = (
+/obj/item/stack/sheet/metal{
+ pixel_x = -6;
+ pixel_y = -6
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"wP" = (
+/obj/machinery/vending/cigarette/syndicate/free,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"wW" = (
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"xe" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken3";
+ tag = "icon-wood-broken3"
+ },
+/area/awaymission/academy/classrooms)
+"xg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"xF" = (
+/obj/structure/mineral_door/wood,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"xK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/academygate)
+"xR" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken5";
+ tag = "icon-wood-broken5"
+ },
+/area/awaymission/academy/academyaft)
+"xS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/vending/cola/free,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"xT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/blood/writing,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"xV" = (
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/headmaster)
+"xZ" = (
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"yb" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"yj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/mineral_door/wood,
+/obj/structure/barricade/wooden/crude,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"yt" = (
+/obj/structure/chair/wood,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"yv" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"yx" = (
+/obj/item/stack/sheet/metal,
+/turf/simulated/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"yA" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"yB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/headmaster)
+"yJ" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"yM" = (
+/obj/item/soap/syndie,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"ze" = (
+/obj/structure/closet,
+/obj/item/candle,
+/obj/item/candle,
+/obj/item/storage/box/matches,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"zg" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"zm" = (
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"zo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/sheet/metal{
+ pixel_x = 9;
+ pixel_y = 11
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"zp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/vending/artvend,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"zu" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken7";
+ tag = "icon-wood-broken7"
+ },
+/area/awaymission/academy/classrooms)
+"zI" = (
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/academyaft)
+"zJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/chair/sofa{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"zN" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/academyaft)
+"zU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/closet/cardboard,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"Al" = (
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"Aq" = (
+/obj/structure/kitchenspike,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/awaymission/academy/classrooms)
+"At" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/cigbutt,
+/obj/item/cigbutt{
+ pixel_x = 5;
+ pixel_y = 16
+ },
+/obj/item/cigbutt{
+ pixel_x = -13;
+ pixel_y = 19
+ },
+/obj/item/cigbutt{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/cigbutt{
+ pixel_x = 8;
+ pixel_y = 9
+ },
+/obj/item/cigbutt{
+ pixel_x = -9
+ },
+/obj/item/cigbutt{
+ pixel_x = -10;
+ pixel_y = 8
+ },
+/obj/item/cigbutt{
+ pixel_x = 6;
+ pixel_y = -2
+ },
+/obj/item/cigbutt{
+ pixel_x = -8;
+ pixel_y = -4
+ },
+/obj/item/cigbutt{
+ pixel_x = 5;
+ pixel_y = 7
+ },
+/obj/item/lighter/zippo{
+ pixel_y = 9
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"Au" = (
+/obj/structure/computerframe,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"Av" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"AA" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/reagent_containers/syringe/charcoal,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"AQ" = (
+/obj/machinery/light_construct{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/constructable_frame/machine_frame,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"AY" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken6";
+ tag = "icon-wood-broken6"
+ },
+/area/awaymission/academy/classrooms)
+"AZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/classrooms)
+"Bl" = (
+/obj/structure/holohoop{
+ pixel_y = 21
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"Bz" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"BP" = (
+/obj/structure/closet,
+/obj/item/clothing/under/color/lightpurple,
+/obj/item/twohanded/staff,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"BT" = (
+/obj/structure/chair/comfy/red{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/classrooms)
+"Cb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/sheet/metal{
+ pixel_x = 9;
+ pixel_y = 11
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"Cn" = (
+/obj/item/grown/cotton,
+/obj/effect/decal/leaves,
+/turf/simulated/floor/grass,
+/area/awaymission/academy/headmaster)
+"Cr" = (
+/obj/effect/decal/cleanable/cobweb,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"Cw" = (
+/obj/item/stack/sheet/metal{
+ pixel_x = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"CG" = (
+/obj/structure/chair/sofa{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"CH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/dresser,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/academyaft)
+"CN" = (
+/obj/structure/closet,
+/obj/item/clothing/under/color/purple,
+/obj/item/poster/random_contraband,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"CT" = (
+/obj/structure/table,
+/obj/item/ashtray/glass,
+/obj/item/clothing/mask/cigarette/robustgold{
+ pixel_x = 8;
+ pixel_y = 12
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"De" = (
+/obj/effect/decal/cleanable/blood{
+ basecolor = "cc1d00"
+ },
+/obj/effect/decal/remains/human{
+ desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
+ icon_state = "remains";
+ name = "Human remains"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/awaymission/academy/classrooms)
+"Dh" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"Do" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/academyaft)
+"DB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/academyaft)
+"Ec" = (
+/obj/structure/chair/comfy/red{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"Ee" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"Ep" = (
+/obj/machinery/constructable_frame/machine_frame,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"EA" = (
+/obj/item/beach_ball/holoball{
+ pixel_y = 11
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"EB" = (
+/obj/structure/table/wood,
+/obj/item/clothing/mask/cigarette/medical_marijuana,
+/obj/item/clothing/mask/cigarette/medical_marijuana{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/classrooms)
+"EC" = (
+/obj/item/stack/sheet/metal{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"ED" = (
+/obj/item/mop/advanced,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"EK" = (
+/obj/effect/decal/cleanable/cobweb2,
+/obj/item/stack/sheet/metal,
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"EQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"EY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt{
+ pixel_x = 2;
+ pixel_y = -1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"Fc" = (
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"Fg" = (
+/obj/structure/closet,
+/obj/item/clothing/head/wizard/fake,
+/obj/item/clothing/suit/wizrobe/fake,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"Fk" = (
+/obj/machinery/smartfridge,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"Fq" = (
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"Fu" = (
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"FA" = (
+/obj/item/stack/sheet/wood{
+ pixel_x = 11;
+ pixel_y = 5
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"Gc" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"Ge" = (
+/obj/structure/mineral_door/iron,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"Gg" = (
+/obj/structure/mirror{
+ pixel_y = 28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"Gh" = (
+/obj/item/stack/sheet/metal{
+ pixel_x = -10;
+ pixel_y = -6
+ },
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"Gx" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/glass/rag,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"GA" = (
+/obj/item/grown/sunflower,
+/turf/simulated/floor/grass,
+/area/awaymission/academy/headmaster)
+"GG" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/snacks/soup/beetsoup{
+ desc = "With the taste of execution";
+ name = "borsch";
+ pixel_y = 12
+ },
+/obj/item/reagent_containers/food/drinks/britcup{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"GN" = (
+/obj/item/stack/sheet/metal{
+ pixel_x = 9;
+ pixel_y = 11
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"GR" = (
+/obj/item/stack/sheet/metal{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"GS" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken5";
+ tag = "icon-wood-broken5"
+ },
+/area/awaymission/academy/classrooms)
+"GU" = (
+/obj/structure/janitorialcart,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"GV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/stack/sheet/wood{
+ pixel_x = -5;
+ pixel_y = -6
+ },
+/obj/item/stack/sheet/wood{
+ pixel_x = 11
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"GZ" = (
+/obj/structure/computerframe,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"Hd" = (
+/obj/machinery/vending/dinnerware,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"Hg" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"Hh" = (
+/obj/structure/table,
+/obj/item/newspaper,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"Hn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"Hz" = (
+/obj/structure/table/reinforced,
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/manipulator,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
+ },
+/area/awaymission/academy/classrooms)
+"HE" = (
+/obj/item/bodyanalyzer,
+/turf/simulated/floor/engine,
+/area/awaymission/academy/academyaft)
+"HH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"HV" = (
+/obj/structure/chair/stool{
+ pixel_y = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"Ie" = (
+/obj/structure/closet,
+/obj/item/storage/wallet/random,
+/obj/item/clothing/glasses/regular/hipster,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"Ig" = (
+/obj/item/weldingtool/mini,
+/obj/item/stack/sheet/metal{
+ pixel_x = 9;
+ pixel_y = 11
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"In" = (
+/obj/structure/decorative_structures/metal/statue/moon,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"Is" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"IC" = (
+/obj/structure/table/wood,
+/obj/item/folder/syndicate/red,
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken7";
+ tag = "icon-wood-broken7"
+ },
+/area/awaymission/academy/academyaft)
+"IJ" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/drinkingglass,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = 10;
+ pixel_y = 8
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"IN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/mineral_door/wood,
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"Jd" = (
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"Jo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/vermouth{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/classrooms)
+"Jr" = (
+/obj/item/stack/sheet/wood{
+ pixel_x = 11
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"Jz" = (
+/obj/machinery/icemachine,
+/obj/effect/decal/cleanable/flour,
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"JE" = (
+/obj/structure/sign/vacuum,
+/turf/simulated/wall/r_wall,
+/area/awaymission/academy/classrooms)
+"JH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
+ },
+/area/awaymission/academy/classrooms)
+"JL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/classrooms)
+"JW" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/tea,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"JY" = (
+/obj/structure/sign/nosmoking_1,
+/turf/simulated/wall,
+/area/awaymission/academy/classrooms)
+"Ka" = (
+/obj/structure/coatrack,
+/obj/item/clothing/head/bowlerhat{
+ pixel_x = 5;
+ pixel_y = 10
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/headmaster)
+"Kd" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/condiment/enzyme{
+ layer = 5
+ },
+/obj/item/stack/packageWrap,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/classrooms)
+"Kg" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/mech_bay_recharge_floor,
+/area/awaymission/academy/classrooms)
+"Kn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"Kp" = (
+/obj/structure/chair/sofa/right,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"KI" = (
+/obj/item/stack/sheet/wood{
+ pixel_y = -15
+ },
+/obj/item/stack/sheet/wood{
+ pixel_x = 12;
+ pixel_y = 6
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"KJ" = (
+/turf/simulated/floor/bluegrid,
+/area/awaymission/academy/classrooms)
+"KL" = (
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
+ },
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"KM" = (
+/obj/item/grown/sunflower,
+/obj/effect/decal/ants,
+/turf/simulated/floor/grass,
+/area/awaymission/academy/headmaster)
+"Lb" = (
+/obj/item/stack/sheet/metal,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"Le" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/chair/stool{
+ pixel_y = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"Li" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"Lp" = (
+/obj/structure/table,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker,
+/obj/item/reagent_containers/dropper,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"Lu" = (
+/obj/structure/flora/corn_stalk/alt_2,
+/turf/simulated/floor/grass,
+/area/awaymission/academy/academyaft)
+"Lw" = (
+/obj/structure/closet,
+/obj/item/clothing/under/blackskirt,
+/obj/item/clothing/glasses/regular,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"Lz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/writing{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"LG" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/book/random,
+/turf/simulated/floor/engine,
+/area/awaymission/academy/academyaft)
+"LO" = (
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"LR" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"Mp" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"Mw" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"My" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/academyaft)
+"MA" = (
+/obj/machinery/mecha_part_fabricator,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"MH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"MJ" = (
+/obj/structure/table/wood,
+/obj/item/clothing/mask/cigarette/cigar/cohiba,
+/obj/item/clothing/mask/cigarette/cigar/cohiba{
+ pixel_x = 8;
+ pixel_y = -2
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/classrooms)
+"MN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table,
+/obj/item/trash/plate,
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_y = 10
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"MR" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"Nb" = (
+/obj/item/stack/sheet/metal,
+/obj/item/stack/sheet/metal{
+ pixel_x = -8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"Nl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/classrooms)
+"Nm" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/vomit,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"NJ" = (
+/obj/item/reagent_containers/food/drinks/bottle/wine,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"NO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/skeleton/head,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark";
+ tag = "icon-dark"
+ },
+/area/awaymission/academy/classrooms)
+"NP" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/bottle/cream,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/classrooms)
+"Of" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"Ok" = (
+/obj/structure/mineral_door/iron,
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/academyaft)
+"Oo" = (
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/effect/decal/cleanable/vomit,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"Ox" = (
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"OD" = (
+/obj/structure/bookcase,
+/obj/item/book/manual/detective,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"OI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/prize_counter,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"OQ" = (
+/obj/item/card/id/prisoner/random,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"Pd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/mineral_door/iron,
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/awaymission/academy/academyaft)
+"Pm" = (
+/obj/structure/table/wood,
+/obj/random/toolbox,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/academyaft)
+"Pu" = (
+/obj/machinery/vending/coffee/free,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"Pv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/mineral_door/iron,
+/turf/simulated/floor/plasteel{
+ dir = 1
+ },
+/area/awaymission/academy/academyaft)
+"Pz" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"PO" = (
+/obj/effect/decal/cleanable/ash,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"PW" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/whiskey{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"Qb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/awaymission/academy/classrooms)
+"Qm" = (
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"Qp" = (
+/obj/item/stack/sheet/metal{
+ pixel_y = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/awaymission/academy/headmaster)
+"Qr" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"Qy" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"Qz" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "awaystart"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"Rh" = (
+/obj/structure/table/wood/poker,
+/obj/item/deck/cards{
+ pixel_x = 5
+ },
+/obj/item/dice{
+ pixel_x = -6;
+ pixel_y = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/classrooms)
+"Rj" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/academyaft)
+"Rk" = (
+/obj/machinery/light_construct,
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/simulated/floor/plasteel{
+ icon_state = "green";
+ tag = "icon-green"
+ },
+/area/awaymission/academy/classrooms)
+"Rv" = (
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/awaymission/academy/classrooms)
+"RD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/stack/sheet/metal{
+ pixel_x = 9;
+ pixel_y = 11
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/headmaster)
+"RE" = (
+/obj/structure/table,
+/obj/item/kitchen/rollingpin,
+/obj/item/kitchen/knife,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria";
+ tag = "icon-cafeteria (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"RG" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/headmaster)
+"RH" = (
+/obj/structure/table,
+/obj/item/candle,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"RI" = (
+/obj/structure/table,
+/obj/item/trash/can,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"RU" = (
+/obj/structure/chair/comfy/red,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/classrooms)
+"Sc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/academyaft)
+"Sd" = (
+/obj/machinery/plantgenes,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/awaymission/academy/classrooms)
+"Se" = (
+/obj/structure/table/wood,
+/obj/random/figure,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/academyaft)
+"Sf" = (
+/obj/structure/table/reinforced,
+/obj/item/mmi/robotic_brain{
+ pixel_y = 10
+ },
+/obj/item/robotanalyzer,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"Sk" = (
+/obj/effect/decal/cleanable/flour,
+/obj/item/trash/waffles,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"Ss" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet{
+ icon_state = "carpetsymbol"
+ },
+/area/awaymission/academy/classrooms)
+"Sz" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{
+ pixel_y = 7
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"SK" = (
+/obj/item/grown/cotton,
+/obj/effect/decal/leaves{
+ dir = 8
+ },
+/obj/item/stack/sheet/wood,
+/turf/simulated/floor/grass,
+/area/awaymission/academy/headmaster)
+"SM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"SV" = (
+/obj/machinery/hydroponics/constructable,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/classrooms)
+"Tm" = (
+/obj/item/stack/sheet/metal{
+ pixel_x = -11
+ },
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"Tt" = (
+/obj/structure/table,
+/obj/item/multitool,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"TA" = (
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"TI" = (
+/obj/structure/closet,
+/obj/item/storage/belt/soulstone,
+/obj/item/clothing/under/schoolgirl,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"Ui" = (
+/obj/structure/table,
+/obj/item/analyzer,
+/obj/item/assembly/igniter{
+ pixel_x = 10;
+ pixel_y = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault";
+ tag = "icon-vault (NORTHEAST)"
+ },
+/area/awaymission/academy/classrooms)
+"Uo" = (
+/obj/structure/table/wood,
+/obj/item/folder{
+ pixel_x = 7;
+ pixel_y = 8
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"Up" = (
+/obj/item/stack/cable_coil/random,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
+ },
+/area/awaymission/academy/classrooms)
+"Ut" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light,
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"UI" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"UO" = (
+/obj/effect/decal/cleanable/greenglow,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"UW" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken3";
+ tag = "icon-wood-broken3"
+ },
+/area/awaymission/academy/academyaft)
+"Vc" = (
+/obj/item/stack/sheet/wood{
+ pixel_y = -8
+ },
+/obj/item/stack/sheet/wood{
+ pixel_y = -15
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"Vt" = (
+/obj/structure/foodcart,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"Vv" = (
+/obj/structure/computerframe,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"Vy" = (
+/obj/item/stack/sheet/metal,
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/awaymission/academy/headmaster)
+"VO" = (
+/obj/machinery/cooker/deepfryer,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"VR" = (
+/obj/effect/decal/warning_stripes/southwest,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"VZ" = (
+/obj/machinery/slot_machine,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"We" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/awaymission/academy/classrooms)
+"Wf" = (
+/obj/item/stack/sheet/metal{
+ pixel_x = -6;
+ pixel_y = -6
+ },
+/obj/item/stack/sheet/metal{
+ pixel_x = 9;
+ pixel_y = 11
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"Wj" = (
+/obj/machinery/kitchen_machine/candy_maker,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"Wm" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorgrime"
+ },
+/area/awaymission/academy/headmaster)
+"Wo" = (
+/obj/item/storage/firstaid/machine{
+ pixel_x = 13
+ },
+/turf/simulated/floor/bluegrid,
+/area/awaymission/academy/classrooms)
+"WD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "floorscorched2"
+ },
+/area/awaymission/academy/academyaft)
+"WO" = (
+/obj/machinery/slot_machine,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/awaymission/academy/academyaft)
+"WR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/awaymission/academy/classrooms)
+"Xa" = (
+/obj/structure/glowshroom,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark";
+ tag = "icon-dark"
+ },
+/area/awaymission/academy/classrooms)
+"Xb" = (
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/obj/item/reagent_containers/food/condiment/flour,
+/obj/item/reagent_containers/food/condiment/flour,
+/obj/item/reagent_containers/food/condiment/flour,
+/obj/effect/decal/cleanable/flour,
+/obj/item/reagent_containers/food/condiment/milk,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/awaymission/academy/classrooms)
+"Xh" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"Xj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/chair,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "escape"
+ },
+/area/awaymission/academy/classrooms)
+"Xq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/sheet/metal{
+ pixel_x = 9;
+ pixel_y = 11
+ },
+/obj/item/stack/sheet/wood{
+ pixel_x = -5;
+ pixel_y = -6
+ },
+/obj/item/stack/sheet/wood{
+ pixel_x = 12;
+ pixel_y = 6
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "hydrofloor"
+ },
+/area/awaymission/academy/academyaft)
+"Xt" = (
+/obj/item/cigbutt,
+/obj/effect/decal/remains/human{
+ desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
+ icon_state = "remains";
+ name = "Human remains"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "green";
+ tag = "icon-green"
+ },
+/area/awaymission/academy/classrooms)
+"XC" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/awaymission/academy/classrooms)
+"XF" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"XR" = (
+/obj/effect/decal/ants,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"Yb" = (
+/obj/effect/decal/cleanable/greenglow,
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
+ },
+/area/awaymission/academy/classrooms)
+"Yh" = (
+/obj/item/camera_assembly,
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+"Ym" = (
+/obj/item/stack/sheet/wood{
+ pixel_x = -5;
+ pixel_y = -6
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/academyaft)
+"Yq" = (
+/obj/item/stack/sheet/metal{
+ pixel_y = 10
+ },
+/obj/item/stack/sheet/metal{
+ pixel_x = -6;
+ pixel_y = -6
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
+ },
+/area/awaymission/academy/classrooms)
+"Yr" = (
+/turf/simulated/floor/wood{
+ icon_state = "wood-broken";
+ tag = "icon-wood-broken"
+ },
+/area/awaymission/academy/classrooms)
+"Yz" = (
+/obj/structure/table,
+/obj/item/screwdriver{
+ pixel_y = 6
+ },
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"YB" = (
+/obj/item/stack/sheet/wood{
+ pixel_x = 12
+ },
+/obj/item/stack/sheet/wood{
+ pixel_y = -15
+ },
+/turf/simulated/floor/carpet,
+/area/awaymission/academy/academyaft)
+"YE" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/emp,
+/turf/simulated/floor/wood,
+/area/awaymission/academy/academyaft)
+"YP" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/awaymission/academy/classrooms)
+"Za" = (
+/obj/item/stack/sheet/wood{
+ pixel_x = -5;
+ pixel_y = -6
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"Zi" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22";
+ tag = "icon-plant-22"
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/classrooms)
+"Zs" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/warning_stripes/east,
+/obj/item/gun/projectile/revolver/russian,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/classrooms)
+"Zz" = (
+/obj/item/stack/sheet/wood{
+ pixel_x = -14;
+ pixel_y = -8
+ },
+/turf/simulated/floor/wood,
+/area/awaymission/academy/headmaster)
+"ZH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/obj/effect/decal/cleanable/dirt/blackpowder,
+/turf/simulated/floor/plasteel,
+/area/awaymission/academy/headmaster)
+"ZT" = (
+/obj/machinery/camera{
+ c_tag = "Virology Office";
+ dir = 8;
+ network = list("Medical","SS13")
+ },
+/turf/simulated/floor/plasteel{
+ dir = 2;
+ icon_state = "cafeteria"
+ },
+/area/awaymission/academy/academyaft)
+
+(1,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(3,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(4,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(5,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(6,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(7,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(8,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(9,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(10,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(11,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(12,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(13,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(14,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(15,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(16,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(17,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(18,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(19,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(20,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(21,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(22,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(23,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(24,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(25,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(26,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(27,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aS
+aS
+aa
+aa
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(28,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aS
+aS
+aa
+aa
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(29,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(30,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(31,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(32,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+kB
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(33,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(34,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(35,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(36,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aa
+aa
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(37,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(38,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(39,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(40,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(41,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(42,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(43,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+eH
+eW
+eW
+fd
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(44,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bs
+bs
+bs
+ez
+JE
+JE
+ez
+bs
+bs
+bs
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(45,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+dZ
+er
+bB
+bB
+bB
+bB
+er
+dZ
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(46,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+JE
+bs
+ce
+cm
+cx
+cE
+cK
+cN
+cZ
+de
+dq
+dz
+dG
+de
+bs
+dZ
+er
+hH
+bB
+bB
+bB
+er
+dZ
+bs
+bB
+fV
+gl
+gr
+gz
+bB
+gN
+bB
+gZ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(47,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bt
+dv
+dv
+dv
+bV
+dv
+dv
+dv
+cY
+de
+dp
+dy
+dp
+de
+bs
+bs
+bs
+hG
+er
+er
+eA
+bs
+bs
+bs
+bB
+bB
+bB
+gr
+gz
+gI
+bB
+bB
+gZ
+hd
+hv
+hL
+hv
+hL
+im
+hc
+hp
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(48,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bv
+bC
+bB
+bB
+bB
+bB
+bB
+cO
+da
+de
+dx
+dA
+dH
+de
+bE
+ea
+es
+kE
+eJ
+eR
+dv
+fm
+fs
+bs
+bB
+bB
+bB
+gr
+gz
+bB
+bB
+gI
+gZ
+he
+hw
+hc
+hw
+hc
+hw
+hc
+hl
+hp
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(49,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bu
+bB
+bB
+cj
+bB
+bB
+bB
+bB
+da
+bV
+bV
+rV
+bV
+nW
+bE
+eb
+et
+hI
+eJ
+eR
+fa
+et
+ft
+bs
+fO
+ge
+gx
+ge
+ge
+gx
+ge
+gV
+gZ
+he
+he
+hc
+he
+hc
+he
+hc
+id
+hp
+hp
+gZ
+gZ
+gZ
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(50,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bu
+bB
+bB
+bB
+bB
+bB
+cJ
+bB
+da
+bV
+dv
+cY
+dv
+bV
+bE
+ec
+eu
+kE
+eJ
+eR
+dv
+fn
+fu
+bE
+fR
+gf
+gf
+gf
+gf
+gf
+gf
+hq
+gZ
+hf
+ih
+jm
+jp
+jC
+jF
+hp
+hp
+hl
+hl
+gZ
+iH
+iJ
+iN
+iV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(51,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bw
+bN
+bB
+bB
+bB
+bB
+bB
+cX
+da
+dv
+dv
+cY
+dv
+dv
+dS
+ed
+ed
+kE
+eK
+eS
+dv
+ed
+ed
+dS
+fQ
+dv
+dv
+dv
+dv
+dv
+dv
+gX
+gZ
+hs
+kX
+hp
+id
+hp
+hp
+hl
+hp
+hl
+hp
+gZ
+LG
+iJ
+iN
+iW
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(52,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bA
+dv
+bV
+dv
+dv
+dv
+dv
+dv
+do
+cN
+cN
+dM
+cN
+cN
+dY
+el
+el
+eI
+el
+el
+el
+el
+fC
+dY
+fW
+dv
+Yz
+du
+gA
+du
+gn
+gY
+gZ
+ht
+iL
+hp
+sF
+hp
+hp
+hp
+hl
+hp
+hp
+iG
+iJ
+iJ
+iN
+iW
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(53,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bs
+bD
+dv
+dv
+cr
+kw
+jr
+jr
+dv
+dv
+dr
+dv
+dv
+dv
+bE
+ef
+ei
+kF
+ei
+ei
+ei
+ei
+fz
+bE
+fI
+dv
+dv
+dv
+dv
+dv
+dv
+gX
+gZ
+hi
+ix
+hN
+ie
+ie
+in
+ir
+hN
+iC
+hl
+gZ
+HE
+iJ
+iN
+iX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(54,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bs
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+eg
+ei
+kH
+ek
+ek
+ek
+ei
+zp
+bE
+fI
+fZ
+dv
+dv
+Tt
+du
+gn
+gY
+gZ
+gZ
+iQ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(55,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bs
+bF
+bW
+bW
+cs
+Nb
+Sf
+dv
+db
+dv
+dv
+og
+bV
+dv
+bE
+eh
+ei
+kH
+eL
+eT
+ek
+ei
+OI
+bE
+fJ
+ga
+go
+gs
+go
+go
+go
+dm
+gZ
+hD
+iP
+hO
+gZ
+aa
+aa
+aa
+aa
+aa
+aP
+aa
+aP
+aP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(56,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bs
+bG
+bX
+cP
+Hz
+dm
+cM
+dv
+Jd
+Xh
+Xh
+qP
+VR
+dv
+ew
+uB
+ek
+kH
+eM
+eU
+ek
+ei
+sH
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+gZ
+gZ
+iQ
+wj
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(57,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aP
+bs
+bG
+bY
+cQ
+dm
+Dh
+df
+JL
+nm
+SM
+Qb
+dU
+XF
+cN
+xF
+AZ
+ek
+kH
+ek
+ek
+ek
+ei
+qE
+bE
+fK
+Ee
+yt
+gt
+Jr
+yt
+sf
+ds
+fB
+Ox
+iR
+hV
+VZ
+fB
+Cr
+is
+ii
+Oo
+ii
+is
+Bz
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(58,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aP
+aP
+bs
+bG
+bZ
+cR
+JH
+Lp
+cM
+Ep
+yJ
+hP
+KJ
+Au
+mr
+dv
+bE
+vs
+HV
+kH
+eL
+BT
+ek
+ei
+fE
+er
+Uo
+gb
+zu
+Yr
+zu
+dc
+dc
+Pu
+fB
+Pz
+iS
+hl
+ze
+fB
+Gg
+Of
+UO
+ii
+ii
+Of
+Bz
+gZ
+gZ
+iY
+gZ
+iY
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(59,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aP
+aP
+aa
+bs
+bG
+hP
+cB
+EY
+TA
+dm
+Ep
+YP
+Kg
+bB
+dp
+mr
+UI
+bE
+hB
+Le
+kI
+RU
+Rh
+wG
+ei
+Sz
+er
+wP
+dc
+dc
+um
+GS
+OD
+dc
+Zi
+fB
+Pz
+iS
+hS
+TI
+fB
+ii
+fB
+Ge
+fB
+Ge
+fB
+Ge
+fB
+iO
+kh
+jf
+kh
+gF
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(60,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aP
+ab
+aP
+aP
+bs
+bG
+ca
+dd
+Up
+dm
+Yb
+MA
+YP
+va
+Wo
+va
+mr
+dv
+bE
+vs
+HV
+kH
+ek
+Ec
+ek
+ei
+RH
+er
+mu
+dc
+dc
+kA
+AY
+gJ
+dc
+Qy
+fB
+hm
+Sc
+hl
+Lw
+fB
+zm
+fB
+Qz
+fB
+yv
+fB
+Nm
+fB
+jW
+kj
+kG
+kV
+js
+jz
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(61,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aP
+aP
+aP
+aa
+aa
+bs
+bG
+cB
+wa
+Kn
+Qr
+nL
+dv
+Fu
+Mp
+Mp
+Mp
+rR
+og
+bE
+ej
+ex
+eN
+eZ
+fb
+ev
+ex
+fF
+er
+JW
+dc
+dc
+gu
+zu
+gK
+dc
+Qy
+fB
+Pz
+iS
+hS
+oD
+fB
+Ge
+fB
+fB
+fB
+fB
+fB
+fB
+fB
+jR
+ki
+ki
+ki
+ki
+ki
+jB
+gZ
+gZ
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(62,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+aP
+aP
+aP
+aP
+aP
+aP
+aa
+aP
+aa
+aa
+bs
+bH
+bW
+bW
+cs
+Lb
+Yq
+og
+cr
+dv
+dv
+dv
+og
+Gc
+bE
+ei
+ei
+kH
+eM
+eU
+ek
+ei
+zU
+bE
+rS
+dc
+dc
+dc
+dc
+xe
+Rv
+Qy
+fB
+GZ
+xg
+hT
+mN
+fB
+vc
+hU
+hU
+Rj
+hU
+YE
+IC
+fB
+CH
+zN
+zN
+zN
+fL
+fL
+fL
+fL
+fL
+fL
+gZ
+aa
+aa
+aa
+aa
+aa
+jP
+jP
+jP
+jP
+jP
+jP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(63,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ak
+ar
+ae
+aC
+ae
+aM
+aN
+ab
+ab
+ab
+ab
+ac
+ab
+ab
+ac
+ab
+ab
+ab
+ab
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+eg
+ei
+kH
+ek
+ek
+ek
+ei
+ui
+bE
+bE
+gh
+gC
+gC
+gB
+JY
+gO
+JY
+fB
+fB
+iT
+Pv
+fB
+fB
+hU
+if
+if
+if
+if
+if
+wB
+fB
+jY
+fH
+kJ
+fH
+fH
+fH
+kZ
+la
+fL
+jI
+gZ
+jP
+aa
+aa
+aa
+jP
+jP
+jT
+jT
+jT
+jT
+jP
+jP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(64,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ah
+ah
+ah
+ax
+ah
+ax
+ah
+ah
+ah
+ab
+as
+aF
+aF
+aX
+bd
+gc
+aF
+as
+EQ
+GN
+bI
+RG
+br
+br
+br
+br
+cS
+br
+br
+aF
+aF
+aF
+aF
+as
+Bl
+EA
+kH
+eL
+eT
+ek
+ei
+fi
+fB
+fL
+gm
+fL
+fL
+gm
+fL
+zI
+fL
+fB
+fD
+tp
+zI
+hU
+hU
+hU
+if
+mY
+if
+iE
+if
+hU
+fB
+gP
+fD
+fB
+fD
+fD
+jA
+et
+lb
+fL
+jJ
+gZ
+jP
+jU
+jU
+jU
+jP
+jT
+jT
+kc
+kc
+jT
+ks
+jP
+jP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(65,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ad
+ah
+ah
+ah
+ah
+aD
+ah
+ah
+ah
+ah
+ab
+aF
+aF
+ah
+ah
+ah
+ah
+hx
+as
+Tm
+bx
+bJ
+cb
+br
+ct
+cD
+cL
+Fc
+Fq
+br
+aF
+dB
+GA
+aF
+as
+ei
+ei
+kH
+eM
+eU
+fe
+ev
+fG
+GV
+My
+gk
+fD
+fD
+gP
+fD
+fD
+zI
+hb
+zI
+iZ
+fD
+xR
+UW
+hU
+if
+if
+if
+if
+if
+hU
+fB
+gP
+fD
+fB
+jn
+jt
+fD
+jD
+gP
+fL
+fL
+gZ
+jQ
+jS
+jS
+jV
+jT
+jT
+kf
+kc
+kc
+kc
+jT
+kt
+jP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(66,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ae
+ai
+ah
+as
+as
+as
+as
+as
+ah
+Ka
+ab
+ah
+ah
+ah
+ah
+be
+ah
+hy
+as
+Gh
+Al
+yb
+cc
+br
+ct
+hR
+Qm
+by
+bK
+br
+aF
+GA
+KM
+aF
+as
+ei
+ei
+kH
+ek
+ek
+ff
+ek
+uB
+Vc
+zI
+fD
+fD
+fD
+gQ
+fH
+gW
+My
+hr
+My
+jb
+fD
+fD
+fD
+fD
+fD
+fD
+fD
+fD
+fD
+jN
+hr
+jZ
+fD
+ji
+hl
+ju
+fD
+fD
+gQ
+fH
+My
+lc
+xK
+ld
+ld
+le
+lg
+kb
+lj
+ln
+km
+kp
+kc
+kc
+lw
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(67,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+af
+ah
+ah
+as
+ay
+aE
+aJ
+as
+ah
+cu
+aQ
+cu
+ah
+ah
+aY
+bf
+ah
+hy
+as
+Is
+EQ
+EQ
+ZH
+xV
+br
+wW
+wW
+br
+br
+br
+In
+aF
+XR
+aF
+as
+ei
+ei
+kH
+eL
+eT
+ff
+ei
+ei
+fB
+vG
+fL
+fL
+fL
+fL
+fL
+gm
+so
+fB
+zg
+ja
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+Hn
+fB
+gP
+fD
+fB
+kx
+ju
+fD
+fD
+fD
+fD
+lz
+gZ
+jS
+jS
+jS
+jV
+lf
+jT
+kc
+lm
+kn
+kq
+kc
+kc
+lw
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(68,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ae
+ah
+am
+at
+az
+bg
+aK
+as
+aO
+aV
+aZ
+aV
+aV
+bp
+eB
+eE
+aV
+hz
+hA
+dK
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+dK
+IN
+hC
+uw
+kK
+kQ
+kR
+fh
+hE
+hE
+kT
+nI
+kU
+kU
+kU
+kU
+kU
+ha
+DB
+kT
+dC
+jc
+kW
+kW
+kW
+kW
+kW
+kW
+kW
+kW
+kW
+Ut
+kT
+ka
+kW
+kT
+lx
+ly
+kW
+kW
+kW
+kW
+lA
+lB
+lC
+lC
+lC
+lD
+lh
+lF
+lG
+kl
+ko
+kr
+kc
+kc
+lw
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(69,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ae
+ah
+al
+as
+aA
+aU
+bg
+as
+ah
+ah
+ab
+ah
+am
+ao
+ba
+bh
+bk
+dD
+bq
+dD
+ao
+ao
+ao
+ao
+ao
+cF
+ao
+ao
+ao
+ao
+ao
+ao
+ao
+dD
+yj
+Ss
+ng
+eN
+ev
+ev
+fg
+ek
+uB
+YB
+zI
+fD
+fD
+fD
+fD
+fD
+gP
+zI
+hb
+zI
+iZ
+fD
+fD
+fD
+fD
+fD
+fD
+fD
+fD
+fD
+zI
+hb
+Do
+fD
+ji
+hl
+ju
+fD
+fD
+fD
+fD
+zI
+jO
+ta
+jT
+jT
+jX
+lf
+kc
+kc
+kc
+kc
+kc
+kc
+kc
+lw
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(70,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ag
+ai
+an
+as
+aB
+aG
+aL
+as
+am
+dD
+aR
+dD
+au
+ah
+bb
+bi
+bl
+ah
+as
+Wm
+mQ
+Cw
+wW
+ah
+ah
+an
+br
+hX
+mQ
+br
+nd
+aF
+aF
+FA
+as
+Kp
+uQ
+Jo
+EB
+eT
+ff
+ek
+uB
+xZ
+zI
+fD
+fD
+fD
+fD
+fD
+gP
+zI
+hb
+zI
+iZ
+fD
+hU
+hU
+iK
+if
+if
+Lu
+pa
+if
+xR
+fB
+gP
+fD
+fB
+jo
+jv
+fD
+jE
+fD
+fL
+fL
+gZ
+jQ
+jS
+jS
+jV
+li
+ld
+ll
+kc
+kc
+kc
+jT
+jT
+jP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(71,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ae
+ah
+an
+as
+as
+as
+as
+as
+an
+ah
+ab
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+as
+rD
+GR
+wn
+RG
+ah
+ah
+an
+hW
+hY
+ry
+wW
+aF
+uU
+Cn
+Za
+as
+wk
+rA
+HH
+MJ
+eU
+ff
+ei
+XC
+fB
+fM
+fL
+fL
+gv
+fL
+fL
+Do
+fL
+fB
+fD
+tp
+zI
+hU
+hU
+hU
+if
+mY
+wp
+pa
+if
+hU
+fB
+gP
+fD
+fB
+fD
+fD
+jA
+et
+jH
+fL
+jK
+gZ
+jP
+jU
+jU
+jU
+jP
+ke
+lk
+kc
+kc
+jT
+ks
+jP
+jP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(72,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ah
+ah
+ap
+av
+ao
+aH
+ao
+ao
+au
+ah
+ab
+aF
+aF
+ah
+ah
+ah
+ah
+bn
+as
+iB
+Vy
+wO
+br
+ah
+ah
+an
+hX
+hZ
+yx
+wW
+aF
+Cn
+SK
+vv
+as
+wk
+PW
+ub
+IJ
+ek
+ff
+ei
+vT
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+hh
+bE
+fB
+fB
+Pd
+Ok
+fB
+fB
+hU
+if
+if
+if
+if
+if
+uj
+fB
+gP
+fD
+jj
+fD
+fD
+fD
+jD
+fD
+fL
+jL
+gZ
+jP
+aa
+aa
+aa
+jP
+jP
+jT
+jT
+jT
+jT
+jP
+jP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(73,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+aj
+ao
+au
+vq
+ah
+vq
+ah
+ah
+ah
+ab
+as
+aF
+aW
+bc
+bj
+bm
+bo
+as
+EC
+rP
+pN
+wW
+cu
+ah
+ey
+br
+bL
+br
+wW
+aF
+Zz
+tv
+un
+as
+ws
+CG
+zJ
+eO
+uB
+Nl
+ED
+GU
+bE
+fN
+gg
+gg
+gw
+gg
+gg
+hg
+gg
+fB
+Vv
+iR
+hV
+BP
+fB
+zI
+hU
+hU
+pS
+hU
+Se
+Pm
+fB
+CH
+zN
+zN
+zN
+zN
+fL
+fL
+fL
+fL
+fL
+gZ
+aa
+aa
+aa
+aa
+aa
+jP
+jP
+jP
+jP
+jP
+jP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(74,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+aq
+aw
+ae
+aI
+ae
+ak
+af
+ab
+ab
+ab
+ab
+ac
+ab
+ab
+ac
+ab
+ab
+ab
+ab
+as
+ab
+ck
+ab
+cG
+ab
+as
+as
+as
+as
+as
+as
+as
+as
+bE
+bE
+kM
+bE
+fc
+fk
+bE
+bE
+bE
+fX
+gp
+gD
+gD
+gD
+gD
+hj
+gg
+fB
+Pz
+iS
+hl
+Ie
+fB
+Ge
+fB
+fB
+fB
+fB
+fB
+fB
+fB
+kg
+ku
+ku
+ku
+ku
+ku
+jB
+gZ
+gZ
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(75,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+aP
+aP
+aP
+aP
+aP
+aP
+aa
+aP
+aa
+aa
+ab
+bM
+sx
+cl
+cd
+bO
+cd
+cT
+as
+dh
+dt
+nX
+lV
+sM
+Sd
+em
+bE
+xS
+pX
+eC
+fj
+eC
+eC
+bE
+fP
+gi
+gg
+gg
+dg
+gL
+CT
+gL
+fB
+hm
+iS
+sF
+Fg
+fB
+ii
+fB
+MR
+fB
+AA
+fB
+os
+fB
+kd
+kk
+kS
+kY
+jw
+jz
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(76,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aP
+aP
+aP
+aa
+aa
+ab
+bP
+RD
+cq
+cf
+cI
+cl
+cd
+as
+di
+iw
+dv
+dv
+vb
+dv
+en
+bE
+kL
+eC
+wE
+fj
+fo
+fo
+bE
+bz
+gj
+gg
+gg
+gE
+gL
+Ui
+gL
+fB
+Pz
+iS
+sF
+CN
+fB
+ii
+fB
+Ge
+fB
+Ge
+fB
+Ge
+fB
+iU
+kz
+jl
+WD
+jx
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(77,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aP
+ab
+aP
+aP
+ab
+yB
+Qp
+cn
+cd
+sU
+cd
+cl
+as
+dj
+dv
+PO
+Mw
+iA
+wz
+en
+LR
+Xj
+Hh
+eX
+fj
+fp
+RI
+bE
+bz
+MH
+Li
+Li
+gG
+gL
+gT
+gL
+fB
+Pz
+Sc
+hl
+pz
+fB
+Gg
+Hg
+ii
+ii
+qQ
+Hg
+ii
+gZ
+gZ
+je
+gZ
+jq
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(78,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aP
+aP
+aa
+ab
+bR
+as
+as
+cv
+cH
+cl
+cU
+as
+dk
+jM
+dL
+dL
+dL
+dL
+Xt
+At
+kO
+eP
+eX
+fj
+fq
+fq
+bE
+kv
+nr
+nr
+WR
+nr
+cA
+cA
+cA
+fB
+ho
+jd
+hn
+WO
+fB
+ii
+jG
+Yh
+jG
+ZT
+jG
+ii
+gZ
+aa
+aa
+aa
+aa
+jy
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(79,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aP
+aP
+ab
+bQ
+as
+co
+cw
+as
+cd
+cV
+as
+di
+du
+dL
+SV
+dL
+Ep
+en
+KL
+kN
+eC
+eC
+fj
+eC
+fA
+bE
+fY
+dv
+fY
+dv
+gR
+dv
+gU
+bs
+gZ
+gZ
+iQ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(80,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aP
+ab
+bU
+ci
+ci
+cz
+ci
+ci
+cW
+as
+ij
+dv
+iA
+dI
+wz
+dV
+Rk
+qm
+kP
+eC
+eD
+fv
+eX
+eC
+bE
+gd
+gq
+gH
+gM
+Zs
+gS
+bs
+bs
+gZ
+hD
+jg
+hO
+gZ
+aa
+aa
+aa
+aa
+aa
+aP
+aa
+aP
+aP
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(81,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+bT
+bT
+bT
+bT
+bT
+cg
+bT
+as
+ik
+dv
+dL
+dL
+dL
+Ep
+LO
+ew
+eC
+eC
+eD
+MN
+eX
+eC
+bE
+fS
+dv
+dv
+dv
+fU
+bs
+bs
+aP
+gZ
+gZ
+iQ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(82,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+bT
+cg
+bT
+bT
+bS
+bT
+ne
+as
+io
+iz
+dL
+dL
+dL
+dL
+LO
+ew
+eC
+eC
+eC
+fj
+eC
+eC
+bE
+fT
+dv
+OQ
+gy
+bs
+bs
+aP
+aa
+gZ
+hp
+jk
+ia
+hp
+Wf
+Cb
+hp
+ia
+hl
+hl
+gZ
+iJ
+iJ
+iN
+iV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(83,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ch
+cp
+cy
+cp
+ch
+ab
+ab
+it
+iA
+dv
+dv
+dN
+dW
+eo
+bE
+Vt
+eC
+eC
+fj
+eC
+mn
+bE
+dv
+dv
+fU
+bs
+bs
+aP
+aa
+aa
+gZ
+hF
+jh
+ib
+rn
+uI
+nb
+Xq
+Ym
+hl
+hp
+iG
+iJ
+kD
+iN
+iW
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(84,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+bs
+dl
+iD
+dw
+dw
+dP
+AQ
+ep
+bE
+EK
+eF
+mz
+fx
+Gx
+GG
+bE
+fU
+dv
+bs
+bs
+aP
+aa
+aa
+aa
+gZ
+hM
+lp
+hp
+hp
+KI
+rn
+nb
+zo
+hp
+hp
+gZ
+iI
+iJ
+iN
+iW
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(85,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bs
+bE
+bE
+dE
+Fk
+dO
+bE
+bE
+bE
+bB
+uv
+eG
+fw
+eG
+NJ
+Hd
+bs
+bs
+bs
+aP
+aa
+aa
+aa
+aa
+gZ
+hJ
+lo
+lq
+lr
+lt
+lv
+hp
+nb
+zo
+rk
+gZ
+iM
+iJ
+iN
+iX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(86,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bs
+iu
+sd
+We
+We
+dT
+bE
+dX
+Wj
+yM
+RE
+Kd
+NP
+qa
+eG
+Jz
+bs
+bs
+aP
+aa
+aa
+aa
+aa
+aa
+gZ
+ic
+hK
+hc
+ls
+hc
+ls
+hc
+hp
+Ig
+iF
+gZ
+gZ
+gZ
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(87,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bs
+iv
+Xa
+ky
+NO
+dQ
+ee
+Lz
+xT
+Av
+eV
+eV
+fy
+eG
+Sk
+Xb
+bs
+aP
+aa
+aa
+aa
+aa
+aa
+aa
+gZ
+hu
+hc
+hc
+hc
+hc
+hc
+hc
+hl
+hp
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(88,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bs
+dn
+tr
+mD
+sQ
+De
+bE
+yA
+eG
+VO
+eQ
+eY
+fl
+fr
+uA
+bs
+oh
+aP
+aP
+aP
+aP
+aP
+aP
+aP
+gZ
+hc
+hK
+hc
+hK
+hc
+hK
+hc
+hp
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(89,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bs
+bs
+sZ
+dF
+Aq
+dR
+bs
+eq
+eq
+bs
+bs
+bs
+bs
+bs
+bs
+oh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gZ
+hc
+hc
+hc
+hc
+hc
+hc
+hc
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(90,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+bs
+aP
+aP
+aP
+aP
+aP
+aP
+aP
+aP
+aP
+aP
+aP
+aP
+aP
+aP
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+gZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(91,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(92,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(93,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(94,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(95,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(96,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(97,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(98,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(99,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(100,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(101,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(102,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(103,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(104,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(105,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(106,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(107,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(108,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(109,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(110,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(111,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(112,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(113,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(114,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(115,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(116,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(117,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(118,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(119,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(120,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(121,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(122,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(123,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(124,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(125,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(126,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(127,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(128,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
diff --git a/_maps/map_files/RandomZLevels/spacebattle.dmm b/_maps/map_files/RandomZLevels/spacebattle.dmm
index 12bd63adda54a..5e8fc586778b6 100644
--- a/_maps/map_files/RandomZLevels/spacebattle.dmm
+++ b/_maps/map_files/RandomZLevels/spacebattle.dmm
@@ -992,7 +992,7 @@
/area/awaymission/spacebattle/cruiser)
"cS" = (
/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/snacks/stew,
+/obj/item/reagent_containers/food/snacks/soup/stew,
/turf/simulated/floor/plasteel{
icon_state = "cafeteria";
dir = 2
diff --git a/_maps/map_files/RandomZLevels/wildwest.dmm b/_maps/map_files/RandomZLevels/wildwest.dmm
index b9110dabaca04..127286e3c6ec0 100644
--- a/_maps/map_files/RandomZLevels/wildwest.dmm
+++ b/_maps/map_files/RandomZLevels/wildwest.dmm
@@ -1217,7 +1217,7 @@
},
/area/awaymission/wwgov)
"dy" = (
-/obj/item/reagent_containers/food/snacks/stew,
+/obj/item/reagent_containers/food/snacks/soup/stew,
/turf/simulated/floor/plasteel{
tag = "icon-stage_bleft";
icon_state = "stage_bleft"
diff --git a/_maps/map_files/cyberiad/cyberiad.dmm b/_maps/map_files/cyberiad/cyberiad.dmm
index bbe48b00e693a..3e5a4c1b8a273 100644
--- a/_maps/map_files/cyberiad/cyberiad.dmm
+++ b/_maps/map_files/cyberiad/cyberiad.dmm
@@ -12,10 +12,16 @@
icon_state = "floor4"
},
/area/shuttle/syndicate)
+"aaA" = (
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
+ },
+/area/shuttle/escape)
"aaQ" = (
/obj/docking_port/stationary/whiteship{
dir = 8;
- icon_state = "pinonfar";
id = "whiteship_cyberiad";
name = "North of Cyberiad"
},
@@ -27,18 +33,10 @@
},
/turf/space,
/area/space)
-"abG" = (
-/obj/machinery/porta_turret/syndicate,
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 8;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
"abH" = (
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 2;
+ dir = 1;
icon_state = "open";
id_tag = "syndieshutters";
name = "Blast Shutters";
@@ -46,10 +44,9 @@
},
/obj/structure/grille,
/obj/structure/shuttle/window{
- tag = "icon-window5_mid";
icon = 'icons/turf/shuttle.dmi';
icon_state = "window5_mid";
- dir = 2
+ tag = "icon-window5_mid"
},
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate)
@@ -61,7 +58,7 @@
"abJ" = (
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 2;
+ dir = 1;
icon_state = "open";
id_tag = "syndieshutters";
name = "Blast Shutters";
@@ -69,17 +66,16 @@
},
/obj/structure/grille,
/obj/structure/shuttle/window{
- tag = "icon-window5_end";
icon = 'icons/turf/shuttle.dmi';
icon_state = "window5_end";
- dir = 2
+ tag = "icon-window5_end"
},
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate)
"abK" = (
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 2;
+ dir = 1;
icon_state = "open";
id_tag = "syndieshutters";
name = "Blast Shutters";
@@ -87,23 +83,16 @@
},
/obj/structure/grille,
/obj/structure/shuttle/window{
- tag = "icon-window5_end (NORTH)";
+ dir = 1;
icon = 'icons/turf/shuttle.dmi';
icon_state = "window5_end";
- dir = 1
+ tag = "icon-window5_end (NORTH)"
},
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate)
-"abL" = (
-/obj/machinery/porta_turret/syndicate,
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
"abM" = (
/obj/structure/lattice,
+/obj/structure/grille,
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
"abN" = (
@@ -114,12 +103,9 @@
/turf/simulated/floor/plating/airless,
/area/security/securearmoury)
"abP" = (
-/obj/machinery/camera{
- c_tag = "Brig Secure Armory Exterior East";
- dir = 1
- },
-/turf/space,
-/area/space)
+/obj/structure/lattice,
+/turf/simulated/wall/r_wall,
+/area/security/securearmoury)
"abQ" = (
/turf/simulated/shuttle/wall{
dir = 4;
@@ -127,14 +113,21 @@
},
/area/shuttle/syndicate)
"abT" = (
-/obj/machinery/computer/camera_advanced/shuttle_docker/vox,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
+/obj/machinery/porta_turret/syndicate{
+ pixel_y = 2
+ },
+/turf/simulated/shuttle/wall{
+ dir = 8;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
"abU" = (
-/obj/structure/table,
-/obj/machinery/kitchen_machine/microwave,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/porta_turret/syndicate{
+ pixel_y = 2
+ },
+/turf/simulated/shuttle/wall{
+ dir = 1;
+ icon_state = "diagonalWall3"
},
/area/shuttle/syndicate)
"abV" = (
@@ -143,6 +136,12 @@
},
/area/shuttle/syndicate)
"abW" = (
+/obj/machinery/computer/shuttle/syndicate,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate)
+"abX" = (
/obj/structure/table,
/obj/machinery/door_control{
id = "syndieshutters";
@@ -153,18 +152,13 @@
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"abX" = (
-/obj/machinery/computer/shuttle/syndicate,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate)
"abY" = (
/obj/structure/sign/securearea{
- pixel_x = -30
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
},
-/turf/simulated/wall/r_wall,
-/area/security/securearmoury)
+/turf/simulated/wall,
+/area/space/nearstation)
"abZ" = (
/obj/structure/computerframe,
/turf/simulated/shuttle/floor{
@@ -172,28 +166,41 @@
},
/area/shuttle/syndicate)
"aca" = (
-/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/flasher/portable,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
+ icon_state = "dark"
},
-/area/security/range)
+/area/security/securearmoury)
"acb" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel{
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ cell_type = 5000;
dir = 8;
- icon_state = "redcorner"
+ name = "west bump Important Area";
+ pixel_y = 27
},
-/area/security/range)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/securearmoury)
"acc" = (
-/obj/machinery/light{
- dir = 1
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/security/range)
+/area/security/securearmoury)
"acd" = (
-/obj/structure/table,
-/obj/item/storage/box/syndidonkpockets,
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -208,45 +215,86 @@
/area/shuttle/syndicate)
"acf" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
- dir = 4
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"acg" = (
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+/obj/structure/closet/secure_closet/security,
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/security/range)
-"ach" = (
-/obj/structure/target_stake,
-/obj/machinery/magnetic_module,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/clothing/mask/balaclava,
/turf/simulated/floor/plasteel,
-/area/security/range)
-"aci" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
/area/security/main)
+"ach" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/grenade/barrier{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/grenade/barrier,
+/obj/item/grenade/barrier{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/grenade/barrier{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/securearmoury)
+"aci" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/securearmoury)
"acj" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Armory_sprava";
+ location = "Armory_South"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "dark"
},
/area/security/securearmoury)
"ack" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 10
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
},
-/obj/item/multitool,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -266,31 +314,55 @@
},
/area/shuttle/syndicate)
"acn" = (
-/obj/structure/closet/syndicate/personal,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/porta_turret/syndicate{
+ pixel_y = -2
+ },
+/turf/simulated/shuttle/wall{
+ icon_state = "diagonalWall3"
},
/area/shuttle/syndicate)
"aco" = (
-/obj/effect/decal/warning_stripes/southwest,
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Armory_South";
+ location = "Armory_North"
+ },
+/mob/living/simple_animal/bot/secbot/armsky{
+ auto_patrol = 1
+ },
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ icon_state = "dark"
},
-/area/security/range)
+/area/security/securearmoury)
"acp" = (
-/obj/structure/sign/securearea{
- pixel_x = -30
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/turf/space,
-/area/space)
-"acq" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "diagonalWall3"
+/obj/item/storage/box/flashbangs,
+/obj/item/storage/box/flashbangs{
+ pixel_x = 3;
+ pixel_y = -3
},
-/area/shuttle/syndicate)
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Secure Armory East";
+ dir = 8;
+ network = list("SS13","Security")
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/securearmoury)
"acr" = (
/obj/machinery/door/window{
dir = 2;
@@ -301,104 +373,204 @@
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"acs" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
"act" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
+/obj/structure/window/reinforced{
dir = 1
},
-/area/security/range)
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Secure Armory";
+ req_access_txt = "1"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/securearmoury)
"acu" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/suit/armor/laserproof,
+/obj/item/gun/energy/ionrifle,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window{
+ name = "Secure Armory";
+ req_access_txt = "1"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/security/securearmoury)
"acv" = (
-/obj/effect/decal/warning_stripes/southeast,
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ icon_state = "dark"
},
-/area/security/range)
+/area/security/securearmoury)
"acw" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/storage/box/teargas,
+/obj/item/storage/box/teargas{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_x = 30
+ },
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ icon_state = "dark"
},
-/area/security/main)
+/area/security/securearmoury)
"acx" = (
-/obj/machinery/light/small{
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/suit/armor/laserproof,
+/obj/item/gun/energy/ionrifle,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
dir = 1
},
+/obj/machinery/door/window{
+ name = "Secure Armory";
+ req_access_txt = "1"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ icon_state = "dark"
},
-/area/security/main)
+/area/security/securearmoury)
"acy" = (
-/obj/item/soap/nanotrasen,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/area/security/main)
-"acz" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil,
-/obj/item/crowbar/red,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/item/gun/energy/laser{
+ pixel_x = -2;
+ pixel_y = 3
},
-/area/shuttle/syndicate)
+/obj/item/gun/energy/laser,
+/obj/item/gun/energy/laser{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/securearmoury)
"acA" = (
-/obj/structure/table,
-/obj/item/storage/box/zipties,
+/obj/machinery/recharge_station/upgraded,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"acB" = (
-/obj/machinery/shower{
- tag = "icon-shower (WEST)";
- icon_state = "shower";
- dir = 8
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
},
-/obj/structure/curtain/open/shower/security,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 1
},
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
/area/security/main)
"acC" = (
-/obj/structure/lattice,
-/turf/simulated/wall/r_wall,
-/area/security/securearmoury)
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/main)
"acD" = (
-/obj/machinery/door/airlock{
- name = "Toilet";
- req_access_txt = "0"
+/obj/structure/window/reinforced/polarized{
+ id = "hos_room"
},
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "hos_room"
},
-/area/security/main)
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "hos_room"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "hos_room"
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/security/hos)
"acE" = (
-/obj/structure/sink{
+/obj/structure/rack{
dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 0
+ layer = 2.9
},
-/obj/structure/mirror{
- pixel_x = -28
+/obj/item/gun/energy/gun/advtaser{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/gun/advtaser,
+/obj/item/gun/energy/gun/advtaser{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/structure/window/reinforced{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ icon_state = "dark"
},
-/area/security/main)
+/area/security/securearmoury)
"acF" = (
/mob/living/simple_animal/crab/Coffee,
/turf/simulated/floor/plasteel{
@@ -426,79 +598,74 @@
/turf/simulated/floor/plating,
/area/security/prisonershuttle)
"acH" = (
+/obj/machinery/door/airlock/hatch/gamma{
+ locked = 1;
+ req_access_txt = "1";
+ security_level = 1;
+ use_power = 0
+ },
/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+ icon_state = "dark"
},
-/area/security/armoury)
+/area/security/securearmoury)
"acI" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
+/obj/machinery/porta_turret/syndicate{
+ pixel_y = -2
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "diagonalWall3"
},
/area/shuttle/syndicate)
"acJ" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
+/obj/structure/table,
+/obj/item/storage/box/syndidonkpockets,
+/obj/item/storage/box/syndidonkpockets,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"acK" = (
-/obj/structure/rack,
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/energy/gun/advtaser,
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/floor/plasteel{
+/obj/structure/rack{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ layer = 2.9
},
-/area/security/securearmoury)
-"acL" = (
-/obj/item/radio/intercom{
- dir = 8;
- pixel_x = -28
+/obj/item/storage/lockbox/mindshield,
+/obj/item/storage/box/trackimp,
+/obj/item/storage/box/chemimp{
+ pixel_x = 4;
+ pixel_y = 3
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/item/lock_buster,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 1;
- name = "west bump Important Area";
- pixel_y = 24
+/obj/structure/window/reinforced{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "vault"
+ icon_state = "dark"
},
/area/security/securearmoury)
-"acM" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/ears/earmuffs{
- pixel_x = -3;
- pixel_y = -2
+"acL" = (
+/obj/structure/table,
+/obj/item/taperecorder,
+/obj/machinery/light_switch{
+ pixel_x = -25;
+ pixel_y = -8
},
-/obj/item/clothing/ears/earmuffs,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/item/radio/intercom/department/security{
+ pixel_x = -29;
+ pixel_y = 3
},
/turf/simulated/floor/plasteel,
-/area/security/range)
+/area/security/main)
+"acM" = (
+/obj/structure/lattice,
+/turf/simulated/wall/r_wall,
+/area/security/main)
"acN" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
frequency = 1331;
id_tag = "synd_pump"
},
@@ -507,24 +674,22 @@
},
/area/shuttle/syndicate)
"acO" = (
-/obj/machinery/magnetic_controller{
- autolink = 1;
- name = "Firing Range Control Console";
- path = "w;e;e;w;s;n;n;s";
- pixel_x = 0;
- pixel_y = 0
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/turf/simulated/wall,
-/area/security/range)
+/turf/simulated/floor/plasteel,
+/area/security/main)
"acP" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/flashbangs,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 32
},
-/turf/simulated/floor/plasteel,
-/area/security/range)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/hos)
"acQ" = (
/obj/machinery/atmospherics/pipe/manifold4w/hidden,
/turf/simulated/shuttle/floor{
@@ -533,39 +698,63 @@
/area/shuttle/syndicate)
"acR" = (
/obj/machinery/door/airlock{
- name = "Toilet";
- req_access_txt = "0"
+ name = "Toilet"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/security/permabrig)
"acS" = (
-/obj/structure/toilet{
- dir = 1
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/machinery/light/small,
+/obj/item/gun/energy/gun{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/gun,
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+ icon_state = "dark"
},
-/area/security/main)
+/area/security/securearmoury)
"acT" = (
/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 8;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
+/turf/space,
+/area/space)
"acU" = (
-/obj/machinery/porta_turret/syndicate,
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "wall3"
+/obj/structure/closet/syndicate/personal,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
/area/shuttle/syndicate)
"acV" = (
-/obj/item/restraints/handcuffs/pinkcuffs,
-/turf/simulated/floor/plating,
+/obj/structure/table,
+/obj/item/ashtray/bronze{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/storage/fancy/cigarettes/cigpack_robust,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Brig Briefing Room West";
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
/area/security/main)
"acW" = (
/obj/structure/cable{
@@ -579,16 +768,13 @@
icon_state = "2-4"
},
/obj/structure/closet/emcloset,
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
+/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"acX" = (
/obj/structure/table,
/obj/item/storage/box/prisoner,
/obj/machinery/camera{
- c_tag = "Brig Labor Camp Airlock North";
- network = list("SS13")
+ c_tag = "Brig Labor Camp Airlock North"
},
/obj/structure/cable{
d1 = 4;
@@ -609,9 +795,7 @@
d2 = 8;
icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
+/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"ada" = (
/obj/machinery/door/firedoor,
@@ -625,22 +809,24 @@
},
/area/security/prisonershuttle)
"adb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/structure/window/reinforced/polarized{
+ id = "hos_room"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "hos_room"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "hos_room"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/security/armoury)
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/security/hos)
"adc" = (
/obj/machinery/door/airlock/external{
frequency = 1331;
@@ -652,8 +838,7 @@
req_access_txt = "150"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 6
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
@@ -673,117 +858,184 @@
/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
"ade" = (
-/obj/machinery/suit_storage_unit/syndicate/secure,
+/obj/structure/table,
+/obj/item/aicard,
+/obj/item/storage/box/zipties,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"adf" = (
-/obj/structure/closet/syndicate/nuclear,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ frequency = 1331;
+ id_tag = "synd_airlock";
+ pixel_x = 25;
+ req_access_txt = "150";
+ tag_airpump = "synd_pump";
+ tag_chamber_sensor = "synd_sensor";
+ tag_exterior_door = "synd_outer";
+ tag_interior_door = "synd_inner"
+ },
+/obj/machinery/airlock_sensor{
+ frequency = 1331;
+ id_tag = "synd_sensor";
+ pixel_x = 25;
+ pixel_y = 12;
+ req_access_txt = "150"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"adg" = (
+/obj/structure/window/reinforced/polarized{
+ id = "hos_room"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "hos_room"
+ },
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
tag = ""
},
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/suit_storage_unit/security,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/security/securearmoury)
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/security/hos)
"adh" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/window/reinforced/polarized{
+ id = "hos_room"
},
-/area/security/securearmoury)
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "hos_room"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "hos_room"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/security/hos)
"adi" = (
-/obj/structure/table/reinforced,
-/obj/item/gun/energy/laser/practice,
-/obj/machinery/recharger{
- pixel_y = 0
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 1
},
-/obj/machinery/alarm{
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "hos"
+ },
+/obj/structure/window/reinforced/polarized{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ id = "hos"
},
+/obj/structure/grille,
/turf/simulated/floor/plating,
-/area/security/range)
+/area/security/hos)
"adj" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+/obj/item/radio/intercom{
+ pixel_y = 25
+ },
+/obj/effect/decal/warning_stripes/red/partial{
+ dir = 4
},
-/area/security/range)
-"adk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/security/range)
-"adl" = (
-/obj/machinery/light{
+/area/security/main)
+"adk" = (
+/obj/structure/closet/secure_closet/security,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
dir = 1
},
-/obj/machinery/camera{
- c_tag = "Firing Range";
- dir = 2;
- network = list("SS13")
+/obj/item/clothing/mask/balaclava,
+/turf/simulated/floor/plasteel,
+/area/security/main)
+"adl" = (
+/obj/machinery/vending/security,
+/turf/simulated/floor/plasteel,
+/area/security/main)
+"adm" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/syndicatebomb/training,
/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+ icon_state = "dark"
},
-/area/security/range)
-"adm" = (
-/obj/structure/table/reinforced,
-/obj/item/gun/energy/laser/practice,
-/obj/machinery/recharger{
- pixel_y = 0
+/area/security/hos)
+"adn" = (
+/obj/structure/closet/secure_closet/security,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/range)
-"adn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/clothing/mask/balaclava,
/turf/simulated/floor/plasteel,
-/area/security/range)
+/area/security/main)
"ado" = (
/turf/simulated/floor/plasteel,
/area/security/permabrig)
"adp" = (
-/obj/machinery/door/airlock{
- name = "Bathroom";
- req_access_txt = "0"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
},
-/area/security/main)
-"adq" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
+/area/security/main)
+"adq" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/turf/simulated/floor/wood,
/area/security/hos)
"adr" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -791,9 +1043,7 @@
d2 = 4;
icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
+/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"ads" = (
/obj/structure/cable{
@@ -801,9 +1051,7 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
+/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"adt" = (
/obj/effect/spawner/window/reinforced,
@@ -824,60 +1072,77 @@
/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"adv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/security/armoury)
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/security/hos)
"adw" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/table/wood,
+/obj/item/paper_bin/nanotrasen,
+/obj/item/pen/multi,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/securearmoury)
+/area/security/hos)
"adx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/closet/secure_closet/security,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/clothing/mask/balaclava,
/turf/simulated/floor/plasteel,
-/area/security/range)
+/area/security/main)
"ady" = (
-/obj/structure/chair/stool,
+/obj/structure/table,
+/obj/item/multitool,
+/obj/item/stack/sheet/glass{
+ amount = 10
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"adz" = (
-/obj/structure/table,
-/obj/item/aicard,
+/obj/structure/mirror{
+ pixel_y = -30
+ },
+/obj/structure/sink{
+ dir = 1
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"adA" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+/obj/machinery/door/airlock/external{
+ frequency = 1331;
+ icon_state = "door_locked";
+ id_tag = "synd_outer";
+ name = "Ship External Access";
+ req_access = null;
+ req_access_txt = "150"
},
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "smindicate";
+ layer = 5;
+ name = "Outer Airlock";
+ opacity = 0
},
+/turf/simulated/shuttle/plating,
/area/shuttle/syndicate)
"adB" = (
/obj/machinery/door/airlock/external{
frequency = 1331;
icon_state = "door_locked";
id_tag = "synd_outer";
- locked = 0;
name = "Ship External Access";
req_access = null;
req_access_txt = "150"
@@ -886,6 +1151,7 @@
density = 0;
icon_state = "open";
id_tag = "smindicate";
+ layer = 5;
name = "Outer Airlock";
opacity = 0
},
@@ -918,71 +1184,52 @@
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate)
"adC" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK"
+ },
/turf/space,
/turf/simulated/shuttle/wall{
- dir = 1;
- icon_state = "diagonalWall3"
+ icon_state = "wall3"
},
/area/shuttle/syndicate)
"adD" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/turf/simulated/floor/plasteel,
-/area/security/range)
+/turf/simulated/floor/wood,
+/area/security/hos)
"adE" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
- },
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/security/range)
-"adF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/cable{
- d1 = 2;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel,
-/area/security/range)
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/medbay)
+"adF" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/medbay)
"adG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+/obj/structure/closet/secure_closet/security,
+/obj/structure/window/reinforced{
+ dir = 4
},
-/area/security/range)
+/obj/item/clothing/mask/balaclava,
+/turf/simulated/floor/plasteel,
+/area/security/main)
"adH" = (
-/obj/structure/table/wood,
-/obj/item/pen/multi,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/machinery/button/windowtint{
+ id = "hos_room";
+ pixel_x = -24;
+ pixel_y = 25
},
-/obj/item/paper_bin/nanotrasen,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -992,6 +1239,10 @@
/obj/machinery/recharger{
pixel_y = 4
},
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -1014,15 +1265,12 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
+/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"adL" = (
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
@@ -1044,7 +1292,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel,
@@ -1058,84 +1305,64 @@
"adO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+ initialize_directions = 10
},
+/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"adP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/security/armoury)
+/turf/simulated/floor/wood,
+/area/security/hos)
"adQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
+/obj/structure/closet/secure_closet/security,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Firing Range";
- req_access_txt = "1"
+/obj/machinery/camera{
+ c_tag = "Brig Security Equipment Lockers";
+ dir = 4
},
+/obj/item/clothing/mask/balaclava,
/turf/simulated/floor/plasteel,
-/area/security/range)
+/area/security/main)
"adR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Firing Range";
- req_access_txt = "1"
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/plasteel,
-/area/security/range)
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/securearmoury)
"adS" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
- dir = 8
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
-/obj/machinery/suit_storage_unit/syndicate/secure,
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"adT" = (
-/obj/structure/table,
-/obj/item/grenade/plastic/c4{
- pixel_x = 2;
- pixel_y = 1
- },
+/obj/structure/closet/syndicate/nuclear,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"adU" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
- dir = 8
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
@@ -1148,37 +1375,34 @@
id_tag = "vox_southwest_lock";
locked = 1;
req_access_txt = "152";
- req_one_access = null;
- req_one_access_txt = "0"
+ req_one_access = null
},
/obj/machinery/access_button{
command = "cycle_interior";
frequency = 1331;
master_tag = "vox_west_control";
- req_one_access_txt = "152";
- pixel_x = 28
+ pixel_x = 28;
+ req_one_access_txt = "152"
},
/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
"adW" = (
-/obj/machinery/atmospherics/unary/tank/air{
- dir = 2
+/obj/structure/sink{
+ dir = 1
},
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "wall3"
+/obj/structure/mirror{
+ pixel_y = -30
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
/area/shuttle/syndicate)
"adX" = (
-/obj/structure/chair/stool,
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/effect/landmark/start{
- name = "Detective"
- },
/turf/simulated/floor/plasteel,
/area/security/main)
"adY" = (
@@ -1188,6 +1412,12 @@
icon_state = "2-8";
tag = ""
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
@@ -1219,7 +1449,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -1236,7 +1465,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -1256,9 +1484,7 @@
"aee" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
+/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"aef" = (
/obj/effect/spawner/window/reinforced,
@@ -1297,97 +1523,51 @@
/area/security/medbay)
"aei" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Warden's Office";
- req_access_txt = "3"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "0-8"
},
-/area/security/armoury)
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/securearmoury)
"aej" = (
-/obj/structure/closet/secure_closet/security,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- name = "Security Requests Console";
- pixel_x = 0;
- pixel_y = 30
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+/obj/effect/decal/warning_stripes/red/partial{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
/area/security/main)
"aek" = (
-/obj/item/radio/intercom/department/security{
- pixel_x = -28
- },
-/obj/machinery/camera{
- c_tag = "Brig Security Equipment Lockers";
- dir = 4;
- network = list("SS13")
+/obj/structure/closet/secure_closet/security,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+/obj/structure/window/reinforced,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
},
+/obj/item/clothing/mask/balaclava,
+/turf/simulated/floor/plasteel,
/area/security/main)
"ael" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "0-2";
+ pixel_y = 1
},
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
/area/security/main)
"aem" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+ dir = 4
},
+/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"aen" = (
/obj/machinery/door/airlock/hatch{
@@ -1396,15 +1576,14 @@
id_tag = "vox_southeast_lock";
locked = 1;
req_access_txt = "152";
- req_one_access = null;
- req_one_access_txt = "0"
+ req_one_access = null
},
/obj/machinery/access_button{
command = "cycle_interior";
frequency = 1331;
master_tag = "vox_east_control";
- req_one_access_txt = "152";
- pixel_x = -30
+ pixel_x = -30;
+ req_one_access_txt = "152"
},
/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
@@ -1419,18 +1598,18 @@
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTHWEST)";
+ dir = 1;
icon_state = "whiteblue";
- dir = 9
+ tag = "icon-whiteblue (NORTH)"
},
/area/security/medbay)
"aeq" = (
/obj/structure/bed,
/obj/item/bedsheet/blue,
/turf/simulated/floor/plasteel{
- dir = 5;
+ dir = 1;
icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ tag = "icon-whiteblue (NORTH)"
},
/area/security/medbay)
"aer" = (
@@ -1443,20 +1622,17 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
+ dir = 1;
icon_state = "whiteblue";
- dir = 1
+ tag = "icon-whiteblue (NORTH)"
},
/area/security/medbay)
"aes" = (
-/obj/machinery/door/window{
- dir = 4;
- name = "Equipment Room";
- req_access_txt = "150"
+/obj/structure/sign/poster/contraband/syndicate_recruitment{
+ pixel_y = 32
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
@@ -1469,49 +1645,33 @@
master_tag = "synd_airlock";
name = "interior access button";
pixel_x = 25;
- pixel_y = 25;
- req_access_txt = "0"
+ pixel_y = 25
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"aeu" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
- name = "standard air scrubber";
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
- },
-/area/security/range)
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/plasteel,
+/area/security/main)
"aev" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
- },
-/area/security/range)
-"aew" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
+/turf/simulated/floor/carpet,
+/area/security/hos)
+"aew" = (
+/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHWEST)"
},
-/area/security/armoury)
+/area/security/medbay)
"aex" = (
/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/sit,
/turf/simulated/shuttle/floor{
@@ -1526,45 +1686,54 @@
},
/area/security/warden)
"aez" = (
-/obj/effect/decal/warning_stripes/red/partial,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = 30
},
-/turf/simulated/floor/plasteel,
-/area/security/main)
+/obj/machinery/camera{
+ c_tag = "Brig Medbay"
+ },
+/obj/structure/table/glass,
+/obj/item/clothing/glasses/hud/health,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
+ },
+/area/security/medbay)
"aeA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
-/turf/simulated/floor/plasteel,
-/area/security/main)
+/area/security/medbay)
"aeB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 1
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/turf/simulated/floor/plasteel,
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
/area/security/main)
"aeC" = (
/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/mug/hos,
+/obj/item/reagent_containers/food/drinks/mug/hos{
+ pixel_x = -6;
+ pixel_y = 16
+ },
/turf/simulated/floor/carpet,
/area/security/hos)
"aeD" = (
/obj/machinery/computer/secure_data,
/obj/item/radio/intercom/department/security{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -1590,8 +1759,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/fans/tiny,
/turf/simulated/floor/plating,
@@ -1627,9 +1795,9 @@
/obj/item/reagent_containers/syringe/charcoal,
/obj/item/reagent_containers/glass/bottle/epinephrine,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTHWEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 9
+ tag = "icon-whiteblue (WEST)"
},
/area/security/medbay)
"aeK" = (
@@ -1638,26 +1806,22 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 4;
+ icon_state = "white"
},
/area/security/medbay)
"aeL" = (
-/obj/structure/table/glass,
-/obj/item/clothing/glasses/hud/health,
-/obj/machinery/camera{
- c_tag = "Brig Medbay";
- dir = 2;
- network = list("SS13")
+/obj/machinery/firealarm{
+ pixel_y = 24
},
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = 30
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
+ dir = 5;
icon_state = "whiteblue";
- dir = 1
+ tag = "icon-whitehall (WEST)"
},
/area/security/medbay)
"aeM" = (
@@ -1673,8 +1837,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "white"
},
/area/security/medbay)
"aeN" = (
@@ -1684,8 +1847,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
@@ -1707,51 +1869,83 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
/obj/structure/table/glass,
/obj/item/clothing/accessory/stethoscope,
/obj/item/storage/belt/medical,
/turf/simulated/floor/plasteel{
- dir = 5;
+ dir = 4;
icon_state = "whiteblue";
tag = "icon-whitehall (WEST)"
},
/area/security/medbay)
"aeP" = (
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Equipment Room";
- req_access_txt = "150"
+/obj/machinery/porta_turret/syndicate{
+ pixel_y = 2
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/space,
+/turf/simulated/shuttle/wall{
+ dir = 8;
+ icon_state = "diagonalWall3"
},
/area/shuttle/syndicate)
"aeQ" = (
-/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/airlock/external{
+ frequency = 1331;
+ icon_state = "door_locked";
+ id_tag = "synd_inner";
+ locked = 1;
+ name = "Ship External Access";
+ req_access = null;
+ req_access_txt = "150"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"aeR" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
+/obj/structure/rack{
dir = 8;
- name = "standard air scrubber";
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+ layer = 2.9
+ },
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Secure Armory";
+ req_access_txt = "1"
},
/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+ icon_state = "dark"
},
-/area/security/armoury)
+/area/security/securearmoury)
"aeS" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/storage/box/buck{
+ pixel_x = 3
+ },
+/obj/item/storage/box/buck{
+ pixel_y = 3
+ },
+/obj/item/storage/box/slug{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -1763,13 +1957,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/sink{
- pixel_y = 32
- },
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
- icon_state = "whiteblue";
- dir = 1
+ dir = 4;
+ icon_state = "white"
},
/area/security/medbay)
"aeU" = (
@@ -1796,14 +1986,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -1817,9 +2003,6 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/machinery/door_control{
desc = "A remote control-switch to lock down the prison wing's blast doors";
id = "Prison Gate";
@@ -1843,6 +2026,10 @@
pixel_y = 17;
req_access_txt = "58"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
/turf/simulated/floor/carpet,
/area/security/hos)
"aeX" = (
@@ -1865,14 +2052,10 @@
/area/security/prisonershuttle)
"aeZ" = (
/obj/structure/closet/emcloset,
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
+/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"afa" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = -27
},
/obj/structure/table,
@@ -1912,33 +2095,29 @@
/obj/machinery/computer/med_data/laptop,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light{
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/security/medbay)
"afe" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- name = "standard air scrubber";
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Armory_sprava";
- location = "Armory_South"
+/obj/structure/closet/secure_closet/hos,
+/obj/item/reagent_containers/food/drinks/flask/barflask,
+/obj/item/megaphone,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/securearmoury)
+/area/security/hos)
"aff" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
@@ -1973,7 +2152,6 @@
/obj/machinery/sleeper,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -1997,8 +2175,7 @@
cell_type = 5000;
dir = 8;
name = "west bump Important Area";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
@@ -2010,28 +2187,46 @@
/obj/machinery/door_control{
id = "Secure Gate";
name = "Brig Lockdown";
- pixel_x = 3;
- pixel_y = -28;
+ pixel_x = 6;
+ pixel_y = -25;
req_access_txt = "2"
},
/obj/machinery/door_control{
desc = "A remote control-switch to lock down the prison wing's blast doors";
id = "Prison Gate";
name = "Prison Wing Lockdown";
- pixel_x = -7;
- pixel_y = -28;
+ pixel_x = -6;
+ pixel_y = -25;
req_access_txt = "2"
},
+/obj/machinery/door_control{
+ id = "SecureArmory";
+ name = "Secure Armory Shutters";
+ pixel_x = -6;
+ pixel_y = -35;
+ req_access_txt = "3"
+ },
+/obj/machinery/door_control{
+ id = "armory";
+ name = "Armory Shutter";
+ pixel_x = 6;
+ pixel_y = -35;
+ req_access_txt = "3"
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/warden)
"afm" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "vault"
+ dir = 1;
+ icon_state = "darkred"
},
-/area/security/securearmoury)
+/area/security/warden)
"afn" = (
/obj/structure/chair{
dir = 8
@@ -2081,14 +2276,12 @@
dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue";
tag = "icon-whitehall (WEST)"
},
/area/security/medbay)
"afs" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue";
tag = "icon-whitehall (WEST)"
},
@@ -2097,7 +2290,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -2105,8 +2297,7 @@
"afu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/structure/cable{
d1 = 1;
@@ -2114,9 +2305,9 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/security/medbay)
"afv" = (
@@ -2130,21 +2321,14 @@
"afw" = (
/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue";
tag = "icon-whitehall (WEST)"
},
/area/security/medbay)
"afx" = (
-/obj/structure/closet/wardrobe/red,
-/obj/machinery/light_switch{
- pixel_y = -25
- },
-/obj/item/clothing/suit/tracksuit/red,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
- },
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
/area/security/main)
"afy" = (
/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/sst,
@@ -2153,9 +2337,11 @@
},
/area/shuttle/syndicate_elite)
"afz" = (
-/obj/machinery/recharge_station/upgraded,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/atmospherics/unary/tank/air{
+ dir = 1
+ },
+/turf/simulated/shuttle/wall{
+ icon_state = "wall3"
},
/area/shuttle/syndicate)
"afA" = (
@@ -2167,15 +2353,28 @@
"afB" = (
/obj/structure/table,
/obj/machinery/cell_charger,
+/obj/item/stack/cable_coil{
+ pixel_y = 10
+ },
+/obj/item/stock_parts/cell/high{
+ pixel_x = 6;
+ pixel_y = 1
+ },
+/obj/item/stock_parts/cell/high{
+ pixel_x = 6;
+ pixel_y = 1
+ },
+/obj/item/stock_parts/cell/high{
+ pixel_x = 6;
+ pixel_y = 1
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"afC" = (
/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 0
- },
+/obj/machinery/recharger,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -2189,66 +2388,57 @@
},
/area/shuttle/syndicate)
"afE" = (
-/obj/structure/table,
-/obj/item/stock_parts/cell/high{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/stock_parts/cell/high,
+/obj/structure/computerframe,
+/obj/item/paper/synditele,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"afF" = (
-/obj/structure/table,
-/obj/item/screwdriver{
- pixel_y = 9
- },
-/obj/item/assembly/voice{
- pixel_y = 3
- },
+/obj/machinery/teleport/station,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"afG" = (
-/obj/structure/table,
-/obj/item/wrench,
-/obj/item/assembly/infra,
+/obj/machinery/teleport/hub/upgraded,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"afH" = (
-/obj/structure/table,
-/obj/item/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/assembly/signaler,
-/obj/item/assembly/signaler,
+/obj/structure/closet/crate/internals,
+/obj/item/tank/oxygen/red,
+/obj/item/clothing/mask/gas,
+/obj/item/tank/oxygen/red,
+/obj/item/clothing/mask/gas,
+/obj/item/tank/oxygen/red,
+/obj/item/clothing/mask/gas,
+/obj/item/tank/oxygen/red,
+/obj/item/clothing/mask/gas,
+/obj/item/tank/oxygen/red,
+/obj/item/clothing/mask/gas,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"afI" = (
-/obj/structure/table,
-/obj/item/weldingtool/largetank,
-/obj/item/multitool,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/porta_turret/syndicate{
+ pixel_y = 2
+ },
+/turf/space,
+/turf/simulated/shuttle/wall{
+ dir = 1;
+ icon_state = "diagonalWall3"
},
/area/shuttle/syndicate)
"afJ" = (
-/obj/effect/landmark/start{
- name = "Security Officer"
+/obj/structure/closet/l3closet/security,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/security/main)
+/area/security/armoury)
"afK" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -2302,14 +2492,12 @@
/area/space/nearstation)
"afP" = (
/obj/machinery/door/window{
- dir = 4;
name = "Infirmary";
req_access_txt = "150"
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
@@ -2321,18 +2509,9 @@
req_access_txt = "150"
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
-/area/shuttle/syndicate)
-"afR" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/syndicate,
-/obj/item/crowbar/red,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -2340,14 +2519,11 @@
"afS" = (
/obj/structure/closet/secure_closet/brig,
/obj/machinery/camera{
- c_tag = "Prisoner Lockers";
- dir = 2;
- network = list("SS13")
+ c_tag = "Prisoner Lockers"
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -2385,7 +2561,6 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Brig Medical Bay";
- req_access_txt = "0";
req_one_access_txt = "63"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -2397,15 +2572,18 @@
},
/area/security/medbay)
"afX" = (
-/obj/structure/grille,
-/turf/simulated/floor/plating/airless,
+/obj/structure/lattice,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
+ },
+/turf/simulated/wall,
/area/space/nearstation)
"afY" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Brig Medical Bay";
- req_access_txt = "0";
req_one_access_txt = "63"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -2415,9 +2593,9 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/security/medbay)
"afZ" = (
@@ -2434,15 +2612,14 @@
id_tag = "vox_northwest_lock";
locked = 1;
req_access_txt = "152";
- req_one_access = null;
- req_one_access_txt = "0"
+ req_one_access = null
},
/obj/machinery/access_button{
command = "cycle_exterior";
frequency = 1331;
master_tag = "vox_west_control";
- req_one_access_txt = "152";
- pixel_x = -29
+ pixel_x = -29;
+ req_one_access_txt = "152"
},
/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
@@ -2480,8 +2657,7 @@
id_tag = "vox_northeast_lock";
locked = 1;
req_access_txt = "152";
- req_one_access = null;
- req_one_access_txt = "0"
+ req_one_access = null
},
/obj/docking_port/mobile{
dir = 2;
@@ -2504,16 +2680,15 @@
command = "cycle_exterior";
frequency = 1331;
master_tag = "vox_east_control";
- req_access_txt = "152";
- pixel_x = 28
+ pixel_x = 28;
+ req_access_txt = "152"
},
/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
"agf" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
- dir = 8
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
/obj/machinery/sleeper/syndie{
dir = 4
@@ -2525,7 +2700,6 @@
"agg" = (
/obj/machinery/door/window{
base_state = "right";
- dir = 4;
icon_state = "right";
name = "Infirmary";
req_access_txt = "150"
@@ -2544,22 +2718,6 @@
icon_state = "floor4"
},
/area/shuttle/syndicate)
-"agi" = (
-/obj/structure/closet/crate/internals,
-/obj/item/tank/oxygen/red,
-/obj/item/clothing/mask/gas,
-/obj/item/tank/oxygen/red,
-/obj/item/clothing/mask/gas,
-/obj/item/tank/oxygen/red,
-/obj/item/clothing/mask/gas,
-/obj/item/tank/oxygen/red,
-/obj/item/clothing/mask/gas,
-/obj/item/tank/oxygen/red,
-/obj/item/clothing/mask/gas,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/syndicate)
"agj" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -2586,15 +2744,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/prisonlockers)
@@ -2604,7 +2760,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2614,8 +2769,7 @@
/area/security/prisonlockers)
"agn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -2639,8 +2793,7 @@
"agp" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -2656,8 +2809,7 @@
/area/security/brig)
"agq" = (
/obj/machinery/camera{
- c_tag = "Brig Main Hall West 2";
- network = list("SS13")
+ c_tag = "Brig Main Hall West 2"
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
@@ -2684,14 +2836,36 @@
},
/area/security/brig)
"agt" = (
-/turf/simulated/wall/r_wall,
-/area/security/armoury)
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "hos_room"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "hos_room"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "hos_room"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/security/hos)
"agu" = (
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/bed,
+/obj/item/bedsheet/hos,
+/obj/effect/landmark/start{
+ name = "Head of Security"
},
-/area/security/securearmoury)
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -30
+ },
+/turf/simulated/floor/wood,
+/area/security/hos)
"agv" = (
/obj/structure/cable{
d1 = 1;
@@ -2718,9 +2892,13 @@
req_access_txt = "152"
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
- dir = 4
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1331;
+ id_tag = "vox_west_vent"
},
/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
@@ -2733,58 +2911,21 @@
},
/area/security/prisonershuttle)
"agz" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "voxshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- tag = "icon-window5_end";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- dir = 2
- },
-/turf/simulated/shuttle/plating/vox,
+/obj/machinery/computer/camera_advanced/shuttle_docker/vox,
+/turf/simulated/shuttle/floor4/vox,
/area/shuttle/vox)
"agA" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "voxshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- tag = "icon-window5_end (NORTH)";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- dir = 1
+/obj/structure/table,
+/obj/machinery/door_control{
+ id = "voxshutters";
+ name = "remote shutter control";
+ req_access_txt = "152"
},
-/turf/simulated/shuttle/plating/vox,
+/turf/simulated/shuttle/floor4/vox,
/area/shuttle/vox)
"agB" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "voxshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- tag = "icon-window5_mid";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- dir = 2
- },
-/turf/simulated/shuttle/plating/vox,
+/obj/machinery/computer/shuttle/vox,
+/turf/simulated/shuttle/floor4/vox,
/area/shuttle/vox)
"agC" = (
/obj/machinery/airlock_sensor{
@@ -2794,9 +2935,13 @@
req_access_txt = "152"
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
- dir = 8
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1331;
+ id_tag = "vox_east_vent"
},
/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
@@ -2809,11 +2954,12 @@
},
/area/security/warden)
"agE" = (
-/obj/structure/table/glass,
-/obj/item/storage/backpack/duffel/syndie/surgery_fake,
-/obj/item/circular_saw,
-/obj/item/surgicaldrill,
-/obj/item/clothing/gloves/color/latex/nitrile,
+/obj/machinery/sleeper/syndie{
+ dir = 4
+ },
+/obj/item/radio/intercom/syndicate{
+ pixel_x = -28
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -2845,42 +2991,99 @@
/obj/structure/window/reinforced{
dir = 1
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/item/flag/syndi{
+ layer = 5
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"agI" = (
+/obj/effect/landmark{
+ name = "Nuclear-Bomb"
+ },
+/obj/machinery/light/spot,
/obj/machinery/door/window{
dir = 1;
name = "Secure Storage";
req_access_txt = "150"
},
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"agJ" = (
/obj/structure/table,
-/obj/item/radio/beacon/syndicate/bomb{
+/obj/item/multitool{
+ pixel_x = 11;
pixel_y = 5
},
-/obj/item/radio/beacon/syndicate/bomb,
+/obj/item/assembly/prox_sensor{
+ pixel_x = 10;
+ pixel_y = -5
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = 10;
+ pixel_y = -5
+ },
+/obj/item/assembly/signaler{
+ pixel_y = 11
+ },
+/obj/item/assembly/signaler{
+ pixel_y = 11
+ },
+/obj/item/assembly/signaler{
+ pixel_y = 11
+ },
+/obj/item/assembly/infra{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/assembly/infra{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/assembly/voice{
+ pixel_x = -10;
+ pixel_y = 12
+ },
+/obj/item/assembly/voice{
+ pixel_x = -10;
+ pixel_y = 12
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"agK" = (
/obj/structure/table,
+/obj/item/grenade/plastic/c4{
+ pixel_x = -4;
+ pixel_y = -2
+ },
/obj/item/grenade/syndieminibomb{
- pixel_x = 4;
- pixel_y = 2;
- pixel_z = 0
+ pixel_x = 8
+ },
+/obj/item/radio/beacon/syndicate/bomb{
+ pixel_x = -5;
+ pixel_y = 12
+ },
+/obj/item/radio/beacon/syndicate/bomb{
+ pixel_x = -5;
+ pixel_y = 12
+ },
+/obj/item/grenade/plastic/c4{
+ pixel_x = -4;
+ pixel_y = -2
},
/obj/item/grenade/syndieminibomb{
- pixel_x = -1
+ pixel_x = 8
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
@@ -2890,8 +3093,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
@@ -2929,7 +3131,6 @@
/area/security/brig)
"agO" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/machinery/light{
@@ -2954,56 +3155,41 @@
},
/area/security/brig)
"agQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkredcorners"
+ icon_state = "dark"
},
/area/security/brig)
"agR" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Armory_South";
- location = "Armory_North"
- },
-/mob/living/simple_animal/bot/secbot/armsky{
- auto_patrol = 1
+/obj/machinery/suit_storage_unit/security/secure,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/securearmoury)
"agS" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/area/security/securearmoury)
+/turf/simulated/floor/wood,
+/area/security/hos)
"agT" = (
/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/camera{
- c_tag = "Brig Main Hall Center";
- network = list("SS13")
+ c_tag = "Brig Main Hall Center"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3014,13 +3200,20 @@
},
/area/security/brig)
"agU" = (
-/obj/structure/disposalpipe/segment,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkredcorners"
+ icon_state = "dark"
},
/area/security/brig)
"agV" = (
@@ -3028,9 +3221,7 @@
dir = 4
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -3049,19 +3240,38 @@
},
/area/security/brig)
"agX" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Rubber bullets";
+ req_access = list(1)
+ },
+/obj/item/ammo_box/rubber9mm{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/ammo_box/magazine/enforcer{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/ammo_box/magazine/enforcer,
+/obj/item/ammo_box/magazine/enforcer{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/ammo_box/magazine/enforcer{
+ pixel_x = -6;
+ pixel_y = 6
},
-/turf/simulated/floor/plasteel,
-/area/security/seceqstorage)
-"agY" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "dark"
},
+/area/security/armoury)
+"agY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel,
/area/security/main)
"agZ" = (
/turf/simulated/shuttle/wall{
@@ -3083,33 +3293,29 @@
},
/area/shuttle/specops)
"ahc" = (
-/obj/machinery/computer/shuttle/vox,
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
/turf/simulated/shuttle/floor4/vox,
/area/shuttle/vox)
"ahd" = (
-/obj/structure/table,
-/obj/machinery/door_control{
- id = "voxshutters";
- name = "remote shutter control";
- req_access_txt = "152"
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 30
},
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate)
"ahe" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 4;
- name = "standard air scrubber";
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+/obj/structure/closet/bombclosetsecurity,
+/obj/effect/decal/warning_stripes/red/hollow,
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "dark"
},
-/area/security/main)
+/area/security/armoury)
"ahf" = (
/obj/structure/cable{
d1 = 1;
@@ -3125,29 +3331,20 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+ dir = 9;
+ icon_state = "red"
},
/area/security/main)
"ahg" = (
-/obj/structure/mirror{
- pixel_x = 28
- },
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
+/obj/machinery/bodyscanner,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/syndicate)
"ahh" = (
-/obj/effect/landmark{
- name = "Nuclear-Bomb"
+/obj/machinery/sleeper/syndie{
+ dir = 4
},
-/obj/machinery/light/spot,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -3176,8 +3373,6 @@
/area/security/brig)
"ahm" = (
/obj/structure/table/wood,
-/obj/item/book/manual/sop_security,
-/obj/item/book/manual/sop_legal,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
@@ -3201,10 +3396,10 @@
},
/obj/structure/grille,
/obj/structure/shuttle/window{
- tag = "icon-window5_end (WEST)";
+ dir = 8;
icon = 'icons/turf/shuttle.dmi';
icon_state = "window5_end";
- dir = 8
+ tag = "icon-window5_end (WEST)"
},
/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
@@ -3215,15 +3410,25 @@
/turf/simulated/shuttle/floor4/vox,
/area/shuttle/vox)
"ahq" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "voxshutters";
+ name = "Blast Shutters";
+ opacity = 0
},
-/turf/simulated/shuttle/floor4/vox,
+/obj/structure/grille,
+/obj/structure/shuttle/window{
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_end";
+ tag = "icon-window5_end"
+ },
+/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
"ahr" = (
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "voxshutters";
name = "Blast Shutters";
@@ -3231,10 +3436,10 @@
},
/obj/structure/grille,
/obj/structure/shuttle/window{
- tag = "icon-window5_end (WEST)";
+ dir = 8;
icon = 'icons/turf/shuttle.dmi';
icon_state = "window5_end";
- dir = 8
+ tag = "icon-window5_end (WEST)"
},
/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
@@ -3246,7 +3451,6 @@
/area/shuttle/vox)
"ahu" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -3274,7 +3478,7 @@
},
/area/shuttle/syndicate)
"ahw" = (
-/obj/machinery/optable,
+/obj/machinery/computer/operating,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -3287,20 +3491,42 @@
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate)
"ahz" = (
-/obj/structure/computerframe,
-/obj/item/paper/synditele,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "voxshutters";
+ name = "Blast Shutters";
+ opacity = 0
},
-/area/shuttle/syndicate)
+/obj/structure/grille,
+/obj/structure/shuttle/window{
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_mid";
+ tag = "icon-window5_mid"
+ },
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
"ahA" = (
-/obj/machinery/teleport/station,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "voxshutters";
+ name = "Blast Shutters";
+ opacity = 0
},
-/area/shuttle/syndicate)
+/obj/structure/grille,
+/obj/structure/shuttle/window{
+ dir = 1;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_end";
+ tag = "icon-window5_end (NORTH)"
+ },
+/turf/simulated/shuttle/plating/vox,
+/area/shuttle/vox)
"ahB" = (
-/obj/machinery/teleport/hub/upgraded,
+/obj/machinery/suit_storage_unit/syndicate/secure,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -3318,15 +3544,19 @@
},
/area/security/brig)
"ahD" = (
-/obj/item/radio/intercom/department/security{
- pixel_x = 0;
- pixel_y = 25
+/obj/machinery/camera{
+ c_tag = "Secure Armory West";
+ dir = 4;
+ network = list("SS13","Security")
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Armory_North";
+ location = "Armory_sprava"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkredcorners"
+ icon_state = "dark"
},
-/area/security/brig)
+/area/security/securearmoury)
"ahE" = (
/obj/structure/cable{
d1 = 1;
@@ -3345,38 +3575,38 @@
/turf/space,
/area/shuttle/gamma/station)
"ahG" = (
-/obj/structure/table,
-/obj/effect/decal/warning_stripes/red/hollow,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/lock_buster,
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/obj/item/radio/intercom{
- pixel_y = 25
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/item/storage/box/chemimp{
- pixel_x = 4;
- pixel_y = 3
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/item/storage/box/trackimp,
-/obj/item/storage/lockbox/mindshield,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/security/hos)
"ahH" = (
-/obj/item/grenade/barrier,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/area/security/armoury)
+/turf/simulated/floor/plasteel,
+/area/security/main)
"ahI" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -3396,10 +3626,10 @@
},
/obj/structure/grille,
/obj/structure/shuttle/window{
- tag = "icon-window5_end (EAST)";
+ dir = 4;
icon = 'icons/turf/shuttle.dmi';
icon_state = "window5_end";
- dir = 4
+ tag = "icon-window5_end (EAST)"
},
/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
@@ -3417,7 +3647,6 @@
"ahM" = (
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "voxshutters";
name = "Blast Shutters";
@@ -3425,17 +3654,17 @@
},
/obj/structure/grille,
/obj/structure/shuttle/window{
- tag = "icon-window5_end (EAST)";
+ dir = 4;
icon = 'icons/turf/shuttle.dmi';
icon_state = "window5_end";
- dir = 4
+ tag = "icon-window5_end (EAST)"
},
/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
"ahN" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l";
- icon_state = "propulsion_l"
+ icon_state = "propulsion_l";
+ tag = "icon-propulsion_l"
},
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate)
@@ -3445,8 +3674,8 @@
/area/shuttle/syndicate)
"ahP" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r";
- icon_state = "propulsion_r"
+ icon_state = "propulsion_r";
+ tag = "icon-propulsion_r"
},
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate)
@@ -3455,8 +3684,7 @@
pixel_y = 23
},
/obj/machinery/camera{
- c_tag = "Brig Main Hall East 1";
- network = list("SS13")
+ c_tag = "Brig Main Hall East 1"
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
@@ -3465,95 +3693,67 @@
},
/area/security/brig)
"ahR" = (
-/obj/item/grenade/barrier,
-/obj/structure/window/reinforced{
- dir = 4
+/obj/structure/table/reinforced,
+/obj/item/stack/medical/bruise_pack/advanced,
+/obj/item/assembly/timer{
+ pixel_x = 3;
+ pixel_y = -8
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/item/assembly/timer{
+ pixel_y = -6;
+ pixel_z = 3
+ },
+/obj/item/flash{
+ pixel_x = -6
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ icon_state = "red"
},
-/area/security/armoury)
+/area/security/main)
"ahS" = (
-/obj/machinery/flasher/portable,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/area/security/armoury)
+/turf/simulated/floor/wood,
+/area/security/hos)
"ahT" = (
/obj/machinery/flasher/portable,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+ icon_state = "dark"
},
-/area/security/armoury)
+/area/security/securearmoury)
"ahU" = (
-/obj/structure/rack,
-/obj/item/gun/energy/gun{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/energy/gun,
-/obj/item/gun/energy/gun{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/suit_storage_unit/security,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "dark"
},
-/area/security/securearmoury)
+/area/security/hos)
"ahV" = (
-/obj/effect/spawner/window/reinforced,
+/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/securearmoury)
+/area/security/hos)
"ahW" = (
-/obj/machinery/ai_status_display{
- pixel_y = 32
- },
-/obj/structure/rack,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window{
- dir = 2;
- name = "Secure Armory";
- req_access_txt = "1"
+/obj/item/radio/intercom/department/security{
+ pixel_y = 25
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ dir = 4;
+ icon_state = "darkredcorners"
},
-/area/security/securearmoury)
+/area/security/brig)
"ahX" = (
/obj/structure/table,
/obj/item/clothing/under/color/orange/prison,
@@ -3562,29 +3762,29 @@
/turf/simulated/floor/plasteel,
/area/security/prisonlockers)
"ahY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8;
- name = "standard air scrubber";
- on = 1;
- scrub_N2O = 1;
- scrub_Toxins = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/security/seceqstorage)
+/area/security/armoury)
"ahZ" = (
/obj/machinery/door/airlock/hatch{
req_access_txt = "152"
},
-/turf/simulated/shuttle/plating/vox,
+/turf/simulated/shuttle/floor4/vox,
/area/shuttle/vox)
"aia" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -3598,18 +3798,6 @@
},
/turf/simulated/floor/plasteel,
/area/security/podbay)
-"aib" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/brig)
"aic" = (
/obj/effect/decal/warning_stripes/north,
/obj/machinery/space_heater,
@@ -3624,8 +3812,7 @@
/area/security/podbay)
"aid" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -3637,37 +3824,38 @@
/area/security/brig)
"aie" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/brig)
"aif" = (
-/obj/item/grenade/barrier,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_x = -32;
- pixel_y = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ icon_state = "dark"
},
-/area/security/armoury)
+/area/security/brig)
"aig" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -3694,114 +3882,57 @@
icon_state = "dark"
},
/area/security/brig)
-"aij" = (
-/obj/item/grenade/barrier,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/armoury)
"aik" = (
-/obj/machinery/flasher/portable,
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/armoury)
+/area/security/securearmoury)
"ail" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
"aim" = (
-/obj/machinery/light{
+/obj/machinery/atmospherics/unary/tank/nitrogen{
+ dir = 4
+ },
+/turf/simulated/shuttle/wall{
dir = 4;
- icon_state = "tube1"
+ icon_state = "wall3"
},
-/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
"ain" = (
-/obj/machinery/flasher/portable,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
- },
-/area/security/armoury)
-"aio" = (
-/obj/structure/rack,
-/obj/item/gun/energy/laser{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/energy/laser,
-/obj/item/gun/energy/laser{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
- },
-/area/security/securearmoury)
-"aip" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/bulletproof,
-/obj/item/clothing/head/helmet/alt,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/area/security/securearmoury)
-"aiq" = (
-/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/securearmoury)
-"air" = (
-/obj/machinery/light{
- dir = 1;
- in_use = 1
- },
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/laserproof,
-/obj/item/gun/energy/ionrifle,
-/obj/machinery/camera{
- c_tag = "Brig Secure Armory"
+"aio" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/window{
- dir = 2;
- name = "Secure Armory";
- req_access_txt = "1"
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "dark"
},
/area/security/securearmoury)
"ais" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -3817,8 +3948,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
@@ -3827,13 +3957,11 @@
/area/security/brig)
"aiu" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -3842,36 +3970,11 @@
"aiv" = (
/turf/simulated/wall/r_wall,
/area/security/securearmoury)
-"aiw" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 8;
- name = "west bump Important Area";
- pixel_x = -24;
- shock_proof = 0
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/camera{
- c_tag = "Brig Armory";
- dir = 4;
- network = list("SS13")
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
- },
-/area/security/armoury)
"aix" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -3879,29 +3982,29 @@
},
/turf/simulated/floor/plasteel,
/area/security/prisonlockers)
-"aiy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+"aiz" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/item/clothing/suit/armor/riot,
+/obj/item/shield/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/security/brig)
-"aiz" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/obj/structure/window/reinforced,
+/obj/machinery/door/window{
+ name = "Secure Armory";
+ req_access_txt = "1"
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ icon_state = "dark"
},
-/area/security/armoury)
+/area/security/securearmoury)
"aiA" = (
/obj/structure/cable{
d1 = 1;
@@ -3913,8 +4016,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3925,13 +4027,14 @@
},
/area/security/brig)
"aiB" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/bulletproof,
-/obj/item/clothing/head/helmet/alt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "dark"
},
/area/security/securearmoury)
"aiC" = (
@@ -3954,14 +4057,11 @@
/area/shuttle/vox)
"aiD" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/camera{
- c_tag = "Brig Main Hall West 1";
- network = list("SS13")
+ c_tag = "Brig Main Hall West 1"
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
@@ -3974,9 +4074,7 @@
dir = 1
},
/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 0
- },
+/obj/machinery/recharger,
/turf/simulated/shuttle/floor4/vox,
/area/shuttle/vox)
"aiF" = (
@@ -4045,7 +4143,6 @@
"aiM" = (
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "voxshutters";
name = "Blast Shutters";
@@ -4060,41 +4157,12 @@
},
/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
-"aiN" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/securearmoury)
-"aiO" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window{
- dir = 2;
- name = "Secure Armory";
- req_access_txt = "1"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
- },
-/area/security/securearmoury)
"aiP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4109,13 +4177,11 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -4126,8 +4192,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4140,8 +4205,7 @@
"aiS" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -4157,12 +4221,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -4171,7 +4233,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -4179,12 +4240,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -4205,12 +4264,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -4232,12 +4289,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -4253,13 +4308,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4284,8 +4337,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -4342,7 +4394,6 @@
},
/obj/item/pen,
/obj/item/radio/intercom/locked/prison{
- pixel_x = 0;
pixel_y = 25
},
/turf/simulated/floor/plasteel{
@@ -4352,9 +4403,7 @@
"ajg" = (
/obj/machinery/washing_machine,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -4379,32 +4428,55 @@
},
/area/security/permabrig)
"ajj" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/light{
- dir = 8
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "hos_room"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "hos_room"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
tag = ""
},
-/obj/machinery/camera{
- c_tag = "Brig Secure Armory";
- dir = 5
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/security/hos)
+"ajk" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/suit/armor/riot,
+/obj/item/shield/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window{
+ name = "Secure Armory";
+ req_access_txt = "1"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/securearmoury)
-"ajk" = (
-/obj/vehicle/secway,
-/obj/item/key/security,
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
- },
-/area/security/armoury)
"ajl" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel,
@@ -4420,16 +4492,28 @@
},
/area/security/brig)
"ajn" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/security/armoury)
+/obj/structure/dresser,
+/turf/simulated/floor/wood,
+/area/security/hos)
"ajo" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel{
+/obj/structure/rack{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ layer = 2.9
+ },
+/obj/item/storage/box/beanbag,
+/obj/item/storage/box/beanbag{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/tranquilizer{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
/area/security/securearmoury)
"ajp" = (
@@ -4440,28 +4524,28 @@
tag = ""
},
/obj/machinery/ai_status_display{
- pixel_w = 0;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/brig)
"ajq" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/bulletproof,
-/obj/item/clothing/head/helmet/alt,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+/obj/machinery/button/windowtint{
+ id = "hos_room";
+ pixel_x = -24;
+ pixel_y = -24
},
-/area/security/securearmoury)
+/turf/simulated/floor/wood,
+/area/security/hos)
"ajr" = (
-/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -4470,7 +4554,6 @@
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/storage/toolbox/mechanical{
- pixel_x = 0;
pixel_y = 10
},
/obj/item/stock_parts/cell/high/plus,
@@ -4489,15 +4572,12 @@
/area/security/podbay)
"aju" = (
/obj/machinery/camera{
- c_tag = "Brig Podbay";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Podbay"
},
/obj/machinery/door_control{
desc = "A remote control-switch for the pod doors.";
id = "secpodbay";
name = "Pod Door Control";
- pixel_x = 0;
pixel_y = 24;
req_access_txt = "71"
},
@@ -4509,9 +4589,7 @@
on = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/engine,
@@ -4531,35 +4609,49 @@
/area/security/podbay)
"ajz" = (
/obj/machinery/atmospherics/unary/tank/nitrogen{
- dir = 1
+ dir = 8
+ },
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "wall3"
},
-/turf/simulated/shuttle/floor4/vox,
/area/shuttle/vox)
"ajA" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/item/clothing/suit/space/syndicate/black/red,
+/obj/item/clothing/head/helmet/space/syndicate/black/red,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate)
"ajB" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/storage/toolbox/syndicate{
+ pixel_y = 7
+ },
+/obj/item/storage/toolbox/syndicate,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate)
"ajC" = (
-/obj/structure/rack,
-/obj/item/rcd,
-/obj/item/rcd_ammo,
-/obj/item/rcd_ammo,
-/obj/item/rcd_ammo,
-/turf/simulated/shuttle/floor4/vox,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1331;
+ id_tag = "vox_west_vent"
+ },
+/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
"ajD" = (
-/obj/structure/rack,
-/obj/item/tank/nitrogen,
-/obj/item/tank/nitrogen,
-/obj/item/tank/nitrogen,
-/obj/item/tank/nitrogen,
-/obj/item/tank/nitrogen,
-/obj/item/tank/nitrogen,
+/obj/item/storage/toolbox/electrical,
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/mechanical,
/turf/simulated/shuttle/floor4/vox,
/area/shuttle/vox)
"ajE" = (
@@ -4581,26 +4673,29 @@
/obj/item/dart_cartridge,
/obj/item/dart_cartridge,
/obj/item/dart_cartridge,
+/obj/item/gun/dartgun/vox/medical,
+/obj/item/gun/dartgun/vox/medical,
/turf/simulated/shuttle/floor4/vox,
/area/shuttle/vox)
"ajG" = (
-/obj/machinery/sleeper/upgraded{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1331;
+ id_tag = "vox_east_vent"
},
-/turf/simulated/shuttle/floor4/vox,
+/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
"ajH" = (
-/obj/machinery/bodyscanner,
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor4/vox,
-/area/shuttle/vox)
+/obj/machinery/optable,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/syndicate)
"ajJ" = (
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -4612,36 +4707,16 @@
},
/area/security/brig)
"ajK" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/riot,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/shield/riot,
-/obj/item/clothing/head/helmet/riot,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window{
- dir = 8;
- name = "Secure Armory";
- req_access_txt = "1"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
- },
-/area/security/securearmoury)
-"ajL" = (
-/obj/machinery/ai_status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/area/security/securearmoury)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/security/hos)
"ajM" = (
/obj/structure/cable{
d1 = 4;
@@ -4656,7 +4731,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/brig)
@@ -4669,7 +4743,6 @@
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/brig)
@@ -4687,7 +4760,6 @@
tag = "90Curve"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/brig)
@@ -4703,7 +4775,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/brig)
@@ -4727,7 +4798,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/brig)
@@ -4742,7 +4812,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -4769,7 +4838,6 @@
/area/security/brig)
"ajT" = (
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/disposalpipe/segment{
@@ -4788,9 +4856,7 @@
/area/security/brig)
"ajU" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -4806,8 +4872,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4826,8 +4891,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -4838,16 +4902,14 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
"ajY" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/unary/tank/nitrogen{
dir = 1
},
-/turf/simulated/shuttle/plating,
+/turf/simulated/shuttle/floor4/vox,
/area/shuttle/vox)
"ajZ" = (
/obj/structure/rack,
@@ -4855,6 +4917,10 @@
/obj/item/clothing/suit/space/vox/medic,
/obj/item/clothing/head/helmet/space/vox/medic,
/obj/item/clothing/mask/breath,
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
/turf/simulated/shuttle/floor4/vox,
/area/shuttle/vox)
"aka" = (
@@ -4866,9 +4932,8 @@
/obj/item/harpoon,
/obj/item/tank/nitrogen,
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
- dir = 4
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
},
/turf/simulated/shuttle/floor4/vox,
/area/shuttle/vox)
@@ -4882,8 +4947,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4891,7 +4955,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -4917,8 +4980,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4929,7 +4991,6 @@
icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -4937,36 +4998,34 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
"akf" = (
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/securearmoury)
-"akg" = (
+/turf/simulated/floor/wood,
+/area/security/hos)
+"akh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -4975,45 +5034,25 @@
icon_state = "darkredcorners"
},
/area/security/brig)
-"akh" = (
+"aki" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = -30
},
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/poster/official/random{
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkredcorners"
- },
-/area/security/brig)
-"aki" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = -30
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "darkredcorners"
@@ -5023,12 +5062,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -5042,8 +5079,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -5053,31 +5089,28 @@
},
/area/security/brig)
"akl" = (
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "HoS personal weapons";
+ req_access_txt = "58"
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/item/ammo_box/a357{
+ pixel_x = -9;
+ pixel_y = 9
},
-/obj/machinery/door/window/brigdoor{
- req_access_txt = "3"
+/obj/item/ammo_box/a357{
+ pixel_x = -4;
+ pixel_y = 4
},
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/gun/projectile/automatic/pistol/enforcer/security,
-/obj/item/gun/projectile/automatic/pistol/enforcer/security,
-/obj/item/gun/projectile/automatic/pistol/enforcer/security,
-/obj/item/gun/projectile/automatic/pistol/enforcer/security,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/item/ammo_box/a357,
+/obj/item/gun/projectile/revolver/mateba{
+ pixel_x = 3;
+ pixel_y = -3
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "vault"
+ icon_state = "dark"
},
-/area/security/securearmoury)
+/area/security/hos)
"akm" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -5088,8 +5121,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -5110,9 +5142,9 @@
/turf/simulated/floor/engine,
/area/security/podbay)
"akp" = (
-/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l";
- icon_state = "propulsion_l"
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
},
/turf/simulated/shuttle/plating,
/area/shuttle/vox)
@@ -5148,74 +5180,72 @@
},
/area/security/brig)
"akt" = (
-/obj/machinery/light{
- dir = 4
+/obj/structure/window/reinforced/polarized{
+ id = "hos_room"
},
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/riot,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/shield/riot,
-/obj/item/clothing/head/helmet/riot,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window{
- dir = 8;
- name = "Secure Armory";
- req_access_txt = "1"
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "hos_room"
},
-/turf/simulated/floor/plasteel{
+/obj/structure/window/reinforced/polarized{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ id = "hos_room"
},
-/area/security/securearmoury)
+/obj/structure/cable,
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/security/hos)
"aku" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/riot,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/item/shield/riot,
-/obj/item/clothing/head/helmet/riot,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window{
- dir = 8;
- name = "Secure Armory";
- req_access_txt = "1"
+/obj/machinery/door_control{
+ id = "SecureArmory";
+ name = "Secure Armory Shutters";
+ pixel_x = -6;
+ pixel_y = -25;
+ req_access_txt = "3"
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/securearmoury)
"akv" = (
-/obj/structure/table,
-/obj/item/taperecorder{
- pixel_y = 0
- },
-/obj/machinery/light_switch{
- pixel_x = -25
- },
-/obj/item/radio/intercom/department/security{
- pixel_x = 0;
- pixel_y = 28
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
},
/turf/simulated/floor/plasteel,
/area/security/main)
"akw" = (
-/obj/effect/decal/warning_stripes/northeast,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/command/glass{
+ id = "hos_room";
+ id_tag = null;
+ name = "Head of Security Room";
+ req_access_txt = "58"
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/securearmoury)
+/area/security/hos)
"akx" = (
/obj/structure/cable{
d1 = 2;
@@ -5252,9 +5282,6 @@
/obj/item/clothing/mask/breath,
/turf/simulated/shuttle/floor4/vox,
/area/shuttle/vox)
-"akB" = (
-/turf/simulated/wall/r_wall,
-/area/security/range)
"akC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
@@ -5275,9 +5302,7 @@
/area/security/brig)
"akE" = (
/obj/machinery/door/window/eastright{
- base_state = "right";
dir = 1;
- icon_state = "right";
name = "Security Delivery";
req_access_txt = "1"
},
@@ -5292,13 +5317,12 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel,
/area/security/main)
@@ -5310,40 +5334,49 @@
},
/area/security/permabrig)
"akH" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/simulated/floor/plating,
-/area/security/hos)
-"akI" = (
/obj/structure/chair{
dir = 8
},
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
-/obj/effect/landmark/start{
- name = "Security Officer"
+/obj/machinery/light{
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/security/main)
"akJ" = (
-/obj/structure/table/wood,
-/obj/machinery/photocopier/faxmachine/longrange{
- department = "Head of Security's Office"
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "hos"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "hos"
},
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "hos"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
/area/security/hos)
"akK" = (
/obj/machinery/alarm{
pixel_y = 23
},
+/obj/structure/table/wood,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Head of Security's Office"
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -5364,17 +5397,27 @@
/turf/simulated/floor/plasteel,
/area/security/permabrig)
"akN" = (
-/obj/machinery/newscaster{
- pixel_y = 30
+/obj/structure/window/reinforced/polarized{
+ id = "hos_room"
},
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "hos_room"
},
-/obj/structure/closet/secure_closet/hos,
-/obj/item/reagent_containers/food/drinks/flask/barflask,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "hos_room"
},
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "hos_room"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
/area/security/hos)
"akO" = (
/obj/machinery/door/airlock/public/glass,
@@ -5382,7 +5425,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/poddoor{
@@ -5397,10 +5439,10 @@
"akP" = (
/obj/structure/grille,
/obj/structure/shuttle/window{
- tag = "icon-window5_end (NORTH)";
+ dir = 1;
icon = 'icons/turf/shuttle.dmi';
icon_state = "window5_end";
- dir = 1
+ tag = "icon-window5_end (NORTH)"
},
/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
@@ -5409,7 +5451,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -5421,18 +5462,17 @@
"akR" = (
/obj/structure/grille,
/obj/structure/shuttle/window{
- tag = "icon-window5_end";
icon = 'icons/turf/shuttle.dmi';
icon_state = "window5_end";
- dir = 2
+ tag = "icon-window5_end"
},
/turf/simulated/shuttle/plating/vox,
/area/shuttle/vox)
"akS" = (
/obj/structure/bed,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/security/permabrig)
"akT" = (
@@ -5443,8 +5483,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+ dir = 9;
+ icon_state = "red"
},
/area/security/permabrig)
"akU" = (
@@ -5460,8 +5500,7 @@
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -5473,7 +5512,6 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Brig HoS Office";
sortType = 7
},
@@ -5484,9 +5522,6 @@
icon_state = "dark"
},
/area/security/brig)
-"akW" = (
-/turf/simulated/wall,
-/area/security/range)
"akX" = (
/obj/structure/cable{
d1 = 2;
@@ -5520,7 +5555,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -5564,8 +5598,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/sortjunction{
dir = 1;
@@ -5612,9 +5645,8 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"ale" = (
@@ -5627,90 +5659,155 @@
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/armoury)
-"alf" = (
-/obj/machinery/vending/security,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/area/security/securearmoury)
+"alg" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/item/radio/intercom/department/security{
- pixel_x = -28
+/area/security/securearmoury)
+"alh" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+/obj/item/clothing/suit/armor/riot,
+/obj/item/shield/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/security/armoury)
-"alg" = (
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
+/obj/structure/window/reinforced{
dir = 1
},
-/area/security/armoury)
-"alh" = (
-/obj/effect/decal/warning_stripes/red/hollow,
-/obj/structure/closet/l3closet/security,
+/obj/machinery/door/window{
+ name = "Secure Armory";
+ req_access_txt = "1"
+ },
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ icon_state = "dark"
},
-/area/security/armoury)
+/area/security/securearmoury)
"ali" = (
-/obj/effect/decal/warning_stripes/red/hollow,
-/obj/structure/closet/bombclosetsecurity,
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
dir = 4
},
-/area/security/armoury)
-"alj" = (
-/obj/machinery/light_switch{
- pixel_x = -25
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Secure Armory";
+ req_access_txt = "1"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/securearmoury)
+"alj" = (
+/obj/structure/lattice,
+/turf/simulated/wall/r_wall,
+/area/security/hos)
"alk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/machinery/light,
-/obj/machinery/door_control{
- id = "Secure Armory";
- name = "Secure Armory Shutter Control";
- pixel_x = 7;
- pixel_y = -28;
- req_access_txt = "3"
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = -1
},
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = -1;
+ pixel_y = -3
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/securearmoury)
"all" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Magazines for SMG";
+ req_access_txt = "3"
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/ammo_box/magazine/wt550m9,
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/effect/decal/warning_stripes/eastnorthwest,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/securearmoury)
"alm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/securearmoury)
+/area/security/hos)
"aln" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/window/reinforced,
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Security SMG's";
+ req_access_txt = "3"
+ },
+/obj/item/gun/projectile/automatic/wt550{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/projectile/automatic/wt550,
+/obj/item/gun/projectile/automatic/wt550{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/effect/decal/warning_stripes/eastsouthwest,
+/obj/structure/window/reinforced{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -5736,24 +5833,9 @@
},
/area/security/brig)
"alp" = (
-/obj/structure/table,
-/obj/item/ashtray/bronze{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/storage/fancy/cigarettes/cigpack_robust,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Brig Briefing Room West";
- dir = 4;
- network = list("SS13")
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Detective"
},
/turf/simulated/floor/plasteel,
/area/security/main)
@@ -5761,11 +5843,9 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/main)
@@ -5808,8 +5888,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "red"
@@ -5843,10 +5922,18 @@
/turf/simulated/shuttle/floor4/vox,
/area/shuttle/vox)
"alB" = (
-/turf/simulated/floor/plasteel,
-/area/security/range)
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/hos)
"alC" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -5854,16 +5941,28 @@
tag = ""
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "hos"
},
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "hos"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "hos"
+ },
+/obj/structure/grille,
/turf/simulated/floor/plating,
/area/security/hos)
"alD" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/tracker,
/obj/structure/lattice/catwalk,
@@ -5882,25 +5981,6 @@
},
/turf/simulated/floor/plasteel,
/area/security/main)
-"alG" = (
-/obj/machinery/vending/cigarette,
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel,
-/area/security/main)
-"alH" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/hos)
"alI" = (
/obj/structure/grille,
/turf/simulated/floor/plating/airless,
@@ -5909,8 +5989,7 @@
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/floor/plating/airless,
/area/security/podbay)
@@ -5942,8 +6021,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/light_switch{
pixel_y = -25
@@ -6039,9 +6117,7 @@
/obj/structure/closet,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -6092,73 +6168,56 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Armory";
- req_access_txt = "3";
- security_level = 1
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Armory";
+ req_access_txt = "3"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/securearmoury)
"alW" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/security/warden)
"alX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "Secure Armory";
+/obj/machinery/door/poddoor/multi_tile/two_tile_hor{
+ armor = list("melee" = 30, "bullet" = 30, "laser" = 20, "energy" = 20, "bomb" = 10, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 70);
+ damage_deflection = 30;
+ explosion_block = 2;
+ id_tag = "SecureArmory";
+ max_integrity = 500;
name = "Secure Armory"
},
-/obj/machinery/door/airlock/security/glass{
- name = "Secure Armory";
- req_access_txt = "1"
- },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/securearmoury)
"alY" = (
-/obj/item/storage/box/beanbag{
- pixel_x = 2;
- pixel_y = -4
- },
-/obj/item/storage/box/beanbag{
- pixel_x = -1;
- pixel_y = 2
- },
-/obj/structure/rack,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
+/obj/machinery/suit_storage_unit/security/secure,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "dark"
},
/area/security/securearmoury)
"alZ" = (
-/obj/machinery/door/window/brigdoor{
- armor = list("melee" = 60, "bullet" = 70, "laser" = 70, "energy" = 70, "bomb" = 40, "bio" = 100, "rad" = 100, "fire" = 70, "acid" = 100);
- dir = 2;
- name = "Secure Armory";
- req_access_txt = "1"
- },
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor{
- armor = list("melee" = 60, "bullet" = 70, "laser" = 70, "energy" = 70, "bomb" = 40, "bio" = 100, "rad" = 100, "fire" = 70, "acid" = 100);
- dir = 1;
- name = "Secure Armory";
- req_access_txt = "3"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -6180,28 +6239,14 @@
},
/area/security/evidence)
"amc" = (
-/obj/structure/closet/secure_closet/security,
-/obj/structure/sign/goldenplaque{
- pixel_y = 30
- },
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+/obj/effect/decal/warning_stripes/red/partial{
+ dir = 8
},
+/turf/simulated/floor/plasteel,
/area/security/main)
"amd" = (
-/obj/structure/closet/secure_closet/security,
-/obj/machinery/alarm{
- pixel_y = 23
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
- },
+/obj/structure/chair/stool,
+/turf/simulated/floor/plasteel,
/area/security/main)
"ame" = (
/obj/machinery/door/airlock/maintenance{
@@ -6220,18 +6265,12 @@
/area/maintenance/fsmaint)
"amf" = (
/obj/structure/closet/secure_closet/security,
+/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 4
},
-/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
- pixel_y = 25
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
- },
+/obj/item/clothing/mask/balaclava,
+/turf/simulated/floor/plasteel,
/area/security/main)
"amg" = (
/obj/machinery/light,
@@ -6239,7 +6278,6 @@
/obj/item/folder/red,
/obj/item/pen,
/obj/item/radio/intercom/department/security{
- pixel_x = 0;
pixel_y = -28
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -6291,8 +6329,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/security/main)
"amn" = (
@@ -6307,30 +6345,18 @@
/turf/simulated/floor/plasteel,
/area/security/main)
"amo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/structure/lattice/catwalk,
/turf/space,
-/area/solar/auxstarboard)
-"amp" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/shuttle/wall{
+ icon_state = "wall3"
},
+/area/shuttle/vox)
+"amp" = (
/obj/machinery/camera{
c_tag = "Brig Briefing Room East";
- dir = 8;
- network = list("SS13")
+ dir = 8
+ },
+/obj/structure/chair{
+ dir = 8
},
/obj/effect/landmark/start{
name = "Security Officer"
@@ -6338,14 +6364,12 @@
/turf/simulated/floor/plasteel,
/area/security/main)
"amq" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+/obj/structure/table/glass,
+/obj/item/storage/backpack/duffel/syndie/surgery_fake,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/floor/plating,
-/area/security/main)
+/area/shuttle/syndicate)
"amr" = (
/obj/structure/chair/comfy/black{
dir = 4
@@ -6354,18 +6378,15 @@
name = "Head of Security"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redfull";
tag = "icon-redfull (NORTHWEST)"
},
/area/security/main)
"ams" = (
/obj/item/radio/intercom/locked/prison{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -6379,8 +6400,7 @@
department = "Head of Security's Desk";
departmentType = 5;
name = "Head of Security Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/machinery/computer/brigcells,
/turf/simulated/floor/plasteel{
@@ -6388,10 +6408,10 @@
},
/area/security/hos)
"amu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/carpet,
/area/security/hos)
@@ -6471,22 +6491,17 @@
/area/security/warden)
"amC" = (
/obj/structure/closet/secure_closet/warden,
-/obj/machinery/status_display{
- layer = 4;
- pixel_y = 32
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkred"
},
/area/security/warden)
"amD" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/security/warden)
"amE" = (
@@ -6497,65 +6512,88 @@
},
/area/security/warden)
"amF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/security/seceqstorage)
+/turf/simulated/shuttle/wall{
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
"amG" = (
-/obj/machinery/vending/security,
-/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/security/seceqstorage)
-"amH" = (
-/obj/structure/rack,
-/obj/machinery/recharger/wallcharger{
- pixel_y = 25
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/machinery/recharger/wallcharger{
- pixel_y = 35
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Security ballistic weapons";
+ req_access = list(1)
},
-/obj/effect/decal/warning_stripes/red/hollow,
-/obj/item/assembly/timer{
+/obj/item/gun/projectile/automatic/pistol/enforcer/security{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/projectile/automatic/pistol/enforcer/security,
+/obj/item/gun/projectile/automatic/pistol/enforcer/security{
pixel_x = 3;
- pixel_y = -8
+ pixel_y = -3
},
-/obj/item/assembly/timer{
- pixel_y = -6;
- pixel_z = 3
+/obj/item/gun/projectile/automatic/pistol/enforcer/security{
+ pixel_x = 6;
+ pixel_y = -6
},
-/obj/item/flash,
-/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ icon_state = "dark"
+ },
+/area/security/armoury)
+"amH" = (
+/obj/machinery/door_control{
+ id = "SecureArmory";
+ name = "Secure Armory Shutters";
+ pixel_x = -6;
+ pixel_y = 25;
+ req_access_txt = "3"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/area/security/seceqstorage)
+/area/security/armoury)
"amI" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/security/seceqstorage)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/armoury)
"amJ" = (
-/obj/structure/rack,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = 30
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Dominator's";
+ req_access = list(1)
},
-/obj/item/restraints/handcuffs{
- pixel_y = -4
+/obj/item/gun/energy/dominator{
+ pixel_x = 3;
+ pixel_y = -3
},
-/obj/item/restraints/handcuffs,
-/obj/effect/decal/warning_stripes/red/hollow,
-/obj/machinery/light{
+/obj/item/gun/energy/dominator,
+/obj/item/gun/energy/dominator{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/dominator{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
dir = 1
},
+/obj/structure/window/reinforced{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ icon_state = "dark"
},
-/area/security/seceqstorage)
+/area/security/armoury)
"amK" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -6566,17 +6604,16 @@
/area/maintenance/fsmaint)
"amL" = (
/obj/machinery/shower{
- tag = "icon-shower (WEST)";
- icon_state = "shower";
- dir = 8
+ dir = 8;
+ tag = "icon-shower (WEST)"
},
/obj/structure/curtain/open/shower,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"amM" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/security/main)
"amN" = (
@@ -6594,7 +6631,6 @@
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redfull";
tag = "icon-redfull (NORTHWEST)"
},
@@ -6612,34 +6648,20 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/security/main)
"amQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redfull";
tag = "icon-redfull (NORTHWEST)"
},
@@ -6650,8 +6672,7 @@
},
/obj/machinery/camera{
c_tag = "Brig Pod Pilot's Office";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -6659,6 +6680,11 @@
/area/security/podbay)
"amS" = (
/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/carpet,
/area/security/hos)
"amT" = (
@@ -6674,7 +6700,13 @@
tag = ""
},
/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/machinery/door/airlock/command/glass{
+ id = "hos";
id_tag = "hosofficedoor";
name = "Head of Security";
req_access_txt = "58"
@@ -6685,8 +6717,8 @@
/area/security/hos)
"amU" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/tracker,
/obj/structure/lattice/catwalk,
@@ -6733,6 +6765,11 @@
/obj/structure/chair{
dir = 4
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/turf/simulated/floor/carpet,
/area/security/hos)
"anc" = (
@@ -6757,6 +6794,12 @@
/obj/effect/landmark/start{
name = "Head of Security"
},
+/obj/machinery/button/windowtint{
+ id = "hos";
+ pixel_x = -26;
+ pixel_y = 15
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/security/hos)
"ane" = (
@@ -6766,7 +6809,6 @@
network = list("Prison","SS13")
},
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -6782,7 +6824,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -6806,7 +6847,6 @@
/area/security/prisonlockers)
"anj" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -6817,7 +6857,6 @@
"ank" = (
/obj/structure/closet/secure_closet/brig,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -6832,8 +6871,7 @@
},
/obj/machinery/flasher{
id = "permaflash1";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -6850,19 +6888,17 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/security/permabrig)
"anp" = (
/obj/structure/bed,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/security/permabrig)
@@ -6898,8 +6934,7 @@
"ant" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/turf/simulated/floor/plating,
/area/security/permabrig)
@@ -6910,31 +6945,20 @@
network = list("Prison","SS13")
},
/obj/item/radio/intercom/locked/prison{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plating,
/area/security/permabrig)
"anv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "diagonalWall3"
},
-/area/security/warden)
+/area/shuttle/syndicate)
"anw" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
@@ -6946,7 +6970,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/poddoor{
@@ -6979,10 +7002,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -6992,10 +7013,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -7007,13 +7024,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "1-8";
+ tag = ""
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -7041,11 +7058,11 @@
},
/area/security/permabrig)
"anD" = (
-/obj/structure/table/reinforced,
/obj/structure/cable{
d1 = 1;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "1-8";
+ tag = ""
},
/obj/structure/cable{
d1 = 2;
@@ -7053,19 +7070,18 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- name = "Warden's Desk";
- req_access_txt = "3"
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel,
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
/area/security/warden)
"anE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -7073,20 +7089,22 @@
},
/area/security/warden)
"anF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
- initialize_directions = 11;
- level = 1
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/security/seceqstorage)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/armoury)
"anG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -7099,7 +7117,6 @@
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Brig Equipment Storage";
sortType = 8
},
@@ -7126,37 +7143,24 @@
},
/area/security/brig)
"anJ" = (
-/turf/simulated/floor/plasteel,
-/area/security/seceqstorage)
-"anK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Equipment Storage";
- req_access_txt = "1"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel,
-/area/security/seceqstorage)
-"anL" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel,
-/area/security/main)
-"anM" = (
-/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "dark"
},
-/area/security/main)
+/area/security/armoury)
+"anK" = (
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
"anN" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -7165,15 +7169,17 @@
/turf/simulated/floor/plasteel,
/area/security/permabrig)
"anO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Office";
+ req_access_txt = "1"
+ },
/turf/simulated/floor/plasteel,
/area/security/main)
"anP" = (
@@ -7184,8 +7190,7 @@
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -7198,45 +7203,15 @@
icon_state = "darkred"
},
/area/security/permabrig)
-"anQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/main)
-"anR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "1"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/main)
"anS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/security/main)
"anT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -7252,32 +7227,19 @@
pixel_y = 3
},
/obj/item/book/manual/sop_security,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/security/main)
-"anV" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel,
/area/security/main)
"anW" = (
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
"anX" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -7307,9 +7269,8 @@
pixel_y = 2
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"aoa" = (
@@ -7319,18 +7280,15 @@
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/light{
dir = 1;
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"aob" = (
@@ -7339,15 +7297,13 @@
name = "Internal Affairs Agent"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"aoc" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light{
@@ -7359,7 +7315,6 @@
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "lawyer";
name = "Internal Affairs Privacy Shutters";
@@ -7371,13 +7326,11 @@
/obj/structure/table/reinforced,
/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"aof" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -7385,6 +7338,19 @@
tag = ""
},
/obj/structure/cable,
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "hos"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "hos"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "hos"
+ },
+/obj/structure/grille,
/turf/simulated/floor/plating,
/area/security/hos)
"aog" = (
@@ -7397,8 +7363,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
@@ -7406,8 +7371,7 @@
req_access_txt = "63"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -7425,9 +7389,9 @@
"aoj" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/door/poddoor{
density = 0;
@@ -7442,13 +7406,12 @@
/obj/structure/table,
/obj/item/book/manual/security_space_law,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/security/lobby)
"aol" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -7467,8 +7430,7 @@
/area/security/lobby)
"aon" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
@@ -7483,7 +7445,6 @@
/area/security/lobby)
"aoo" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -7493,8 +7454,7 @@
icon_state = "1-2"
},
/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -7510,15 +7470,15 @@
},
/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/security/lobby)
"aoq" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/door/poddoor{
density = 0;
@@ -7530,29 +7490,12 @@
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/security/prison/cell_block/A)
-"aor" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/warden)
"aos" = (
/obj/structure/chair/office/dark,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/landmark/start{
name = "Warden"
@@ -7585,8 +7528,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -7604,12 +7546,11 @@
"aow" = (
/obj/machinery/flasher{
id = "Cell 1";
- pixel_x = 0;
pixel_y = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
"aox" = (
@@ -7620,29 +7561,44 @@
},
/area/security/warden)
"aoy" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/security/seceqstorage)
+/area/security/armoury)
"aoz" = (
-/obj/structure/table/reinforced,
-/obj/item/crowbar,
-/obj/item/radio,
-/turf/simulated/floor/plasteel{
- icon_state = "red";
+/obj/structure/window/reinforced{
dir = 8
},
-/area/security/seceqstorage)
+/obj/structure/window/reinforced,
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Lethal bullets"
+ },
+/obj/item/ammo_box/c9mm,
+/obj/item/ammo_box/c9mm{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/ammo_box/magazine/enforcer/lethal{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/ammo_box/magazine/enforcer/lethal{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/armoury)
"aoA" = (
/turf/simulated/floor/plasteel{
dir = 4;
@@ -7650,103 +7606,130 @@
},
/area/security/permabrig)
"aoB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/simulated/floor/plasteel,
-/area/security/seceqstorage)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/armoury)
"aoC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/door/airlock/security/glass{
+ name = "Armory";
+ req_access_txt = "1"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Equipment Storage";
- req_access_txt = "1"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/security/seceqstorage)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/armoury)
"aoD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "2-8";
+ tag = ""
},
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/security/seceqstorage)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/armoury)
"aoE" = (
-/obj/effect/decal/warning_stripes/red/partial{
- dir = 1
+/obj/machinery/porta_turret/syndicate{
+ pixel_y = -2
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/turf/space,
+/turf/simulated/shuttle/wall{
+ icon_state = "diagonalWall3"
},
-/area/security/main)
+/area/shuttle/syndicate)
"aoF" = (
-/obj/effect/decal/warning_stripes/red/partial{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
/area/security/main)
"aoG" = (
-/obj/effect/decal/warning_stripes/red/partial{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- dir = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
/area/security/main)
"aoH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Office";
+ req_access_txt = "1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/security/main)
"aoI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -7772,28 +7755,15 @@
/area/solar/auxstarboard)
"aoL" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "1"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/main)
@@ -7801,16 +7771,18 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
/area/security/main)
"aoN" = (
/obj/structure/cable{
@@ -7819,8 +7791,8 @@
icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/main)
"aoO" = (
@@ -7854,20 +7826,36 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/security/main)
"aoQ" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "hos"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "hos"
+ },
+/obj/structure/grille,
/turf/simulated/floor/plating,
/area/security/hos)
"aoR" = (
@@ -7877,8 +7865,7 @@
/area/security/main)
"aoS" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/computer/card/minor/hos,
/turf/simulated/floor/plasteel{
@@ -7902,22 +7889,18 @@
/obj/structure/bed,
/obj/item/bedsheet/red,
/obj/machinery/camera{
- c_tag = "Brig Cell 1";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Cell 1"
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
"aoV" = (
/obj/structure/closet/secure_closet/brig,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel,
/area/security/prisonlockers)
@@ -7930,29 +7913,24 @@
pixel_y = 32
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 2;
icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
"aoX" = (
/obj/structure/bed,
/obj/machinery/camera{
- c_tag = "Brig Cell 3";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Cell 3"
},
/obj/machinery/flasher{
id = "Cell 3";
- pixel_x = 0;
pixel_y = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
@@ -7982,9 +7960,7 @@
/obj/item/camera{
desc = "A one use - polaroid camera. 30 photos left.";
name = "Camera";
- pictures_left = 30;
- pixel_x = 0;
- pixel_y = 0
+ pictures_left = 30
},
/turf/simulated/floor/plasteel,
/area/security/processing)
@@ -8012,7 +7988,6 @@
/obj/structure/closet,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light/small{
@@ -8031,14 +8006,12 @@
/obj/item/pen,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/requests_console{
department = "Warden";
departmentType = 7;
name = "Warden's Requests Console";
- pixel_x = 0;
pixel_y = -30
},
/obj/item/radio/intercom/department/security{
@@ -8061,7 +8034,6 @@
pixel_y = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/warden)
@@ -8071,13 +8043,11 @@
/obj/item/paper/armory,
/obj/item/clipboard,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/warden)
"aph" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/warden)
@@ -8086,14 +8056,12 @@
/obj/item/folder/red,
/obj/item/megaphone,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/warden)
"apj" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/warden)
@@ -8107,27 +8075,10 @@
},
/area/security/warden)
"apl" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/security/seceqstorage)
-"apm" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/main)
+/area/security/armoury)
"apn" = (
/obj/structure/cable{
d1 = 2;
@@ -8156,8 +8107,8 @@
/area/space/nearstation)
"app" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/solar{
id = "portsolar";
@@ -8182,22 +8133,19 @@
/area/solar/auxstarboard)
"apr" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- dir = 2
+ icon_state = "swall12"
},
/area/shuttle/trade/sol)
"aps" = (
/turf/space,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f6";
icon_state = "swall_f6";
- dir = 2
+ tag = "icon-swall_f6"
},
/area/shuttle/trade/sol)
"apt" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall14";
- dir = 2
+ icon_state = "swall14"
},
/area/shuttle/trade/sol)
"apu" = (
@@ -8216,19 +8164,7 @@
"apv" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f10";
- dir = 2
- },
-/area/shuttle/trade/sol)
-"apw" = (
-/obj/effect/spawner/lootdrop/trade_sol/civ,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"apx" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- dir = 2
+ icon_state = "swall_f10"
},
/area/shuttle/trade/sol)
"apy" = (
@@ -8256,129 +8192,136 @@
},
/area/security/prison/cell_block/A)
"apA" = (
-/obj/machinery/vending/wallmed{
- dir = 2;
- name = "Emergency NanoMed";
- pixel_x = -27;
- pixel_y = 0;
- req_access_txt = "0"
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/structure/table/reinforced,
-/obj/item/stack/medical/bruise_pack/advanced,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/obj/item/clothing/accessory/holster{
+ pixel_x = -6;
+ pixel_y = 6
},
-/obj/machinery/light{
- dir = 8
+/obj/item/clothing/accessory/holster{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/accessory/holster,
+/obj/item/clothing/accessory/holster,
+/obj/item/clothing/accessory/holster{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/clothing/accessory/holster{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
/obj/machinery/camera{
- c_tag = "Brig Security Equipment South";
- dir = 4;
- network = list("SS13")
+ c_tag = "Armory East";
+ dir = 1;
+ network = list("SS13","Security")
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ icon_state = "dark"
},
-/area/security/seceqstorage)
+/area/security/armoury)
"apB" = (
-/obj/effect/decal/warning_stripes/red/hollow,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/closet/secure_closet/guncabinet{
- name = "Пистолеты Доминатор"
- req_access = list(1)
+/obj/machinery/autolathe/security{
+ hacked = 1
},
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
-/obj/item/gun/energy/dominator,
/turf/simulated/floor/plasteel{
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/seceqstorage)
+/area/security/armoury)
"apC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
-/area/security/seceqstorage)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/armoury)
"apD" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/seceqstorage)
+/obj/machinery/porta_turret/syndicate{
+ pixel_y = -2
+ },
+/turf/space,
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
"apE" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 10
+ },
+/obj/item/stack/sheet/glass{
+ amount = 10
},
-/obj/machinery/disposal,
/obj/machinery/alarm{
- dir = 1;
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 8;
+ name = "west bump Important Area";
pixel_y = -24
},
+/obj/structure/cable,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/seceqstorage)
+/area/security/armoury)
"apF" = (
/turf/simulated/wall/r_wall,
/area/security/medbay)
"apG" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
- dir = 4
+ dir = 4;
+ tag = "icon-bulb1 (EAST)"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/evidence)
"apH" = (
-/obj/structure/closet/secure_closet/security,
-/obj/structure/window/reinforced{
- dir = 8
- },
+/obj/structure/closet/wardrobe/red,
+/obj/item/clothing/suit/tracksuit/red,
/turf/simulated/floor/plasteel{
- dir = 10;
icon_state = "red"
},
/area/security/main)
"apI" = (
-/obj/structure/closet/redcorp,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/light,
+/obj/structure/closet/wardrobe/red,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
+ icon_state = "red"
},
/area/security/main)
"apJ" = (
-/obj/structure/closet/secure_closet/security,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 1;
+ name = "standard air scrubber";
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/crowbar,
+/obj/item/radio,
+/obj/item/restraints/handcuffs{
+ pixel_y = -4
+ },
+/obj/item/restraints/handcuffs,
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -8390,12 +8333,20 @@
},
/area/security/evidence)
"apL" = (
-/obj/structure/closet/secure_closet/security,
-/obj/structure/window/reinforced{
- dir = 4
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 5;
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -9;
+ pixel_y = -25
},
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
- dir = 6;
icon_state = "red"
},
/area/security/main)
@@ -8434,10 +8385,20 @@
/turf/simulated/floor/plating,
/area/security/warden)
"apQ" = (
-/obj/machinery/photocopier,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable,
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "hos"
},
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "hos"
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "hos"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
/area/security/hos)
"apR" = (
/obj/effect/spawner/window/reinforced,
@@ -8454,21 +8415,21 @@
tag = ""
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plating,
/area/security/main)
"apS" = (
-/turf/simulated/wall,
-/area/security/seceqstorage)
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
"apT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
@@ -8480,7 +8441,6 @@
"apU" = (
/obj/structure/table/wood,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -8490,12 +8450,15 @@
},
/obj/machinery/camera{
c_tag = "Brig Head of Security's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/item/folder/red,
/obj/item/folder/red,
/obj/item/cartridge/detective,
+/obj/item/book/manual/sop_security{
+ pixel_y = 1
+ },
+/obj/item/book/manual/sop_legal,
/obj/item/megaphone,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -8504,8 +8467,7 @@
"apV" = (
/obj/structure/table/wood,
/obj/item/taperecorder{
- pixel_x = -5;
- pixel_y = 0
+ pixel_x = -5
},
/obj/machinery/light,
/obj/item/radio{
@@ -8553,9 +8515,8 @@
"apY" = (
/obj/structure/bed,
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
- dir = 4
+ dir = 4;
+ tag = "icon-bulb1 (EAST)"
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -8584,10 +8545,6 @@
/obj/effect/spawner/random_spawners/wall_rusted_maybe,
/turf/simulated/wall,
/area/maintenance/fsmaint)
-"aqd" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/security/range)
"aqe" = (
/obj/structure/grille,
/obj/structure/sign/securearea,
@@ -8602,63 +8559,58 @@
/area/shuttle/trade/sol)
"aqg" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
-/obj/effect/spawner/lootdrop/trade_sol/donksoft,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
+/obj/structure/closet{
+ icon_closed = "red";
+ icon_state = "red";
+ name = "Sec. gear"
+ },
+/obj/effect/spawner/lootdrop/trade_sol/sec{
+ loot = list(/obj/item/clothing/gloves/combat = 50, /obj/item/grenade/clusterbuster/smoke = 50, /obj/item/clothing/suit/armor/laserproof = 50, /obj/item/clothing/suit/armor/vest/combat = 50, /obj/item/clothing/suit/armor/vest/combat = 50, /obj/item/clothing/suit/armor/vest/combat = 50, /obj/item/kitchen/knife/combat = 50, /obj/item/kitchen/knife/combat = 50, /obj/item/kitchen/knife/combat = 50, /obj/item/fluff/desolate_baton_kit = 50, /obj/item/storage/belt/military/assault = 50, /obj/item/storage/belt/military/assault = 50, /obj/item/storage/belt/military/assault = 50, /obj/item/clothing/mask/gas/sechailer/swat = 50, /obj/item/clothing/mask/gas/sechailer/swat = 50, /obj/item/clothing/suit/space/swat = 50, /obj/item/clothing/suit/space/swat = 50, /obj/item/clothing/glasses/thermal = 50, /obj/item/storage/box/enforcer_rubber = 50, /obj/item/storage/box/enforcer_rubber = 50, /obj/item/storage/box/enforcer_lethal = 50, /obj/item/melee/classic_baton/telescopic = 50, /obj/item/melee/classic_baton/telescopic = 50, /obj/item/gun/projectile/shotgun/automatic/combat = 50, /obj/item/gun/projectile/shotgun/automatic/combat = 50, /obj/item/gun/projectile/shotgun/automatic/combat = 50, /obj/item/gun/projectile/shotgun/automatic/dual_tube = 50, /obj/item/gun/projectile/shotgun/automatic/dual_tube = 50, /obj/item/storage/box/buck = 50, /obj/item/storage/box/buck = 50, /obj/item/storage/box/buck = 50, /obj/item/ammo_box/shotgun/buck = 50, /obj/item/ammo_box/shotgun/buck = 50, /obj/item/grenade/clusterbuster = 50, /obj/item/grenade/clusterbuster = 50, /obj/item/grenade/clusterbuster/teargas = 50, /obj/item/grenade/clusterbuster/n2o = 50);
+ lootcount = 10;
+ name = "1. Sec. gear"
+ },
+/turf/simulated/floor/wood,
/area/shuttle/trade/sol)
"aqh" = (
-/obj/effect/spawner/lootdrop/trade_sol/minerals,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
+/obj/structure/closet{
+ icon_closed = "grey";
+ icon_state = "grey";
+ name = "Donksoft gear"
+ },
+/obj/effect/spawner/lootdrop/trade_sol/donksoft{
+ loot = list(/obj/item/gun/projectile/automatic/c20r/toy = 50, /obj/item/gun/projectile/automatic/c20r/toy = 50, /obj/item/gun/projectile/automatic/c20r/toy = 50, /obj/item/gun/projectile/automatic/l6_saw/toy = 50, /obj/item/gun/projectile/automatic/l6_saw/toy = 50, /obj/item/gun/projectile/automatic/toy/pistol = 100, /obj/item/gun/projectile/automatic/toy/pistol = 100, /obj/item/gun/projectile/automatic/toy/pistol/enforcer = 50, /obj/item/gun/projectile/automatic/toy/pistol/enforcer = 50, /obj/item/gun/projectile/shotgun/toy = 50, /obj/item/gun/projectile/shotgun/toy = 50, /obj/item/gun/projectile/shotgun/toy/crossbow = 50, /obj/item/gun/projectile/shotgun/toy/crossbow = 50, /obj/item/gun/projectile/shotgun/toy/tommygun = 50, /obj/item/gun/projectile/shotgun/toy/tommygun = 50, /obj/item/gun/projectile/automatic/sniper_rifle/toy = 50, /obj/item/gun/projectile/automatic/sniper_rifle/toy = 50, /obj/item/ammo_box/foambox/sniper = 50, /obj/item/ammo_box/foambox = 50, /obj/item/ammo_box/foambox = 50, /obj/item/ammo_box/foambox = 50, /obj/item/ammo_box/foambox/riot = 50, /obj/item/ammo_box/foambox/riot = 50, /obj/item/ammo_box/foambox/sniper/riot = 50, /obj/item/twohanded/toy/chainsaw = 50, /obj/item/twohanded/dualsaber/toy = 50);
+ lootcount = 8;
+ name = "2. Donksoft gear"
+ },
+/turf/simulated/floor/wood,
/area/shuttle/trade/sol)
"aqi" = (
-/obj/machinery/door/airlock/shuttle/glass{
- name = "trader shuttle airlock";
- req_access_txt = "160";
- security_level = 6
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
},
-/turf/simulated/shuttle/floor,
/area/shuttle/trade/sol)
"aqj" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"aqk" = (
-/obj/machinery/door_control{
- id = "soltrader_north";
- name = "Trade Deposits Door";
- normaldoorcontrol = 1;
- pixel_x = 24;
- pixel_y = -8;
- req_access_txt = "160"
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
-/obj/machinery/door_control{
- id = "trader_privacy";
- name = "Privacy Shutters Control";
- pixel_x = 24;
- pixel_y = 8;
- req_access_txt = "160"
+/obj/item/flag/species/human,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/turf/simulated/shuttle/floor,
/area/shuttle/trade/sol)
-"aql" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall8";
- tag = "icon-swall12"
- },
+"aqk" = (
+/obj/item/flag/species/human,
+/turf/simulated/floor/wood,
/area/shuttle/trade/sol)
"aqm" = (
+/obj/machinery/atm,
/turf/simulated/shuttle/wall{
- icon_state = "swallc2"
+ dir = 3;
+ icon_state = "swall1"
},
/area/shuttle/trade/sol)
"aqn" = (
@@ -8666,8 +8618,15 @@
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"aqo" = (
-/obj/structure/shuttle/window,
+/obj/structure/window/full/shuttle,
/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "trader_privacy";
+ name = "Privacy Shutters";
+ opacity = 0
+ },
/turf/simulated/shuttle/plating,
/area/shuttle/trade/sol)
"aqp" = (
@@ -8730,8 +8689,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/security/warden)
@@ -8744,45 +8702,47 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/security/warden)
"aqy" = (
+/obj/machinery/door/poddoor{
+ id_tag = "armory";
+ name = "Armory"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/armoury)
+"aqz" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Equipment Storage";
- req_access_txt = "1"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/security/seceqstorage)
-"aqz" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Equipment Storage";
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/security/glass{
+ name = "Armory";
req_access_txt = "1"
},
+/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
-/area/security/seceqstorage)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/armoury)
"aqA" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/security/main)
-"aqB" = (
+"aqC" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 2;
@@ -8797,23 +8757,9 @@
tag = ""
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/simulated/floor/plating,
-/area/security/main)
-"aqC" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ pixel_y = 1
},
/turf/simulated/floor/plating,
/area/security/main)
@@ -8868,13 +8814,13 @@
tag = ""
},
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/command{
name = "Head of Security";
req_access_txt = "58"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -8956,7 +8902,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/poddoor{
@@ -9001,9 +8946,8 @@
},
/obj/item/pen,
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
- dir = 4
+ dir = 4;
+ tag = "icon-bulb1 (EAST)"
},
/turf/simulated/floor/plating,
/area/security/permabrig)
@@ -9068,9 +9012,8 @@
"aqY" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"aqZ" = (
@@ -9095,9 +9038,8 @@
/obj/item/stamp/law,
/obj/item/pen/multi,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"arb" = (
@@ -9108,9 +9050,9 @@
"arc" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/structure/cable{
d1 = 1;
@@ -9129,39 +9071,34 @@
/area/security/lobby)
"ard" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion"
+ dir = 8
},
/turf/simulated/shuttle/plating,
/area/shuttle/trade/sol)
"are" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "soltradeship_north";
- name = "Security Doors";
- opacity = 0
- },
-/obj/machinery/door/airlock/shuttle/glass{
- id_tag = "soltrader_north";
- name = "trader shuttle airlock";
- req_access_txt = "160";
- security_level = 6
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/turf/simulated/shuttle/floor,
/area/shuttle/trade/sol)
"arf" = (
-/obj/effect/spawner/lootdrop/trade_sol/sci,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"arg" = (
-/obj/effect/spawner/lootdrop/trade_sol/med,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
+/obj/structure/closet{
+ icon_closed = "pink";
+ icon_state = "pink";
+ name = "Science gear"
+ },
+/obj/effect/spawner/lootdrop/trade_sol/sci{
+ loot = list(/obj/item/mmi/robotic_brain = 50, /obj/item/assembly/signaler/anomaly = 50, /obj/item/mecha_parts/mecha_equipment/weapon/energy/xray = 50, /obj/item/mecha_parts/mecha_equipment/teleporter/precise = 50, /obj/item/autoimplanter = 50, /obj/item/paper/researchnotes = 50, /obj/item/paper/researchnotes = 50, /obj/item/slimepotion/fireproof = 50, /obj/item/slimepotion/speed = 50, /obj/item/slimepotion/enhancer = 50,/obj/item/slimepotion/slime/mutator = 50, /obj/item/slimepotion/transference = 50, /obj/item/slimepotion/slime/steroid = 50, /obj/item/slimepotion/slime/stabilizer = 50, /obj/item/slimepotion/slime/docility = 50, /obj/item/slime_extract/bluespace = 50, /obj/item/slime_extract/adamantine = 50, /obj/item/slime_extract/rainbow = 50, /obj/item/slime_extract/sepia = 50, /obj/item/assembly/signaler/anomaly/vortex = 50, /obj/item/assembly/signaler/anomaly/bluespace = 50, /obj/item/assembly/signaler/anomaly/flux = 50, /obj/item/assembly/signaler/anomaly/grav = 50, /obj/item/assembly/signaler/anomaly/pyro = 50);
+ lootcount = 8;
+ name = "6. Science gear"
+ },
+/turf/simulated/floor/wood,
/area/shuttle/trade/sol)
"arh" = (
-/turf/simulated/shuttle/floor,
+/obj/effect/spawner/lootdrop/trade_sol/largeitem{
+ loot = list(/obj/machinery/floodlight = 50, /obj/machinery/disco = 50, /obj/mecha/combat/durand/old = 50, /obj/machinery/snow_machine = 50);
+ name = "3. Large item"
+ },
+/turf/simulated/floor/wood,
/area/shuttle/trade/sol)
"ari" = (
/obj/structure/cable{
@@ -9182,8 +9119,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/security/lobby)
"ark" = (
@@ -9212,9 +9149,9 @@
tag = ""
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/door/poddoor{
density = 0;
@@ -9230,8 +9167,7 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/obj/structure/cable{
d1 = 2;
@@ -9245,8 +9181,8 @@
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
"aro" = (
@@ -9258,7 +9194,6 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
@@ -9267,8 +9202,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/security/lobby)
"arq" = (
@@ -9316,9 +9251,7 @@
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -9344,7 +9277,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
@@ -9368,8 +9300,8 @@
opacity = 0
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -9380,20 +9312,18 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/security/processing)
"arw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
@@ -9427,15 +9357,14 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/security/processing)
"arz" = (
@@ -9446,8 +9375,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/security/processing)
@@ -9471,7 +9399,6 @@
pixel_y = 23
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -9481,7 +9408,6 @@
/area/security/permabrig)
"arC" = (
/obj/item/radio/intercom/department/security{
- pixel_x = 0;
pixel_y = 25
},
/turf/simulated/floor/plasteel{
@@ -9508,8 +9434,8 @@
pixel_y = -7
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/security/processing)
"arF" = (
@@ -9520,8 +9446,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/security/processing)
"arG" = (
@@ -9533,8 +9459,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -9545,8 +9470,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/security/permabrig)
"arI" = (
@@ -9570,7 +9495,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -9582,12 +9506,11 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -9621,7 +9544,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -9655,8 +9577,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -9667,8 +9588,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -9693,8 +9613,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/plating,
@@ -9706,16 +9624,14 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"arU" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -9731,12 +9647,12 @@
/obj/structure/chair/comfy/shuttle{
dir = 4
},
-/turf/simulated/shuttle/floor,
+/turf/simulated/floor/carpet/black,
/area/shuttle/trade/sol)
"arX" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/solar{
id = "auxsolareast";
@@ -9748,29 +9664,25 @@
/area/solar/auxport)
"arY" = (
/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor,
-/area/shuttle/trade/sol)
-"arZ" = (
-/obj/machinery/atm{
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor,
+/turf/simulated/floor/wood,
/area/shuttle/trade/sol)
"asa" = (
-/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor/shutters{
+ closingLayer = 5;
density = 0;
- dir = 2;
icon_state = "open";
id_tag = "trader_privacy";
+ layer = 5;
name = "Privacy Shutters";
opacity = 0
},
-/turf/simulated/shuttle/floor,
+/obj/structure/table/reinforced/brass,
+/obj/machinery/door/window/brigdoor/southright{
+ dir = 4;
+ name = "Customs Desk";
+ req_access_txt = "160"
+ },
+/turf/simulated/floor/carpet/black,
/area/shuttle/trade/sol)
"asb" = (
/obj/structure/lattice/catwalk,
@@ -9784,12 +9696,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -9800,8 +9710,7 @@
/area/security/brig)
"ase" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -9858,8 +9767,8 @@
/obj/item/seeds/wheat/rice,
/obj/item/seeds/wheat/rice,
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/security/permabrig)
"asj" = (
@@ -9867,17 +9776,15 @@
/turf/simulated/floor/plasteel,
/area/security/permabrig)
"ask" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -9890,8 +9797,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -9901,17 +9807,18 @@
},
/area/security/brig)
"asn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -9921,8 +9828,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -9936,34 +9842,12 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/brig)
-"asq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -9993,8 +9877,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -10012,8 +9895,7 @@
req_access_txt = "2"
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/permabrig)
@@ -10021,8 +9903,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -10035,7 +9916,6 @@
dir = 4
},
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -10051,7 +9931,6 @@
desc = "Used for watching Prison Wing holding areas.";
name = "Prison Monitor";
network = list("Prison");
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel,
@@ -10069,8 +9948,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -10081,8 +9959,6 @@
},
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -10095,7 +9971,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door_control{
@@ -10119,12 +9994,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -10209,7 +10082,6 @@
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -10229,15 +10101,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -10251,12 +10121,10 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -10266,15 +10134,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -10289,8 +10155,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -10299,16 +10164,14 @@
"asJ" = (
/turf/space,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f5";
icon_state = "swall_f5";
- dir = 2
+ tag = "icon-swall_f5"
},
/area/shuttle/trade/sol)
"asK" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f9";
- dir = 2
+ icon_state = "swall_f9"
},
/area/shuttle/trade/sol)
"asL" = (
@@ -10316,7 +10179,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -10359,9 +10221,8 @@
req_access_txt = "2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"asP" = (
@@ -10369,20 +10230,17 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"asQ" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -10391,15 +10249,13 @@
/area/security/lobby)
"asR" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/lobby)
"asS" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f6";
- dir = 2
+ icon_state = "swall_f6"
},
/area/shuttle/siberia)
"asT" = (
@@ -10420,9 +10276,8 @@
"asV" = (
/turf/space,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f10";
icon_state = "swall_f10";
- dir = 2
+ tag = "icon-swall_f10"
},
/area/shuttle/siberia)
"asW" = (
@@ -10443,7 +10298,6 @@
/obj/structure/chair/office/dark,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28;
pixel_y = -28
},
@@ -10540,8 +10394,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
"ate" = (
@@ -10550,7 +10404,6 @@
name = "Cell 3 Locker"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
@@ -10592,16 +10445,15 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/processing)
"atj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -10633,15 +10485,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 2;
@@ -10663,14 +10513,12 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -10746,7 +10594,6 @@
/area/maintenance/fsmaint)
"atv" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -10764,15 +10611,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/light,
/obj/machinery/newscaster/security_unit{
pixel_y = -30
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/brig)
@@ -10780,8 +10625,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
@@ -10820,48 +10664,27 @@
},
/obj/item/seeds/corn,
/obj/item/seeds/corn,
-/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
- },
-/area/security/permabrig)
-"atB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkredcorners"
+ icon_state = "green"
},
-/area/security/brig)
+/area/security/permabrig)
"atC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/light,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "darkredcorners"
@@ -10880,8 +10703,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -10909,7 +10731,6 @@
/area/maintenance/fsmaint)
"atH" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/rack,
@@ -10920,8 +10741,7 @@
/area/security/permabrig)
"atI" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- dir = 2
+ icon_state = "swall3"
},
/area/shuttle/siberia)
"atJ" = (
@@ -10929,8 +10749,7 @@
/obj/item/folder/red,
/obj/item/restraints/handcuffs,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
@@ -10953,16 +10772,16 @@
"atM" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/security/prisonershuttle)
"atN" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
d2 = 8;
@@ -10984,8 +10803,8 @@
icon_state = "0-8"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/security/prisonershuttle)
@@ -10994,7 +10813,6 @@
/obj/item/dice/d20,
/obj/item/instrument/harmonica,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -11011,8 +10829,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -11039,8 +10856,7 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -11052,7 +10868,6 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -11082,26 +10897,13 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "darkredcorners"
},
/area/security/permabrig)
-"atY" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/glasses/sunglasses{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/glasses/sunglasses,
-/obj/machinery/light_switch{
- pixel_x = -25
- },
-/turf/simulated/floor/plasteel,
-/area/security/range)
"atZ" = (
/obj/structure/rack{
dir = 8;
@@ -11124,11 +10926,9 @@
/obj/machinery/door_timer/cell_1{
dir = 1;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -11153,11 +10953,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redfull";
tag = "icon-redfull (NORTHWEST)"
},
@@ -11179,7 +10977,6 @@
dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redfull";
tag = "icon-redfull (NORTHWEST)"
},
@@ -11189,13 +10986,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -11214,7 +11008,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/poddoor{
@@ -11234,7 +11027,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -11257,20 +11049,13 @@
},
/area/security/permabrig)
"aui" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
- },
-/turf/simulated/floor/plating,
-/area/security/seceqstorage)
+/turf/simulated/wall/r_wall,
+/area/security/armoury)
"auj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -11289,7 +11074,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -11298,7 +11082,6 @@
icon_state = "2-4"
},
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -11311,7 +11094,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -11330,7 +11112,6 @@
/obj/machinery/door_timer/cell_3{
dir = 1;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -11344,7 +11125,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -11386,32 +11166,27 @@
},
/obj/structure/closet/emcloset,
/obj/machinery/camera{
- c_tag = "Security Pod";
- dir = 2;
- network = list("SS13")
+ c_tag = "Security Pod"
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"auq" = (
/turf/simulated/shuttle/wall{
- tag = "icon-swall12";
icon_state = "swall12";
- dir = 2
+ tag = "icon-swall12"
},
/area/shuttle/pod_3)
"aur" = (
/obj/structure/filingcabinet/employment,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"aus" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f10";
- dir = 2
+ icon_state = "swall_f10"
},
/area/shuttle/pod_3)
"aut" = (
@@ -11419,14 +11194,12 @@
dir = 10
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"auu" = (
/obj/machinery/mineral/labor_claim_console{
- machinedir = 2;
pixel_x = 30;
pixel_y = 30
},
@@ -11448,7 +11221,6 @@
/obj/machinery/flasher_button{
id = "gulagshuttleflasher";
name = "Flash Control";
- pixel_x = 0;
pixel_y = -26;
req_access_txt = "1"
},
@@ -11528,8 +11300,8 @@
"auF" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/security/lobby)
"auG" = (
@@ -11541,8 +11313,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/poddoor{
density = 0;
@@ -11607,7 +11378,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redfull";
tag = "icon-redfull (NORTHWEST)"
},
@@ -11620,8 +11390,8 @@
"auL" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/security/lobby)
"auM" = (
@@ -11638,8 +11408,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/security/lobby)
"auN" = (
@@ -11755,12 +11525,10 @@
},
/obj/machinery/camera{
c_tag = "Brig Cell Block A North";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
@@ -11793,8 +11561,6 @@
/obj/machinery/camera{
c_tag = "Brig Prisoner Processing West";
dir = 4;
- network = list("SS13");
- pixel_x = 0;
pixel_y = -22
},
/obj/machinery/door_control{
@@ -11845,7 +11611,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -11889,8 +11654,8 @@
/area/maintenance/fsmaint)
"avd" = (
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/lobby)
"ave" = (
@@ -11930,8 +11695,8 @@
/obj/item/seeds/chili,
/obj/item/seeds/chili,
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/security/permabrig)
"avh" = (
@@ -11939,7 +11704,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/smartfridge/drying_rack,
@@ -11950,7 +11714,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -11962,15 +11725,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -11982,7 +11743,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -11998,12 +11758,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -12025,19 +11783,16 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -12053,12 +11808,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -12071,7 +11824,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -12081,24 +11833,18 @@
tag = "90Curve"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/computer/cryopod{
- density = 0;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel,
/area/security/permabrig)
"avp" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/chair/comfy/shuttle{
@@ -12114,19 +11860,17 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/security/permabrig)
"avs" = (
@@ -12149,9 +11893,7 @@
/area/shuttle/pod_3)
"avu" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light,
@@ -12191,13 +11933,12 @@
"avz" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "Processing Shutter";
name = "Processing Shutter";
@@ -12211,8 +11952,8 @@
/area/security/processing)
"avB" = (
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/processing)
"avC" = (
@@ -12220,12 +11961,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -12235,14 +11974,12 @@
/area/security/permabrig)
"avD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redfull";
tag = "icon-redfull (NORTHWEST)"
},
@@ -12252,7 +11989,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -12266,7 +12002,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redfull";
tag = "icon-redfull (NORTHWEST)"
},
@@ -12281,11 +12016,9 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
@@ -12297,8 +12030,7 @@
security_level = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -12311,7 +12043,6 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
@@ -12320,18 +12051,15 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
@@ -12341,19 +12069,16 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
"avK" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/cable{
d1 = 1;
@@ -12362,8 +12087,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -12374,13 +12098,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
@@ -12406,18 +12128,15 @@
"avO" = (
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "south bump Important Area";
pixel_y = -24
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
@@ -12426,7 +12145,6 @@
dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -12436,19 +12154,16 @@
/area/security/lobby)
"avQ" = (
/obj/item/storage/secure/safe{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/machinery/camera{
c_tag = "Internal Affairs Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"avR" = (
@@ -12459,9 +12174,8 @@
dir = 6
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"avS" = (
@@ -12470,12 +12184,10 @@
/area/lawoffice)
"avT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/lobby)
@@ -12495,17 +12207,14 @@
req_access_txt = "38"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"avX" = (
@@ -12576,7 +12285,6 @@
req_access_txt = "63"
},
/obj/effect/mapping_helpers/airlock/unres{
- icon_state = "airlock_unres_helper";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -12589,7 +12297,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -12601,8 +12308,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -12621,7 +12327,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -12630,8 +12335,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
@@ -12640,8 +12344,8 @@
req_access_txt = "63"
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/processing)
"awg" = (
@@ -12663,7 +12367,6 @@
},
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "Processing Shutter";
name = "Processing Shutter";
@@ -12676,8 +12379,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/processing)
"awi" = (
@@ -12685,12 +12388,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/security/processing)
"awj" = (
@@ -12698,7 +12400,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -12720,9 +12421,9 @@
req_access_txt = "13"
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -12733,8 +12434,7 @@
"awm" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f9";
- dir = 2
+ icon_state = "swall_f9"
},
/area/shuttle/pod_3)
"awn" = (
@@ -12748,12 +12448,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -12767,17 +12465,16 @@
/area/shuttle/syndicate_elite)
"awp" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion (NORTH)";
- icon_state = "propulsion";
- dir = 1
+ dir = 1;
+ tag = "icon-propulsion (NORTH)"
},
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate_elite)
"awq" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r (NORTH)";
+ dir = 1;
icon_state = "propulsion_r";
- dir = 1
+ tag = "icon-propulsion_r (NORTH)"
},
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate_elite)
@@ -12790,9 +12487,9 @@
/area/shuttle/syndicate_elite)
"aws" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l (NORTH)";
+ dir = 1;
icon_state = "propulsion_l";
- dir = 1
+ tag = "icon-propulsion_l (NORTH)"
},
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate_elite)
@@ -12805,17 +12502,16 @@
/area/shuttle/syndicate_sit)
"awu" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion (NORTH)";
- icon_state = "propulsion";
- dir = 1
+ dir = 1;
+ tag = "icon-propulsion (NORTH)"
},
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate_sit)
"awv" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r (NORTH)";
+ dir = 1;
icon_state = "propulsion_r";
- dir = 1
+ tag = "icon-propulsion_r (NORTH)"
},
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate_sit)
@@ -12828,17 +12524,16 @@
/area/shuttle/syndicate_sit)
"awx" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l (NORTH)";
+ dir = 1;
icon_state = "propulsion_l";
- dir = 1
+ tag = "icon-propulsion_l (NORTH)"
},
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate_sit)
"awy" = (
/obj/machinery/mineral/labor_claim_console{
machinedir = 1;
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/simulated/shuttle/floor,
/area/shuttle/siberia)
@@ -12851,15 +12546,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/obj/structure/cable{
d1 = 2;
@@ -12867,8 +12560,8 @@
icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/security/processing)
"awB" = (
@@ -12880,7 +12573,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -12902,13 +12594,11 @@
/obj/machinery/camera{
c_tag = "Brig Prisoner Processing East";
dir = 8;
- network = list("SS13");
- pixel_x = 0;
pixel_y = -22
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/security/processing)
"awD" = (
@@ -13024,7 +12714,6 @@
dir = 4
},
/obj/effect/mapping_helpers/airlock/unres{
- icon_state = "airlock_unres_helper";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -13099,8 +12788,7 @@
/area/security/permabrig)
"awY" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1;
@@ -13116,12 +12804,11 @@
"awZ" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/security/permabrig)
"axa" = (
@@ -13129,7 +12816,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door_control{
@@ -13146,8 +12832,8 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/security/permabrig)
"axb" = (
@@ -13184,7 +12870,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -13207,7 +12892,6 @@
/obj/machinery/airlock_sensor{
frequency = 1450;
id_tag = "dorms_sensor";
- pixel_x = 0;
pixel_y = 25
},
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
@@ -13243,9 +12927,8 @@
"axj" = (
/obj/structure/window/reinforced,
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (NORTH)";
- icon_state = "heater";
- dir = 1
+ dir = 1;
+ tag = "icon-heater (NORTH)"
},
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate_elite)
@@ -13258,9 +12941,8 @@
"axl" = (
/obj/structure/window/reinforced,
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (NORTH)";
- icon_state = "heater";
- dir = 1
+ dir = 1;
+ tag = "icon-heater (NORTH)"
},
/turf/simulated/shuttle/plating,
/area/shuttle/syndicate_sit)
@@ -13270,8 +12952,7 @@
pixel_x = 25
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/chair/comfy/shuttle{
dir = 8
@@ -13305,17 +12986,14 @@
/obj/machinery/requests_console{
department = "Internal Affairs Office";
name = "Internal Affairs Requests Console";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"axq" = (
@@ -13330,13 +13008,11 @@
/area/solar/auxstarboard)
"axr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"axs" = (
@@ -13355,7 +13031,6 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/lobby)
@@ -13364,7 +13039,6 @@
/obj/structure/cable,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "Processing Shutter";
name = "Processing Shutter";
@@ -13407,8 +13081,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/security/lobby)
@@ -13439,30 +13112,25 @@
},
/obj/machinery/camera{
c_tag = "Brig Lobby East";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/security/lobby)
"axC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/security{
name = "Evidence Storage";
@@ -13475,9 +13143,8 @@
/area/security/evidence)
"axD" = (
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j1 (EAST)";
- icon_state = "pipe-j1";
- dir = 4
+ dir = 4;
+ tag = "icon-pipe-j1 (EAST)"
},
/turf/simulated/floor/plasteel,
/area/security/lobby)
@@ -13486,7 +13153,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -13532,14 +13198,10 @@
/area/security/prison/cell_block/A)
"axH" = (
/obj/machinery/door_timer/cell_2{
- dir = 2;
- layer = 4;
- pixel_x = 0;
- pixel_y = -32
+ layer = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -13565,27 +13227,21 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
"axJ" = (
/obj/machinery/door_timer/cell_4{
- dir = 2;
- layer = 4;
- pixel_x = 0;
- pixel_y = -32
+ layer = 4
},
/obj/structure/cable{
d1 = 4;
@@ -13605,7 +13261,6 @@
"axK" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
@@ -13617,7 +13272,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -13629,8 +13283,7 @@
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -13640,19 +13293,6 @@
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
-"axO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
- },
-/area/security/processing)
"axP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
@@ -13668,12 +13308,9 @@
"axQ" = (
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/processing)
@@ -13685,7 +13322,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/processing)
@@ -13694,7 +13330,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -13708,15 +13343,13 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
/area/security/processing)
"axU" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light{
@@ -13724,14 +13357,11 @@
},
/obj/structure/table,
/obj/item/restraints/handcuffs,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -13766,15 +13396,13 @@
dir = 1
},
/obj/structure/table,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"axZ" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/security/lobby)
"aya" = (
@@ -13816,8 +13444,7 @@
"ayh" = (
/obj/machinery/door/airlock/shuttle{
id_tag = "s_docking_airlock";
- name = "Labor Shuttle Airlock";
- req_access_txt = "0"
+ name = "Labor Shuttle Airlock"
},
/obj/docking_port/mobile{
dir = 8;
@@ -13847,8 +13474,8 @@
"ayj" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/lobby)
"ayk" = (
@@ -13882,7 +13509,6 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
@@ -13895,15 +13521,13 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/security/processing)
"ayq" = (
/obj/structure/table,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/turf/simulated/floor/plasteel,
/area/security/processing)
"ayr" = (
@@ -13947,7 +13571,6 @@
/obj/machinery/door_control{
id = "syndicate_sit_1";
name = "Blast Doors";
- pixel_x = 0;
pixel_y = -23;
req_access_txt = "150"
},
@@ -13978,10 +13601,7 @@
scrub_Toxins = 1
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -13999,7 +13619,6 @@
/area/security/permabrig)
"ayx" = (
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/table,
@@ -14043,7 +13662,6 @@
/area/security/permabrig)
"ayA" = (
/obj/structure/noticeboard{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/photocopier,
@@ -14062,7 +13680,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/poddoor{
@@ -14078,7 +13695,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -14089,7 +13705,6 @@
id = "Execution Shutter";
name = "Execution Shutter Control";
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "1"
},
/turf/simulated/floor/plasteel{
@@ -14128,8 +13743,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -14148,28 +13762,24 @@
/obj/machinery/door_control{
id = "lawyer";
name = "Internal Affairs Privacy Shutters Control";
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/machinery/vending/coffee/free,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"ayI" = (
/obj/structure/chair/comfy/brown,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"ayJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -14178,24 +13788,19 @@
/area/security/lobby)
"ayK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/camera{
c_tag = "Brig Lobby West";
- dir = 4;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/lobby)
"ayL" = (
@@ -14203,8 +13808,7 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -14214,15 +13818,13 @@
/area/security/lobby)
"ayM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/light,
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = -32
},
/obj/item/reagent_containers/food/drinks/mug/sec,
@@ -14237,8 +13839,7 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -14260,16 +13861,13 @@
/area/security/lobby)
"ayP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -14310,8 +13908,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
@@ -14425,7 +14022,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -14493,8 +14089,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -14502,9 +14097,8 @@
/area/security/interrogation)
"aze" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
- dir = 8
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
/obj/structure/chair/comfy/shuttle{
dir = 4
@@ -14515,9 +14109,8 @@
/area/shuttle/syndicate_elite)
"azf" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
- dir = 8
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
/obj/structure/window/reinforced,
/obj/structure/chair/comfy/shuttle{
@@ -14594,8 +14187,7 @@
/area/space/nearstation)
"azp" = (
/obj/machinery/door/airlock{
- name = "Bathroom";
- req_access_txt = "0"
+ name = "Bathroom"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -14612,7 +14204,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/closet/wardrobe/pjs,
@@ -14629,12 +14220,11 @@
},
/obj/machinery/flasher{
id = "permaflash2";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/security/permabrig)
"azu" = (
@@ -14642,12 +14232,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+ dir = 9;
+ icon_state = "red"
},
/area/security/permabrig)
"azv" = (
@@ -14673,13 +14262,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -14691,8 +14278,7 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/cable{
d1 = 1;
@@ -14709,8 +14295,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
"azy" = (
@@ -14725,12 +14311,10 @@
pixel_x = 24
},
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -14743,12 +14327,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -14763,26 +14345,23 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"azB" = (
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"azC" = (
@@ -14792,9 +14371,8 @@
icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"azD" = (
@@ -14810,8 +14388,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/lobby)
"azF" = (
@@ -14828,17 +14406,14 @@
/area/magistrateoffice)
"azG" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sign/poster/official/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -14850,7 +14425,6 @@
id = "brig_courtroom";
name = "Brig Courtroom Shutter Control";
pixel_x = 25;
- pixel_y = 0;
req_access_txt = "2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -14892,14 +14466,13 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
"azL" = (
@@ -14924,27 +14497,22 @@
name = "Cell 2 Locker"
},
/obj/machinery/camera{
- c_tag = "Brig Cell 2";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Cell 2"
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
"azO" = (
/obj/machinery/camera{
- c_tag = "Brig Cell 4";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Cell 4"
},
/obj/structure/closet/secure_closet/brig{
id = "Cell 4";
name = "Cell 4 Locker"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
@@ -14952,8 +14520,8 @@
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/lobby)
"azQ" = (
@@ -14961,14 +14529,12 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -14978,8 +14544,8 @@
"azR" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/security/lobby)
"azS" = (
@@ -15032,9 +14598,7 @@
name = "Cell 5 Locker"
},
/obj/machinery/camera{
- c_tag = "Brig Cell 5";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Cell 5"
},
/obj/effect/decal/cleanable/cobweb2,
/turf/simulated/floor/plasteel,
@@ -15042,8 +14606,7 @@
"azX" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -15058,14 +14621,12 @@
req_access_txt = "2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -15107,8 +14668,7 @@
"aAe" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f5";
- dir = 2
+ icon_state = "swall_f5"
},
/area/shuttle/siberia)
"aAf" = (
@@ -15127,7 +14687,13 @@
},
/area/shuttle/syndicate_elite)
"aAi" = (
-/obj/machinery/computer/camera_advanced/shuttle_docker/ert,
+/obj/item/radio/intercom/specops{
+ pixel_y = 28
+ },
+/obj/structure/table,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/multitool,
+/obj/item/storage/toolbox/mechanical,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -15135,8 +14701,7 @@
"aAj" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f9";
- dir = 2
+ icon_state = "swall_f9"
},
/area/shuttle/siberia)
"aAk" = (
@@ -15175,9 +14740,8 @@
/area/security/permabrig)
"aAo" = (
/obj/machinery/shower{
- tag = "icon-shower (EAST)";
- icon_state = "shower";
- dir = 4
+ dir = 4;
+ tag = "icon-shower (EAST)"
},
/obj/structure/curtain/open/shower,
/turf/simulated/floor/plasteel{
@@ -15216,7 +14780,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/poddoor{
@@ -15243,8 +14806,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/security/permabrig)
"aAw" = (
@@ -15253,7 +14816,6 @@
/obj/item/clothing/glasses/sunglasses/blindfold,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -15270,8 +14832,8 @@
/area/security/execution)
"aAz" = (
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/security/lobby)
"aAA" = (
@@ -15324,9 +14886,8 @@
"aAD" = (
/obj/structure/closet/lawcloset,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"aAE" = (
@@ -15339,29 +14900,25 @@
pixel_y = -5
},
/obj/item/storage/briefcase{
- pixel_x = 3;
- pixel_y = 0
+ pixel_x = 3
},
/obj/item/storage/secure/briefcase{
pixel_x = 5;
pixel_y = -5
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"aAF" = (
@@ -15375,9 +14932,8 @@
name = "Internal Affairs Agent"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"aAH" = (
@@ -15387,9 +14943,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"aAI" = (
@@ -15397,14 +14952,12 @@
/obj/item/pen,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/item/paper_bin/nanotrasen,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"aAJ" = (
@@ -15416,9 +14969,8 @@
/area/maintenance/fsmaint)
"aAK" = (
/obj/machinery/atmospherics/binary/valve/open{
- tag = "icon-map_valve1 (EAST)";
- icon_state = "map_valve1";
- dir = 4
+ dir = 4;
+ tag = "icon-map_valve1 (EAST)"
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -15439,24 +14991,19 @@
},
/obj/machinery/camera{
c_tag = "Magistrate's Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/magistrateoffice)
"aAN" = (
/obj/structure/table/reinforced,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/obj/item/megaphone,
/obj/item/radio/intercom/department/security{
pixel_x = 28;
pixel_y = -7
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28;
pixel_y = 5
},
@@ -15530,12 +15077,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -15568,18 +15113,15 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -15598,12 +15140,10 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -15625,12 +15165,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -15643,7 +15181,6 @@
opacity = 0
},
/obj/machinery/door/window/brigdoor{
- dir = 4;
id = "Cell 5";
name = "Cell 5";
req_access_txt = "2"
@@ -15651,8 +15188,6 @@
/obj/machinery/door/firedoor,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -15673,17 +15208,15 @@
/area/maintenance/abandonedbar)
"aBd" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (EAST)";
- icon_state = "wooden_chair_wings";
- dir = 4
+ dir = 4;
+ tag = "icon-wooden_chair_wings (EAST)"
},
/turf/simulated/floor/plating,
/area/maintenance/abandonedbar)
"aBe" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (WEST)";
- icon_state = "wooden_chair_wings";
- dir = 8
+ dir = 8;
+ tag = "icon-wooden_chair_wings (WEST)"
},
/turf/simulated/floor/wood{
broken = 1;
@@ -15692,9 +15225,8 @@
/area/maintenance/abandonedbar)
"aBf" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (EAST)";
- icon_state = "wooden_chair_wings";
- dir = 4
+ dir = 4;
+ tag = "icon-wooden_chair_wings (EAST)"
},
/turf/simulated/floor/wood,
/area/maintenance/abandonedbar)
@@ -15707,9 +15239,7 @@
/area/maintenance/abandonedbar)
"aBi" = (
/obj/structure/table/reinforced,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -15743,8 +15273,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -15758,7 +15287,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -15773,8 +15301,7 @@
/area/maintenance/fsmaint)
"aBr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -15783,16 +15310,14 @@
/area/security/interrogation)
"aBt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"aBu" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -15813,7 +15338,6 @@
master_tag = "eva_airlock";
name = "exterior access button";
pixel_x = 25;
- pixel_y = 0;
req_access_txt = "13"
},
/obj/structure/lattice/catwalk,
@@ -15839,7 +15363,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -15873,20 +15396,18 @@
id_tag = "solar_tool_pump"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "solar_tool_sensor";
pixel_x = 25;
pixel_y = 12
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- tag_airpump = "solar_tool_pump";
- tag_exterior_door = "solar_tool_outer";
- frequency = 1379;
id_tag = "solar_tool_airlock";
- tag_interior_door = "solar_tool_inner";
pixel_x = 25;
req_access_txt = "13";
- tag_chamber_sensor = "solar_tool_sensor"
+ tag_airpump = "solar_tool_pump";
+ tag_chamber_sensor = "solar_tool_sensor";
+ tag_exterior_door = "solar_tool_outer";
+ tag_interior_door = "solar_tool_inner"
},
/obj/structure/cable{
d1 = 1;
@@ -15906,7 +15427,6 @@
id = "syndicate_sit_1";
name = "Blast Doors";
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "150"
},
/obj/structure/fans/tiny,
@@ -15923,9 +15443,8 @@
"aBH" = (
/obj/item/soap,
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
- dir = 4
+ dir = 4;
+ tag = "icon-bulb1 (EAST)"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -15967,10 +15486,8 @@
/obj/item/lighter,
/obj/item/storage/fancy/cigarettes/cigpack_robust,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -16019,7 +15536,6 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/wood{
@@ -16052,8 +15568,8 @@
"aBY" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/hallway/primary/fore)
"aBZ" = (
@@ -16065,8 +15581,8 @@
pixel_x = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/hallway/primary/fore)
"aCb" = (
@@ -16093,9 +15609,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"aCd" = (
@@ -16104,13 +15619,11 @@
department = "Magistrate's Office"
},
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aCe" = (
@@ -16119,20 +15632,16 @@
req_access_txt = "2"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aCf" = (
@@ -16145,9 +15654,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aCh" = (
@@ -16170,7 +15678,6 @@
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "magistrate";
name = "Magistrate Privacy Shutters";
@@ -16181,9 +15688,8 @@
"aCl" = (
/obj/structure/closet/secure_closet/magistrate,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aCm" = (
@@ -16194,7 +15700,6 @@
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -16220,19 +15725,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/mob/living/simple_animal/bot/secbot/beepsky{
- name = "Officer Beepsky"
+ initialize_directions = 11
},
+/mob/living/simple_animal/bot/secbot/beepsky,
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aCp" = (
/obj/machinery/flasher{
id = "Cell 2";
- pass_flags = 0;
- pixel_x = 0;
pixel_y = -26
},
/turf/simulated/floor/plasteel{
@@ -16256,19 +15756,17 @@
},
/obj/structure/cable/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
"aCs" = (
/obj/structure/bed,
/obj/machinery/flasher{
id = "Cell 4";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/prison/cell_block/A)
@@ -16277,13 +15775,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -16297,7 +15793,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -16315,8 +15810,8 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/hallway/primary/fore)
"aCw" = (
@@ -16324,7 +15819,6 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/flasher{
id = "Cell 5";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -16333,8 +15827,8 @@
/area/security/prison/cell_block/A)
"aCx" = (
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/hallway/primary/fore)
"aCy" = (
@@ -16434,7 +15928,6 @@
dir = 1
},
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -16445,8 +15938,7 @@
/obj/effect/decal/warning_stripes/west,
/obj/machinery/light/small,
/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -16474,14 +15966,12 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
@@ -16552,9 +16042,8 @@
/area/maintenance/abandonedbar)
"aCT" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
- dir = 8
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
@@ -16597,9 +16086,8 @@
/area/shuttle/syndicate_elite)
"aCY" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
- dir = 8
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
@@ -16608,20 +16096,18 @@
"aCZ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/hallway/primary/fore)
"aDa" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -16636,13 +16122,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/door_control{
id = "brig_courtroom";
name = "Brig Courtroom Shutter Control";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "2"
},
@@ -16707,16 +16191,14 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aDi" = (
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aDj" = (
@@ -16736,7 +16218,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -16753,16 +16234,15 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/hallway/primary/fore)
"aDn" = (
@@ -16771,13 +16251,11 @@
dir = 4
},
/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/camera{
c_tag = "Brig Cell Block A South";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -16790,13 +16268,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -16846,12 +16322,11 @@
"aDu" = (
/obj/machinery/power/solar_control{
id = "auxsolareast";
- name = "Fore Port Solar Control";
- track = 0
+ name = "Fore Port Solar Control"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/maintenance/auxsolarport)
@@ -16867,8 +16342,7 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/unary/portables_connector{
dir = 1
@@ -16938,16 +16412,14 @@
"aDE" = (
/obj/item/seeds/ambrosia,
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
- dir = 4
+ dir = 4;
+ tag = "icon-bulb1 (EAST)"
},
/obj/structure/toilet{
dir = 4
},
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -16965,9 +16437,6 @@
/area/maintenance/fpmaint)
"aDH" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -16987,13 +16456,11 @@
name = "Brig Courtroom Shutters"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
"aDJ" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/permabrig)
@@ -17050,9 +16517,8 @@
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aDS" = (
@@ -17061,10 +16527,8 @@
/area/maintenance/auxsolarstarboard)
"aDT" = (
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "eva_sensor";
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 10;
@@ -17080,9 +16544,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aDV" = (
@@ -17161,9 +16624,8 @@
"aEg" = (
/obj/structure/filingcabinet,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aEh" = (
@@ -17171,7 +16633,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/hologram/holopad,
@@ -17180,10 +16641,7 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aEi" = (
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkred"
@@ -17238,7 +16696,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -17255,7 +16712,6 @@
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -17268,8 +16724,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -17280,18 +16735,15 @@
icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/security/prison/cell_block/A)
"aEr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/cable{
d1 = 1;
@@ -17310,8 +16762,7 @@
/area/security/prison/cell_block/A)
"aEs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -17335,8 +16786,7 @@
opacity = 0
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -17354,15 +16804,13 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"aEv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -17393,8 +16841,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -17411,7 +16858,6 @@
id = "syndicate_elite";
name = "Blast Doors";
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "150"
},
/obj/machinery/door/poddoor{
@@ -17538,18 +16984,15 @@
tag = ""
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "solar_chapel_sensor";
pixel_x = 25;
pixel_y = 12
},
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
frequency = 1379;
id_tag = "solar_chapel_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "solar_chapel_airlock";
pixel_x = 25;
req_access_txt = "13";
@@ -17592,7 +17035,6 @@
"aEW" = (
/obj/item/stack/rods,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "escape"
},
/area/maintenance/abandonedbar)
@@ -17660,7 +17102,6 @@
/area/shuttle/syndicate_elite)
"aFh" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -17676,7 +17117,6 @@
/area/shuttle/syndicate_sit)
"aFj" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -17708,15 +17148,13 @@
/obj/item/gavelblock,
/obj/item/gavelhammer,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/cable,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aFn" = (
@@ -17726,8 +17164,7 @@
/area/security/interrogation)
"aFo" = (
/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/firealarm{
@@ -17735,9 +17172,8 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aFp" = (
@@ -17748,13 +17184,11 @@
},
/obj/item/pen/multi,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aFq" = (
@@ -17767,9 +17201,8 @@
pixel_y = 7
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aFr" = (
@@ -17787,9 +17220,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aFs" = (
@@ -17797,9 +17229,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aFt" = (
@@ -17808,16 +17239,14 @@
dir = 8
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/newscaster{
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aFu" = (
@@ -17829,18 +17258,14 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
"aFv" = (
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "eva_airlock";
name = "EVA Airlock Console";
pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
req_one_access_txt = "1;5;11;18;24";
tag_airpump = "eva_pump";
tag_chamber_sensor = "eva_sensor";
@@ -17862,7 +17287,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -17874,8 +17298,8 @@
/area/hallway/primary/fore)
"aFy" = (
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/hallway/primary/fore)
"aFz" = (
@@ -18024,8 +17448,8 @@
dir = 1
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
@@ -18040,9 +17464,7 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/power/smes{
- charge = 0
- },
+/obj/machinery/power/smes,
/turf/simulated/floor/plating,
/area/maintenance/auxsolarport)
"aFS" = (
@@ -18189,8 +17611,8 @@
"aGl" = (
/obj/structure/chair/stool,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken";
- icon_state = "wood-broken"
+ icon_state = "wood-broken";
+ tag = "icon-wood-broken"
},
/area/maintenance/fpmaint)
"aGm" = (
@@ -18208,21 +17630,19 @@
"aGp" = (
/obj/machinery/vending/coffee/free,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken6";
- icon_state = "wood-broken6"
+ icon_state = "wood-broken6";
+ tag = "icon-wood-broken6"
},
/area/maintenance/fpmaint)
"aGq" = (
/obj/structure/chair,
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redfull";
tag = "icon-redfull (NORTHWEST)"
},
@@ -18231,18 +17651,17 @@
/obj/structure/table/reinforced,
/obj/item/reagent_containers/glass/beaker/waterbottle,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/crew_quarters/courtroom)
"aGs" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/crew_quarters/courtroom)
"aGt" = (
@@ -18260,7 +17679,6 @@
"aGw" = (
/obj/structure/disposalpipe/junction{
dir = 1;
- icon_state = "pipe-j1";
tag = "icon-pipe-j1 (EAST)"
},
/turf/simulated/floor/plasteel,
@@ -18312,9 +17730,7 @@
tag = ""
},
/obj/machinery/camera{
- c_tag = "Brig Detective's Office";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig Detective's Office"
},
/obj/structure/window/reinforced{
dir = 4
@@ -18337,7 +17753,6 @@
/area/security/detectives_office)
"aGC" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -18362,9 +17777,7 @@
/area/security/detectives_office)
"aGE" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/closet/secure_closet{
@@ -18413,8 +17826,7 @@
/area/security/detectives_office)
"aGH" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
@@ -18432,7 +17844,6 @@
},
/obj/item/razor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -18440,16 +17851,13 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -18465,16 +17873,12 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/camera{
- c_tag = "Barber Shop";
- dir = 2;
- network = list("SS13")
+ c_tag = "Barber Shop"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -18482,11 +17886,9 @@
/obj/machinery/dye_generator,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -18502,12 +17904,9 @@
dir = 4
},
/obj/machinery/camera{
- c_tag = "Arcade";
- dir = 2;
- network = list("SS13")
+ c_tag = "Arcade"
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/carpet/arcade,
@@ -18547,8 +17946,7 @@
req_access_txt = "13"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/auxsolarstarboard)
@@ -18558,19 +17956,17 @@
"aGU" = (
/obj/machinery/power/solar_control{
id = "auxsolareast";
- name = "Fore Starboard Solar Control";
- track = 0
+ name = "Fore Starboard Solar Control"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plating,
@@ -18612,7 +18008,6 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/carpet/arcade,
@@ -18634,9 +18029,8 @@
"aHd" = (
/obj/item/toy/crayon/white,
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
- dir = 8
+ dir = 8;
+ tag = "icon-bulb1 (WEST)"
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
@@ -18656,15 +18050,13 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/simulated/wall/r_wall,
/area/maintenance/fpmaint2)
"aHh" = (
/obj/machinery/door/airlock/engineering{
icon_state = "door_closed";
- locked = 0;
name = "Fore Port Solar Access";
req_access_txt = "10"
},
@@ -18697,8 +18089,8 @@
"aHm" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken7";
- icon_state = "wood-broken7"
+ icon_state = "wood-broken7";
+ tag = "icon-wood-broken7"
},
/area/maintenance/fpmaint2)
"aHn" = (
@@ -18726,7 +18118,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -18766,33 +18157,29 @@
req_access_txt = "2"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/crew_quarters/courtroom)
"aHx" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/drinks/drinkingglass,
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/crew_quarters/courtroom)
"aHy" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/crew_quarters/courtroom)
"aHz" = (
@@ -18803,7 +18190,6 @@
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "courtroomshutters";
layer = 3.21;
@@ -18821,7 +18207,6 @@
in_use = 1
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -18874,8 +18259,8 @@
"aHH" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/hallway/primary/fore)
"aHI" = (
@@ -18907,7 +18292,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -18978,8 +18362,7 @@
req_access_txt = "4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -18990,7 +18373,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -19005,7 +18387,6 @@
/area/security/detectives_office)
"aIa" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -19014,17 +18395,10 @@
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/arcade)
"aIb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/machinery/light/spot,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
"aIc" = (
/turf/simulated/wall,
/area/clownoffice)
@@ -19033,8 +18407,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -19055,8 +18428,7 @@
/area/maintenance/fpmaint2)
"aIg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -19071,8 +18443,7 @@
/area/mimeoffice)
"aIi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -19091,7 +18462,6 @@
pixel_x = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -19102,11 +18472,9 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -19136,7 +18504,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -19153,7 +18520,6 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/carpet/arcade,
@@ -19167,18 +18533,15 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
@@ -19232,8 +18595,8 @@
/area/maintenance/fpmaint2)
"aIy" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken7";
- icon_state = "wood-broken7"
+ icon_state = "wood-broken7";
+ tag = "icon-wood-broken7"
},
/area/maintenance/fpmaint2)
"aIz" = (
@@ -19262,8 +18625,8 @@
/area/maintenance/auxsolarstarboard)
"aIB" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
@@ -19276,16 +18639,13 @@
"aIC" = (
/obj/machinery/camera{
c_tag = "Fore Starboard Solars";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/power/smes{
- charge = 0
- },
+/obj/machinery/power/smes,
/turf/simulated/floor/plating,
/area/maintenance/auxsolarstarboard)
"aID" = (
@@ -19314,8 +18674,8 @@
/area/maintenance/fpmaint2)
"aIH" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
- icon_state = "wood-broken3"
+ icon_state = "wood-broken3";
+ tag = "icon-wood-broken3"
},
/area/maintenance/fpmaint2)
"aII" = (
@@ -19334,8 +18694,8 @@
/area/maintenance/fpmaint2)
"aIL" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken6";
- icon_state = "wood-broken6"
+ icon_state = "wood-broken6";
+ tag = "icon-wood-broken6"
},
/area/maintenance/fpmaint2)
"aIM" = (
@@ -19345,9 +18705,8 @@
req_access_txt = "74"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aIN" = (
@@ -19366,7 +18725,6 @@
pixel_x = 24
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -19453,8 +18811,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/crew_quarters/courtroom)
"aJc" = (
@@ -19462,8 +18820,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/crew_quarters/courtroom)
"aJd" = (
@@ -19478,8 +18836,8 @@
/obj/structure/table,
/obj/item/book/manual/security_space_law,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/hallway/primary/fore)
"aJf" = (
@@ -19495,20 +18853,18 @@
id_tag = "arrivals_pump"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "arrivals_sensor";
pixel_x = 25;
pixel_y = 12
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- tag_airpump = "arrivals_pump";
- tag_exterior_door = "arrivals_outer";
- frequency = 1379;
id_tag = "arrivals_airlock";
- tag_interior_door = "arrivals_inner";
pixel_x = 25;
req_access_txt = "13";
- tag_chamber_sensor = "arrivals_sensor"
+ tag_airpump = "arrivals_pump";
+ tag_chamber_sensor = "arrivals_sensor";
+ tag_exterior_door = "arrivals_outer";
+ tag_interior_door = "arrivals_inner"
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -19550,7 +18906,6 @@
/obj/item/storage/box/evidence,
/obj/structure/table/wood,
/obj/item/radio/intercom/department/security{
- pixel_x = 0;
pixel_y = -28
},
/obj/structure/cable{
@@ -19588,15 +18943,12 @@
/obj/item/camera_film,
/obj/item/camera_film,
/obj/item/camera{
- name = "detectives camera";
desc = "A one use - polaroid camera. 30 photos left.";
- pixel_x = 0;
- pixel_y = 0;
+ name = "detectives camera";
pictures_left = 30
},
/obj/machinery/requests_console{
name = "Detective Requests Console";
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -19613,7 +18965,6 @@
"aJn" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -19636,15 +18987,13 @@
},
/area/security/detectives_office)
"aJq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/obj/structure/rack,
+/obj/item/rcd,
+/obj/item/rcd_ammo,
+/obj/item/rcd_ammo,
+/obj/item/rcd_ammo,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
"aJr" = (
/obj/structure/table/reinforced,
/obj/item/razor,
@@ -19655,7 +19004,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -19664,14 +19012,12 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/landmark/start{
name = "Barber"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -19680,22 +19026,19 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
"aJu" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
"aJv" = (
/obj/machinery/gameboard,
/obj/structure/sign/poster/contraband/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/arcade)
@@ -19724,8 +19067,7 @@
"aJA" = (
/obj/structure/closet/lasertag/red,
/obj/structure/sign/poster/official/random{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/arcade)
@@ -19750,7 +19092,6 @@
},
/obj/machinery/door/airlock/engineering{
icon_state = "door_closed";
- locked = 0;
name = "Fore Starboard Solar Access";
req_access_txt = "10"
},
@@ -19794,8 +19135,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/simulated/wall/r_wall,
/area/maintenance/auxsolarstarboard)
@@ -19844,22 +19184,19 @@
"aJP" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f6";
- dir = 2
+ icon_state = "swall_f6"
},
/area/shuttle/pod_1)
"aJQ" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f10";
- dir = 2
+ icon_state = "swall_f10"
},
/area/shuttle/pod_1)
"aJR" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f6";
- dir = 2
+ icon_state = "swall_f6"
},
/area/shuttle/pod_2)
"aJS" = (
@@ -19870,8 +19207,7 @@
"aJT" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f10";
- dir = 2
+ icon_state = "swall_f10"
},
/area/shuttle/pod_2)
"aJU" = (
@@ -19893,8 +19229,8 @@
/area/shuttle/pod_2)
"aJW" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
- icon_state = "wood-broken3"
+ icon_state = "wood-broken3";
+ tag = "icon-wood-broken3"
},
/area/maintenance/fpmaint)
"aJX" = (
@@ -19933,25 +19269,24 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
"aKe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/obj/structure/rack,
+/obj/item/tank/nitrogen,
+/obj/item/tank/nitrogen,
+/obj/item/tank/nitrogen,
+/obj/item/tank/nitrogen,
+/obj/item/tank/nitrogen,
+/obj/item/tank/nitrogen,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
"aKf" = (
/obj/item/clothing/under/mafia/sue,
/turf/simulated/floor/plating,
@@ -19961,7 +19296,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -19973,8 +19307,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
@@ -19989,8 +19322,7 @@
"aKj" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/carpet,
/area/crew_quarters/courtroom)
@@ -20026,22 +19358,20 @@
/area/crew_quarters/courtroom)
"aKr" = (
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/crew_quarters/courtroom)
"aKs" = (
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"aKt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -20072,9 +19402,8 @@
"aKw" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"aKx" = (
@@ -20092,15 +19421,13 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/magistrateoffice)
"aKy" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/hallway/primary/fore)
@@ -20108,8 +19435,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -20140,19 +19466,16 @@
/obj/item/scalpel,
/obj/item/autopsy_scanner,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/security/detectives_office)
"aKD" = (
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/microscope,
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/security/detectives_office)
@@ -20169,7 +19492,6 @@
"aKF" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin{
- pixel_x = 0;
pixel_y = 5
},
/obj/item/pen,
@@ -20177,7 +19499,6 @@
pixel_x = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -20190,18 +19511,15 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/hologram/holopad,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -20209,8 +19527,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -20265,8 +19582,6 @@
dir = 4
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/carpet/arcade,
@@ -20280,8 +19595,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera{
c_tag = "Clown's Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
@@ -20313,12 +19627,11 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
@@ -20358,20 +19671,16 @@
/area/maintenance/fsmaint2)
"aLa" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- dir = 2
+ icon_state = "swall3"
},
/area/shuttle/pod_1)
"aLb" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/chair/comfy/shuttle{
dir = 1
@@ -20388,20 +19697,16 @@
/area/hallway/secondary/entry)
"aLe" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- dir = 2
+ icon_state = "swall3"
},
/area/shuttle/pod_2)
"aLf" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/chair/comfy/shuttle{
dir = 1
@@ -20490,7 +19795,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -20501,8 +19805,8 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
- icon_state = "wood-broken3"
+ icon_state = "wood-broken3";
+ tag = "icon-wood-broken3"
},
/area/maintenance/fpmaint2)
"aLo" = (
@@ -20522,8 +19826,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 9
@@ -20571,7 +19874,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -20587,7 +19889,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -20599,7 +19900,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -20701,8 +20001,8 @@
/area/maintenance/fpmaint)
"aLL" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken7";
- icon_state = "wood-broken7"
+ icon_state = "wood-broken7";
+ tag = "icon-wood-broken7"
},
/area/maintenance/fpmaint)
"aLM" = (
@@ -20712,17 +20012,14 @@
/area/maintenance/fpmaint)
"aLN" = (
/obj/structure/sign/poster/official/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/machinery/camera{
c_tag = "Courtroom ";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/crew_quarters/courtroom)
@@ -20743,7 +20040,6 @@
id = "courtroomshutters";
name = "Brig Courtroom Shutter Control";
pixel_x = 25;
- pixel_y = 0;
req_one_access_txt = "74;3"
},
/turf/simulated/floor/carpet,
@@ -20754,15 +20050,13 @@
/area/crew_quarters/courtroom)
"aLS" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/carpet,
/area/crew_quarters/courtroom)
"aLT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -20777,13 +20071,11 @@
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/camera{
c_tag = "Courtroom Lobby";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -20793,8 +20085,7 @@
/area/crew_quarters/courtroom)
"aLV" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -20811,13 +20102,11 @@
/area/crew_quarters/courtroom)
"aLW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -20841,8 +20130,7 @@
/area/crew_quarters/courtroom)
"aLY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -20860,22 +20148,20 @@
/area/crew_quarters/courtroom)
"aLZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/hallway/primary/fore)
"aMa" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -20890,7 +20176,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -20925,17 +20210,14 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/electrical)
@@ -20960,7 +20242,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -21013,7 +20294,6 @@
pixel_x = -28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -21031,7 +20311,6 @@
"aMp" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/chair/comfy/shuttle{
@@ -21051,7 +20330,6 @@
"aMt" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/chair/comfy/shuttle{
@@ -21073,8 +20351,6 @@
/area/maintenance/fpmaint2)
"aMw" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -21082,11 +20358,9 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -21110,7 +20384,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -21128,7 +20401,6 @@
"aMD" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/decal/warning_stripes/south,
@@ -21180,8 +20452,7 @@
"aMJ" = (
/obj/machinery/vending/snack,
/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/arcade)
@@ -21227,9 +20498,8 @@
/obj/item/pen,
/obj/item/paper_bin/nanotrasen,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/lawoffice)
"aMP" = (
@@ -21299,8 +20569,7 @@
/area/maintenance/fpmaint)
"aNa" = (
/obj/machinery/ai_status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/carpet,
/area/crew_quarters/courtroom)
@@ -21317,9 +20586,7 @@
"aNc" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
icon_state = "bluecorner"
@@ -21356,7 +20623,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -21398,8 +20664,7 @@
/area/maintenance/electrical)
"aNl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -21418,7 +20683,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/landmark/burnturf,
@@ -21432,16 +20696,16 @@
"aNp" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/maintenance/electrical)
"aNq" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/bluegrid,
/area/maintenance/electrical)
@@ -21530,7 +20794,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -21585,8 +20848,7 @@
/area/maintenance/fpmaint2)
"aNI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -21595,8 +20857,7 @@
/area/maintenance/fpmaint2)
"aNJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/cable{
d1 = 4;
@@ -21617,13 +20878,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/camera{
c_tag = "Fore Primary Hallway South";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21632,22 +20891,20 @@
/area/hallway/primary/fore)
"aNL" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aNM" = (
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j2 (EAST)";
+ dir = 4;
icon_state = "pipe-j2";
- dir = 4
+ tag = "icon-pipe-j2 (EAST)"
},
/turf/simulated/floor/plasteel{
icon_state = "bluecorner"
@@ -21682,8 +20939,7 @@
"aNQ" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aNR" = (
@@ -21691,7 +20947,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -21709,7 +20964,6 @@
},
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "courtroomshutters";
layer = 3.21;
@@ -21721,8 +20975,7 @@
"aNT" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "bluecorner"
@@ -21735,8 +20988,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
@@ -21750,16 +21002,15 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/crew_quarters/dorms)
"aNW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -21783,14 +21034,12 @@
"aNX" = (
/obj/machinery/disposal,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -21800,15 +21049,13 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -21820,7 +21067,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -21833,8 +21079,7 @@
/area/crew_quarters/arcade)
"aOc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -21844,8 +21089,7 @@
"aOd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/obj/structure/cable{
d1 = 1;
@@ -21887,8 +21131,7 @@
"aOh" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/crew_quarters/dorms)
@@ -21928,9 +21171,7 @@
name = "Atmos Blast Door";
opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/atmos)
"aOm" = (
@@ -21987,8 +21228,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/wood,
/area/crew_quarters/courtroom)
@@ -22001,8 +21241,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint)
@@ -22083,7 +21322,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -22148,8 +21386,7 @@
req_access_txt = "63"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -22159,7 +21396,6 @@
},
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "courtroomshutters";
layer = 3.21;
@@ -22255,8 +21491,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -22292,12 +21527,10 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -22316,8 +21549,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/arcade)
@@ -22352,8 +21584,7 @@
"aPk" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aPm" = (
@@ -22362,8 +21593,7 @@
"aPn" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aPs" = (
@@ -22402,8 +21632,7 @@
"aPx" = (
/obj/machinery/alarm{
dir = 4;
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/wood,
/area/crew_quarters/courtroom)
@@ -22435,7 +21664,6 @@
dir = 8
},
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -22448,8 +21676,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 10
+ dir = 10;
+ icon_state = "blue"
},
/area/crew_quarters/courtroom)
"aPD" = (
@@ -22465,9 +21693,6 @@
/area/crew_quarters/courtroom)
"aPE" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/light,
@@ -22490,7 +21715,6 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -22512,17 +21736,13 @@
id_tag = "sol_pump"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "sol_sensor";
pixel_x = 12;
pixel_y = -25
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "sol_airlock";
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
tag_airpump = "sol_pump";
tag_chamber_sensor = "sol_sensor";
tag_exterior_door = "sol_outer";
@@ -22577,8 +21797,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/simulated/wall,
/area/maintenance/electrical)
@@ -22615,14 +21834,13 @@
/area/hallway/secondary/entry)
"aPS" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump Engineering";
- pixel_x = 0;
pixel_y = 24;
shock_proof = 1
},
@@ -22630,7 +21848,6 @@
/area/maintenance/electrical)
"aPT" = (
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -22649,10 +21866,13 @@
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"aPV" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
+/obj/machinery/flasher{
+ id = "soltraderflash";
+ pixel_x = -30
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/turf/simulated/shuttle/floor,
/area/shuttle/trade/sol)
"aPW" = (
/obj/structure/mirror{
@@ -22719,12 +21939,11 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
icon_state = "whitegreenfull";
@@ -22750,18 +21969,16 @@
/area/maintenance/fpmaint)
"aQk" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aQl" = (
@@ -22779,23 +21996,20 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aQn" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 28
},
/obj/structure/disposalpipe/junction{
icon_state = "pipe-y"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aQo" = (
@@ -22804,19 +22018,18 @@
name = "Civilian"
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aQp" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aQq" = (
@@ -22824,15 +22037,13 @@
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aQr" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light{
@@ -22842,8 +22053,8 @@
/obj/structure/table,
/obj/item/stack/tape_roll,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aQs" = (
@@ -22855,8 +22066,7 @@
/area/hallway/primary/starboard/west)
"aQt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -22864,13 +22074,12 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aQu" = (
@@ -22878,19 +22087,18 @@
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aQv" = (
/turf/simulated/floor/plasteel{
- tag = "icon-siding1 (NORTH)";
+ dir = 1;
icon_state = "bluered";
- dir = 1
+ tag = "icon-siding1 (NORTH)"
},
/area/crew_quarters/dorms)
"aQw" = (
@@ -22910,8 +22118,8 @@
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aQy" = (
@@ -22922,17 +22130,17 @@
dir = 10
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival";
- dir = 5
+ dir = 5;
+ icon_state = "arrival"
},
/area/hallway/secondary/entry)
"aQz" = (
/obj/structure/table,
/obj/item/storage/firstaid/regular,
/turf/simulated/floor/plasteel{
- tag = "icon-siding1 (NORTH)";
+ dir = 1;
icon_state = "bluered";
- dir = 1
+ tag = "icon-siding1 (NORTH)"
},
/area/crew_quarters/dorms)
"aQA" = (
@@ -22942,9 +22150,9 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-siding1 (NORTH)";
+ dir = 1;
icon_state = "bluered";
- dir = 1
+ tag = "icon-siding1 (NORTH)"
},
/area/crew_quarters/dorms)
"aQB" = (
@@ -22957,9 +22165,9 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- tag = "icon-siding1 (NORTH)";
+ dir = 1;
icon_state = "bluered";
- dir = 1
+ tag = "icon-siding1 (NORTH)"
},
/area/crew_quarters/dorms)
"aQC" = (
@@ -22980,26 +22188,22 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aQE" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = 28;
- req_access_txt = "0"
+ pixel_y = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aQG" = (
@@ -23011,15 +22215,15 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aQH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aQI" = (
@@ -23087,15 +22291,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
/area/maintenance/electrical)
"aQS" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "bluecorner"
@@ -23124,7 +22326,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/hologram/holopad,
@@ -23140,16 +22341,26 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/electrical)
"aQX" = (
+/obj/machinery/door/airlock/shuttle/glass{
+ id_tag = "s_docking_airlock"
+ },
+/obj/machinery/door/poddoor/shutters{
+ closingLayer = 5;
+ density = 0;
+ icon_state = "open";
+ id_tag = "trader_privacy";
+ layer = 5;
+ name = "Privacy Shutters";
+ opacity = 0
+ },
/obj/docking_port/mobile{
dir = 8;
dwidth = 4;
@@ -23159,10 +22370,6 @@
roundstart_move = "trade_sol_base";
width = 9
},
-/obj/machinery/door/airlock/shuttle/glass{
- id_tag = "s_docking_airlock";
- req_one_access_txt = "0"
- },
/obj/docking_port/stationary{
dir = 8;
dwidth = 4;
@@ -23171,7 +22378,9 @@
name = "port bay 4 at Cyberiad";
width = 9
},
-/turf/simulated/shuttle/floor,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
/area/shuttle/trade/sol)
"aQY" = (
/obj/structure/chair/stool,
@@ -23182,7 +22391,6 @@
name = "JoinLateCryo"
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -23195,16 +22403,13 @@
/area/crew_quarters/sleep)
"aRa" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/light{
dir = 1
},
/obj/machinery/camera{
- c_tag = "Arrivals Escape Pods";
- dir = 2
+ c_tag = "Arrivals Escape Pods"
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -23215,8 +22420,7 @@
id_tag = "sol_outer";
locked = 1;
name = "Arrivals External Access";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/obj/machinery/access_button{
command = "cycle_exterior";
@@ -23225,8 +22429,7 @@
master_tag = "sol_airlock";
name = "exterior access button";
pixel_x = -13;
- pixel_y = -23;
- req_access_txt = "0"
+ pixel_y = -23
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
@@ -23237,8 +22440,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
@@ -23256,7 +22458,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/decal/warning_stripes/south,
@@ -23264,8 +22465,7 @@
/area/hallway/secondary/entry)
"aRf" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -23325,8 +22525,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -23340,16 +22539,14 @@
/obj/structure/shuttle/engine/propulsion/burst,
/turf/simulated/floor/plating,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f5";
- dir = 2
+ icon_state = "swall_f5"
},
/area/shuttle/pod_1)
"aRn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -23363,8 +22560,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -23384,8 +22580,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -23405,8 +22600,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint)
@@ -23417,8 +22611,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -23436,16 +22629,14 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint)
@@ -23458,8 +22649,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -23477,8 +22667,8 @@
/area/ai_monitored/storage/eva)
"aRx" = (
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 4
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aRy" = (
@@ -23491,8 +22681,7 @@
/obj/structure/shuttle/engine/propulsion/burst,
/turf/simulated/floor/plating,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f9";
- dir = 2
+ icon_state = "swall_f9"
},
/area/shuttle/pod_1)
"aRA" = (
@@ -23503,8 +22692,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -23523,8 +22711,7 @@
"aRC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -23536,12 +22723,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
@@ -23552,10 +22737,8 @@
/area/hallway/primary/fore)
"aRF" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -23567,7 +22750,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -23583,10 +22765,9 @@
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- icon_state = "tranquillite";
dir = 4;
icon_regular_floor = "yellowsiding";
- icon_plating = "plating"
+ icon_state = "tranquillite"
},
/area/mimeoffice)
"aRI" = (
@@ -23594,7 +22775,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -23627,8 +22807,8 @@
/area/maintenance/fsmaint2)
"aRL" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/chair/comfy/brown{
dir = 4
@@ -23636,7 +22816,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/carpet,
@@ -23645,16 +22824,12 @@
/obj/structure/table,
/obj/item/storage/box/cups,
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/wood,
/area/crew_quarters/courtroom)
"aRN" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/structure/chair/comfy/brown{
@@ -23680,7 +22855,6 @@
/area/crew_quarters/courtroom)
"aRQ" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -23716,13 +22890,11 @@
/obj/structure/shuttle/engine/propulsion/burst,
/turf/simulated/floor/plating,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f5";
- dir = 2
+ icon_state = "swall_f5"
},
/area/shuttle/pod_2)
"aRW" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -23743,8 +22915,7 @@
/obj/structure/shuttle/engine/propulsion/burst,
/turf/simulated/floor/plating,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f9";
- dir = 2
+ icon_state = "swall_f9"
},
/area/shuttle/pod_2)
"aRZ" = (
@@ -23763,15 +22934,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aSc" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -23809,8 +22978,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "whitegreenfull";
@@ -23823,8 +22991,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
@@ -23837,8 +23004,8 @@
"aSk" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aSl" = (
@@ -23858,7 +23025,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/crew_quarters/dorms)
@@ -23916,16 +23082,16 @@
icon_state = "0-8"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint)
"aSw" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint)
@@ -23963,7 +23129,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/crew_quarters/dorms)
@@ -24041,8 +23206,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -24074,8 +23238,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -24093,7 +23256,6 @@
/area/crew_quarters/dorms)
"aSM" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/crew_quarters/dorms)
@@ -24104,23 +23266,20 @@
},
/area/hallway/primary/fore)
"aSO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/sleeper/upgraded{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/dorms)
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
"aSP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"aSQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/crew_quarters/dorms)
@@ -24128,20 +23287,17 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aSS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
@@ -24188,38 +23344,30 @@
/area/hallway/secondary/entry)
"aSZ" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aTa" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/ne)
"aTb" = (
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aTc" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aTd" = (
@@ -24229,8 +23377,7 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aTe" = (
@@ -24264,30 +23411,29 @@
/area/maintenance/fpmaint)
"aTi" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 4
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aTj" = (
/obj/machinery/power/terminal,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/maintenance/electrical)
"aTk" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -24301,8 +23447,8 @@
/area/maintenance/electrical)
"aTm" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/light_switch{
pixel_y = -25
@@ -24333,17 +23479,15 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "tranquillite";
dir = 4;
icon_regular_floor = "yellowsiding";
- icon_plating = "plating"
+ icon_state = "tranquillite"
},
/area/mimeoffice)
"aTr" = (
@@ -24357,7 +23501,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
@@ -24386,8 +23529,8 @@
dir = 9
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/gateway)
"aTw" = (
@@ -24403,8 +23546,8 @@
dir = 5
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/gateway)
"aTy" = (
@@ -24412,8 +23555,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/gateway)
"aTz" = (
@@ -24424,8 +23567,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -24462,9 +23604,7 @@
/obj/machinery/cryopod/right,
/obj/machinery/camera{
c_tag = "Cryodorms";
- c_tag_order = 999;
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -24476,8 +23616,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aTE" = (
@@ -24498,8 +23638,8 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/crew_quarters/dorms)
"aTG" = (
@@ -24543,24 +23683,24 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 6
+ dir = 6;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"aTL" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/reception)
"aTM" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (EAST)";
+ dir = 4;
icon_state = "whiteblue";
- dir = 4
+ tag = "icon-whiteblue (EAST)"
},
/area/medical/reception)
"aTN" = (
@@ -24576,8 +23716,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/medical{
name = "Coroner";
- req_access_txt = "5";
- req_one_access_txt = "0"
+ req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -24594,8 +23733,7 @@
},
/obj/machinery/door/airlock/medical{
name = "Morgue";
- req_access_txt = "6";
- req_one_access_txt = "0"
+ req_access_txt = "6"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
@@ -24618,7 +23756,6 @@
"aTQ" = (
/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -24651,9 +23788,9 @@
"aTT" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTHWEST)";
+ dir = 9;
icon_state = "whiteblue";
- dir = 9
+ tag = "icon-whiteblue (NORTHWEST)"
},
/area/medical/reception)
"aTU" = (
@@ -24663,8 +23800,8 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/reception)
"aTV" = (
@@ -24681,8 +23818,8 @@
name = "Civilian"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/reception)
"aTW" = (
@@ -24690,15 +23827,14 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/reception)
"aTX" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
@@ -24710,8 +23846,8 @@
pixel_y = 25
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/reception)
"aTZ" = (
@@ -24766,18 +23902,16 @@
/area/maintenance/electrical)
"aUg" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/smes{
- charge = 0
+ d2 = 4;
+ icon_state = "0-4"
},
+/obj/machinery/power/smes,
/turf/simulated/floor/plating,
/area/maintenance/electrical)
"aUh" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable,
/obj/structure/cable{
@@ -24794,7 +23928,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/wall,
@@ -24804,9 +23937,7 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/power/smes{
- charge = 0
- },
+/obj/machinery/power/smes,
/turf/simulated/floor/plating,
/area/maintenance/electrical)
"aUk" = (
@@ -24843,13 +23974,11 @@
"aUp" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
@@ -24900,18 +24029,6 @@
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aUw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
- },
-/area/crew_quarters/dorms)
"aUx" = (
/obj/machinery/seed_extractor,
/turf/simulated/floor/plasteel,
@@ -24922,8 +24039,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -24960,8 +24076,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2)
@@ -24970,8 +24085,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/gateway)
"aUD" = (
@@ -24979,8 +24094,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/gateway)
"aUE" = (
@@ -25042,9 +24157,8 @@
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/chapel/office)
"aUM" = (
@@ -25052,8 +24166,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
@@ -25070,14 +24183,13 @@
in_use = 1
},
/obj/machinery/camera{
- c_tag = "Medbay Lobby West";
- network = list("SS13")
+ c_tag = "Medbay Lobby West"
},
/obj/structure/closet/walllocker/emerglocker/north,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTHWEST)";
+ dir = 9;
icon_state = "whiteblue";
- dir = 9
+ tag = "icon-whiteblue (NORTHWEST)"
},
/area/medical/reception)
"aUP" = (
@@ -25087,14 +24199,13 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = -5;
- pixel_y = 30;
- req_access_txt = "0"
+ pixel_y = 30
},
/obj/structure/table,
/obj/item/folder/white,
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/reception)
"aUQ" = (
@@ -25103,8 +24214,7 @@
"aUR" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/machinery/meter,
/turf/simulated/floor/plating,
@@ -25127,7 +24237,6 @@
/area/maintenance/fsmaint2)
"aUV" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/effect/decal/warning_stripes/west,
@@ -25175,8 +24284,7 @@
"aVd" = (
/obj/machinery/camera{
c_tag = "Arrivals East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -25202,8 +24310,7 @@
master_tag = "sol_airlock";
name = "interior access button";
pixel_x = -25;
- pixel_y = -25;
- req_access_txt = "0"
+ pixel_y = -25
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -25233,19 +24340,17 @@
"aVk" = (
/obj/structure/closet/secure_closet/freezer/money,
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"aVl" = (
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -25253,8 +24358,8 @@
icon_state = "0-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 10
+ dir = 10;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"aVm" = (
@@ -25278,19 +24383,16 @@
/area/security/nuke_storage)
"aVn" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/table/reinforced,
/obj/structure/closet/fireaxecabinet{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"aVo" = (
@@ -25334,8 +24436,8 @@
name = "JoinLateGateway"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/gateway)
"aVs" = (
@@ -25353,8 +24455,7 @@
/area/crew_quarters/dorms)
"aVt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -25377,8 +24478,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
@@ -25387,17 +24487,14 @@
dir = 9
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/camera{
c_tag = "Dormitory East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aVx" = (
@@ -25408,9 +24505,9 @@
},
/obj/structure/closet/walllocker/emerglocker/north,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTHEAST)";
+ dir = 5;
icon_state = "whiteblue";
- dir = 5
+ tag = "icon-whiteblue (NORTHEAST)"
},
/area/medical/reception)
"aVy" = (
@@ -25424,8 +24521,6 @@
desc = "A remote control switch for the medbay foyer.";
id = "imnotmakingyoulubepissoff";
name = "Chemistry Privacy Shutter Control";
- normaldoorcontrol = 0;
- pixel_x = 0;
pixel_y = 26
},
/turf/simulated/floor/plasteel{
@@ -25435,8 +24530,7 @@
/area/medical/chemistry)
"aVz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -25482,8 +24576,7 @@
/area/crew_quarters/toilet)
"aVD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -25501,8 +24594,7 @@
/area/maintenance/fpmaint)
"aVE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -25529,8 +24621,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
@@ -25540,8 +24631,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint)
@@ -25551,7 +24641,6 @@
/area/crew_quarters/bar)
"aVH" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -25560,8 +24649,7 @@
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -25608,8 +24696,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
@@ -25619,8 +24706,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 2;
@@ -25688,8 +24774,7 @@
/area/ai_monitored/storage/eva)
"aVS" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- dir = 2
+ icon_state = "swall12"
},
/area/shuttle/arrival/station)
"aVT" = (
@@ -25714,17 +24799,15 @@
"aVV" = (
/turf/space,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f6";
icon_state = "swall_f6";
- dir = 2
+ tag = "icon-swall_f6"
},
/area/shuttle/arrival/station)
"aVW" = (
/turf/space,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f10";
icon_state = "swall_f10";
- dir = 2
+ tag = "icon-swall_f10"
},
/area/shuttle/arrival/station)
"aVX" = (
@@ -25747,8 +24830,7 @@
/area/shuttle/arrival/station)
"aWa" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall14";
- dir = 2
+ icon_state = "swall14"
},
/area/shuttle/arrival/station)
"aWb" = (
@@ -25764,7 +24846,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -25772,8 +24853,8 @@
icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/security/checkpoint2)
"aWd" = (
@@ -25782,12 +24863,11 @@
dir = 1
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+ dir = 9;
+ icon_state = "red"
},
/area/security/checkpoint2)
"aWe" = (
@@ -25800,22 +24880,20 @@
id_tag = "sol_inner";
locked = 1;
name = "Arrivals External Access";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
"aWf" = (
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/computer/security{
network = list("SS13","Research Outpost","Mining Outpost")
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/security/checkpoint2)
"aWg" = (
@@ -25835,19 +24913,18 @@
/obj/machinery/computer/secure_data,
/obj/machinery/requests_console{
department = "Security";
- name = "Security Requests Console";
departmentType = 5;
+ name = "Security Requests Console";
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/security/checkpoint2)
"aWi" = (
/obj/structure/table,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/item/wirecutters,
@@ -25908,8 +24985,6 @@
"aWo" = (
/obj/structure/table,
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/item/assembly/signaler,
@@ -25924,7 +24999,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -25946,7 +25020,6 @@
/obj/structure/table,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/item/storage/toolbox/mechanical,
@@ -25954,8 +25027,8 @@
/area/storage/primary)
"aWs" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 6
+ dir = 6;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"aWt" = (
@@ -25964,14 +25037,14 @@
/area/storage/primary)
"aWu" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"aWv" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 10
+ dir = 10;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"aWw" = (
@@ -25985,35 +25058,21 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"aWx" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"aWy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint2)
+/obj/machinery/bodyscanner,
+/obj/machinery/light/spot,
+/turf/simulated/shuttle/floor4/vox,
+/area/shuttle/vox)
"aWz" = (
/obj/machinery/cryopod/right,
/obj/machinery/light{
@@ -26040,8 +25099,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
@@ -26053,8 +25111,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aWC" = (
@@ -26142,14 +25200,13 @@
/area/crew_quarters/dorms)
"aWN" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -26163,8 +25220,7 @@
in_use = 1
},
/obj/machinery/camera{
- c_tag = "Medbay Chemistry North";
- network = list("SS13")
+ c_tag = "Medbay Chemistry North"
},
/obj/structure/extinguisher_cabinet{
pixel_x = -5;
@@ -26178,8 +25234,8 @@
"aWP" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/crew_quarters/dorms)
"aWQ" = (
@@ -26193,7 +25249,6 @@
/obj/machinery/chem_master,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
@@ -26211,15 +25266,14 @@
/obj/item/reagent_containers/dropper/precision,
/obj/effect/decal/warning_stripes/northwest,
/obj/structure/reagent_dispensers/fueltank/chem{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"aWT" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
- icon_state = "vault"
+ icon_state = "vault";
+ tag = "icon-vault"
},
/area/crew_quarters/dorms)
"aWU" = (
@@ -26289,27 +25343,23 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
"aXb" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
"aXc" = (
/obj/machinery/crema_switch{
- pixel_x = 0;
pixel_y = -25
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -26319,9 +25369,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/chapel/office)
"aXd" = (
@@ -26336,9 +25385,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/maintenance/fsmaint2)
"aXe" = (
@@ -26346,9 +25394,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/chapel/office)
"aXf" = (
@@ -26362,16 +25409,14 @@
pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/chapel/office)
"aXh" = (
@@ -26382,32 +25427,28 @@
pixel_x = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/chapel/main)
"aXi" = (
/turf/simulated/floor/plasteel{
- icon_state = "tranquillite";
dir = 4;
icon_regular_floor = "yellowsiding";
- icon_plating = "plating"
+ icon_state = "tranquillite"
},
/area/mimeoffice)
"aXj" = (
/obj/structure/morgue,
/obj/machinery/camera{
c_tag = "Chapel Crematorium";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/effect/landmark{
name = "revenantspawn"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/chapel/office)
"aXk" = (
@@ -26415,9 +25456,8 @@
pixel_y = 25
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/chapel/office)
"aXl" = (
@@ -26431,8 +25471,7 @@
/area/chapel/main)
"aXm" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall11";
- dir = 2
+ icon_state = "swall11"
},
/area/shuttle/arrival/station)
"aXn" = (
@@ -26451,15 +25490,13 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/chapel/office)
"aXp" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall7";
- dir = 2
+ icon_state = "swall7"
},
/area/shuttle/arrival/station)
"aXq" = (
@@ -26533,7 +25570,6 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -26549,8 +25585,8 @@
/obj/item/crowbar,
/obj/item/flash,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/security/checkpoint2)
"aXC" = (
@@ -26571,8 +25607,8 @@
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/security/checkpoint2)
"aXF" = (
@@ -26609,8 +25645,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/construction{
@@ -26626,8 +25661,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
@@ -26638,8 +25672,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/storage/primary)
@@ -26647,12 +25680,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/airlock{
- name = "Garden";
- req_access_txt = "0"
+ name = "Garden"
},
/turf/simulated/floor/plating,
/area/hallway/secondary/construction{
@@ -26675,8 +25706,7 @@
"aXO" = (
/obj/machinery/camera{
c_tag = "Vault";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/structure/closet/crate{
name = "Gold Crate"
@@ -26693,14 +25723,12 @@
pixel_y = -2
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/item/storage/belt/champion,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"aXP" = (
@@ -26742,8 +25770,8 @@
name = "Silver Crate"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"aXU" = (
@@ -26758,10 +25786,9 @@
icon_state = "0-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "tranquillite";
dir = 4;
icon_regular_floor = "yellowsiding";
- icon_plating = "plating"
+ icon_state = "tranquillite"
},
/area/mimeoffice)
"aXV" = (
@@ -26771,10 +25798,9 @@
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "tranquillite";
dir = 4;
icon_regular_floor = "yellowsiding";
- icon_plating = "plating"
+ icon_state = "tranquillite"
},
/area/mimeoffice)
"aXW" = (
@@ -26831,8 +25857,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -26916,12 +25941,10 @@
/obj/item/scalpel,
/obj/item/autopsy_scanner,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -26937,38 +25960,8 @@
icon_state = "dark"
},
/area/medical/morgue)
-"aYm" = (
-/obj/structure/rack,
-/obj/item/storage/box/seccarts{
- pixel_x = 3;
- pixel_y = 2
- },
-/obj/item/storage/box/handcuffs,
-/obj/item/storage/box/flashbangs{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/item/storage/box/handcuffs,
-/obj/effect/decal/warning_stripes/red/hollow,
-/obj/item/storage/box/teargas{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -22;
- pixel_y = 9
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
- },
-/area/security/armoury)
"aYn" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -26981,12 +25974,10 @@
department = "Morgue";
departmentType = 5;
name = "Morgue Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/camera{
- c_tag = "Medbay Coroner";
- network = list("SS13")
+ c_tag = "Medbay Coroner"
},
/obj/machinery/light{
dir = 1;
@@ -27065,8 +26056,7 @@
"aYu" = (
/obj/effect/decal/warning_stripes/west,
/obj/machinery/door/window/southleft{
- name = "EVA Equipment";
- req_access_txt = "0"
+ name = "EVA Equipment"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -27076,8 +26066,7 @@
"aYv" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -27094,8 +26083,7 @@
"aYw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -27116,16 +26104,14 @@
name = "revenantspawn"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/chapel/office)
"aYy" = (
/obj/effect/decal/warning_stripes/east,
/obj/machinery/door/window/southright{
- name = "EVA Equipment";
- req_access_txt = "0"
+ name = "EVA Equipment"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -27134,20 +26120,18 @@
/area/ai_monitored/storage/eva)
"aYz" = (
/obj/machinery/camera{
- c_tag = "Chapel North";
- dir = 2;
- network = list("SS13")
+ c_tag = "Chapel North"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/chapel/main)
"aYA" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/chapel/main)
"aYB" = (
@@ -27168,8 +26152,7 @@
"aYD" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f6";
- dir = 2
+ icon_state = "swall_f6"
},
/area/shuttle/escape)
"aYE" = (
@@ -27194,21 +26177,17 @@
},
/area/chapel/main)
"aYH" = (
-/obj/machinery/computer/crew,
+/obj/machinery/computer/emergency_shuttle,
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "darkblue"
},
/area/shuttle/escape)
"aYI" = (
/obj/machinery/computer/cryopod{
- density = 0;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/cable{
d1 = 1;
@@ -27257,14 +26236,12 @@
"aYM" = (
/turf/simulated/shuttle/floor,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f9";
- dir = 2
+ icon_state = "swall_f9"
},
/area/shuttle/arrival/station)
"aYN" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- dir = 2
+ icon_state = "swall3"
},
/area/shuttle/arrival/station)
"aYO" = (
@@ -27275,7 +26252,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -27295,8 +26271,7 @@
/area/escapepodbay)
"aYT" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion"
+ dir = 4
},
/turf/simulated/shuttle/plating,
/area/shuttle/arrival/station)
@@ -27307,7 +26282,6 @@
/area/shuttle/escape)
"aYV" = (
/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
dir = 4
},
/obj/structure/window/reinforced{
@@ -27320,7 +26294,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -27333,7 +26306,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -27385,19 +26357,17 @@
"aZb" = (
/obj/item/radio,
/obj/item/radio/intercom/department/security{
- pixel_x = 0;
pixel_y = -28
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
+ dir = 6;
+ icon_state = "red"
},
/area/security/checkpoint2)
"aZc" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -27410,7 +26380,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -27421,7 +26390,6 @@
"aZe" = (
/obj/structure/table,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/item/stack/cable_coil{
@@ -27450,7 +26418,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -27467,8 +26434,8 @@
"aZi" = (
/mob/living/simple_animal/mouse/brown/Tom,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 6
+ dir = 6;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"aZj" = (
@@ -27488,8 +26455,8 @@
"aZk" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"aZl" = (
@@ -27501,14 +26468,13 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/chapel/main)
"aZm" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/chapel/main)
@@ -27525,8 +26491,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 10
+ dir = 10;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"aZp" = (
@@ -27559,8 +26525,8 @@
amount = 100000
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"aZr" = (
@@ -27573,8 +26539,8 @@
/area/storage/primary)
"aZs" = (
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aZt" = (
@@ -27668,11 +26634,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkbluecorners"
},
/area/chapel/main)
@@ -27695,8 +26659,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"aZJ" = (
@@ -27721,10 +26684,9 @@
/obj/item/paper_bin,
/obj/item/toy/crayon/mime,
/turf/simulated/floor/plasteel{
- icon_state = "tranquillite";
dir = 4;
icon_regular_floor = "yellowsiding";
- icon_plating = "plating"
+ icon_state = "tranquillite"
},
/area/mimeoffice)
"aZM" = (
@@ -27733,10 +26695,9 @@
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- icon_state = "tranquillite";
dir = 4;
icon_regular_floor = "yellowsiding";
- icon_plating = "plating"
+ icon_state = "tranquillite"
},
/area/mimeoffice)
"aZN" = (
@@ -27767,8 +26728,7 @@
/obj/effect/spawner/window/reinforced,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
@@ -27796,8 +26756,7 @@
/area/medical/morgue)
"aZU" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/filingcabinet/chestdrawer/autopsy,
/turf/simulated/floor/plasteel{
@@ -27837,12 +26796,11 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/security/checkpoint2)
"aZZ" = (
@@ -27856,7 +26814,6 @@
"bab" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/camera{
@@ -27892,7 +26849,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -27934,8 +26890,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -27962,7 +26917,6 @@
/area/gateway)
"ban" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -27975,9 +26929,7 @@
/area/gateway)
"bao" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/table/wood,
@@ -28007,8 +26959,7 @@
/obj/effect/decal/warning_stripes/northeastcorner,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -28019,8 +26970,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -28032,8 +26982,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -28056,12 +27005,10 @@
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -28074,8 +27021,8 @@
/area/library)
"bay" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/chapel/main)
"baz" = (
@@ -28085,8 +27032,8 @@
/obj/structure/rack,
/obj/item/storage/fancy/candle_box/full,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/chapel/main)
"baB" = (
@@ -28115,15 +27062,13 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -28166,15 +27111,12 @@
/area/escapepodbay)
"baH" = (
/obj/machinery/camera{
- c_tag = "Departure Lounge Podbay";
- dir = 2;
- network = list("SS13")
+ c_tag = "Departure Lounge Podbay"
},
/obj/machinery/door_control{
desc = "A remote control-switch for the pod doors.";
id = "escapepodbay";
name = "Pod Door Control";
- pixel_x = 0;
pixel_y = 24;
req_access_txt = "13"
},
@@ -28309,17 +27251,16 @@
/area/shuttle/escape)
"baX" = (
/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/restraints/handcuffs,
/obj/item/flash,
+/obj/item/restraints/handcuffs,
+/obj/item/folder/red,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/shuttle/escape)
"baY" = (
-/obj/machinery/computer/robotics,
+/obj/machinery/computer/communications,
/turf/simulated/floor/plasteel{
- dir = 9;
icon_state = "darkblue"
},
/area/shuttle/escape)
@@ -28366,8 +27307,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -28379,13 +27319,12 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j2 (EAST)";
+ dir = 4;
icon_state = "pipe-j2";
- dir = 4
+ tag = "icon-pipe-j2 (EAST)"
},
/obj/structure/cable{
d1 = 1;
@@ -28428,8 +27367,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/security/nuke_storage)
"bbg" = (
@@ -28443,8 +27382,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -28473,13 +27411,11 @@
"bbi" = (
/obj/machinery/vending/cola,
/obj/machinery/camera{
- c_tag = "Dormitories North-West";
- dir = 2;
- network = list("SS13")
+ c_tag = "Dormitories North-West"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 4
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bbj" = (
@@ -28549,13 +27485,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j1 (EAST)";
- icon_state = "pipe-j1";
- dir = 4
+ dir = 4;
+ tag = "icon-pipe-j1 (EAST)"
},
/obj/structure/cable{
d1 = 2;
@@ -28565,8 +27499,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -28598,14 +27531,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bby" = (
/obj/machinery/camera{
- c_tag = "Medbay Morgue";
- network = list("SS13")
+ c_tag = "Medbay Morgue"
},
/obj/machinery/light/small{
dir = 1
@@ -28623,7 +27554,6 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 4;
- icon_state = "pipe-j1s";
name = "Kitchen";
sortType = 20;
tag = "icon-pipe-j1s (EAST)"
@@ -28643,23 +27573,20 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "tranquillite";
dir = 4;
icon_regular_floor = "yellowsiding";
- icon_plating = "plating"
+ icon_state = "tranquillite"
},
/area/mimeoffice)
"bbB" = (
/obj/structure/closet/secure_closet/mime,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "tranquillite";
dir = 4;
icon_regular_floor = "yellowsiding";
- icon_plating = "plating"
+ icon_state = "tranquillite"
},
/area/mimeoffice)
"bbC" = (
@@ -28697,10 +27624,9 @@
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "tranquillite";
dir = 4;
icon_regular_floor = "yellowsiding";
- icon_plating = "plating"
+ icon_state = "tranquillite"
},
/area/mimeoffice)
"bbE" = (
@@ -28770,9 +27696,7 @@
"bbL" = (
/obj/effect/decal/warning_stripes/blue/hollow,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/suit_storage_unit/standard_unit,
@@ -28807,7 +27731,6 @@
"bbQ" = (
/obj/effect/decal/warning_stripes/blue/hollow,
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/suit_storage_unit/standard_unit,
@@ -28819,8 +27742,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -28866,7 +27788,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -28891,8 +27812,7 @@
"bbX" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -28920,8 +27840,8 @@
on = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 4
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bca" = (
@@ -28933,8 +27853,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 4
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bcb" = (
@@ -28960,10 +27880,7 @@
/area/maintenance/fsmaint2)
"bcc" = (
/obj/structure/window/reinforced,
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/vending/cigarette,
/turf/simulated/floor/wood,
/area/crew_quarters/dorms)
"bcd" = (
@@ -29008,9 +27925,7 @@
"bch" = (
/obj/structure/chair/office/dark,
/obj/machinery/camera{
- c_tag = "Library North";
- dir = 2;
- network = list("SS13")
+ c_tag = "Library North"
},
/turf/simulated/floor/wood,
/area/library)
@@ -29085,9 +28000,7 @@
pixel_x = -24
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -29097,8 +28010,7 @@
"bcr" = (
/turf/simulated/shuttle/floor,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f10";
- dir = 2
+ icon_state = "swall_f10"
},
/area/shuttle/arrival/station)
"bcs" = (
@@ -29120,13 +28032,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
@@ -29144,8 +28054,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -29163,9 +28072,7 @@
pixel_y = 25
},
/obj/machinery/camera{
- c_tag = "Chapel Chaplain's Office";
- dir = 2;
- network = list("SS13")
+ c_tag = "Chapel Chaplain's Office"
},
/obj/structure/table/wood,
/obj/item/lighter/zippo/black,
@@ -29197,7 +28104,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -29250,18 +28156,16 @@
},
/obj/machinery/ai_status_display{
pixel_x = -32;
- pixel_y = 0;
step_size = 0
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/chapel/main)
"bcG" = (
/obj/machinery/camera{
- c_tag = "Arrivals Lounge";
- dir = 2
+ c_tag = "Arrivals Lounge"
},
/obj/machinery/light{
dir = 1
@@ -29312,13 +28216,9 @@
/area/shuttle/arrival/station)
"bcO" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = 28
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -29340,19 +28240,16 @@
/obj/item/storage/bag/plants/portaseeder,
/obj/item/plant_analyzer,
/obj/machinery/light_switch{
- dir = 2;
name = "light switch ";
pixel_x = -6;
pixel_y = -25
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/hallway/secondary/construction{
name = "\improper Garden"
@@ -29374,13 +28271,11 @@
},
/obj/machinery/door/window/northleft{
dir = 8;
- icon_state = "left";
name = "Kitchen Desk";
req_access_txt = "28"
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -29413,7 +28308,6 @@
"bcW" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/cable{
@@ -29461,8 +28355,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/hallway/primary/port)
"bda" = (
@@ -29537,8 +28431,7 @@
opacity = 0
},
/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
@@ -29566,12 +28459,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/ai_status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bdn" = (
@@ -29622,35 +28513,31 @@
},
/obj/machinery/camera{
c_tag = "Mime's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "tranquillite";
dir = 4;
icon_regular_floor = "yellowsiding";
- icon_plating = "plating"
+ icon_state = "tranquillite"
},
/area/mimeoffice)
"bdt" = (
/obj/structure/statue/tranquillite/mime,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
- icon_state = "tranquillite";
dir = 4;
icon_regular_floor = "yellowsiding";
- icon_plating = "plating"
+ icon_state = "tranquillite"
},
/area/mimeoffice)
"bdu" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/hallway/secondary/construction{
name = "\improper Garden"
@@ -29663,15 +28550,14 @@
/area/hallway/primary/central/north)
"bdw" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/item/flag/nt,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -29686,12 +28572,11 @@
/obj/item/reagent_containers/glass/bottle/nutrient/ez,
/obj/item/reagent_containers/glass/bottle/nutrient/rh,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/hallway/secondary/construction{
name = "\improper Garden"
@@ -29699,8 +28584,7 @@
"bdy" = (
/obj/effect/decal/warning_stripes/blue/hollow,
/obj/structure/sign/poster/official/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
dir = 8
@@ -29730,12 +28614,10 @@
"bdB" = (
/obj/effect/decal/warning_stripes/blue/hollow,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/sign/poster/official/random{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/suit_storage_unit/standard_unit,
/turf/simulated/floor/plasteel{
@@ -29746,8 +28628,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -29758,9 +28639,8 @@
/area/hallway/primary/central/north)
"bdE" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
- dir = 4
+ dir = 4;
+ tag = "icon-bulb1 (EAST)"
},
/obj/structure/rack,
/obj/item/tank/emergency_oxygen,
@@ -29775,8 +28655,7 @@
dir = 8
},
/obj/structure/sign/poster/official/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -29803,8 +28682,7 @@
name = "Dormitories"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -29816,8 +28694,6 @@
dir = 1
},
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/closet/chefcloset,
@@ -29830,20 +28706,15 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/storage/primary)
"bdL" = (
/obj/machinery/door/window/southleft{
- base_state = "left";
- dir = 2;
- icon_state = "left";
name = "Kitchen Delivery";
req_access_txt = "28"
},
@@ -29854,8 +28725,7 @@
/area/crew_quarters/kitchen)
"bdM" = (
/obj/machinery/camera{
- c_tag = "Kitchen Freezer";
- network = list("SS13")
+ c_tag = "Kitchen Freezer"
},
/obj/machinery/chem_master/condimaster{
name = "CondiMaster Neo";
@@ -29870,15 +28740,13 @@
/area/crew_quarters/kitchen)
"bdN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bdO" = (
@@ -29904,8 +28772,7 @@
opacity = 0
},
/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
@@ -29913,8 +28780,7 @@
/area/bridge)
"bdQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -29926,8 +28792,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bdR" = (
@@ -29951,8 +28816,7 @@
icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bdT" = (
@@ -29960,8 +28824,7 @@
/area/crew_quarters/kitchen)
"bdU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
@@ -29978,8 +28841,7 @@
pixel_y = 24
},
/obj/machinery/camera{
- c_tag = "Hydroponics Storage";
- network = list("SS13")
+ c_tag = "Hydroponics Storage"
},
/obj/structure/closet/crate/hydroponics/prespawned,
/turf/simulated/floor/plasteel{
@@ -29989,15 +28851,14 @@
"bdW" = (
/obj/structure/table,
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/reagentgrinder,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -30056,8 +28917,7 @@
/area/ai_monitored/storage/eva)
"bea" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
@@ -30071,8 +28931,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 2;
@@ -30090,8 +28949,7 @@
/area/hydroponics)
"bec" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -30136,7 +28994,6 @@
icon_state = "1-8"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -30147,8 +29004,7 @@
/area/ai_monitored/storage/eva)
"bef" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -30176,9 +29032,8 @@
"beh" = (
/turf/space,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f5";
icon_state = "swall_f5";
- dir = 2
+ tag = "icon-swall_f5"
},
/area/shuttle/arrival/station)
"bei" = (
@@ -30191,8 +29046,7 @@
/area/hydroponics)
"bej" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall13";
- dir = 2
+ icon_state = "swall13"
},
/area/shuttle/arrival/station)
"bek" = (
@@ -30234,7 +29088,6 @@
"beq" = (
/obj/machinery/ai_status_display{
pixel_x = -32;
- pixel_y = 0;
step_size = 0
},
/turf/simulated/floor/plasteel{
@@ -30250,7 +29103,6 @@
/area/chapel/office)
"bes" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/shuttle/floor,
@@ -30281,8 +29133,7 @@
req_access_txt = "12"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -30336,8 +29187,7 @@
dir = 4
},
/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
@@ -30450,8 +29300,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/hallway/primary/port)
"beP" = (
@@ -30483,8 +29333,7 @@
/area/hallway/primary/port)
"beT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -30508,13 +29357,11 @@
/area/storage/primary)
"beV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -30526,8 +29373,7 @@
/area/crew_quarters/dorms)
"beW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -30536,15 +29382,13 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"beX" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "E.V.A.";
- req_access_txt = "0";
req_one_access_txt = "18"
},
/turf/simulated/floor/plasteel{
@@ -30553,8 +29397,7 @@
/area/ai_monitored/storage/eva)
"beY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -30566,21 +29409,19 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"beZ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j2 (EAST)";
+ dir = 4;
icon_state = "pipe-j2";
- dir = 4
+ tag = "icon-pipe-j2 (EAST)"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bfa" = (
@@ -30590,16 +29431,14 @@
req_access_txt = "46"
},
/turf/simulated/floor/plasteel{
- icon_state = "tranquillite";
dir = 4;
icon_regular_floor = "yellowsiding";
- icon_plating = "plating"
+ icon_state = "tranquillite"
},
/area/mimeoffice)
"bfb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -30608,13 +29447,11 @@
dir = 4
},
/obj/machinery/poolcontroller{
- pixel_x = 0;
pixel_y = -25;
srange = 7
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bfc" = (
@@ -30623,14 +29460,12 @@
/area/hallway/primary/port)
"bfd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -30639,8 +29474,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bfe" = (
@@ -30674,35 +29508,28 @@
/area/ai_monitored/storage/eva)
"bfi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/camera{
c_tag = "Dormitory Center";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bfj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -30715,16 +29542,14 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bfk" = (
/obj/machinery/requests_console{
department = "Bar";
- name = "Bar Requests Console";
departmentType = 2;
- pixel_x = 0;
+ name = "Bar Requests Console";
pixel_y = 30
},
/obj/structure/table/reinforced,
@@ -30765,16 +29590,14 @@
/area/maintenance/fsmaint2)
"bfo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j1 (EAST)";
- icon_state = "pipe-j1";
- dir = 4
+ dir = 4;
+ tag = "icon-pipe-j1 (EAST)"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
@@ -30782,42 +29605,37 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j2 (EAST)";
+ dir = 4;
icon_state = "pipe-j2";
- dir = 4
+ tag = "icon-pipe-j2 (EAST)"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
"bfq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bfr" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 2;
@@ -30829,8 +29647,7 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bfs" = (
@@ -30862,8 +29679,7 @@
/area/turret_protected/aisat_interior)
"bfv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -30878,8 +29694,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bfw" = (
@@ -30900,26 +29715,22 @@
/area/maintenance/fsmaint2)
"bfx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bfy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -30929,14 +29740,12 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bfz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -30946,8 +29755,7 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bfA" = (
@@ -30989,7 +29797,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -31007,7 +29814,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/closet/secure_closet/hydroponics,
@@ -31021,7 +29827,6 @@
"bfG" = (
/obj/structure/disposalpipe/sortjunction{
dir = 4;
- icon_state = "pipe-j1s";
name = "Botany";
sortType = 21;
tag = "icon-pipe-j1s (EAST)"
@@ -31094,7 +29899,6 @@
pixel_y = 5
},
/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 0;
pixel_y = 3
},
/obj/item/watertank,
@@ -31182,8 +29986,7 @@
/area/chapel/main)
"bfT" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/wood,
/area/library)
@@ -31220,8 +30023,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -31275,9 +30077,8 @@
"bge" = (
/turf/space,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f9";
icon_state = "swall_f9";
- dir = 2
+ tag = "icon-swall_f9"
},
/area/shuttle/arrival/station)
"bgf" = (
@@ -31293,8 +30094,7 @@
/area/chapel/office)
"bgh" = (
/obj/machinery/camera{
- c_tag = "Port Hallway 2";
- dir = 2
+ c_tag = "Port Hallway 2"
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -31348,13 +30148,11 @@
},
/obj/structure/sign/directions/evac{
dir = 4;
- icon_state = "direction_evac";
pixel_y = 24;
tag = "icon-direction_evac (EAST)"
},
/obj/structure/sign/directions/medical{
dir = 4;
- icon_state = "direction_med";
pixel_y = 32;
tag = "icon-direction_med (EAST)"
},
@@ -31364,7 +30162,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -31375,9 +30172,7 @@
/area/hallway/primary/port)
"bgr" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
@@ -31386,13 +30181,10 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/camera{
c_tag = "Office Supplies";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -31426,7 +30218,6 @@
"bgw" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/cable{
@@ -31467,7 +30258,6 @@
/area/hallway/primary/port)
"bgB" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -31507,12 +30297,10 @@
/area/hallway/secondary/entry)
"bgH" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/effect/decal/warning_stripes/west,
@@ -31531,7 +30319,6 @@
dir = 1
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -31545,15 +30332,14 @@
},
/obj/machinery/camera{
c_tag = "Gateway";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/light{
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/gateway)
"bgL" = (
@@ -31567,8 +30353,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/gateway)
"bgM" = (
@@ -31583,8 +30369,8 @@
pixel_x = -24
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/hallway/secondary/construction{
name = "\improper Garden"
@@ -31599,14 +30385,12 @@
"bgO" = (
/obj/machinery/door/airlock/maintenance{
name = "E.V.A. Maintenance";
- req_access_txt = "0";
req_one_access_txt = "18"
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -31638,8 +30422,7 @@
},
/obj/machinery/camera{
c_tag = "Chapel Funeral Processing East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -31654,18 +30437,13 @@
/area/crew_quarters/mrchangs)
"bgU" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/north)
"bgV" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/door/firedoor,
@@ -31698,16 +30476,15 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bgY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -31718,8 +30495,7 @@
"bgZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bha" = (
@@ -31748,35 +30524,32 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bhf" = (
/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bhg" = (
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/hallway/primary/central/ne)
"bhh" = (
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/hallway/primary/central/north)
"bhi" = (
/obj/structure/statue/bananium/clown,
/obj/machinery/camera{
c_tag = "Clown's Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/wood,
/area/clownoffice)
@@ -31856,8 +30629,7 @@
},
/obj/machinery/camera{
c_tag = "Dormitories Toilets";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -31916,8 +30688,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
@@ -31943,7 +30714,6 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -31969,8 +30739,7 @@
"bhD" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -31986,8 +30755,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
"bhF" = (
@@ -31998,8 +30766,7 @@
},
/obj/item/vending_refill/cola,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -32021,10 +30788,8 @@
pixel_y = 4
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -32033,8 +30798,7 @@
/area/gateway)
"bhI" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
@@ -32046,8 +30810,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
@@ -32065,8 +30828,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -32122,8 +30884,7 @@
},
/obj/item/radio,
/obj/machinery/ai_status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -32157,7 +30918,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -32199,8 +30959,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -32231,9 +30990,7 @@
dir = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -32257,8 +31014,7 @@
/area/hydroponics)
"bic" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- dir = 2
+ icon_state = "swall3"
},
/area/shuttle/escape)
"bid" = (
@@ -32271,11 +31027,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -32290,7 +31044,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/closet/secure_closet/hydroponics,
@@ -32304,7 +31057,6 @@
"bih" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light{
@@ -32314,10 +31066,7 @@
/turf/simulated/floor/wood,
/area/library)
"bii" = (
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/vending/cigarette,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint2)
"bij" = (
@@ -32331,8 +31080,8 @@
"bim" = (
/obj/machinery/status_display,
/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- dir = 2
+ icon_state = "swall14";
+ tag = "icon-swall14"
},
/area/shuttle/escape)
"bin" = (
@@ -32340,15 +31089,16 @@
name = "Escape Shuttle Cockpit";
req_access_txt = "19"
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/shuttle/escape)
"bio" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32376,8 +31126,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -32409,8 +31158,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
name = "Chapel Office Maintenance";
@@ -32456,7 +31204,6 @@
/area/hallway/secondary/entry)
"biw" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -32500,8 +31247,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "neutral";
- dir = 8
+ dir = 8;
+ icon_state = "neutral"
},
/area/hallway/secondary/entry)
"biB" = (
@@ -32509,7 +31256,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -32543,8 +31289,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -32568,8 +31313,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -32608,8 +31352,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -32655,12 +31398,10 @@
pixel_y = 4
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/effect/decal/warning_stripes/white/hollow,
/obj/item/storage/toolbox/mechanical{
@@ -32674,8 +31415,7 @@
"biO" = (
/turf/simulated/floor/plasteel{
desc = "";
- icon_state = "L13";
- name = "floor"
+ icon_state = "L13"
},
/area/hallway/primary/central/north)
"biP" = (
@@ -32687,9 +31427,7 @@
"biQ" = (
/obj/structure/statue/chickenstatue,
/obj/machinery/camera{
- c_tag = "Mr. Chang's";
- dir = 2;
- network = list("SS13")
+ c_tag = "Mr. Chang's"
},
/turf/simulated/floor/carpet,
/area/crew_quarters/mrchangs)
@@ -32701,7 +31439,6 @@
/area/crew_quarters/mrchangs)
"biS" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -32724,7 +31461,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -32754,8 +31490,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -32774,15 +31509,14 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"biX" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -32805,8 +31539,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -32814,21 +31547,18 @@
/area/crew_quarters/kitchen)
"biZ" = (
/obj/machinery/camera{
- c_tag = "Bar Storage";
- network = list("SS13")
+ c_tag = "Bar Storage"
},
/obj/structure/table/wood,
/obj/machinery/reagentgrinder,
/obj/item/reagent_containers/dropper,
/obj/structure/sign/poster/contraband/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bja" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -32847,17 +31577,13 @@
id_tag = "ai_pump"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "ai_sensor";
pixel_x = 12;
pixel_y = 25
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "ai_airlock";
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
tag_airpump = "ai_pump";
tag_chamber_sensor = "ai_sensor";
tag_exterior_door = "ai_outer";
@@ -32876,7 +31602,6 @@
/area/crew_quarters/bar)
"bjd" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -32928,8 +31653,6 @@
/area/atmos)
"bjj" = (
/obj/structure/closet/gmcloset{
- icon_closed = "black";
- icon_state = "black";
name = "formal wardrobe"
},
/obj/machinery/light/small{
@@ -32977,7 +31700,6 @@
/area/maintenance/fsmaint2)
"bjp" = (
/obj/machinery/door/morgue{
- dir = 2;
name = "Confession Booth (Chaplain)";
req_access_txt = "22"
},
@@ -33031,9 +31753,7 @@
},
/area/hydroponics)
"bju" = (
-/obj/machinery/bookbinder{
- pixel_y = 0
- },
+/obj/machinery/bookbinder,
/turf/simulated/floor/wood,
/area/library)
"bjv" = (
@@ -33068,9 +31788,7 @@
in_use = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -33083,8 +31801,7 @@
/area/hydroponics)
"bjC" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- dir = 2
+ icon_state = "swall12"
},
/area/shuttle/escape)
"bjD" = (
@@ -33103,8 +31820,7 @@
/area/library)
"bjG" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall13";
- dir = 2
+ icon_state = "swall13"
},
/area/shuttle/escape)
"bjI" = (
@@ -33173,8 +31889,7 @@
"bjQ" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/wall/r_wall,
/area/hallway/secondary/entry)
@@ -33195,8 +31910,7 @@
"bjU" = (
/obj/machinery/camera{
c_tag = "Arrivals Center";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/structure/extinguisher_cabinet{
pixel_x = -24
@@ -33282,7 +31996,6 @@
dir = 1
},
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/structure/disposalpipe/segment{
@@ -33333,7 +32046,6 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel,
@@ -33346,9 +32058,9 @@
/area/hallway/primary/port)
"bkh" = (
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j2 (EAST)";
+ dir = 4;
icon_state = "pipe-j2";
- dir = 4
+ tag = "icon-pipe-j2 (EAST)"
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
@@ -33369,8 +32081,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
icon_state = "hydrofloor"
@@ -33400,7 +32111,6 @@
/area/hallway/primary/port)
"bkm" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel,
@@ -33420,7 +32130,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -33429,8 +32138,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/wood,
/area/library)
@@ -33440,7 +32148,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -33461,7 +32168,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -33478,7 +32184,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -33488,7 +32193,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -33501,7 +32205,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -33525,7 +32228,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/sign/securearea{
@@ -33544,7 +32246,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -33557,7 +32258,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -33572,7 +32272,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -33585,7 +32284,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -33619,7 +32317,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -33632,7 +32329,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -33645,7 +32341,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -33672,8 +32367,7 @@
/area/space/nearstation)
"bkJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -33681,8 +32375,7 @@
master_tag = "ai_airlock";
name = "interior access button";
pixel_x = -25;
- pixel_y = 25;
- req_access_txt = "0"
+ pixel_y = 25
},
/turf/simulated/floor/plating,
/area/turret_protected/aisat_interior)
@@ -33772,7 +32465,6 @@
"bkU" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/seed_extractor,
@@ -33782,8 +32474,7 @@
/area/hydroponics)
"bkV" = (
/obj/machinery/camera{
- c_tag = "Hydroponics North";
- network = list("SS13")
+ c_tag = "Hydroponics North"
},
/obj/machinery/vending/hydroseeds,
/turf/simulated/floor/plasteel{
@@ -33815,9 +32506,8 @@
name = "Forbidden Knowledge"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/library)
"bkY" = (
@@ -33836,15 +32526,13 @@
/obj/item/pen/invisible,
/obj/machinery/camera{
c_tag = "Library Study";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/item/stack/tape_roll,
/obj/item/pen/multi,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/library)
"bla" = (
@@ -33890,14 +32578,13 @@
/area/hydroponics)
"blf" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -33916,17 +32603,15 @@
"blh" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "neutral";
- dir = 8
+ dir = 8;
+ icon_state = "neutral"
},
/area/hallway/secondary/entry)
"bli" = (
@@ -33951,12 +32636,9 @@
"blm" = (
/obj/machinery/camera{
c_tag = "Chapel South";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -33989,12 +32671,10 @@
/obj/structure/window/reinforced/tinted,
/obj/structure/window/reinforced/tinted{
dir = 4;
- icon_state = "twindow";
tag = ""
},
/obj/structure/window/reinforced/tinted{
dir = 8;
- icon_state = "twindow";
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -34026,25 +32706,14 @@
},
/area/hallway/secondary/entry)
"blt" = (
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/vending/cigarette,
/turf/simulated/floor/carpet,
/area/crew_quarters/bar)
-"blv" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/shuttle/escape)
"blw" = (
/obj/structure/chair/comfy/black{
dir = 4
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -34075,11 +32744,15 @@
/area/chapel/main)
"blA" = (
/obj/structure/chair/comfy/shuttle{
- dir = 4
+ dir = 1
+ },
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 26
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"blB" = (
@@ -34088,7 +32761,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/north,
@@ -34096,23 +32768,25 @@
/area/hallway/secondary/entry)
"blC" = (
/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+/obj/item/storage/fancy/donut_box,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 33;
+ pixel_y = -7
},
+/turf/simulated/shuttle/floor4,
/area/shuttle/escape)
"blD" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "16"
+/obj/structure/closet/fireaxecabinet{
+ pixel_x = 32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "blue"
},
-/turf/simulated/floor/plating,
/area/shuttle/escape)
"blE" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/north,
@@ -34130,8 +32804,7 @@
/area/hallway/primary/port)
"blG" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/structure/cable{
d1 = 4;
@@ -34182,8 +32855,7 @@
/area/hallway/primary/port)
"blL" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/structure/cable{
d1 = 2;
@@ -34248,8 +32920,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -34269,8 +32940,8 @@
},
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
d2 = 8;
@@ -34308,11 +32979,10 @@
icon_state = "0-8"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/status_display{
- density = 0;
layer = 4
},
/turf/simulated/floor/plating,
@@ -34334,8 +33004,8 @@
icon_state = "0-8"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/bridge)
@@ -34360,12 +33030,12 @@
icon_state = "0-8"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/bridge)
@@ -34392,8 +33062,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -34402,7 +33071,6 @@
/area/hallway/primary/port)
"bmg" = (
/obj/machinery/door/morgue{
- dir = 2;
name = "Confession Booth"
},
/turf/simulated/floor/plasteel{
@@ -34415,11 +33083,9 @@
dir = 4
},
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -34443,12 +33109,10 @@
dir = 1
},
/obj/machinery/door/window{
- dir = 4;
name = "Kitchen";
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -34466,12 +33130,10 @@
"bml" = (
/obj/machinery/door/airlock/maintenance{
name = "E.V.A. Maintenance";
- req_access_txt = "0";
req_one_access_txt = "18"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -34534,19 +33196,16 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
/area/crew_quarters/kitchen)
"bmu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint)
@@ -34571,8 +33230,7 @@
/area/hallway/primary/port)
"bmw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -34639,17 +33297,15 @@
},
/obj/machinery/camera{
c_tag = "Library East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/wood,
/area/library)
"bmE" = (
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/library)
"bmF" = (
@@ -34658,9 +33314,8 @@
pixel_y = -25
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/library)
"bmG" = (
@@ -34671,9 +33326,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/library)
"bmH" = (
@@ -34691,8 +33345,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -34710,7 +33363,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -34728,8 +33380,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -34746,8 +33397,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
@@ -34764,7 +33414,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -34803,7 +33452,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -34830,8 +33478,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -34845,6 +33492,10 @@
/obj/structure/chair/comfy/shuttle{
dir = 4
},
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
/turf/simulated/shuttle/floor4,
/area/shuttle/escape)
"bmY" = (
@@ -34870,11 +33521,9 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/north)
"bnb" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "8"
- },
-/turf/simulated/floor/plating,
+/obj/structure/table,
+/obj/item/storage/firstaid/o2,
+/turf/simulated/floor/plasteel,
/area/shuttle/escape)
"bnd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -34893,8 +33542,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "L2"
@@ -34909,7 +33557,6 @@
/area/hallway/primary/central/north)
"bng" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/hologram/holopad,
@@ -34977,8 +33624,7 @@
/area/hallway/primary/central/north)
"bnl" = (
/obj/machinery/camera{
- c_tag = "Bar East";
- network = list("SS13")
+ c_tag = "Bar East"
},
/obj/machinery/newscaster{
pixel_y = 32
@@ -35012,21 +33658,12 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/ne)
"bnp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/space,
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "wall3"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central/ne)
+/area/shuttle/vox)
"bnq" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -35039,7 +33676,6 @@
/area/maintenance/port)
"bnr" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/machinery/hologram/holopad,
@@ -35102,7 +33738,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -35133,8 +33768,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/carpet,
/area/civilian/pet_store)
@@ -35242,9 +33876,9 @@
name = "Bridge Power Monitoring Computer"
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -35314,20 +33948,16 @@
/area/hallway/primary/central/ne)
"boe" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/ne)
"bof" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -35350,7 +33980,6 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -35372,7 +34001,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -35380,13 +34008,11 @@
"boj" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/kitchen_machine/grill,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bok" = (
@@ -35414,17 +34040,13 @@
/area/crew_quarters/bar)
"bon" = (
/obj/machinery/camera{
- c_tag = "Kitchen";
- network = list("SS13")
+ c_tag = "Kitchen"
},
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/kitchen_machine/candy_maker,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -35436,7 +34058,6 @@
pixel_y = 6
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -35456,7 +34077,6 @@
"boq" = (
/obj/machinery/cooker/deepfryer,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -35487,12 +34107,10 @@
/area/ai_monitored/storage/eva)
"bos" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/kitchen_machine/oven,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -35509,7 +34127,6 @@
"bou" = (
/obj/item/reagent_containers/glass/bucket,
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -35531,8 +34148,8 @@
"bow" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/hydroponics)
"box" = (
@@ -35543,14 +34160,12 @@
/area/quartermaster/office)
"boy" = (
/obj/machinery/door/morgue{
- dir = 2;
name = "Private Study";
req_access_txt = "37"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/library)
"boz" = (
@@ -35558,7 +34173,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -35580,9 +34194,7 @@
dir = 4
},
/obj/machinery/camera{
- c_tag = "Departure Lounge Security";
- dir = 2;
- network = list("SS13")
+ c_tag = "Departure Lounge Security"
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -35617,9 +34229,6 @@
/area/library)
"boH" = (
/obj/machinery/door/window{
- base_state = "left";
- dir = 4;
- icon_state = "left";
name = "Bar Door";
req_access_txt = "25"
},
@@ -35635,7 +34244,6 @@
/area/crew_quarters/bar)
"boI" = (
/obj/machinery/door/airlock/external{
- aiControlDisabled = 0;
hackProof = 1;
id_tag = "emergency_home";
name = "Escape Airlock"
@@ -35656,7 +34264,6 @@
/area/shuttle/escape)
"boL" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -35664,13 +34271,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/carpet,
/area/crew_quarters/bar)
@@ -35695,7 +34300,6 @@
"boP" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -35734,7 +34338,6 @@
/area/crew_quarters/kitchen)
"boT" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = -24
},
/turf/simulated/floor/plasteel,
@@ -35758,8 +34361,7 @@
"boW" = (
/obj/machinery/camera{
c_tag = "Arrivals Hallway";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -35796,7 +34398,6 @@
/obj/structure/closet/wardrobe/mixed,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel,
@@ -35804,7 +34405,6 @@
"bpb" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/table,
@@ -35845,9 +34445,8 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j1 (EAST)";
- icon_state = "pipe-j1";
- dir = 4
+ dir = 4;
+ tag = "icon-pipe-j1 (EAST)"
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
@@ -35875,7 +34474,6 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel,
@@ -35904,12 +34502,10 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/camera{
- c_tag = "Auxiliary Tool Storage";
- dir = 2
+ c_tag = "Auxiliary Tool Storage"
},
/obj/structure/cable{
d2 = 4;
@@ -35926,7 +34522,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -35942,9 +34537,7 @@
"bpn" = (
/obj/structure/table,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/item/stack/sheet/glass{
@@ -35968,7 +34561,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -36026,8 +34618,8 @@
/obj/item/aicard,
/obj/item/multitool,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/bridge)
"bpv" = (
@@ -36035,7 +34627,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -36053,8 +34644,8 @@
"bpw" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/bridge)
"bpx" = (
@@ -36062,7 +34653,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -36075,7 +34665,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -36091,7 +34680,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -36151,7 +34739,6 @@
"bpF" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel,
@@ -36200,7 +34787,6 @@
"bpL" = (
/obj/structure/foodcart,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -36226,12 +34812,10 @@
opacity = 0
},
/obj/machinery/door/window{
- dir = 4;
name = "Kitchen";
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -36253,13 +34837,11 @@
/area/chapel/main)
"bpQ" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/vending/chinese,
/turf/simulated/floor/carpet,
@@ -36279,7 +34861,6 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -36322,16 +34903,12 @@
/area/hallway/secondary/entry)
"bpY" = (
/obj/machinery/door/window/northright{
- base_state = "right";
dir = 8;
- icon_state = "right";
name = "Library Desk Door";
req_access_txt = "37"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/wood,
@@ -36366,9 +34943,7 @@
/area/library)
"bqd" = (
/obj/structure/table/wood,
-/obj/machinery/computer/library/checkout{
- pixel_y = 0
- },
+/obj/machinery/computer/library/checkout,
/obj/machinery/light/small{
dir = 4
},
@@ -36392,8 +34967,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -36429,9 +35003,8 @@
/area/maintenance/fsmaint2)
"bqk" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (WEST)";
- icon_state = "wooden_chair_wings";
- dir = 8
+ dir = 8;
+ tag = "icon-wooden_chair_wings (WEST)"
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
@@ -36454,8 +35027,7 @@
name = "Mr. Chang's"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -36464,7 +35036,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/wood,
@@ -36473,23 +35044,20 @@
/obj/effect/spawner/window/reinforced,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/floor/plating,
/area/hallway/secondary/exit)
"bqo" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "15"
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
},
-/turf/simulated/floor/plating,
+/turf/simulated/shuttle/floor4,
/area/shuttle/escape)
"bqp" = (
/turf/simulated/shuttle/wall{
- tag = "icon-swall7";
icon_state = "swall7";
- dir = 2
+ tag = "icon-swall7"
},
/area/shuttle/escape)
"bqq" = (
@@ -36515,7 +35083,6 @@
frequency = 1379;
master_tag = "eva_airlock";
name = "interior access button";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "13"
},
@@ -36532,7 +35099,6 @@
/area/maintenance/fpmaint2)
"bqu" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/structure/closet/wardrobe/white,
@@ -36564,13 +35130,11 @@
/obj/structure/closet/secure_closet/personal,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/camera{
c_tag = "Locker Room East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/light{
dir = 4
@@ -36601,7 +35165,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -36621,9 +35184,7 @@
"bqF" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/item/reagent_containers/glass/bucket,
/turf/simulated/floor/wood,
@@ -36642,7 +35203,6 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -36709,9 +35269,7 @@
network = list("SS13","Research Outpost","Mining Outpost","Telecomms")
},
/obj/machinery/camera{
- c_tag = "Bridge West";
- dir = 2;
- network = list("SS13")
+ c_tag = "Bridge West"
},
/turf/simulated/floor/plasteel{
dir = 0;
@@ -36720,9 +35278,7 @@
/area/bridge)
"bqR" = (
/obj/structure/table/reinforced,
-/obj/machinery/recharger{
- pixel_y = 0
- },
+/obj/machinery/recharger,
/turf/simulated/floor/plasteel,
/area/bridge)
"bqS" = (
@@ -36758,7 +35314,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -36777,7 +35332,6 @@
/area/bridge)
"bra" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/computer/security/mining,
@@ -36788,17 +35342,13 @@
/area/bridge)
"brb" = (
/obj/machinery/camera{
- c_tag = "Bridge East";
- dir = 2;
- network = list("SS13")
+ c_tag = "Bridge East"
},
/obj/machinery/computer/supplycomp,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/bridge)
@@ -36829,28 +35379,25 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 4
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
"brf" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/camera{
c_tag = "Bar West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"brg" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (WEST)";
- icon_state = "wooden_chair_wings";
- dir = 8
+ dir = 8;
+ tag = "icon-wooden_chair_wings (WEST)"
},
/obj/effect/landmark/start{
name = "Civilian"
@@ -36860,9 +35407,7 @@
"brh" = (
/obj/structure/disposalpipe/segment,
/obj/structure/table/wood,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bri" = (
@@ -36878,8 +35423,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -36894,8 +35438,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutral";
- dir = 1
+ dir = 1;
+ icon_state = "neutral"
},
/area/hallway/secondary/entry)
"brl" = (
@@ -36906,24 +35450,21 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutral";
- dir = 1
+ dir = 1;
+ icon_state = "neutral"
},
/area/hallway/secondary/entry)
"brm" = (
/obj/structure/table,
/obj/item/kitchen/rollingpin,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
/area/crew_quarters/kitchen)
"brn" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -36933,29 +35474,27 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "neutral";
- dir = 1
+ dir = 1;
+ icon_state = "neutral"
},
/area/hallway/secondary/entry)
"bro" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
/area/crew_quarters/kitchen)
"brp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
"brq" = (
@@ -36965,8 +35504,8 @@
/area/hallway/primary/central/nw)
"brr" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/hydroponics)
"brs" = (
@@ -36976,8 +35515,6 @@
"brt" = (
/obj/machinery/hydroponics/constructable,
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -36986,8 +35523,8 @@
/area/hydroponics)
"bru" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/hydroponics)
"brv" = (
@@ -37039,8 +35576,7 @@
/area/library)
"brC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
@@ -37057,8 +35593,7 @@
"brE" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -37098,7 +35633,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -37111,29 +35645,9 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/nw)
"brK" = (
-/obj/docking_port/mobile/emergency{
- dir = 4;
- dwidth = 11;
- height = 18;
- width = 29
- },
-/obj/docking_port/stationary{
- dir = 4;
- dwidth = 11;
- height = 18;
- id = "emergency_home";
- name = "emergency evac bay";
- width = 29
- },
-/obj/machinery/door/airlock/shuttle{
- aiControlDisabled = 1;
- hackProof = 1;
- id_tag = "s_docking_airlock";
- name = "Shuttle Hatch"
- },
+/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutral"
},
/area/shuttle/escape)
"brL" = (
@@ -37150,15 +35664,13 @@
/area/crew_quarters/locker)
"brO" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- dir = 2
+ icon_state = "swall12"
},
/area/shuttle/transport)
"brP" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f10";
- dir = 2
+ icon_state = "swall_f10"
},
/area/shuttle/transport)
"brQ" = (
@@ -37220,7 +35732,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -37229,8 +35740,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/hydroponics)
"bsa" = (
@@ -37265,7 +35776,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -37279,8 +35789,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
@@ -37289,8 +35798,7 @@
/obj/machinery/requests_console{
department = "Locker Room";
name = "Locker Room Requests Console";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
@@ -37307,7 +35815,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -37326,7 +35833,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -37346,7 +35852,6 @@
"bsm" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel,
@@ -37380,8 +35885,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -37404,22 +35908,22 @@
"bsu" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plating,
/area/bridge)
"bsv" = (
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/bridge)
"bsw" = (
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/bridge)
"bsx" = (
@@ -37506,9 +36010,9 @@
/area/bridge)
"bsG" = (
/turf/simulated/floor/plasteel{
- tag = "icon-browncorner (EAST)";
+ dir = 4;
icon_state = "browncorner";
- dir = 4
+ tag = "icon-browncorner (EAST)"
},
/area/bridge)
"bsH" = (
@@ -37550,9 +36054,7 @@
/area/hallway/primary/central/ne)
"bsL" = (
/obj/machinery/camera{
- c_tag = "Bridge East Entrance";
- dir = 2;
- network = list("SS13")
+ c_tag = "Bridge East Entrance"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -37581,7 +36083,6 @@
dir = 1
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/machinery/vending/snack,
@@ -37594,8 +36095,6 @@
/area/hallway/secondary/exit)
"bsQ" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/wood,
@@ -37618,8 +36117,7 @@
},
/obj/item/stack/packageWrap,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bsT" = (
@@ -37632,7 +36130,6 @@
/obj/structure/table,
/obj/item/book/manual/sop_service,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -37640,15 +36137,13 @@
"bsU" = (
/obj/structure/table,
/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3;
- pixel_y = 0
+ pixel_x = -3
},
/obj/item/reagent_containers/food/condiment/peppermill{
pixel_x = 3
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bsV" = (
@@ -37661,8 +36156,7 @@
pixel_x = 5
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bsW" = (
@@ -37681,15 +36175,13 @@
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bsY" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -37706,16 +36198,12 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/storage/tools)
"bta" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = 28
},
/obj/machinery/vending/cola,
@@ -37736,8 +36224,7 @@
"btc" = (
/obj/structure/chair,
/obj/machinery/camera{
- c_tag = "Departure Lounge North";
- network = list("SS13")
+ c_tag = "Departure Lounge North"
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -37753,9 +36240,8 @@
/area/hallway/primary/starboard/east)
"btf" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (EAST)";
- icon_state = "wooden_chair_wings";
- dir = 4
+ dir = 4;
+ tag = "icon-wooden_chair_wings (EAST)"
},
/obj/effect/landmark/start{
name = "Civilian"
@@ -37852,27 +36338,43 @@
},
/area/maintenance/asmaint2)
"btt" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = -30
+ },
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (NORTH)"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
},
-/turf/simulated/floor/plasteel,
/area/shuttle/escape)
"btu" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plasteel,
/area/shuttle/escape)
"btv" = (
-/turf/simulated/shuttle/floor,
-/turf/simulated/shuttle/wall/interior{
- tag = "icon-swall_f9";
- icon_state = "swall_f9"
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 8;
+ layer = 2.9
},
+/turf/space,
+/turf/simulated/shuttle/floor,
/area/shuttle/transport)
"btw" = (
/obj/structure/disposalpipe/segment{
@@ -37887,31 +36389,24 @@
icon_state = "pipe-c"
},
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (EAST)";
- icon_state = "wooden_chair_wings";
- dir = 4
+ dir = 4;
+ tag = "icon-wooden_chair_wings (EAST)"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bty" = (
-/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
+/obj/machinery/computer/shuttle/ferry/request,
/turf/simulated/shuttle/floor,
/area/shuttle/transport)
"btz" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
},
-/obj/structure/chair/comfy/shuttle,
/turf/simulated/shuttle/floor,
/area/shuttle/transport)
"btA" = (
@@ -37932,14 +36427,6 @@
},
/turf/simulated/floor/wood,
/area/security/vacantoffice)
-"btC" = (
-/obj/machinery/computer/shuttle/ferry/request,
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
-"btD" = (
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
"btE" = (
/obj/machinery/power/apc{
dir = 4;
@@ -37982,7 +36469,6 @@
dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -37992,7 +36478,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -38008,7 +36493,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -38029,7 +36513,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -38043,7 +36526,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -38064,7 +36546,6 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -38099,13 +36580,12 @@
/area/crew_quarters/locker)
"btU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/hydroponics)
"btV" = (
@@ -38119,8 +36599,7 @@
/area/library)
"btW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -38143,8 +36622,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/wood,
/area/library)
@@ -38178,9 +36656,7 @@
/area/storage/tools)
"bue" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -38218,7 +36694,6 @@
/area/crew_quarters/locker)
"buh" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -38251,8 +36726,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/nw)
@@ -38277,7 +36751,6 @@
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -38291,9 +36764,8 @@
/area/bridge)
"buq" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (EAST)";
- icon_state = "wooden_chair_wings";
- dir = 4
+ dir = 4;
+ tag = "icon-wooden_chair_wings (EAST)"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
@@ -38302,7 +36774,6 @@
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -38311,8 +36782,7 @@
/obj/structure/table,
/obj/item/reagent_containers/food/snacks/mint,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"but" = (
@@ -38325,7 +36795,6 @@
/obj/structure/table,
/obj/item/kitchen/knife,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -38334,14 +36803,12 @@
/obj/structure/table,
/obj/item/reagent_containers/food/drinks/bottle/cream,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"buv" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -38356,11 +36823,9 @@
"bux" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/arrow{
- icon_state = "4";
dir = 1
},
/obj/effect/decal/warning_stripes/yellow/partial{
- icon_state = "3";
dir = 1
},
/turf/simulated/floor/plasteel,
@@ -38381,18 +36846,15 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/ai_status_display{
pixel_x = -32;
- pixel_y = 0;
step_size = 0
},
/obj/machinery/camera{
c_tag = "Chapel West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -38415,7 +36877,6 @@
"buC" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel,
@@ -38434,7 +36895,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/hallway/secondary/exit)
@@ -38443,7 +36903,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -38456,8 +36915,7 @@
"buG" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
- name = "Chapel";
- req_access_txt = "0"
+ name = "Chapel"
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -38482,7 +36940,6 @@
name = "Chef"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -38492,14 +36949,12 @@
/obj/machinery/reagentgrinder,
/obj/machinery/requests_console{
department = "Kitchen";
- name = "Kitchen Requests Console";
departmentType = 2;
- pixel_x = 30;
- pixel_y = 0
+ name = "Kitchen Requests Console";
+ pixel_x = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"buL" = (
@@ -38517,14 +36972,12 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/carpet,
@@ -38541,7 +36994,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -38560,17 +37012,15 @@
"buQ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (NORTH)";
- icon_state = "wooden_chair_wings";
- dir = 1
+ dir = 1;
+ tag = "icon-wooden_chair_wings (NORTH)"
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"buR" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (NORTH)";
- icon_state = "wooden_chair_wings";
- dir = 1
+ dir = 1;
+ tag = "icon-wooden_chair_wings (NORTH)"
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
@@ -38582,18 +37032,14 @@
},
/obj/machinery/camera{
c_tag = "Arrivals Auxiliary Docking North";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"buT" = (
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/vending/cigarette,
/obj/machinery/light{
dir = 1
},
@@ -38602,12 +37048,11 @@
"buU" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 4
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"buV" = (
@@ -38615,7 +37060,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/carpet,
@@ -38625,7 +37069,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -38654,21 +37097,18 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
- name = "Chapel";
- req_access_txt = "0"
+ name = "Chapel"
},
/turf/simulated/floor/carpet,
/area/chapel/main)
"bva" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
- name = "Chapel";
- req_access_txt = "0"
+ name = "Chapel"
},
/turf/simulated/floor/carpet,
/area/chapel/main)
@@ -38705,7 +37145,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/sign/poster/random{
@@ -38717,6 +37156,7 @@
/obj/machinery/door/airlock/shuttle{
id_tag = "s_docking_airlock"
},
+/obj/structure/fans/tiny,
/obj/docking_port/mobile{
dir = 8;
dwidth = 2;
@@ -38744,7 +37184,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -38754,7 +37193,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -38766,6 +37204,7 @@
/obj/machinery/door/airlock/shuttle{
id_tag = "s_docking_airlock"
},
+/obj/structure/fans/tiny,
/turf/simulated/shuttle/floor,
/area/shuttle/transport)
"bvj" = (
@@ -38801,7 +37240,6 @@
/area/security/vacantoffice)
"bvo" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/filingcabinet/chestdrawer,
@@ -38918,8 +37356,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/ne)
@@ -38992,7 +37429,6 @@
/obj/structure/closet/secure_closet/freezer/kitchen,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -39009,15 +37445,14 @@
/area/chapel/office)
"bvO" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/carpet,
/area/library)
@@ -39050,7 +37485,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -39084,19 +37518,16 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
"bvU" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -39116,8 +37547,8 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 6
+ dir = 6;
+ icon_state = "blue"
},
/area/bridge)
"bvW" = (
@@ -39143,8 +37574,8 @@
"bvY" = (
/obj/structure/filingcabinet/filingcabinet,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 10
+ dir = 10;
+ icon_state = "blue"
},
/area/bridge)
"bvZ" = (
@@ -39220,8 +37651,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
@@ -39237,8 +37667,8 @@
"bwf" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 10
+ dir = 10;
+ icon_state = "blue"
},
/area/hallway/primary/central/ne)
"bwg" = (
@@ -39268,7 +37698,6 @@
/area/hallway/primary/central/ne)
"bwk" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/hallway/secondary/exit)
@@ -39303,7 +37732,6 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -39312,12 +37740,10 @@
/obj/structure/cable,
/obj/machinery/light,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -39328,7 +37754,6 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -39346,22 +37771,19 @@
/obj/machinery/disposal,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
/area/crew_quarters/kitchen)
"bws" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/hydroponics/constructable,
/turf/simulated/floor/plasteel{
@@ -39371,8 +37793,7 @@
"bwt" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
@@ -39411,7 +37832,6 @@
/area/storage/tools)
"bwA" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/structure/rack{
@@ -39425,13 +37845,11 @@
"bwB" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/nw)
@@ -39448,11 +37866,15 @@
/turf/simulated/floor/grass,
/area/hallway/secondary/exit)
"bwE" = (
-/turf/simulated/shuttle/floor,
-/turf/simulated/shuttle/wall/interior{
- tag = "icon-swall_f10";
- icon_state = "swall_f10"
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
},
+/obj/structure/window/plasmareinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/turf/space,
+/turf/simulated/shuttle/floor,
/area/shuttle/transport)
"bwF" = (
/obj/machinery/light{
@@ -39466,25 +37888,16 @@
tag = "icon-whitebluecorner"
},
/area/medical/medbay2)
-"bwG" = (
-/obj/structure/closet/crate,
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
-"bwH" = (
-/obj/structure/closet/crate,
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
"bwI" = (
/obj/structure/chair/comfy/shuttle{
- dir = 1
+ dir = 4
},
/turf/simulated/shuttle/floor,
/area/shuttle/transport)
"bwJ" = (
/obj/machinery/light/spot,
/obj/structure/chair/comfy/shuttle{
- dir = 1
+ dir = 4
},
/turf/simulated/shuttle/floor,
/area/shuttle/transport)
@@ -39492,8 +37905,7 @@
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plating,
@@ -39529,8 +37941,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/hallway/primary/central/nw)
"bwO" = (
@@ -39617,7 +38029,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -39652,17 +38063,14 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/northeastcorner,
/obj/effect/decal/warning_stripes/southeastcorner,
/obj/effect/decal/warning_stripes/yellow/partial{
- icon_state = "3";
dir = 4
},
/obj/effect/decal/warning_stripes/arrow{
- icon_state = "4";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -39745,9 +38153,7 @@
dir = 4;
id = "packageSort2"
},
-/obj/structure/plasticflaps{
- opacity = 0
- },
+/obj/structure/plasticflaps,
/turf/simulated/floor/plating,
/area/quartermaster/office)
"bxg" = (
@@ -39803,8 +38209,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/bridge)
@@ -39846,17 +38251,14 @@
/area/bridge)
"bxs" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"bxt" = (
/obj/machinery/camera/motion{
- c_tag = "AI Upload Chamber";
- network = list("SS13")
+ c_tag = "AI Upload Chamber"
},
/obj/machinery/light_switch{
pixel_y = 27
@@ -39894,8 +38296,7 @@
"bxy" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -39906,8 +38307,8 @@
icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"bxz" = (
@@ -39947,8 +38348,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 0;
@@ -39958,8 +38358,7 @@
"bxD" = (
/obj/machinery/camera{
c_tag = "Bridge Central";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -39981,20 +38380,17 @@
/area/bridge)
"bxE" = (
/obj/machinery/atm{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bxF" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/vending/dinnerware,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -40002,7 +38398,6 @@
"bxG" = (
/obj/machinery/icemachine,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -40025,7 +38420,6 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -40047,7 +38441,6 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -40069,7 +38462,6 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -40103,14 +38495,11 @@
"bxN" = (
/obj/machinery/camera{
c_tag = "Hydroponics South";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/item/reagent_containers/glass/bucket,
/obj/machinery/light_switch{
@@ -40124,7 +38513,6 @@
/obj/machinery/turretid/stun{
control_area = "\improper AI Upload Chamber";
name = "AI Upload Turret Control";
- pixel_x = 0;
pixel_y = -24;
req_access = list(75)
},
@@ -40175,13 +38563,12 @@
/area/library)
"bxU" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/light,
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "south bump Important Area";
pixel_y = -24
},
@@ -40210,7 +38597,6 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/wood,
@@ -40280,7 +38666,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -40304,16 +38689,14 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/bridge)
"byd" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f9";
- dir = 2
+ icon_state = "swall_f9"
},
/area/shuttle/transport)
"bye" = (
@@ -40361,7 +38744,6 @@
/area/security/vacantoffice)
"byh" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/wood,
@@ -40369,7 +38751,6 @@
"byi" = (
/obj/structure/table/wood,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = -24
},
/turf/simulated/floor/wood,
@@ -40411,9 +38792,7 @@
"byo" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -40463,8 +38842,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/hallway/primary/central/ne)
"bys" = (
@@ -40519,7 +38898,6 @@
"byv" = (
/obj/machinery/hologram/holopad,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/effect/decal/cleanable/dirt,
@@ -40532,8 +38910,7 @@
"byx" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -40579,9 +38956,8 @@
/area/quartermaster/office)
"byD" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (EAST)";
- icon_state = "wooden_chair_wings";
- dir = 4
+ dir = 4;
+ tag = "icon-wooden_chair_wings (EAST)"
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
@@ -40590,7 +38966,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -40611,7 +38986,6 @@
/obj/machinery/door_control{
id = "heads_meeting";
name = "Privacy Shutters Control";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/wood,
@@ -40627,15 +39001,11 @@
/area/bridge/meeting_room)
"byJ" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/camera{
- c_tag = "Bridge Conference Room";
- dir = 2;
- network = list("SS13")
+ c_tag = "Bridge Conference Room"
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
@@ -40644,7 +39014,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light_switch{
@@ -40654,13 +39023,12 @@
/area/bridge/meeting_room)
"byL" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/wood,
@@ -40674,8 +39042,8 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/hydroponics)
"byN" = (
@@ -40725,7 +39093,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -40751,7 +39118,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light_switch{
@@ -40767,13 +39133,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
- name = "Library";
- req_access_txt = "0"
+ name = "Library"
},
/turf/simulated/floor/carpet,
/area/library)
@@ -40782,11 +39146,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/carpet,
@@ -40799,7 +39161,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/carpet,
@@ -40813,14 +39174,12 @@
cell_type = 5000;
dir = 1;
name = "north bump Important Area";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"byY" = (
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/cable{
@@ -40898,9 +39257,7 @@
/area/hallway/primary/starboard/west)
"bzh" = (
/obj/machinery/camera{
- c_tag = "Starboard Primary Hallway 2";
- dir = 2;
- network = list("SS13")
+ c_tag = "Starboard Primary Hallway 2"
},
/obj/structure/closet/crate/can,
/turf/simulated/floor/plasteel{
@@ -40936,7 +39293,6 @@
/area/hydroponics)
"bzl" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/light,
@@ -40946,7 +39302,6 @@
/area/chapel/main)
"bzm" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/flora/ausbushes/pointybush,
@@ -40964,9 +39319,8 @@
"bzo" = (
/obj/machinery/light,
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (EAST)";
- icon_state = "wooden_chair_wings";
- dir = 4
+ dir = 4;
+ tag = "icon-wooden_chair_wings (EAST)"
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
@@ -40975,7 +39329,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -40983,19 +39336,22 @@
/area/library)
"bzq" = (
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
+/obj/structure/sign/greencross{
+ pixel_y = -30
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
/area/shuttle/escape)
"bzr" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"bzs" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -41041,13 +39397,12 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Escape Shuttle Cell";
- req_access_txt = "2"
+ req_access_txt = "1"
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -41108,13 +39463,12 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Escape Shuttle Cell";
- req_access_txt = "2"
+ req_access_txt = "1"
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/southeastcorner,
@@ -41142,8 +39496,8 @@
/obj/structure/table,
/obj/machinery/requests_console{
department = "Cargo Bay";
- name = "Cargo Requests Console";
departmentType = 2;
+ name = "Cargo Requests Console";
pixel_y = 30
},
/obj/item/stack/tape_roll,
@@ -41156,8 +39510,8 @@
pixel_y = 3
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival";
- dir = 1
+ dir = 1;
+ icon_state = "arrival"
},
/area/quartermaster/office)
"bzI" = (
@@ -41166,14 +39520,11 @@
/obj/item/storage/box,
/obj/item/storage/box,
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival";
- dir = 1
+ dir = 1;
+ icon_state = "arrival"
},
/area/quartermaster/office)
"bzJ" = (
@@ -41186,8 +39537,8 @@
/obj/item/stack/packageWrap,
/obj/item/rcs,
/turf/simulated/floor/plasteel{
- icon_state = "arrival";
- dir = 5
+ dir = 5;
+ icon_state = "arrival"
},
/area/quartermaster/office)
"bzL" = (
@@ -41207,10 +39558,8 @@
/area/security/vacantoffice)
"bzM" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -41236,8 +39585,7 @@
/area/security/vacantoffice)
"bzQ" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/structure/cable{
d1 = 1;
@@ -41275,10 +39623,8 @@
/area/turret_protected/ai_upload)
"bzU" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -41311,7 +39657,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/vending/cigarette,
@@ -41361,8 +39706,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
@@ -41385,19 +39729,17 @@
/area/hallway/primary/starboard/west)
"bAj" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
@@ -41409,7 +39751,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -41424,8 +39765,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -41441,7 +39781,6 @@
/area/hallway/primary/starboard/west)
"bAo" = (
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
@@ -41454,7 +39793,6 @@
/area/hallway/primary/starboard/west)
"bAq" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -41485,8 +39823,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -41522,8 +39859,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -41545,15 +39881,14 @@
"bAA" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 6
+ dir = 6;
+ icon_state = "blue"
},
/area/hallway/primary/central/nw)
"bAB" = (
/obj/machinery/camera{
c_tag = "Bridge West Entrance";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 0;
@@ -41616,7 +39951,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -41640,8 +39974,8 @@
/area/hallway/secondary/exit)
"bAJ" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/hallway/secondary/exit)
"bAK" = (
@@ -41650,8 +39984,8 @@
/area/hallway/secondary/exit)
"bAL" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/hallway/secondary/exit)
"bAM" = (
@@ -41659,7 +39993,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/east,
@@ -41689,11 +40022,12 @@
pixel_y = 32
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
},
-/obj/structure/chair/comfy/shuttle,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -41701,14 +40035,12 @@
"bAT" = (
/turf/space,
/turf/simulated/shuttle/wall{
- dir = 1;
- icon_state = "diagonalWall3"
+ icon_state = "gwall_f1"
},
/area/shuttle/specops)
"bAU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
@@ -41731,8 +40063,7 @@
},
/obj/machinery/camera{
c_tag = "Starboard Primary Hallway 4";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -41741,8 +40072,7 @@
"bAX" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
- name = "Library";
- req_access_txt = "0"
+ name = "Library"
},
/turf/simulated/floor/carpet,
/area/library)
@@ -41803,8 +40133,7 @@
"bBf" = (
/obj/machinery/camera{
c_tag = "Locker Room South";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -41818,8 +40147,7 @@
/obj/structure/closet/emcloset,
/obj/machinery/camera{
c_tag = "Arrivals Auxiliary Docking South";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -41846,7 +40174,6 @@
"bBk" = (
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/structure/cable{
@@ -41862,8 +40189,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -41886,8 +40212,8 @@
},
/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
- icon_state = "arrival";
- dir = 4
+ dir = 4;
+ icon_state = "arrival"
},
/area/quartermaster/office)
"bBq" = (
@@ -41920,13 +40246,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -41963,7 +40287,6 @@
"bBy" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/porta_turret{
@@ -41984,8 +40307,8 @@
/area/turret_protected/ai_upload)
"bBA" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/turret_protected/ai_upload)
"bBB" = (
@@ -42006,23 +40329,19 @@
/area/crew_quarters/captain)
"bBE" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"bBF" = (
/obj/machinery/camera{
c_tag = "Central Hallway East";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/structure/disposalpipe/segment,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -42071,11 +40390,9 @@
/obj/effect/decal/warning_stripes/southeastcorner,
/obj/effect/decal/warning_stripes/northeastcorner,
/obj/effect/decal/warning_stripes/yellow/partial{
- icon_state = "3";
dir = 4
},
/obj/effect/decal/warning_stripes/arrow{
- icon_state = "4";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -42105,7 +40422,6 @@
"bBO" = (
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
pixel_x = 5;
tag = "icon-shower (EAST)"
},
@@ -42137,20 +40453,6 @@
icon_state = "barber"
},
/area/crew_quarters/locker)
-"bBR" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "14"
- },
-/turf/simulated/floor/plating,
-/area/shuttle/escape)
-"bBS" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "17"
- },
-/turf/simulated/floor/plating,
-/area/shuttle/escape)
"bBU" = (
/obj/structure/window/reinforced{
dir = 1
@@ -42162,26 +40464,15 @@
},
/area/crew_quarters/locker)
"bBX" = (
-/turf/simulated/shuttle/wall{
- tag = "icon-swall14";
- icon_state = "swall14";
- dir = 2
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
/area/shuttle/escape)
-"bBZ" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 32
- },
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/specops)
"bCa" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion"
+ dir = 8
},
/turf/simulated/shuttle/plating,
/area/shuttle/specops)
@@ -42207,7 +40498,6 @@
dir = 4
},
/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
dir = 8
},
/turf/unsimulated/floor,
@@ -42215,10 +40505,9 @@
"bCe" = (
/obj/machinery/camera{
c_tag = "CentComm Special Ops. Shuttle";
- dir = 2;
network = list("ERT","CentComm")
},
-/obj/structure/chair/comfy/shuttle,
+/obj/machinery/recharge_station/ert,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -42270,14 +40559,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/port)
-"bCl" = (
-/obj/machinery/computer/security{
- network = list("SS13","Research Outpost","Mining Outpost")
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/specops)
"bCm" = (
/obj/machinery/door/airlock{
name = "Unit 3"
@@ -42338,7 +40619,6 @@
"bCv" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/cable{
@@ -42418,9 +40698,8 @@
},
/obj/machinery/light/small,
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (WEST)";
- icon_state = "wooden_chair_wings";
- dir = 8
+ dir = 8;
+ tag = "icon-wooden_chair_wings (WEST)"
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
@@ -42436,14 +40715,13 @@
"bCE" = (
/obj/structure/filingcabinet/filingcabinet,
/turf/simulated/floor/plasteel{
- icon_state = "arrival";
- dir = 4
+ dir = 4;
+ icon_state = "arrival"
},
/area/quartermaster/office)
"bCF" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -42461,7 +40739,6 @@
/obj/structure/table,
/obj/machinery/door/window{
base_state = "right";
- dir = 4;
icon_state = "right";
name = "Core Modules";
req_access_txt = "20"
@@ -42483,8 +40760,7 @@
"bCI" = (
/obj/machinery/camera{
c_tag = "Bar South";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/gameboard,
/turf/simulated/floor/wood,
@@ -42493,7 +40769,6 @@
/obj/structure/cable,
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "south bump Important Area";
pixel_y = -24
},
@@ -42503,7 +40778,6 @@
/obj/machinery/computer/aiupload,
/obj/machinery/flasher{
id = "AI";
- pixel_x = 0;
pixel_y = -21
},
/turf/simulated/floor/bluegrid,
@@ -42511,7 +40785,6 @@
"bCL" = (
/obj/machinery/computer/borgupload,
/obj/item/radio/intercom/private{
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/bluegrid,
@@ -42542,8 +40815,7 @@
},
/obj/machinery/camera{
c_tag = "Library South";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -42590,8 +40862,7 @@
/obj/structure/table/wood,
/obj/machinery/camera{
c_tag = "Captain's Office";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/item/storage/lockbox/medal,
/turf/simulated/floor/wood,
@@ -42599,7 +40870,6 @@
"bCW" = (
/obj/structure/table,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/item/storage/box/cups{
@@ -42608,15 +40878,13 @@
},
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = -25
},
/obj/item/roller,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/reception)
"bCX" = (
@@ -42628,15 +40896,14 @@
"bCY" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -42645,7 +40912,6 @@
/area/hallway/primary/central/east)
"bCZ" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel,
@@ -42664,31 +40930,29 @@
/obj/structure/reagent_dispensers/water_cooler,
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (SOUTHWEST)";
+ dir = 10;
icon_state = "whiteblue";
- dir = 10
+ tag = "icon-whiteblue (SOUTHWEST)"
},
/area/medical/reception)
"bDd" = (
/obj/machinery/vending/coffee,
/obj/machinery/computer/mob_healer_terminal{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/reception)
"bDe" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/reception)
"bDf" = (
@@ -42771,7 +41035,6 @@
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/chem_dispenser,
@@ -42794,9 +41057,7 @@
/area/bridge/meeting_room)
"bDp" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -42806,14 +41067,12 @@
/area/hallway/secondary/exit)
"bDq" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/hallway/primary/starboard/east)
"bDr" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/hallway/primary/starboard/east)
@@ -42828,17 +41087,14 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/southeastcorner,
/obj/effect/decal/warning_stripes/northeastcorner,
/obj/effect/decal/warning_stripes/yellow/partial{
- icon_state = "3";
dir = 4
},
/obj/effect/decal/warning_stripes/arrow{
- icon_state = "4";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -42850,7 +41106,6 @@
icon_state = "1-2"
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/extinguisher_cabinet{
@@ -42863,9 +41118,7 @@
"bDv" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -42917,13 +41170,10 @@
/area/maintenance/disposal)
"bDG" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
- dir = 8
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 4
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
+/obj/machinery/computer/camera_advanced/shuttle_docker/ert,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -43025,8 +41275,7 @@
"bDR" = (
/obj/machinery/camera{
c_tag = "Cargo Bay Storage";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -43087,8 +41336,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -43166,8 +41414,8 @@
},
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "arrival";
- dir = 4
+ dir = 4;
+ icon_state = "arrival"
},
/area/quartermaster/office)
"bEg" = (
@@ -43208,15 +41456,13 @@
"bEl" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
- name = "Chapel";
- req_access_txt = "0"
+ name = "Chapel"
},
/turf/simulated/floor/plasteel,
/area/chapel/main)
"bEm" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/cable{
@@ -43312,9 +41558,7 @@
"bEz" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/mirror{
pixel_x = 28
@@ -43360,9 +41604,7 @@
/area/toxins/lab)
"bEE" = (
/obj/machinery/door/window/eastright{
- dir = 4;
name = "Coroner";
- req_access_txt = "0";
req_one_access_txt = "5;4"
},
/turf/simulated/floor/plasteel{
@@ -43400,8 +41642,11 @@
/area/hallway/primary/starboard/east)
"bEK" = (
/obj/machinery/computer/communications,
-/obj/item/radio/intercom/specops{
- pixel_y = -28
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the Special Ops team.";
+ name = "Security Station Monitor";
+ network = list("SS13","Research Outpost","Mining Outpost");
+ pixel_y = -30
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
@@ -43409,7 +41654,7 @@
/area/shuttle/specops)
"bEL" = (
/obj/structure/chair/comfy/shuttle{
- dir = 1
+ dir = 4
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
@@ -43430,8 +41675,7 @@
"bER" = (
/turf/space,
/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "diagonalWall3"
+ icon_state = "gwall_f3"
},
/area/shuttle/specops)
"bES" = (
@@ -43502,8 +41746,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
@@ -43561,8 +41804,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
@@ -43577,9 +41819,7 @@
/area/hallway/primary/central/east)
"bFj" = (
/obj/machinery/camera{
- c_tag = "Starboard Primary Hallway 1";
- dir = 2;
- network = list("SS13")
+ c_tag = "Starboard Primary Hallway 1"
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/starboard/west)
@@ -43597,9 +41837,9 @@
tag = ""
},
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j2";
+ dir = 2;
icon_state = "pipe-j2";
- dir = 2
+ tag = "icon-pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -43627,14 +41867,12 @@
"bFn" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -43650,7 +41888,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -43684,7 +41921,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -43701,7 +41937,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -43724,7 +41959,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/disposalpipe/segment{
@@ -43734,14 +41968,12 @@
/area/hallway/primary/starboard/east)
"bFv" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -43751,9 +41983,7 @@
/area/hallway/primary/starboard/east)
"bFw" = (
/obj/machinery/camera{
- c_tag = "Starboard Primary Hallway 6";
- dir = 2;
- network = list("SS13")
+ c_tag = "Starboard Primary Hallway 6"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -43764,8 +41994,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/yellow/partial,
/obj/effect/decal/warning_stripes/arrow,
@@ -43776,8 +42005,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival";
- dir = 4
+ dir = 4;
+ icon_state = "arrival"
},
/area/quartermaster/office)
"bFz" = (
@@ -43797,7 +42026,6 @@
"bFB" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/door/firedoor,
@@ -43827,7 +42055,6 @@
/area/engine/gravitygenerator)
"bFF" = (
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/slot_machine,
@@ -43856,7 +42083,6 @@
"bFI" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/wood,
@@ -43870,19 +42096,18 @@
dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "asteroid";
tag = "icon-asteroid (NORTH)"
},
/turf/simulated/floor/plasteel{
- tag = "icon-siding2 (NORTH)";
+ dir = 1;
icon_state = "siding2";
- dir = 1
+ tag = "icon-siding2 (NORTH)"
},
/turf/simulated/floor/plasteel{
- tag = "icon-siding1 (NORTH)";
+ dir = 1;
icon_state = "siding1";
- dir = 1
+ tag = "icon-siding1 (NORTH)"
},
/area/hydroponics)
"bFK" = (
@@ -43907,13 +42132,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -43932,7 +42155,6 @@
"bFP" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -43941,9 +42163,8 @@
/area/engine/gravitygenerator)
"bFQ" = (
/obj/structure/morgue{
- tag = "icon-morgue1 (WEST)";
- icon_state = "morgue1";
- dir = 8
+ dir = 8;
+ tag = "icon-morgue1 (WEST)"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -43958,9 +42179,7 @@
"bFS" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 0
+ pixel_x = -12
},
/obj/structure/mirror{
pixel_x = -28
@@ -43974,9 +42193,8 @@
/area/crew_quarters/toilet)
"bFT" = (
/obj/structure/morgue{
- tag = "icon-morgue1 (WEST)";
- icon_state = "morgue1";
- dir = 8
+ dir = 8;
+ tag = "icon-morgue1 (WEST)"
},
/obj/effect/landmark{
name = "revenantspawn"
@@ -44094,22 +42312,20 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plating,
/area/maintenance/port)
"bGc" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -44117,8 +42333,8 @@
/area/assembly/robotics)
"bGd" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/reception)
"bGe" = (
@@ -44135,8 +42351,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/reception)
"bGg" = (
@@ -44155,7 +42371,6 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue";
tag = "icon-whitehall (WEST)"
},
@@ -44165,8 +42380,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/hallway/secondary/exit)
"bGi" = (
@@ -44189,7 +42404,6 @@
/area/hallway/secondary/exit)
"bGk" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -44220,8 +42434,7 @@
},
/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -44233,8 +42446,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/hallway/secondary/exit)
"bGp" = (
@@ -44260,9 +42473,9 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
+ dir = 1;
icon_state = "whiteblue";
- dir = 1
+ tag = "icon-whiteblue (NORTH)"
},
/area/medical/reception)
"bGr" = (
@@ -44275,9 +42488,9 @@
/area/hallway/secondary/exit)
"bGt" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (EAST)";
+ dir = 4;
icon_state = "whiteblue";
- dir = 4
+ tag = "icon-whiteblue (EAST)"
},
/area/medical/reception)
"bGu" = (
@@ -44332,7 +42545,6 @@
},
/obj/machinery/smartfridge/medbay,
/obj/machinery/door/window/eastright{
- dir = 4;
name = "Chemistry Desk";
req_access_txt = "33"
},
@@ -44397,19 +42609,14 @@
/area/assembly/robotics)
"bGC" = (
/obj/structure/table,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/toolbox/mechanical,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/lab)
"bGD" = (
/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 0
- },
+/obj/machinery/recharger,
/obj/item/storage/belt/utility,
/obj/item/clothing/gloves/color/latex,
/turf/simulated/floor/plasteel{
@@ -44467,7 +42674,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/northeastcorner,
@@ -44606,8 +42812,7 @@
"bGZ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -44664,7 +42869,6 @@
base_state = "right";
icon_state = "right";
layer = 3;
- name = "interior door";
req_access_txt = "50"
},
/obj/machinery/disposal/deliveryChute{
@@ -44736,20 +42940,18 @@
},
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "arrival";
- dir = 4
+ dir = 4;
+ icon_state = "arrival"
},
/area/quartermaster/office)
"bHo" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/east)
@@ -44771,11 +42973,9 @@
opacity = 0
},
/obj/effect/decal/warning_stripes/yellow/partial{
- icon_state = "3";
dir = 8
},
/obj/effect/decal/warning_stripes/arrow{
- icon_state = "4";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -44853,8 +43053,8 @@
/area/hallway/primary/starboard/west)
"bHz" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/engine/gravitygenerator)
"bHA" = (
@@ -44863,15 +43063,14 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/starboard/west)
"bHB" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/engine/gravitygenerator)
"bHC" = (
@@ -44899,8 +43098,8 @@
/area/hallway/primary/starboard/east)
"bHD" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/engine/gravitygenerator)
"bHE" = (
@@ -44990,8 +43189,7 @@
/area/medical/morgue)
"bHM" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
@@ -45010,9 +43208,9 @@
/area/assembly/chargebay)
"bHO" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/reception)
"bHP" = (
@@ -45034,8 +43232,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/starboard/east)
@@ -45085,8 +43282,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -45117,9 +43313,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/obj/effect/spawner/window/reinforced,
/obj/structure/disposalpipe/segment,
@@ -45141,10 +43335,8 @@
/area/assembly/robotics)
"bIb" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -45190,14 +43382,12 @@
/area/maintenance/port)
"bIf" = (
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"bIg" = (
/obj/machinery/door_control{
- dir = 2;
id = "mechbay";
name = "Mech Bay Door Control";
pixel_x = 6;
@@ -45221,9 +43411,9 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTHWEST)";
+ dir = 9;
icon_state = "whiteblue";
- dir = 9
+ tag = "icon-whiteblue (NORTHWEST)"
},
/area/medical/reception)
"bIi" = (
@@ -45251,9 +43441,9 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTHEAST)";
+ dir = 5;
icon_state = "whiteblue";
- dir = 5
+ tag = "icon-whiteblue (NORTHEAST)"
},
/area/medical/reception)
"bIk" = (
@@ -45277,7 +43467,6 @@
"bIm" = (
/obj/machinery/camera{
c_tag = "Research Robotics Lab";
- dir = 2;
network = list("Research","SS13")
},
/obj/structure/reagent_dispensers/oil,
@@ -45326,9 +43515,7 @@
"bIs" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/mirror{
pixel_x = 28
@@ -45355,13 +43542,12 @@
id = "rdlab";
name = "Research and Development Lab Shutters Control";
pixel_x = -24;
- pixel_y = 0;
req_access_txt = "47"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurple (NORTH)";
+ dir = 1;
icon_state = "whitepurple";
- dir = 1
+ tag = "icon-whitepurple (NORTH)"
},
/area/toxins/lab)
"bIv" = (
@@ -45373,9 +43559,9 @@
/obj/item/disk/design_disk,
/obj/item/reagent_containers/dropper,
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurple (NORTH)";
+ dir = 1;
icon_state = "whitepurple";
- dir = 1
+ tag = "icon-whitepurple (NORTH)"
},
/area/toxins/lab)
"bIw" = (
@@ -45406,8 +43592,6 @@
/area/shuttle/escape)
"bIy" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -45424,8 +43608,7 @@
"bIA" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f5";
- dir = 2
+ icon_state = "swall_f5"
},
/area/shuttle/escape)
"bIB" = (
@@ -45434,8 +43617,7 @@
/area/maintenance/disposal)
"bIC" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall11";
- dir = 2
+ icon_state = "swall11"
},
/area/shuttle/escape)
"bID" = (
@@ -45447,22 +43629,19 @@
/area/maintenance/disposal)
"bIE" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall7";
- dir = 2
+ icon_state = "swall7"
},
/area/shuttle/escape)
"bIF" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f9";
- dir = 2
+ icon_state = "swall_f9"
},
/area/shuttle/escape)
"bIG" = (
/obj/machinery/camera{
c_tag = "Cargo Delivery Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/firealarm{
dir = 8;
@@ -45510,9 +43689,7 @@
"bIM" = (
/obj/structure/table,
/obj/machinery/door/window{
- base_state = "left";
dir = 8;
- icon_state = "left";
name = "High-Risk Modules";
req_access_txt = "20"
},
@@ -45558,8 +43735,7 @@
/area/maintenance/port)
"bIQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -45594,7 +43770,6 @@
department = "Cargo Bay";
departmentType = 2;
name = "Cargo Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/item/stamp/granted{
@@ -45624,9 +43799,7 @@
},
/obj/structure/closet/secure_closet/cargotech,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
@@ -45635,9 +43808,6 @@
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel,
@@ -45647,7 +43817,6 @@
dir = 1
},
/obj/machinery/alarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -45663,16 +43832,14 @@
/area/hallway/primary/starboard/west)
"bJc" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitecorner"
},
/area/hallway/primary/starboard/west)
@@ -45681,7 +43848,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -45694,7 +43860,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -45705,8 +43870,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/hallway/primary/starboard/west)
"bJf" = (
@@ -45729,14 +43893,12 @@
"bJh" = (
/obj/machinery/camera{
c_tag = "Starboard Primary Hallway 3";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -45775,7 +43937,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -45809,8 +43970,7 @@
"bJp" = (
/obj/machinery/camera{
c_tag = "Starboard Primary Hallway 5";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/item/radio/intercom{
pixel_y = -28
@@ -45830,8 +43990,7 @@
/area/hallway/secondary/exit)
"bJs" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
@@ -45869,8 +44028,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -45892,7 +44050,6 @@
dir = 1;
icon_state = "pipe-j2s";
name = "Disposals Maint";
- sortdir = 0;
sortType = 1
},
/turf/simulated/floor/plating,
@@ -45912,8 +44069,7 @@
"bJx" = (
/obj/machinery/camera{
c_tag = "Locker Room Toilets";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
@@ -45942,9 +44098,7 @@
id = "toilet_unit1";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/plasteel{
@@ -45960,9 +44114,7 @@
/obj/item/storage/box/rxglasses,
/obj/machinery/door/firedoor,
/obj/machinery/door/window/eastright{
- base_state = "right";
dir = 1;
- icon_state = "right";
name = "Medical Reception";
req_access_txt = "5"
},
@@ -45974,9 +44126,9 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
+ dir = 1;
icon_state = "whiteblue";
- dir = 1
+ tag = "icon-whiteblue (NORTH)"
},
/area/medical/reception)
"bJB" = (
@@ -45997,8 +44149,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/paramedic)
"bJD" = (
@@ -46009,7 +44161,6 @@
"bJE" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -46021,8 +44172,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
d2 = 4;
@@ -46072,8 +44222,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
@@ -46099,9 +44248,9 @@
name = "Chemist"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/reception)
"bJN" = (
@@ -46130,13 +44279,12 @@
/area/hallway/primary/central/sw)
"bJP" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (SOUTHEAST)";
+ dir = 6;
icon_state = "whiteblue";
- dir = 6
+ tag = "icon-whiteblue (SOUTHEAST)"
},
/area/medical/reception)
"bJQ" = (
@@ -46162,8 +44310,7 @@
"bJS" = (
/obj/machinery/camera{
c_tag = "Medbay Corridor East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/alarm{
pixel_y = 25
@@ -46210,8 +44357,7 @@
/obj/item/storage/fancy/candle_box/eternal,
/obj/item/storage/fancy/candle_box/eternal,
/obj/item/storage/secure/safe{
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/light/small{
dir = 8
@@ -46335,8 +44481,7 @@
/area/maintenance/port)
"bKg" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced,
/obj/structure/table,
@@ -46384,8 +44529,7 @@
/area/toxins/lab)
"bKk" = (
/obj/machinery/ai_status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/table,
/obj/item/flash/synthetic,
@@ -46412,9 +44556,8 @@
/area/shuttle/escape)
"bKn" = (
/obj/machinery/shower{
- tag = "icon-shower (WEST)";
- icon_state = "shower";
- dir = 8
+ dir = 8;
+ tag = "icon-shower (WEST)"
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
@@ -46426,9 +44569,7 @@
"bKo" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/r_n_d/destructive_analyzer,
/obj/effect/decal/warning_stripes/northwest,
@@ -46443,7 +44584,6 @@
"bKq" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -46555,8 +44695,7 @@
"bKF" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/wall/r_wall,
/area/maintenance/port)
@@ -46574,8 +44713,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -46597,7 +44735,6 @@
"bKJ" = (
/obj/machinery/light,
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/wood,
@@ -46680,8 +44817,7 @@
},
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -46696,7 +44832,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -46708,7 +44843,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/hallway/primary/starboard/east)
@@ -46784,7 +44918,6 @@
/area/bridge/meeting_room)
"bLb" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -46821,15 +44954,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/reception)
"bLi" = (
/obj/machinery/gravity_generator/main/station,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/engine/gravitygenerator)
"bLj" = (
@@ -46882,40 +45015,36 @@
name = "Саня"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "asteroid";
tag = "icon-asteroid (NORTH)"
},
/turf/simulated/floor/plasteel{
- tag = "icon-siding1 (NORTH)";
+ dir = 1;
icon_state = "siding1";
- dir = 1
+ tag = "icon-siding1 (NORTH)"
},
/turf/simulated/floor/plasteel{
- tag = "icon-siding2 (NORTH)";
+ dir = 1;
icon_state = "siding2";
- dir = 1
+ tag = "icon-siding2 (NORTH)"
},
/area/hydroponics)
"bLo" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"bLp" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -46926,8 +45055,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -46946,8 +45074,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -46968,8 +45095,8 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/paramedic)
"bLu" = (
@@ -47007,8 +45134,8 @@
name = "Chemist"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/reception)
"bLw" = (
@@ -47022,34 +45149,32 @@
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/paramedic)
"bLx" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/reception)
"bLy" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/medical/reception)
"bLz" = (
@@ -47069,8 +45194,7 @@
"bLB" = (
/obj/machinery/camera{
c_tag = "Medbay Lobby East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -47081,12 +45205,10 @@
"bLC" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -47098,7 +45220,8 @@
},
/area/medical/chemistry)
"bLE" = (
-/turf/simulated/floor/mech_bay_recharge_floor,
+/obj/effect/turf_decal/mech,
+/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"bLF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -47169,14 +45292,12 @@
"bLN" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plating,
/area/assembly/chargebay)
@@ -47196,8 +45317,8 @@
"bLP" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
@@ -47206,8 +45327,7 @@
/obj/machinery/reagentgrinder,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -47233,12 +45353,11 @@
in_use = 1
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"bLT" = (
@@ -47283,19 +45402,18 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "asteroid";
tag = "icon-asteroid (NORTH)"
},
/turf/simulated/floor/plasteel{
- tag = "icon-siding1 (NORTH)";
+ dir = 1;
icon_state = "siding1";
- dir = 1
+ tag = "icon-siding1 (NORTH)"
},
/turf/simulated/floor/plasteel{
- tag = "icon-siding2 (NORTH)";
+ dir = 1;
icon_state = "siding2";
- dir = 1
+ tag = "icon-siding2 (NORTH)"
},
/area/hydroponics)
"bLV" = (
@@ -47306,18 +45424,14 @@
/obj/item/storage/firstaid/o2,
/obj/structure/table,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"bLW" = (
@@ -47429,8 +45543,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/port)
@@ -47454,7 +45567,6 @@
/area/toxins/lab)
"bMk" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -47473,8 +45585,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/west)
@@ -47497,17 +45608,15 @@
/area/hallway/primary/central/west)
"bMo" = (
/turf/simulated/shuttle/wall{
- tag = "icon-swall12";
icon_state = "swall12";
- dir = 2
+ tag = "icon-swall12"
},
/area/shuttle/supply)
"bMp" = (
/turf/space,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f6";
icon_state = "swall_f6";
- dir = 2
+ tag = "icon-swall_f6"
},
/area/shuttle/supply)
"bMq" = (
@@ -47523,9 +45632,8 @@
"bMr" = (
/turf/space,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f10";
icon_state = "swall_f10";
- dir = 2
+ tag = "icon-swall_f10"
},
/area/shuttle/supply)
"bMs" = (
@@ -47570,8 +45678,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -47588,22 +45695,19 @@
/area/maintenance/maintcentral)
"bMC" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
"bMD" = (
-/obj/machinery/computer/account_database{
- anchored = 1
- },
+/obj/machinery/computer/account_database,
/turf/simulated/floor/plasteel,
/area/bridge/meeting_room)
"bME" = (
@@ -47637,8 +45741,7 @@
tag = ""
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -47664,7 +45767,6 @@
"bMK" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -47681,13 +45783,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
@@ -47701,8 +45801,7 @@
/area/maintenance/maintcentral)
"bMN" = (
/obj/machinery/newscaster/security_unit{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/table/wood,
/obj/machinery/photocopier/faxmachine/longrange{
@@ -47713,7 +45812,6 @@
"bMO" = (
/obj/machinery/door/window{
base_state = "right";
- dir = 4;
icon_state = "right";
name = "Captain's Desk Door";
req_access_txt = "20"
@@ -47722,7 +45820,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/requests_console{
@@ -47730,7 +45827,6 @@
department = "Captain's Desk";
departmentType = 5;
name = "Captain Requests Console";
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -47743,14 +45839,12 @@
/area/crew_quarters/captain)
"bMP" = (
/obj/machinery/keycard_auth{
- pixel_x = 0;
pixel_y = -24
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -47766,7 +45860,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -47812,8 +45905,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
@@ -47863,7 +45955,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -47886,8 +45977,8 @@
/obj/item/storage/firstaid/fire,
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"bMY" = (
@@ -47901,13 +45992,11 @@
pixel_y = 25
},
/obj/machinery/camera{
- c_tag = "Medbay Medicine Storage";
- dir = 2;
- network = list("SS13")
+ c_tag = "Medbay Medicine Storage"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"bMZ" = (
@@ -47997,7 +46086,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -48031,8 +46119,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -48107,14 +46194,11 @@
"bNm" = (
/obj/machinery/camera{
c_tag = "Research Access";
- dir = 2;
network = list("Research","SS13")
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -48132,8 +46216,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -48186,8 +46269,7 @@
department = "Science";
departmentType = 2;
name = "Science Requests Console";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -48220,8 +46302,7 @@
/obj/structure/disposalpipe/sortjunction{
dir = 4;
icon_state = "pipe-j2s";
- name = "Cargo Disposals";
- sortType = 0
+ name = "Cargo Disposals"
},
/turf/simulated/wall,
/area/quartermaster/office)
@@ -48253,7 +46334,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -48267,7 +46347,6 @@
/obj/machinery/light,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -48284,8 +46363,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/reception)
"bNz" = (
@@ -48298,8 +46377,6 @@
"bNA" = (
/obj/effect/decal/warning_stripes/northeast,
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -28;
pixel_y = 22
},
@@ -48323,10 +46400,8 @@
/area/maintenance/disposal)
"bNC" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/stack/packageWrap,
/obj/item/pen,
@@ -48358,8 +46433,7 @@
"bNF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/disposal)
@@ -48415,15 +46489,14 @@
/obj/structure/closet/secure_closet/medical1,
/obj/machinery/ai_status_display{
pixel_x = 32;
- pixel_y = 0;
step_size = 0
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"bNM" = (
@@ -48433,8 +46506,6 @@
icon_state = "2-4"
},
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -48450,8 +46521,6 @@
/obj/machinery/cell_charger,
/obj/item/stock_parts/cell/high/plus,
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -48459,20 +46528,13 @@
},
/area/assembly/robotics)
"bNO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/office)
+/turf/space,
+/turf/simulated/shuttle/plating,
+/area/shuttle/vox)
"bNP" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -48488,7 +46550,6 @@
/area/maintenance/port)
"bNQ" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/effect/decal/warning_stripes/west,
@@ -48511,7 +46572,6 @@
/area/quartermaster/storage)
"bNU" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/camera{
@@ -48534,8 +46594,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -48549,14 +46608,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = -32;
- req_access_txt = "0"
+ pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -48570,12 +46626,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
@@ -48584,7 +46638,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -48599,7 +46652,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -48622,9 +46674,7 @@
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
@@ -48642,16 +46692,14 @@
/area/maintenance/disposal)
"bOe" = (
/turf/simulated/shuttle/wall{
- tag = "icon-swall3";
icon_state = "swall3";
- dir = 2
+ tag = "icon-swall3"
},
/area/shuttle/supply)
"bOf" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
/turf/simulated/shuttle/floor,
/area/shuttle/supply)
@@ -48665,16 +46713,14 @@
layer = 4;
name = "Loading Doors";
pixel_x = -24;
- pixel_y = -8;
- req_access_txt = "0"
+ pixel_y = -8
},
/obj/machinery/door_control{
id = "QMLoaddoor2";
layer = 4;
name = "Loading Doors";
pixel_x = -24;
- pixel_y = 8;
- req_access_txt = "0"
+ pixel_y = 8
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -48698,7 +46744,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -48714,7 +46759,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -48795,7 +46839,6 @@
/area/quartermaster/office)
"bOq" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel,
@@ -48810,8 +46853,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/camera{
c_tag = "Accounts Uplink Terminal";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -48830,8 +46872,6 @@
"bOt" = (
/obj/machinery/computer/supplycomp/public,
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel,
@@ -48839,8 +46879,7 @@
"bOu" = (
/obj/machinery/camera{
c_tag = "Gravity Generator Room North";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -48951,24 +46990,21 @@
"bOB" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/reception)
"bOC" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/obj/machinery/recharger/wallcharger{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel,
@@ -48978,9 +47014,9 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/medical/reception)
"bOE" = (
@@ -48989,12 +47025,11 @@
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
name = "HIGH VOLTAGE";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/engine/gravitygenerator)
@@ -49007,7 +47042,6 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -49019,7 +47053,6 @@
icon_state = "2-4"
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -49035,12 +47068,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/engine/gravitygenerator)
@@ -49072,8 +47104,7 @@
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
name = "RADIOACTIVE AREA";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/cable{
d2 = 8;
@@ -49090,12 +47121,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -49112,7 +47142,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -49142,8 +47171,8 @@
pixel_y = -4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"bOS" = (
@@ -49160,12 +47189,11 @@
/obj/item/storage/firstaid/toxin,
/obj/structure/table,
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"bOU" = (
@@ -49173,8 +47201,8 @@
/area/medical/chemistry)
"bOV" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"bOW" = (
@@ -49197,7 +47225,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/hologram/holopad,
@@ -49208,12 +47235,11 @@
"bOZ" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/camera{
@@ -49284,20 +47310,19 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/table,
/obj/item/clothing/suit/straight_jacket,
/obj/item/clothing/mask/muzzle,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/reception)
"bPh" = (
@@ -49325,9 +47350,9 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
+ dir = 1;
icon_state = "whiteblue";
- dir = 1
+ tag = "icon-whiteblue (NORTH)"
},
/area/medical/reception)
"bPi" = (
@@ -49381,7 +47406,6 @@
"bPl" = (
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -49420,8 +47444,7 @@
/area/hallway/secondary/exit)
"bPr" = (
/obj/machinery/door/airlock{
- name = "Port Emergency Storage";
- req_access_txt = "0"
+ name = "Port Emergency Storage"
},
/obj/structure/cable{
d1 = 1;
@@ -49445,7 +47468,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -49453,15 +47475,9 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"bPv" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion";
- tag = "icon-propulsion (EAST)"
- },
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f6";
- dir = 2
+ icon_state = "swall12"
},
/area/shuttle/transport)
"bPw" = (
@@ -49513,8 +47529,7 @@
pixel_y = -5
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/crowbar,
/turf/simulated/floor/plasteel{
@@ -49539,7 +47554,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -49566,9 +47580,9 @@
name = "Scientist"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurple (NORTH)";
+ dir = 1;
icon_state = "whitepurple";
- dir = 1
+ tag = "icon-whitepurple (NORTH)"
},
/area/toxins/lab)
"bPE" = (
@@ -49579,7 +47593,6 @@
},
/obj/item/paper_bin/nanotrasen,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -49613,11 +47626,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/disposal)
-"bPI" = (
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
- },
-/area/shuttle/administration)
"bPJ" = (
/obj/structure/cable{
d2 = 8;
@@ -49642,8 +47650,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/structure/cable{
d1 = 2;
@@ -49652,19 +47659,20 @@
tag = ""
},
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j2";
+ dir = 2;
icon_state = "pipe-j2";
- dir = 2
+ tag = "icon-pipe-j2"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/chemistry)
"bPL" = (
-/turf/space,
/turf/simulated/shuttle/wall{
- dir = 8;
- icon_state = "diagonalWall3"
+ icon_state = "swall_s6"
+ },
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s6"
},
/area/shuttle/administration)
"bPM" = (
@@ -49674,7 +47682,6 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -49687,13 +47694,12 @@
},
/obj/docking_port/mobile{
dir = 2;
- dwidth = 8;
- height = 15;
+ dwidth = 9;
+ height = 18;
id = "admin";
name = "administration shuttle";
roundstart_move = "admin_away";
- timid = 1;
- width = 18
+ width = 19
},
/obj/docking_port/stationary{
dir = 2;
@@ -49701,9 +47707,9 @@
height = 18;
id = "admin_home";
name = "port bay 1";
- timid = 1;
width = 19
},
+/obj/structure/fans/tiny,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -49720,11 +47726,9 @@
/area/quartermaster/storage)
"bPQ" = (
/obj/effect/decal/warning_stripes/arrow{
- icon_state = "4";
dir = 4
},
/obj/effect/decal/warning_stripes/yellow/partial{
- icon_state = "3";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -49732,8 +47736,7 @@
"bPR" = (
/turf/space,
/turf/simulated/shuttle/wall{
- dir = 1;
- icon_state = "diagonalWall3"
+ icon_state = "swall12"
},
/area/shuttle/administration)
"bPS" = (
@@ -49748,22 +47751,17 @@
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/simulated/floor/plating,
/area/quartermaster/storage)
"bPU" = (
/obj/structure/shuttle/engine/propulsion{
dir = 8;
- icon_state = "propulsion";
tag = "icon-propulsion (EAST)"
},
/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f5";
- dir = 2
- },
+/turf/space,
/area/shuttle/transport)
"bPV" = (
/obj/effect/landmark/start{
@@ -49806,8 +47804,7 @@
/area/quartermaster/office)
"bQa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/cable{
d1 = 1;
@@ -49863,8 +47860,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -49874,8 +47870,8 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/hallway/primary/central/sw)
"bQi" = (
@@ -49897,23 +47893,19 @@
},
/obj/machinery/door/window/brigdoor{
base_state = "rightsecure";
- dir = 4;
icon_state = "rightsecure";
name = "Head of Personnel's Desk";
req_access_txt = "57"
},
/obj/machinery/door/window/northleft{
dir = 8;
- icon_state = "left";
- name = "Head of Personnel's Desk";
- req_access_txt = "0"
+ name = "Head of Personnel's Desk"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/heads)
"bQj" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -49933,8 +47925,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
@@ -49946,8 +47937,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/crew_quarters/heads)
"bQl" = (
@@ -49965,8 +47956,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 4;
@@ -50006,11 +47996,9 @@
/area/crew_quarters/heads)
"bQq" = (
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -50046,12 +48034,10 @@
/obj/machinery/hologram/holopad,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -50065,8 +48051,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
@@ -50076,8 +48061,8 @@
dir = 1
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/light_switch{
pixel_y = 24
@@ -50086,15 +48071,13 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain/bedroom)
"bQw" = (
/obj/structure/table/wood,
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/item/storage/box/matches,
@@ -50111,13 +48094,11 @@
base_state = "left";
dir = 1;
icon_state = "left";
- name = "Shower";
- req_access_txt = "0"
+ name = "Shower"
},
/obj/machinery/shower{
- tag = "icon-shower (EAST)";
- icon_state = "shower";
- dir = 4
+ dir = 4;
+ tag = "icon-shower (EAST)"
},
/obj/item/soap/deluxe,
/obj/item/bikehorn/rubberducky,
@@ -50130,8 +48111,7 @@
/area/crew_quarters/captain/bedroom)
"bQy" = (
/obj/machinery/door/airlock{
- name = "Private Restroom";
- req_access_txt = "0"
+ name = "Private Restroom"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -50165,23 +48145,21 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"bQC" = (
/obj/structure/closet/secure_closet/medical3,
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"bQD" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/mirror{
pixel_x = 28
@@ -50201,13 +48179,12 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"bQF" = (
@@ -50253,7 +48230,6 @@
tag = ""
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -50291,8 +48267,7 @@
},
/obj/machinery/door/airlock/medical{
name = "Morgue";
- req_access_txt = "6;29";
- req_one_access_txt = "0"
+ req_access_txt = "6;29"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -50329,8 +48304,7 @@
"bQO" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -50351,9 +48325,9 @@
req_access_txt = "66"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
+ dir = 1;
icon_state = "whiteblue";
- dir = 1
+ tag = "icon-whiteblue (NORTH)"
},
/area/medical/paramedic)
"bQQ" = (
@@ -50369,8 +48343,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/reception)
"bQS" = (
@@ -50382,17 +48356,16 @@
},
/obj/machinery/camera{
c_tag = "Medbay Lobby Reception";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/item/storage/box/pillbottles{
pixel_x = -5;
pixel_y = -5
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/reception)
"bQT" = (
@@ -50421,13 +48394,11 @@
"bQW" = (
/obj/effect/decal/warning_stripes/south,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/camera{
c_tag = "Medbay Chemistry South";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/chem_master,
/turf/simulated/floor/plasteel,
@@ -50450,14 +48421,12 @@
/area/medical/chemistry)
"bQZ" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteyellow"
},
/area/medical/chemistry)
"bRa" = (
/obj/machinery/ai_status_display{
pixel_x = 32;
- pixel_y = 0;
step_size = 0
},
/turf/simulated/floor/plasteel{
@@ -50474,8 +48443,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"bRc" = (
@@ -50490,37 +48459,31 @@
pixel_y = -6
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/cable,
-/obj/item/gun/syringe{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/gun/syringe,
/obj/item/gun/syringe{
pixel_x = 3;
pixel_y = -3
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"bRd" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
name = "Morgue";
- req_access_txt = "6;5";
- req_one_access_txt = "0"
+ req_access_txt = "6;5"
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -50546,9 +48509,9 @@
/area/hallway/primary/central/se)
"bRg" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 4;
@@ -50569,7 +48532,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -50589,8 +48551,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -50603,7 +48564,6 @@
/obj/effect/decal/warning_stripes/east,
/obj/structure/window/reinforced/tinted{
dir = 4;
- icon_state = "twindow";
tag = ""
},
/obj/structure/table,
@@ -50681,10 +48641,7 @@
"bRq" = (
/obj/structure/table,
/obj/item/storage/belt/utility,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/toolbox/mechanical,
/obj/item/stack/tape_roll,
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -50713,8 +48670,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
@@ -50739,7 +48695,7 @@
/area/shuttle/administration)
"bRv" = (
/obj/structure/table/reinforced,
-/obj/machinery/chem_dispenser/beer,
+/obj/machinery/chem_dispenser/beer/upgraded,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -50753,7 +48709,7 @@
/area/shuttle/administration)
"bRx" = (
/obj/structure/table/reinforced,
-/obj/machinery/chem_dispenser/soda,
+/obj/machinery/chem_dispenser/soda/upgraded,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -50767,8 +48723,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -50802,18 +48757,14 @@
},
/area/shuttle/administration)
"bRC" = (
-/obj/item/storage/toolbox/mechanical,
-/obj/item/multitool,
-/obj/structure/table,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/shuttle/wall{
+ icon_state = "diagonalWall3"
},
-/area/shuttle/administration)
+/area/shuttle/vox)
"bRD" = (
+/obj/item/storage/toolbox/mechanical,
+/obj/item/multitool,
/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 4
- },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -50825,10 +48776,7 @@
},
/obj/item/stack/cable_coil,
/obj/item/stack/cable_coil,
-/obj/item/stock_parts/scanning_module{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/stock_parts/scanning_module,
/obj/item/stock_parts/scanning_module{
pixel_x = 2;
pixel_y = 3
@@ -50857,8 +48805,7 @@
/area/assembly/robotics)
"bRG" = (
/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "wall3"
+ icon_state = "swall3"
},
/area/shuttle/administration)
"bRH" = (
@@ -50927,13 +48874,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -50951,9 +48896,7 @@
"bRQ" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/effect/decal/warning_stripes/southeast,
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -50986,8 +48929,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -51034,8 +48976,8 @@
"bRZ" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/hallway/primary/central/sw)
"bSa" = (
@@ -51051,9 +48993,9 @@
"bSb" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/door/poddoor/shutters{
density = 0;
@@ -51074,8 +49016,8 @@
"bSd" = (
/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 10
+ dir = 10;
+ icon_state = "blue"
},
/area/crew_quarters/heads)
"bSe" = (
@@ -51089,14 +49031,13 @@
/obj/item/paper,
/obj/item/pen,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
@@ -51117,7 +49058,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -51151,7 +49091,6 @@
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel,
@@ -51161,7 +49100,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -51181,8 +49119,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -51195,8 +49132,7 @@
/obj/machinery/vending/medical,
/obj/machinery/camera{
c_tag = "Medbay Corridor West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -51221,13 +49157,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
@@ -51248,9 +49182,9 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (SOUTHEAST)";
+ dir = 6;
icon_state = "whiteblue";
- dir = 6
+ tag = "icon-whiteblue (SOUTHEAST)"
},
/area/medical/reception)
"bSr" = (
@@ -51265,8 +49199,8 @@
"bSs" = (
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/reception)
"bSt" = (
@@ -51305,7 +49239,6 @@
/area/medical/medbay2)
"bSv" = (
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = 32;
step_size = 0
},
@@ -51397,8 +49330,7 @@
pixel_y = 25
},
/obj/machinery/camera{
- c_tag = "Medbay Cloning";
- network = list("SS13")
+ c_tag = "Medbay Cloning"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -51413,7 +49345,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -51436,7 +49367,6 @@
/area/medical/genetics_cloning)
"bSF" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -51490,8 +49420,8 @@
name = "Surgery Cleaner"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
+ dir = 4;
+ icon_state = "whitehall"
},
/area/assembly/robotics)
"bSK" = (
@@ -51595,16 +49525,13 @@
/area/medical/medbay2)
"bSS" = (
/obj/machinery/camera{
- c_tag = "Medbay Corridor Center";
- network = list("SS13")
+ c_tag = "Medbay Corridor Center"
},
/obj/machinery/requests_console{
department = "Medbay";
departmentType = 1;
name = "Medbay Requests Console";
- pixel_x = 0;
- pixel_y = 30;
- pixel_z = 0
+ pixel_y = 30
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -51620,11 +49547,9 @@
"bSU" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/hallway/primary/central/sw)
@@ -51634,12 +49559,10 @@
},
/obj/machinery/camera{
c_tag = "Medbay Secondary Hallway North";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -51648,7 +49571,6 @@
/obj/structure/table,
/obj/item/storage/toolbox/surgery,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitecorner"
},
/area/assembly/robotics)
@@ -51676,7 +49598,6 @@
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitecorner"
},
/area/medical/research{
@@ -51689,7 +49610,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "robotics2";
name = "Robotics Lab Shutters";
@@ -51710,20 +49630,18 @@
"bTc" = (
/obj/structure/table,
/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/heads)
"bTd" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/bed/dogbed/ian,
@@ -51736,8 +49654,7 @@
/area/toxins/lab)
"bTf" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -51784,7 +49701,6 @@
in_use = 1
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -51798,14 +49714,12 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -51826,17 +49740,13 @@
/turf/simulated/floor/carpet,
/area/crew_quarters/captain/bedroom)
"bTk" = (
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/sw)
"bTl" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
- dir = 4
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
@@ -51870,25 +49780,20 @@
/area/shuttle/administration)
"bTo" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
- dir = 8
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
"bTp" = (
-/obj/item/stack/sheet/metal,
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_l";
+ tag = "icon-propulsion_l"
},
-/area/shuttle/administration)
+/turf/simulated/shuttle/plating,
+/area/shuttle/vox)
"bTq" = (
/turf/simulated/floor/plating,
/area/quartermaster/storage)
@@ -51939,8 +49844,7 @@
})
"bTx" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -51956,15 +49860,13 @@
/obj/structure/table,
/obj/machinery/requests_console{
department = "Cargo Bay";
- name = "Cargo Requests Console";
departmentType = 2;
- pixel_x = -30;
- pixel_y = 0
+ name = "Cargo Requests Console";
+ pixel_x = -30
},
/obj/machinery/camera{
c_tag = "Cargo Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/item/stack/sheet/glass{
amount = 50;
@@ -51982,7 +49884,6 @@
/obj/item/bedsheet/captain,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/carpet,
@@ -51996,8 +49897,8 @@
pixel_y = -32
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable,
/obj/machinery/door/poddoor/shutters{
@@ -52015,7 +49916,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/carpet,
@@ -52026,7 +49926,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -52108,7 +50007,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/pdapainter,
@@ -52141,14 +50039,13 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/reception)
"bTN" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -52167,8 +50064,7 @@
},
/obj/machinery/camera{
c_tag = "Gravity Generator Room South";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/light{
dir = 4
@@ -52180,22 +50076,18 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/reception)
"bTR" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
/area/teleporter)
"bTS" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/closet/crate,
@@ -52211,24 +50103,21 @@
/area/medical/chemistry)
"bTU" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"bTV" = (
/obj/machinery/camera{
- c_tag = "Teleporter Room";
- network = list("SS13")
+ c_tag = "Teleporter Room"
},
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/turf/simulated/floor/plasteel,
@@ -52258,7 +50147,6 @@
},
/obj/structure/disposalpipe/trunk,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -52281,7 +50169,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/item/radio/intercom{
@@ -52313,7 +50200,6 @@
/area/assembly/robotics)
"bUf" = (
/obj/machinery/door/window/southright{
- dir = 2;
name = "Primate Pen";
req_access_txt = "9"
},
@@ -52359,8 +50245,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -52389,8 +50274,7 @@
tag = "icon-pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -52408,8 +50292,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
@@ -52461,7 +50344,6 @@
"bUu" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light{
@@ -52470,7 +50352,6 @@
},
/obj/structure/table/tray,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue";
tag = "icon-whitehall (WEST)"
},
@@ -52478,13 +50359,11 @@
"bUv" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
@@ -52505,7 +50384,6 @@
"bUy" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/power/terminal,
@@ -52550,8 +50428,7 @@
},
/obj/machinery/camera{
c_tag = "Captain's Quarters";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 1;
@@ -52565,11 +50442,9 @@
"bUC" = (
/obj/machinery/light,
/obj/effect/decal/warning_stripes/arrow{
- icon_state = "4";
dir = 8
},
/obj/effect/decal/warning_stripes/yellow/partial{
- icon_state = "3";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -52584,9 +50459,9 @@
/area/crew_quarters/captain/bedroom)
"bUE" = (
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j2 (EAST)";
+ dir = 4;
icon_state = "pipe-j2";
- dir = 4
+ tag = "icon-pipe-j2 (EAST)"
},
/turf/simulated/wall,
/area/quartermaster/office)
@@ -52621,22 +50496,18 @@
/area/assembly/robotics)
"bUI" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/genetics)
"bUJ" = (
/obj/structure/closet/wardrobe/genetics_white,
/obj/machinery/camera{
- c_tag = "Medbay Genetics";
- network = list("SS13")
+ c_tag = "Medbay Genetics"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/genetics)
@@ -52656,11 +50527,9 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow/partial{
- icon_state = "3";
dir = 8
},
/obj/effect/decal/warning_stripes/arrow{
- icon_state = "4";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -52684,14 +50553,13 @@
},
/obj/item/reagent_containers/iv_bag/salglu,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/sleeper)
"bUN" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -52707,7 +50575,6 @@
},
/obj/machinery/camera{
c_tag = "Research Hallway Entrance";
- dir = 2;
network = list("Research","SS13")
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -52772,7 +50639,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -52786,8 +50652,7 @@
"bUV" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -52816,13 +50681,11 @@
"bUY" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/sw)
@@ -52864,7 +50727,6 @@
"bVd" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/cable{
@@ -52877,8 +50739,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/heads)
@@ -52926,7 +50787,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -52948,8 +50808,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -52968,47 +50827,41 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"bVm" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
- dir = 8
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
/turf/simulated/shuttle/floor,
/area/shuttle/supply)
"bVn" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
- dir = 4
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
},
/obj/machinery/door_control{
id = "QMLoaddoor2";
layer = 3;
name = "Loading Doors";
pixel_x = 24;
- pixel_y = 8;
- req_access_txt = "0"
+ pixel_y = 8
},
/obj/machinery/door_control{
id = "QMLoaddoor";
layer = 3;
name = "Loading Doors";
pixel_x = 24;
- pixel_y = -8;
- req_access_txt = "0"
+ pixel_y = -8
},
/turf/simulated/shuttle/floor,
/area/shuttle/supply)
"bVo" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/rack,
@@ -53032,8 +50885,7 @@
/area/quartermaster/storage)
"bVq" = (
/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/cable{
d1 = 1;
@@ -53069,8 +50921,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -53090,7 +50941,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/cable{
@@ -53109,8 +50959,6 @@
tag = ""
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel,
@@ -53150,7 +50998,6 @@
"bVB" = (
/obj/machinery/message_server,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/bluegrid,
@@ -53170,14 +51017,11 @@
"bVD" = (
/obj/structure/window/reinforced/tinted{
dir = 4;
- icon_state = "twindow";
tag = ""
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 4;
- pixel_y = 0
+ pixel_x = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -53186,8 +51030,7 @@
/area/assembly/robotics)
"bVE" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
@@ -53205,8 +51048,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/medical/research{
name = "Research Division"
@@ -53246,7 +51088,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -53278,7 +51119,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/photocopier,
@@ -53322,7 +51162,6 @@
/obj/item/radio/beacon,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
@@ -53360,8 +51199,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
@@ -53374,8 +51212,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/hallway/primary/central/se)
"bVU" = (
@@ -53386,7 +51224,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -53394,8 +51231,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -53419,7 +51255,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -53432,14 +51267,12 @@
"bVW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -53459,8 +51292,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -53486,8 +51318,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -53497,8 +51328,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -53518,11 +51348,9 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR: EMERGENCY ENTRANCE'.";
name = "KEEP CLEAR: EMERGENCY ENTRANCE";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -53538,8 +51366,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -53552,8 +51379,7 @@
/area/medical/genetics_cloning)
"bWe" = (
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/closet/secure_closet/roboticist,
/turf/simulated/floor/plasteel{
@@ -53570,7 +51396,6 @@
"bWh" = (
/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -53586,7 +51411,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -53611,13 +51435,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -53633,7 +51455,6 @@
name = "Medical Doctor"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -53643,7 +51464,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -53660,12 +51480,10 @@
})
"bWo" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -53675,7 +51493,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/noticeboard{
@@ -53698,7 +51515,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -53725,8 +51541,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -53782,9 +51597,9 @@
"bWx" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/sleeper)
"bWy" = (
@@ -53817,7 +51632,6 @@
/obj/item/crowbar,
/obj/item/reagent_containers/spray/cleaner,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -53827,7 +51641,6 @@
id = "CloningDoor";
name = "Cloning Doors Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -36
},
/turf/simulated/floor/plasteel{
@@ -53857,7 +51670,6 @@
dir = 1;
icon_state = "left";
name = "Cryo Tank Storage";
- req_access_txt = "0";
req_one_access_txt = "5;32"
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -53876,17 +51688,14 @@
/area/medical/genetics_cloning)
"bWG" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (WEST)";
- icon_state = "heater";
- dir = 8
+ dir = 8;
+ tag = "icon-heater (WEST)"
},
/obj/structure/window/plasmareinforced{
color = "#FF0000";
dir = 4
},
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
- },
+/turf/simulated/shuttle/plating,
/area/shuttle/administration)
"bWH" = (
/turf/simulated/floor/plasteel{
@@ -53894,43 +51703,90 @@
},
/area/hallway/primary/central/ne)
"bWI" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "diagonalWall3"
},
-/area/shuttle/administration)
+/area/shuttle/vox)
"bWJ" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/door/airlock/shuttle{
+ aiControlDisabled = 1;
+ hackProof = 1;
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Hatch"
},
-/area/shuttle/administration)
+/obj/docking_port/mobile/emergency{
+ dwidth = 11;
+ height = 18;
+ width = 29
+ },
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 11;
+ height = 18;
+ id = "emergency_home";
+ name = "emergency evac bay";
+ width = 29
+ },
+/turf/simulated/floor/plasteel,
+/area/shuttle/escape)
"bWK" = (
-/obj/machinery/recharge_station/upgraded,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/area/shuttle/administration)
+/area/shuttle/trade/sol)
"bWL" = (
-/obj/machinery/mecha_part_fabricator/upgraded,
+/obj/item/stack/sheet/metal,
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/metal,
+/obj/item/stack/sheet/metal,
+/obj/item/stack/sheet/glass{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/glass{
+ pixel_x = 4;
+ pixel_y = 4
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
"bWM" = (
-/obj/machinery/autolathe/upgraded{
- hacked = 1
+/obj/structure/closet{
+ icon_closed = "white";
+ icon_state = "white";
+ name = "Medical gear"
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/effect/spawner/lootdrop/trade_sol/med{
+ loot = list(/obj/item/storage/fancy/cigarettes/cigpack_med = 50, /obj/item/stack/nanopaste = 50, /obj/item/storage/pill_bottle/random_meds/labelled = 50, /obj/item/reagent_containers/glass/bottle/reagent/omnizine = 50, /obj/item/reagent_containers/glass/bottle/reagent/strange_reagent = 50, /obj/item/scalpel/laser/manager = 50, /obj/item/organ/internal/heart/gland/ventcrawling = 50, /obj/item/organ/internal/heart/gland/heals = 50, /obj/item/dnainjector/regenerate = 50, /obj/item/dnainjector/nobreath = 50, /obj/item/dnainjector/telemut = 50, /obj/item/reagent_containers/glass/bottle/regeneration = 50, /obj/item/reagent_containers/glass/bottle/sensory_restoration = 50, /obj/item/autopsy_scanner = 50, /obj/item/organ/internal/cyberimp/eyes/hud/medical = 50, /obj/item/gun/medbeam = 50, /obj/item/reagent_containers/applicator/dual/syndi = 50, /obj/item/reagent_containers/glass/bottle/retrovirus = 50, /obj/item/reagent_containers/glass/bottle/reagent/strange_reagent = 50, /obj/item/reagent_containers/glass/bottle/tuberculosiscure = 50, /obj/item/reagent_containers/glass/bottle/gbs = 50, /obj/item/bodyanalyzer/advanced = 50);
+ lootcount = 8;
+ name = "5. Medical gear"
},
-/area/shuttle/administration)
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
"bWN" = (
-/obj/structure/dispenser,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
},
-/area/shuttle/administration)
+/obj/structure/closet{
+ icon_closed = "green";
+ icon_state = "green";
+ name = "Service gear"
+ },
+/obj/effect/spawner/lootdrop/trade_sol/serv{
+ loot = list(/obj/item/storage/box/beakers/bluespace = 50, /obj/item/storage/box/monkeycubes = 50, /obj/item/storage/box/monkeycubes = 50, /obj/item/storage/box/stockparts/deluxe = 50, /obj/item/storage/box/rndboards = 50, /obj/item/reagent_containers/spray/cleaner = 50, /obj/item/soap = 50, /obj/item/clothing/under/syndicate/combat = 50, /obj/item/soap/syndie = 50, /obj/item/lighter/zippo/gonzofist = 50, /obj/item/clothing/under/psyjump = 50, /obj/item/immortality_talisman = 50, /obj/item/t_scanner/adv_mining_scanner = 50, /obj/item/storage/box/bartender_rare_ingredients_kit = 50, /obj/item/storage/box/chef_rare_ingredients_kit = 50, /obj/item/grenade/clusterbuster/cleaner = 50, /obj/item/mining_voucher = 50, /obj/item/gun/energy/kinetic_accelerator/experimental = 50, /obj/item/borg/upgrade/modkit/aoe/turfs/andmobs = 50, /obj/item/seeds/random/labelled = 50, /obj/item/seeds/random/labelled = 50, /obj/item/seeds/random/labelled = 50, /obj/item/grenade/clusterbuster/honk = 50, /obj/item/bikehorn/golden = 50);
+ lootcount = 8;
+ name = "7. Service gear"
+ },
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
"bWO" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
@@ -53979,13 +51835,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "ramptop";
tag = "icon-stage_stairs"
},
@@ -54001,11 +51855,9 @@
opacity = 0
},
/obj/effect/decal/warning_stripes/yellow/partial{
- icon_state = "3";
dir = 4
},
/obj/effect/decal/warning_stripes/arrow{
- icon_state = "4";
dir = 4
},
/obj/machinery/ticket_machine{
@@ -54037,7 +51889,6 @@
/obj/structure/table,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/item/storage/belt/utility,
@@ -54089,12 +51940,9 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/heads)
"bXb" = (
-/obj/machinery/computer/security/mining{
- network = list("Mining Outpost")
- },
+/obj/machinery/computer/security/mining,
/obj/machinery/keycard_auth{
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -54127,8 +51975,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -54151,13 +51998,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
@@ -54169,7 +52014,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -54178,8 +52022,7 @@
/area/maintenance/asmaint2)
"bXj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -54192,8 +52035,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
@@ -54226,10 +52068,8 @@
/area/crew_quarters/heads)
"bXq" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/cable{
d1 = 1;
@@ -54240,22 +52080,20 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/heads)
"bXr" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/bluegrid,
@@ -54266,15 +52104,13 @@
},
/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurple (WEST)";
+ dir = 8;
icon_state = "whitepurple";
- dir = 8
+ tag = "icon-whitepurple (WEST)"
},
/area/medical/genetics)
"bXt" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -54286,7 +52122,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Gravity Generator";
- req_access_txt = "0";
req_one_access_txt = "10;30"
},
/obj/structure/cable{
@@ -54309,9 +52144,9 @@
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurple (EAST)";
+ dir = 4;
icon_state = "whitepurple";
- dir = 4
+ tag = "icon-whitepurple (EAST)"
},
/area/medical/genetics)
"bXw" = (
@@ -54319,7 +52154,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/chair/stool,
@@ -54330,14 +52164,13 @@
/area/teleporter)
"bXx" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel,
/area/teleporter)
@@ -54346,7 +52179,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/bluespace_beacon,
@@ -54361,7 +52193,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -54380,8 +52211,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR: EMERGENCY ENTRANCE'.";
name = "KEEP CLEAR: EMERGENCY ENTRANCE";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
@@ -54390,7 +52220,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -54408,23 +52237,22 @@
"bXE" = (
/obj/item/roller,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
+ dir = 1;
icon_state = "whiteblue";
- dir = 1
+ tag = "icon-whiteblue (NORTH)"
},
/area/medical/sleeper)
"bXF" = (
/obj/machinery/light_switch{
- pixel_x = -21;
- pixel_y = 0
+ pixel_x = -21
},
/obj/machinery/sleeper{
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTHWEST)";
+ dir = 9;
icon_state = "whiteblue";
- dir = 9
+ tag = "icon-whiteblue (NORTHWEST)"
},
/area/medical/sleeper)
"bXG" = (
@@ -54495,9 +52323,9 @@
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
+ dir = 1;
icon_state = "whiteblue";
- dir = 1
+ tag = "icon-whiteblue (NORTH)"
},
/area/medical/sleeper)
"bXK" = (
@@ -54543,8 +52371,8 @@
pixel_x = 24
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -54554,9 +52382,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -54575,7 +52401,6 @@
pixel_y = 0
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -54600,8 +52425,8 @@
tag = ""
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/medical/cmo)
@@ -54627,17 +52452,15 @@
/obj/item/roller,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurple (WEST)";
+ dir = 8;
icon_state = "whitepurple";
- dir = 8
+ tag = "icon-whitepurple (WEST)"
},
/area/medical/genetics)
"bXW" = (
@@ -54655,7 +52478,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -54673,7 +52495,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -54689,7 +52510,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -54705,13 +52525,11 @@
"bYa" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
@@ -54736,8 +52554,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/hallway/primary/central/se)
"bYc" = (
@@ -54752,7 +52570,6 @@
/area/hallway/primary/central/se)
"bYd" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -54773,7 +52590,6 @@
/area/medical/medbay2)
"bYf" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -54788,7 +52604,6 @@
"bYg" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -54804,7 +52619,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -54822,9 +52636,9 @@
tag = ""
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plating,
/area/crew_quarters/hor)
@@ -54839,9 +52653,9 @@
pixel_x = 27
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurple (EAST)";
+ dir = 4;
icon_state = "whitepurple";
- dir = 4
+ tag = "icon-whitepurple (EAST)"
},
/area/medical/genetics)
"bYl" = (
@@ -54849,8 +52663,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/research/glass{
name = "Robotics Lab";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -54894,8 +52707,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/escapepodbay)
@@ -54920,9 +52732,9 @@
/obj/structure/bed,
/obj/item/bedsheet/medical,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
+ dir = 1;
icon_state = "whiteblue";
- dir = 1
+ tag = "icon-whiteblue (NORTH)"
},
/area/medical/sleeper)
"bYt" = (
@@ -54947,16 +52759,15 @@
},
/obj/effect/mapping_helpers/airlock/unres,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/reception)
"bYv" = (
/turf/space,
/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "diagonalWall3"
+ icon_state = "swallc2"
},
/area/shuttle/administration)
"bYw" = (
@@ -54972,7 +52783,6 @@
"bYx" = (
/obj/machinery/light,
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/effect/decal/warning_stripes/north,
@@ -55021,8 +52831,8 @@
/obj/item/roller,
/obj/item/soap/nanotrasen,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/sleeper)
"bYD" = (
@@ -55041,7 +52851,6 @@
dir = 1
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -55089,13 +52898,11 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "browncorner"
},
/area/quartermaster/office)
"bYI" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -55148,8 +52955,7 @@
"bYO" = (
/obj/machinery/camera{
c_tag = "Cargo Bay Entrance";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/atm{
pixel_x = -24
@@ -55173,7 +52979,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/plasticflaps{
@@ -55185,8 +52990,8 @@
"bYR" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/hallway/primary/central/sw)
"bYS" = (
@@ -55199,8 +53004,7 @@
},
/obj/machinery/camera{
c_tag = "Head of Personnel's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel,
@@ -55209,12 +53013,11 @@
/obj/structure/filingcabinet/chestdrawer,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 10
+ dir = 10;
+ icon_state = "blue"
},
/area/crew_quarters/heads)
"bYU" = (
@@ -55243,8 +53046,7 @@
"bYW" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -55304,7 +53106,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -55327,12 +53128,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -55350,13 +53149,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
@@ -55365,11 +53162,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -55397,18 +53192,16 @@
"bZj" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 0
+ pixel_x = -12
},
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTHWEST)";
+ dir = 9;
icon_state = "whiteblue";
- dir = 9
+ tag = "icon-whiteblue (NORTHWEST)"
},
/area/medical/sleeper)
"bZk" = (
@@ -55420,8 +53213,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -55450,7 +53242,6 @@
"bZn" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel,
@@ -55509,16 +53300,15 @@
tag = ""
},
/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/hallway/primary/central/se)
"bZu" = (
@@ -55537,16 +53327,13 @@
/obj/machinery/computer/card/minor/cmo,
/obj/machinery/camera{
c_tag = "Medbay Chief Medical Officer's Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/item/radio/intercom/department/medbay{
pixel_x = -32;
pixel_y = 5
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -32;
pixel_y = -8
},
@@ -55587,14 +53374,13 @@
opacity = 0
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/medical/cmo)
"bZA" = (
/obj/machinery/keycard_auth{
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/light_switch{
@@ -55641,12 +53427,10 @@
},
/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-j1";
tag = "icon-pipe-j1 (EAST)"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -55668,9 +53452,9 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/medbay2)
"bZF" = (
@@ -55702,7 +53486,6 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
name = "Medbay Hall";
sortType = 9
},
@@ -55739,8 +53522,7 @@
/area/medical/medbay2)
"bZI" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
@@ -55842,7 +53624,6 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
name = "Med Chemistry";
sortType = 11
},
@@ -55897,8 +53678,7 @@
/area/medical/medbay2)
"bZP" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
@@ -55917,8 +53697,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -55936,7 +53715,6 @@
},
/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-j1";
tag = "icon-pipe-j1 (EAST)"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -55969,8 +53747,7 @@
/area/medical/reception)
"bZS" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -56011,7 +53788,6 @@
req_access_txt = "30"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -56025,9 +53801,9 @@
tag = ""
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plating,
/area/crew_quarters/hor)
@@ -56042,7 +53818,6 @@
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -56069,8 +53844,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -56093,13 +53867,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -56161,10 +53933,13 @@
name = "Research Division"
})
"cae" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "diagonalWall3"
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_r";
+ tag = "icon-propulsion_r (EAST)"
},
+/turf/space,
+/turf/simulated/shuttle/plating,
/area/shuttle/administration)
"caf" = (
/obj/machinery/vending/snack,
@@ -56173,33 +53948,25 @@
},
/area/shuttle/administration)
"cag" = (
-/obj/machinery/vending/cola,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
+/obj/machinery/computer/shuttle/trade/sol,
+/turf/simulated/floor/carpet/black,
+/area/shuttle/trade/sol)
"cah" = (
-/obj/machinery/vending/coffee,
/obj/machinery/light/spot,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
"cai" = (
-/obj/machinery/vending/cigarette,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
+/turf/simulated/shuttle/wall,
+/area/shuttle/trade/sol)
"caj" = (
/obj/machinery/camera{
c_tag = "Research Hallway West";
- dir = 2;
network = list("Research","SS13")
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -56209,9 +53976,8 @@
name = "Research Division"
})
"cak" = (
-/obj/machinery/computer/communications,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/shuttle/wall{
+ icon_state = "swall14"
},
/area/shuttle/administration)
"cal" = (
@@ -56261,24 +54027,6 @@
/obj/machinery/computer/security/mining,
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
-"car" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 4;
- icon_state = "open";
- id_tag = "adminshuttleshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- tag = "icon-window5_end (WEST)";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/shuttle/administration)
"cas" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
@@ -56299,8 +54047,7 @@
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
@@ -56323,10 +54070,8 @@
"caw" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -56357,17 +54102,15 @@
})
"caz" = (
/obj/structure/sign/poster/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/sleeper)
"caA" = (
@@ -56383,8 +54126,7 @@
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -56487,7 +54229,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -56505,7 +54246,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -56527,7 +54267,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -56547,11 +54286,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel{
@@ -56566,7 +54303,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden,
@@ -56585,7 +54321,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -56607,14 +54342,12 @@
/area/medical/cryo)
"caO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -56663,8 +54396,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -56703,7 +54435,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -56719,9 +54450,9 @@
name = "Geneticist"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurple (SOUTHWEST)";
+ dir = 10;
icon_state = "whitepurple";
- dir = 10
+ tag = "icon-whitepurple (SOUTHWEST)"
},
/area/medical/genetics)
"caX" = (
@@ -56741,16 +54472,15 @@
name = "Geneticist"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurple (SOUTHEAST)";
+ dir = 6;
icon_state = "whitepurple";
- dir = 6
+ tag = "icon-whitepurple (SOUTHEAST)"
},
/area/medical/genetics)
"caZ" = (
/obj/structure/table/glass,
/obj/item/storage/box/disks,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -56792,8 +54522,7 @@
pixel_x = 27
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -56812,7 +54541,6 @@
"cbe" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/bluegrid,
@@ -56826,8 +54554,7 @@
},
/obj/machinery/camera{
c_tag = "Messaging Server";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/light/small{
dir = 4
@@ -56846,12 +54573,10 @@
"cbh" = (
/obj/machinery/camera{
c_tag = "Gravity Generator Foyer";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/closet/radiation,
@@ -56896,12 +54621,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
name = "Captain's Office";
sortType = 18
},
@@ -56935,10 +54658,8 @@
icon_state = "pipe-c"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
@@ -56947,7 +54668,6 @@
/obj/item/megaphone,
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -56955,7 +54675,6 @@
"cbq" = (
/obj/machinery/computer/robotics,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -56975,8 +54694,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"cbs" = (
@@ -57016,34 +54735,25 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/medbay2)
"cbv" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/medical/medbay2)
"cbw" = (
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
-"cbx" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
"cby" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
@@ -57052,8 +54762,8 @@
req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluefull";
- icon_state = "whitebluefull"
+ icon_state = "whitebluefull";
+ tag = "icon-whitebluefull"
},
/area/medical/biostorage)
"cbz" = (
@@ -57071,28 +54781,23 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
"cbA" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 4;
- icon_state = "open";
- id_tag = "adminshuttleshutters";
- name = "Blast Shutters";
- opacity = 0
+/obj/structure/closet{
+ icon_closed = "black";
+ icon_state = "black";
+ name = "Mineral's"
},
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- tag = "icon-window5 (EAST)"
+/obj/effect/spawner/lootdrop/trade_sol/minerals{
+ loot = list(/obj/item/stack/sheet/mineral/silver = 50, /obj/item/stack/sheet/mineral/silver {amount = 10} = 50, /obj/item/stack/sheet/mineral/silver {amount = 30} = 50, /obj/item/stack/sheet/mineral/gold = 50, /obj/item/stack/sheet/mineral/gold {amount = 10} = 50, /obj/item/stack/sheet/mineral/gold {amount = 30} = 50, /obj/item/stack/sheet/mineral/uranium = 50, /obj/item/stack/sheet/mineral/uranium {amount = 10} = 50, /obj/item/stack/sheet/mineral/uranium {amount = 30} = 50, /obj/item/stack/sheet/mineral/diamond = 50, /obj/item/stack/sheet/mineral/diamond {amount = 10} = 50, /obj/item/stack/sheet/mineral/diamond {amount = 30} = 50, /obj/item/stack/sheet/mineral/titanium = 50, /obj/item/stack/sheet/mineral/titanium {amount = 10} = 50, /obj/item/stack/sheet/mineral/titanium {amount = 30} = 50, /obj/item/stack/sheet/plasteel = 50, /obj/item/stack/sheet/plasteel {amount = 10} = 50, /obj/item/stack/sheet/plasteel {amount = 30} = 50, /obj/item/stack/sheet/titaniumglass = 50, /obj/item/stack/sheet/titaniumglass {amount = 10} = 50, /obj/item/stack/sheet/titaniumglass {amount = 30} = 50, /obj/item/stack/sheet/mineral/tranquillite = 50, /obj/item/stack/sheet/mineral/tranquillite {amount = 10} = 50, /obj/item/stack/sheet/mineral/tranquillite {amount = 30} = 50, /obj/item/stack/sheet/mineral/bananium = 50, /obj/item/stack/sheet/mineral/bananium {amount = 10} = 50, /obj/item/stack/sheet/mineral/bananium {amount = 30} = 50, /obj/item/stack/sheet/wood = 50, /obj/item/stack/sheet/wood {amount = 10} = 50, /obj/item/stack/sheet/wood {amount = 30} = 50, /obj/item/stack/sheet/plastic = 50, /obj/item/stack/sheet/plastic {amount = 10} = 50, /obj/item/stack/sheet/plastic {amount = 30} = 50, /obj/item/stack/sheet/mineral/sandstone = 50, /obj/item/stack/sheet/mineral/sandstone {amount = 10} = 50, /obj/item/stack/sheet/mineral/sandstone {amount = 30} = 50);
+ lootcount = 15;
+ name = "9. Minerals"
},
-/turf/simulated/floor/plating,
-/area/shuttle/administration)
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
"cbB" = (
/turf/simulated/shuttle/floor,
/turf/simulated/shuttle/wall/interior{
- tag = "icon-swall_f10";
- icon_state = "swall_f10"
+ icon_state = "swall_f10";
+ tag = "icon-swall_f10"
},
/area/shuttle/supply)
"cbC" = (
@@ -57101,23 +54806,21 @@
/area/shuttle/supply)
"cbD" = (
/turf/simulated/shuttle/wall{
- tag = "icon-swall7";
icon_state = "swall7";
- dir = 2
+ tag = "icon-swall7"
},
/area/shuttle/supply)
"cbE" = (
/turf/simulated/shuttle/floor,
/turf/simulated/shuttle/wall/interior{
- tag = "icon-swall_f6";
- icon_state = "swall_f6"
+ icon_state = "swall_f6";
+ tag = "icon-swall_f6"
},
/area/shuttle/supply)
"cbF" = (
/turf/simulated/shuttle/wall{
- tag = "icon-swall11";
icon_state = "swall11";
- dir = 2
+ tag = "icon-swall11"
},
/area/shuttle/supply)
"cbG" = (
@@ -57133,7 +54836,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -57198,24 +54900,23 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
/area/medical/medbay2)
"cbO" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/medical/medbay2)
"cbP" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/medical/medbay2)
"cbQ" = (
@@ -57234,7 +54935,6 @@
"cbR" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/disposalpipe/segment,
@@ -57246,14 +54946,12 @@
/area/toxins/test_area)
"cbT" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/cable,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -57261,19 +54959,17 @@
"cbU" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/medical/medbay2)
"cbV" = (
/obj/machinery/light,
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -57317,7 +55013,6 @@
},
/obj/effect/decal/warning_stripes/northeast,
/obj/effect/mapping_helpers/airlock/unres{
- icon_state = "airlock_unres_helper";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -57327,7 +55022,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -57353,8 +55047,8 @@
/obj/machinery/iv_drip,
/obj/item/reagent_containers/iv_bag/salglu,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/sleeper)
"ccb" = (
@@ -57381,7 +55075,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -57406,7 +55099,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -57427,8 +55119,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -57447,7 +55138,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light,
@@ -57468,13 +55158,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -57490,7 +55178,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -57513,7 +55200,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -57533,7 +55219,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -57555,12 +55240,10 @@
"cck" = (
/obj/structure/table/glass,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/item/reagent_containers/iv_bag/salglu,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue";
tag = "icon-whitehall (WEST)"
},
@@ -57609,13 +55292,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -57626,21 +55307,18 @@
"ccq" = (
/obj/machinery/camera{
c_tag = "Medbay Treatment Center";
- dir = 1;
- network = list("SS13");
- pixel_x = 0
+ dir = 1
},
/obj/machinery/light,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/cable,
/obj/item/roller,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/sleeper)
"ccr" = (
@@ -57648,12 +55326,10 @@
desc = "Used for watching the RD's goons from the safety of his office.";
name = "Research Monitor";
network = list("Research","Research Outpost","RD");
- pixel_x = 0;
pixel_y = 2
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -57663,12 +55339,11 @@
dir = 4
},
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/sleeper)
"cct" = (
@@ -57681,14 +55356,14 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/sleeper)
"ccu" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/sleeper)
"ccv" = (
@@ -57713,8 +55388,7 @@
dir = 1
},
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/machinery/alarm{
dir = 1;
@@ -57730,14 +55404,12 @@
},
/obj/machinery/camera{
c_tag = "Medbay Cryogenics";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = -5;
- pixel_y = -30;
- req_access_txt = "0"
+ pixel_y = -30
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -57757,7 +55429,6 @@
dir = 1;
icon_state = "left";
name = "Cryo Tank Storage";
- req_access_txt = "0";
req_one_access_txt = "5;32"
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -57773,9 +55444,6 @@
/obj/machinery/light,
/obj/item/reagent_containers/spray/cleaner,
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = -25
},
/turf/simulated/floor/plasteel{
@@ -57796,7 +55464,6 @@
dir = 1;
icon_state = "left";
name = "Cryo Tank Storage";
- req_access_txt = "0";
req_one_access_txt = "5;32"
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -57812,9 +55479,9 @@
"ccC" = (
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/medical/medbay2)
"ccD" = (
@@ -57835,9 +55502,9 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/medical/medbay2)
"ccF" = (
@@ -57859,8 +55526,8 @@
opacity = 0
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable{
d1 = 1;
@@ -57891,8 +55558,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -57900,12 +55566,11 @@
/obj/machinery/power/apc{
dir = 4;
name = "east bump Important Area";
- pixel_x = 24;
- shock_proof = 0
+ pixel_x = 24
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -57957,7 +55622,6 @@
/area/maintenance/asmaint2)
"ccN" = (
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/obj/structure/closet/l3closet/janitor,
@@ -57966,8 +55630,6 @@
"ccO" = (
/obj/structure/closet/jcloset,
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel,
@@ -57979,9 +55641,9 @@
/area/escapepodbay)
"ccQ" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurple (WEST)";
+ dir = 8;
icon_state = "whitepurple";
- dir = 8
+ tag = "icon-whitepurple (WEST)"
},
/area/medical/genetics)
"ccR" = (
@@ -58006,9 +55668,8 @@
"ccT" = (
/obj/machinery/r_n_d/server/robotics,
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- tag = "icon-intact (SOUTHEAST)";
- icon_state = "intact";
- dir = 6
+ dir = 6;
+ tag = "icon-intact (SOUTHEAST)"
},
/turf/simulated/floor/bluegrid/telecomms/server,
/area/toxins/server_coldroom)
@@ -58020,15 +55681,13 @@
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
- tag = "icon-intact (WEST)";
- icon_state = "intact";
- dir = 8
+ dir = 8;
+ tag = "icon-intact (WEST)"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -58044,7 +55703,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel/dark/telecomms,
@@ -58052,7 +55710,6 @@
"ccW" = (
/obj/machinery/camera{
c_tag = "Research Server Room";
- dir = 2;
network = list("Research","SS13");
pixel_x = 22
},
@@ -58065,7 +55722,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel/dark,
@@ -58096,8 +55752,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/conveyor/east{
id = "packageExternal"
@@ -58110,8 +55765,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/conveyor/east{
id = "packageExternal"
@@ -58123,25 +55777,21 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Gravity Generator";
- req_access_txt = "0";
req_one_access_txt = "10;30"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
- icon_state = "vault"
+ icon_state = "vault";
+ tag = "icon-vault"
},
/area/engine/gravitygenerator)
"cdb" = (
/obj/machinery/atmospherics/unary/cold_sink/freezer{
current_temperature = 80;
- dir = 2;
on = 1
},
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel/dark,
@@ -58156,8 +55806,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/camera{
c_tag = "Central Hallway South East";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
@@ -58204,7 +55853,6 @@
"cdg" = (
/obj/machinery/computer/mecha,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -58217,7 +55865,6 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -58249,8 +55896,6 @@
/area/medical/genetics)
"cdk" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/filingcabinet/chestdrawer,
@@ -58259,18 +55904,6 @@
icon_state = "white"
},
/area/crew_quarters/hor)
-"cdl" = (
-/obj/machinery/dna_scannernew/upgraded,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cdm" = (
-/obj/machinery/computer/cloning,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
"cdn" = (
/obj/structure/cable{
d1 = 1;
@@ -58284,21 +55917,10 @@
icon_state = "white"
},
/area/medical/genetics)
-"cdo" = (
-/obj/machinery/computer/scan_consolenew,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
"cdp" = (
-/obj/machinery/clonepod/upgraded,
-/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
- },
+/obj/machinery/suit_storage_unit/standard_unit,
/turf/simulated/shuttle/floor{
- icon_state = "floor3"
+ icon_state = "floor4"
},
/area/shuttle/administration)
"cdq" = (
@@ -58306,7 +55928,6 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = "CloningDoor";
name = "Genetics Cloning";
- req_access_txt = "0";
req_one_access_txt = "5;9"
},
/obj/structure/cable{
@@ -58325,7 +55946,6 @@
dir = 4
},
/obj/effect/mapping_helpers/airlock/unres{
- icon_state = "airlock_unres_helper";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -58333,36 +55953,25 @@
},
/area/medical/genetics_cloning)
"cdr" = (
-/obj/machinery/computer/camera_advanced/shuttle_docker/admin{
- name = "NTV Argos shuttle navigation computer"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/door/airlock/centcom{
+ id_tag = "adminshuttle";
+ name = "Bridge";
+ opacity = 1;
+ req_access_txt = "101"
},
+/turf/simulated/shuttle/floor,
/area/shuttle/administration)
"cds" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 4;
- icon_state = "open";
- id_tag = "adminshuttleshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- tag = "icon-window5_end (EAST)";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- dir = 4
+/obj/machinery/atm,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall8";
+ tag = "icon-swall12"
},
-/turf/simulated/floor/plating,
-/area/shuttle/administration)
+/area/shuttle/trade/sol)
"cdt" = (
/turf/simulated/shuttle/wall{
- tag = "icon-swall15";
icon_state = "swall15";
- dir = 2
+ tag = "icon-swall15"
},
/area/shuttle/supply)
"cdu" = (
@@ -58375,17 +55984,15 @@
"cdv" = (
/turf/space,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f5";
icon_state = "swall_f5";
- dir = 2
+ tag = "icon-swall_f5"
},
/area/shuttle/supply)
"cdw" = (
/turf/space,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f9";
icon_state = "swall_f9";
- dir = 2
+ tag = "icon-swall_f9"
},
/area/shuttle/supply)
"cdx" = (
@@ -58403,10 +56010,9 @@
/obj/item/pen,
/obj/machinery/requests_console{
department = "Cargo Bay";
- name = "Cargo Requests Console";
departmentType = 2;
- pixel_x = -30;
- pixel_y = 0
+ name = "Cargo Requests Console";
+ pixel_x = -30
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
@@ -58502,9 +56108,7 @@
"cdG" = (
/obj/structure/table,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
@@ -58538,8 +56142,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -58555,7 +56158,6 @@
name = "Research Director"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -58565,7 +56167,6 @@
/area/hallway/primary/central/south)
"cdO" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -58590,16 +56191,14 @@
"cdQ" = (
/obj/machinery/requests_console{
department = "Cargo Bay";
- name = "Cargo Requests Console";
departmentType = 2;
- pixel_x = -30;
- pixel_y = 0
+ name = "Cargo Requests Console";
+ pixel_x = -30
},
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
"cdR" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -58609,14 +56208,13 @@
/area/quartermaster/qm)
"cdS" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -58636,7 +56234,6 @@
/area/hallway/primary/central/sw)
"cdV" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -58658,9 +56255,8 @@
/area/hallway/primary/central/south)
"cdY" = (
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j1 (EAST)";
- icon_state = "pipe-j1";
- dir = 4
+ dir = 4;
+ tag = "icon-pipe-j1 (EAST)"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -58710,8 +56306,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Observation Room";
- req_access_txt = "0"
+ name = "Observation Room"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -58729,8 +56324,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Observation Room";
- req_access_txt = "0"
+ name = "Observation Room"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -58744,7 +56338,6 @@
"ceh" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -58759,8 +56352,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -58845,14 +56437,13 @@
dir = 4
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -58871,8 +56462,6 @@
dir = 4
},
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel,
@@ -58896,9 +56485,7 @@
/area/hallway/primary/central/south)
"cex" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
@@ -58913,8 +56500,7 @@
"cez" = (
/obj/machinery/alarm/server{
dir = 4;
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/light/small{
dir = 8
@@ -58928,15 +56514,12 @@
/area/hallway/primary/central/south)
"ceB" = (
/obj/machinery/camera{
- c_tag = "Central Primary Hallway South";
- dir = 2;
- network = list("SS13")
+ c_tag = "Central Primary Hallway South"
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/south)
"ceC" = (
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/turf/simulated/floor/plasteel,
@@ -58958,7 +56541,6 @@
/area/quartermaster/storage)
"ceF" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -59061,7 +56643,6 @@
})
"ceO" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -59086,11 +56667,9 @@
"ceS" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -59100,7 +56679,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -59121,7 +56699,6 @@
},
/obj/effect/decal/warning_stripes/southeast,
/obj/effect/mapping_helpers/airlock/unres{
- icon_state = "airlock_unres_helper";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -59132,23 +56709,22 @@
/area/shuttle/supply)
"ceV" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-burst_l";
- icon_state = "burst_l"
+ icon_state = "burst_l";
+ tag = "icon-burst_l"
},
/turf/simulated/shuttle/plating,
/area/shuttle/supply)
"ceW" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-burst_r";
- icon_state = "burst_r"
+ icon_state = "burst_r";
+ tag = "icon-burst_r"
},
/turf/simulated/shuttle/plating,
/area/shuttle/supply)
"ceX" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f6";
- dir = 2
+ icon_state = "swall_f6"
},
/area/shuttle/mining)
"ceY" = (
@@ -59158,16 +56734,14 @@
/area/shuttle/mining)
"ceZ" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- dir = 2
+ icon_state = "swall12"
},
/area/shuttle/mining)
"cfa" = (
/turf/space,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f10";
icon_state = "swall_f10";
- dir = 2
+ tag = "icon-swall_f10"
},
/area/shuttle/mining)
"cfb" = (
@@ -59208,20 +56782,17 @@
/obj/machinery/computer/security/mining,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/camera{
c_tag = "Mining Dock";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"cfg" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/disposalpipe/segment,
@@ -59233,8 +56804,7 @@
location = "QM"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -59244,12 +56814,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel,
@@ -59272,7 +56840,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -59298,7 +56865,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -59314,12 +56880,10 @@
/area/hallway/primary/central/sw)
"cfn" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -59328,7 +56892,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark/start{
@@ -59341,8 +56904,8 @@
/area/janitor)
"cfp" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -59351,8 +56914,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel,
/area/janitor)
@@ -59363,8 +56925,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/sw)
@@ -59404,8 +56965,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/sw)
@@ -59419,7 +56979,6 @@
/obj/structure/table/glass,
/obj/item/storage/toolbox/surgery,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue";
tag = "icon-whitehall (WEST)"
},
@@ -59455,13 +57014,12 @@
/obj/machinery/door_control{
id = "surgeryobs1";
name = "Privacy Shutters Control";
- pixel_x = 0;
pixel_y = 25
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/medical/surgery1)
"cfB" = (
@@ -59482,8 +57040,8 @@
},
/obj/item/reagent_containers/iv_bag/salglu,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/surgery2)
"cfD" = (
@@ -59491,8 +57049,7 @@
dir = 8
},
/obj/machinery/camera{
- c_tag = "Medbay Surgery Observation";
- network = list("SS13")
+ c_tag = "Medbay Surgery Observation"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -59533,7 +57090,6 @@
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "surgeryobs2";
name = "Privacy Shutters";
@@ -59569,11 +57125,9 @@
/obj/machinery/door_control{
id = "surgeryobs2";
name = "Privacy Shutters Control";
- pixel_x = 0;
pixel_y = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -59582,8 +57136,8 @@
/obj/structure/table/glass,
/obj/item/storage/toolbox/surgery,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/surgery2)
"cfM" = (
@@ -59593,13 +57147,12 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/table/tray,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/medical/surgery2)
"cfN" = (
@@ -59665,7 +57218,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -59711,7 +57263,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -59736,14 +57287,12 @@
/area/hallway/primary/central/sw)
"cfU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -59768,7 +57317,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -59790,8 +57338,7 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/paper_bin/nanotrasen,
/turf/simulated/floor/plasteel{
@@ -59812,9 +57359,7 @@
"cfY" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = -25
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -59842,9 +57387,8 @@
"cgc" = (
/obj/machinery/r_n_d/server/core,
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- tag = "icon-intact (NORTHEAST)";
- icon_state = "intact";
- dir = 5
+ dir = 5;
+ tag = "icon-intact (NORTHEAST)"
},
/turf/simulated/floor/bluegrid/telecomms/server,
/area/toxins/server_coldroom)
@@ -59885,8 +57429,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/south)
@@ -59902,8 +57445,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/south)
@@ -59984,7 +57526,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -60014,17 +57555,10 @@
"cgv" = (
/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
/area/crew_quarters/hor)
-"cgw" = (
-/obj/machinery/bodyscanner,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
"cgy" = (
/obj/machinery/door/poddoor{
id_tag = "ToxinsVenting";
@@ -60034,26 +57568,13 @@
/turf/simulated/floor/engine/insulated/vacuum,
/area/toxins/mixing)
"cgz" = (
-/obj/structure/window/plasmareinforced{
- color = "#FF0000";
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
"cgA" = (
-/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
- dir = 4
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/computer/camera_advanced/shuttle_docker/admin{
+ name = "NTV Argos shuttle navigation computer"
},
+/turf/simulated/shuttle/floor,
/area/shuttle/administration)
"cgB" = (
/obj/structure/table,
@@ -60072,13 +57593,10 @@
/area/shuttle/mining)
"cgE" = (
/turf/simulated/wall/r_wall,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"cgF" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- dir = 2
+ icon_state = "swall3"
},
/area/shuttle/mining)
"cgG" = (
@@ -60105,8 +57623,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/se)
@@ -60116,8 +57633,7 @@
location = "CHE"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -60158,7 +57674,6 @@
tag = "icon-pipe-j1 (WEST)"
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -60192,11 +57707,9 @@
/area/quartermaster/qm)
"cgO" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -60227,8 +57740,7 @@
/area/maintenance/apmaint)
"cgR" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/effect/landmark/start{
name = "Medical Doctor"
@@ -60249,8 +57761,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel/dark/telecomms,
/area/toxins/server_coldroom)
@@ -60322,17 +57833,14 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/window/brigdoor{
base_state = "rightsecure";
- dir = 4;
icon_state = "rightsecure";
name = "Server Exterior Door";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/obj/machinery/door/window/brigdoor{
dir = 8;
name = "Server Interior Door";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -60368,7 +57876,6 @@
/obj/structure/sign/directions/engineering,
/obj/structure/sign/directions/science{
dir = 4;
- pixel_x = 0;
pixel_y = -7
},
/obj/structure/sign/directions/medical{
@@ -60398,11 +57905,9 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = "CloningDoor";
name = "Genetics Cloning";
- req_access_txt = "0";
req_one_access_txt = "5;9"
},
/obj/effect/mapping_helpers/airlock/unres{
- icon_state = "airlock_unres_helper";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -60414,7 +57919,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -60426,8 +57930,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
d2 = 4;
@@ -60440,9 +57943,9 @@
/area/medical/surgery1)
"chl" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/surgery1)
"chm" = (
@@ -60525,7 +58028,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark/start{
@@ -60552,14 +58054,12 @@
"chv" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel/dark,
/area/toxins/server)
@@ -60572,8 +58072,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
@@ -60598,13 +58097,12 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/medical/medbay2)
"chy" = (
@@ -60635,7 +58133,6 @@
/obj/item/clothing/mask/gas,
/obj/item/storage/briefcase,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/medical/cmo)
@@ -60651,13 +58148,11 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/medical/cmo)
"chC" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -60671,7 +58166,6 @@
department = "Chief Medical Officer's Desk";
departmentType = 5;
name = "Chief Medical Officer Requests Console";
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel{
@@ -60686,14 +58180,12 @@
},
/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/medical/cmo)
"chF" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/effect/decal/cleanable/dirt,
@@ -60715,7 +58207,6 @@
"chH" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/wood,
@@ -60742,13 +58233,11 @@
/area/medical/surgery1)
"chL" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -60758,7 +58247,6 @@
"chM" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -60773,7 +58261,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -60813,19 +58300,16 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Sci RD Office 2";
sortType = 13
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -60851,7 +58335,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -60861,7 +58344,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -60879,7 +58361,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -60890,7 +58371,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -60903,7 +58383,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -60935,7 +58414,6 @@
dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -60945,7 +58423,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -61000,30 +58477,20 @@
/obj/machinery/atmospherics/pipe/simple/insulated,
/obj/machinery/camera{
c_tag = "Research Toxins Mixing North";
- dir = 2;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/mixing)
-"cig" = (
-/obj/machinery/sleeper/upgraded{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
"cih" = (
-/obj/machinery/chem_master,
+/obj/machinery/dna_scannernew/upgraded,
/turf/simulated/shuttle/floor{
icon_state = "floor3"
},
/area/shuttle/administration)
"cii" = (
-/obj/machinery/chem_dispenser,
+/obj/machinery/computer/scan_consolenew,
/turf/simulated/shuttle/floor{
icon_state = "floor3"
},
@@ -61036,22 +58503,8 @@
/turf/simulated/wall/r_wall,
/area/toxins/test_area)
"cik" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "adminshuttle";
- name = "Holding Cell";
- opacity = 1;
- req_access_txt = "104"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"cil" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc2"
},
/area/shuttle/administration)
"cim" = (
@@ -61063,15 +58516,6 @@
},
/turf/simulated/shuttle/floor,
/area/shuttle/mining)
-"cio" = (
-/obj/machinery/door/window/brigdoor/westleft{
- color = "#d70000";
- req_access_txt = "104"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
"cip" = (
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -61100,8 +58544,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -61160,8 +58603,7 @@
pixel_y = 7
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
@@ -61188,7 +58630,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -61207,8 +58648,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/wood,
/area/blueshield)
@@ -61249,9 +58689,7 @@
icon_state = "0-8"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/power/apc{
@@ -61265,8 +58703,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/wood,
/area/ntrep)
@@ -61291,9 +58728,7 @@
dir = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/item/twohanded/required/kirbyplants,
@@ -61309,7 +58744,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -61330,7 +58764,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -61344,7 +58777,6 @@
name = "Central Access"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -61353,7 +58785,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/public/glass{
@@ -61388,7 +58819,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -61411,11 +58841,9 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -61429,17 +58857,15 @@
},
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = -25
},
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/medical/medbay2)
"ciV" = (
@@ -61544,7 +58970,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -61584,8 +59009,7 @@
req_access_txt = "73"
},
/obj/machinery/keycard_auth{
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/wood,
/area/ntrep)
@@ -61623,7 +59047,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -61640,9 +59063,9 @@
/area/hallway/primary/central/south)
"cjk" = (
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j2";
+ dir = 2;
icon_state = "pipe-j2";
- dir = 2
+ tag = "icon-pipe-j2"
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/south)
@@ -61660,11 +59083,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel,
@@ -61689,7 +59110,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light,
@@ -61700,7 +59120,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -61772,7 +59191,6 @@
/obj/item/clothing/under/rank/medical/green,
/obj/item/clothing/under/rank/medical/purple,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -61800,17 +59218,15 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/surgery1)
"cjy" = (
@@ -61838,7 +59254,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -61885,7 +59300,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -61948,7 +59362,6 @@
id = "cmoofficedoor";
name = "Office Door";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = -13;
req_access_txt = "40"
},
@@ -61970,9 +59383,7 @@
"cjI" = (
/obj/machinery/camera{
c_tag = "Research E.X.P.E.R.I-MENTOR Chamber";
- dir = 2;
- network = list("Telepad","Research","SS13");
- pixel_x = 0
+ network = list("Telepad","Research","SS13")
},
/obj/machinery/light{
dir = 1;
@@ -62003,7 +59414,6 @@
"cjK" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -62015,8 +59425,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -62046,11 +59455,9 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -62076,14 +59483,12 @@
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
/area/crew_quarters/hor)
"cjQ" = (
/obj/machinery/keycard_auth{
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/light,
@@ -62095,7 +59500,6 @@
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -62114,7 +59518,6 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -62193,11 +59596,13 @@
/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"ckd" = (
-/obj/machinery/iv_drip,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
+/obj/machinery/door/airlock/shuttle/glass{
+ name = "trader shuttle airlock";
+ req_access_txt = "160";
+ security_level = 6
},
-/area/shuttle/administration)
+/turf/simulated/floor/wood,
+/area/shuttle/trade/sol)
"cke" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 4
@@ -62209,31 +59614,20 @@
/turf/simulated/floor/engine/insulated/vacuum,
/area/toxins/mixing)
"ckf" = (
-/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"ckg" = (
-/obj/structure/table,
-/obj/item/storage/box/handcuffs,
-/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/machinery/door/airlock/shuttle{
+ aiControlDisabled = 1;
+ hackProof = 1;
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Hatch"
},
-/area/shuttle/administration)
+/turf/simulated/shuttle/floor4,
+/area/shuttle/escape)
"ckh" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
+/obj/structure/window/plasmareinforced{
+ color = "#FF0000";
+ dir = 8
},
+/obj/structure/chair/comfy/shuttle,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -62245,13 +59639,7 @@
/turf/simulated/shuttle/floor,
/area/shuttle/mining)
"ckj" = (
-/obj/structure/window/plasmareinforced{
- color = "#FF0000";
- dir = 8
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 1
- },
+/obj/structure/chair/comfy/shuttle,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -62308,7 +59696,6 @@
"cko" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/disposalpipe/segment,
@@ -62333,13 +59720,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
@@ -62351,7 +59736,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -62400,8 +59784,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -62433,15 +59816,11 @@
"ckA" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/camera{
c_tag = "Medbay Surgery East Storage";
- dir = 1;
- network = list("SS13");
- pixel_x = 0
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -62458,9 +59837,9 @@
/obj/structure/closet/walllocker/emerglocker/west,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/medical/medbay2)
"ckC" = (
@@ -62473,7 +59852,6 @@
/obj/item/screwdriver,
/obj/item/reagent_containers/food/drinks/britcup,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -62491,7 +59869,6 @@
/obj/machinery/cell_charger,
/obj/item/stock_parts/cell,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -62501,19 +59878,16 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/camera{
- c_tag = "Medbay Break Room";
- network = list("SS13")
+ c_tag = "Medbay Break Room"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -62656,28 +60030,25 @@
"ckU" = (
/obj/machinery/camera{
c_tag = "Medbay Surgery West";
- dir = 1;
- network = list("SS13");
- pixel_x = 0
+ dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
+ dir = 1;
icon_state = "whiteblue";
- dir = 1
+ tag = "icon-whiteblue (NORTH)"
},
/area/medical/surgery1)
"ckV" = (
/obj/machinery/bodyscanner,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
+ dir = 1;
icon_state = "whiteblue";
- dir = 1
+ tag = "icon-whiteblue (NORTH)"
},
/area/medical/surgery1)
"ckW" = (
/obj/structure/closet/secure_closet/medical2,
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -62688,9 +60059,9 @@
/area/medical/surgery1)
"ckX" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
+ dir = 1;
icon_state = "whiteblue";
- dir = 1
+ tag = "icon-whiteblue (NORTH)"
},
/area/medical/surgery1)
"ckY" = (
@@ -62699,7 +60070,6 @@
pixel_x = -24
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -62713,13 +60083,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -62743,7 +60111,6 @@
/obj/structure/table/glass,
/obj/machinery/computer/med_data/laptop,
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -62761,9 +60128,9 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
+ dir = 1;
icon_state = "whiteblue";
- dir = 1
+ tag = "icon-whiteblue (NORTH)"
},
/area/medical/surgery2)
"cld" = (
@@ -62789,27 +60156,24 @@
pixel_y = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
+ dir = 1;
icon_state = "whiteblue";
- dir = 1
+ tag = "icon-whiteblue (NORTH)"
},
/area/medical/surgery2)
"clf" = (
/obj/machinery/camera{
c_tag = "Medbay Surgery East";
- dir = 1;
- network = list("SS13");
- pixel_x = 0
+ dir = 1
},
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
+ dir = 1;
icon_state = "whiteblue";
- dir = 1
+ tag = "icon-whiteblue (NORTH)"
},
/area/medical/surgery2)
"clg" = (
@@ -62823,8 +60187,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -62832,14 +60195,13 @@
icon_state = "1-2"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/medical/medbay2)
"cli" = (
@@ -62851,7 +60213,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -62872,11 +60233,9 @@
/obj/machinery/washing_machine,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -62888,7 +60247,6 @@
icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -62956,7 +60314,6 @@
"clt" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/engine,
@@ -62977,8 +60334,7 @@
"clw" = (
/obj/machinery/atmospherics/binary/valve,
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -62986,7 +60342,6 @@
/area/toxins/mixing)
"clx" = (
/obj/machinery/atmospherics/unary/outlet_injector{
- dir = 2;
frequency = 1443;
icon_state = "on";
id = "air_in";
@@ -63019,51 +60374,45 @@
/area/toxins/test_area)
"clB" = (
/obj/machinery/door/airlock/external{
- name = "Toxins Test Chamber";
- req_access_txt = "0"
+ name = "Toxins Test Chamber"
},
/turf/simulated/floor/plating/airless,
/area/toxins/test_area)
"clC" = (
-/obj/structure/table,
-/obj/item/bonegel,
-/obj/item/bonesetter,
-/obj/item/hemostat,
-/obj/item/cautery,
-/obj/item/surgicaldrill,
-/obj/item/circular_saw,
-/obj/item/scalpel,
-/obj/item/retractor,
-/obj/item/FixOVein,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ tag = "icon-propulsion (EAST)"
},
-/area/shuttle/administration)
+/turf/simulated/shuttle/plating,
+/area/shuttle/transport)
"clD" = (
-/obj/machinery/optable,
+/obj/machinery/bodyscanner,
/turf/simulated/shuttle/floor{
icon_state = "floor3"
},
/area/shuttle/administration)
"clE" = (
-/obj/machinery/vending/medical,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
-/area/shuttle/administration)
+/obj/structure/closet/crate,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport)
"clF" = (
-/obj/machinery/light,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
+/obj/machinery/light/spot,
+/obj/structure/closet/crate,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport)
"clG" = (
-/obj/structure/table,
-/obj/item/storage/lockbox/mindshield,
+/obj/machinery/vending/wallmed{
+ pixel_x = -30;
+ pixel_y = 30
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/administration)
+/area/shuttle/specops)
"clH" = (
/obj/machinery/camera{
armor = list("melee" = 50, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 100, "bio" = 0, "rad" = 0, "fire" = 90, "acid" = 50);
@@ -63076,16 +60425,14 @@
/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"clI" = (
-/obj/structure/table,
-/obj/item/storage/box/chemimp{
- pixel_x = 4;
- pixel_y = 3
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 30;
+ pixel_y = 30
},
-/obj/item/storage/box/trackimp,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
-/area/shuttle/administration)
+/area/shuttle/specops)
"clJ" = (
/obj/item/stack/ore/silver,
/obj/item/stack/ore/silver,
@@ -63098,8 +60445,7 @@
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/simulated/wall,
/area/quartermaster/miningdock)
@@ -63173,15 +60519,14 @@
/area/maintenance/asmaint)
"clT" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -63191,7 +60536,6 @@
"clU" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -63219,7 +60563,6 @@
"clX" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light/small{
@@ -63230,8 +60573,8 @@
/area/toxins/storage)
"clY" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/light{
dir = 8
@@ -63239,8 +60582,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -63255,7 +60597,6 @@
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -63281,8 +60622,8 @@
"cmc" = (
/obj/machinery/requests_console{
department = "Janitorial";
- name = "Janitor Requests Console";
departmentType = 1;
+ name = "Janitor Requests Console";
pixel_y = -29
},
/obj/machinery/disposal,
@@ -63354,7 +60695,6 @@
layer = 4;
name = "Singularity Engine Telescreen";
network = list("Singularity");
- pixel_x = 0;
pixel_y = 30
},
/obj/structure/chair/office/dark{
@@ -63367,7 +60707,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light/small{
@@ -63398,8 +60737,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Virology Lobby Hallway";
- req_access_txt = "0"
+ name = "Virology Lobby Hallway"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -63410,9 +60748,9 @@
"cmn" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (NORTHWEST)";
+ dir = 9;
icon_state = "whitegreen";
- dir = 9
+ tag = "icon-whitegreen (NORTHWEST)"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -63426,9 +60764,9 @@
"cmp" = (
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (NORTHEAST)";
+ dir = 5;
icon_state = "whitegreen";
- dir = 5
+ tag = "icon-whitegreen (NORTHEAST)"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -63444,7 +60782,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/junction{
@@ -63457,13 +60794,11 @@
"cmr" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -63495,7 +60830,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -63503,7 +60837,6 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -63525,7 +60858,6 @@
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -63541,11 +60873,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -63556,7 +60886,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -63600,7 +60929,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -63618,7 +60946,6 @@
"cmD" = (
/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -63638,8 +60965,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -63690,9 +61016,9 @@
/obj/item/reagent_containers/spray/cleaner,
/obj/item/reagent_containers/iv_bag/salglu,
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (SOUTHWEST)";
+ dir = 10;
icon_state = "whitegreen";
- dir = 10
+ tag = "icon-whitegreen (SOUTHWEST)"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -63722,7 +61048,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -63746,7 +61071,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -63782,7 +61106,6 @@
"cmW" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/reagent_dispensers/watertank,
@@ -63808,9 +61131,7 @@
"cmY" = (
/obj/machinery/camera{
c_tag = "Research Toxins Mixing West";
- dir = 2;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
@@ -63887,8 +61208,7 @@
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -63932,7 +61252,6 @@
"cnl" = (
/obj/structure/closet/wardrobe/miner,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/miningdock)
@@ -63952,7 +61271,6 @@
"cno" = (
/obj/structure/closet/secure_closet/miner,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/miningdock)
@@ -63985,7 +61303,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -64035,8 +61352,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Virology Lobby Hallway";
- req_access_txt = "0"
+ name = "Virology Lobby Hallway"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -64077,7 +61393,6 @@
})
"cnA" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -64087,9 +61402,6 @@
on = 1
},
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel{
@@ -64102,27 +61414,24 @@
})
"cnC" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
"cnD" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/camera{
- c_tag = "Virology Lobby";
- network = list("SS13")
+ c_tag = "Virology Lobby"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -64178,7 +61487,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -64210,7 +61518,6 @@
"cnL" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -64224,9 +61531,9 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (WEST)";
+ dir = 8;
icon_state = "whitegreen";
- dir = 8
+ tag = "icon-whitegreen (WEST)"
},
/area/medical/medbay2)
"cnN" = (
@@ -64235,11 +61542,9 @@
dir = 1
},
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = -27
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -64247,7 +61552,6 @@
"cnO" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -64255,7 +61559,6 @@
"cnP" = (
/obj/machinery/vending/chinese,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -64263,7 +61566,6 @@
"cnQ" = (
/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -64271,11 +61573,9 @@
"cnR" = (
/obj/structure/chair/stool,
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -64292,7 +61592,6 @@
"cnT" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
name = "QM Office";
sortType = 3
},
@@ -64300,7 +61599,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -64324,8 +61622,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/landmark/start{
name = "Shaft Miner"
@@ -64338,8 +61635,7 @@
/area/maintenance/asmaint)
"cnW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -64359,7 +61655,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -64377,8 +61672,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -64395,8 +61689,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -64413,7 +61706,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -64425,16 +61717,15 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (SOUTHWEST)";
+ dir = 10;
icon_state = "whitegreen";
- dir = 10
+ tag = "icon-whitegreen (SOUTHWEST)"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -64444,15 +61735,12 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -64467,12 +61755,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -64489,12 +61775,10 @@
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -64516,7 +61800,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -64581,8 +61864,7 @@
"com" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -64628,17 +61910,17 @@
/turf/simulated/floor/plasteel,
/area/janitor)
"cos" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -32
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/specops)
"cot" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -64657,7 +61939,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -64715,8 +61996,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/toxins/storage)
@@ -64800,16 +62080,13 @@
layer = 4;
name = "Test Chamber Telescreen";
network = list("Toxins");
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/alarm{
pixel_y = 25
},
/turf/simulated/floor/plasteel,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"coH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -64837,9 +62114,7 @@
opacity = 0
},
/turf/simulated/floor/plating,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"coJ" = (
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel/airless,
@@ -64866,8 +62141,7 @@
"coO" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f5";
- dir = 2
+ icon_state = "swall_f5"
},
/area/shuttle/mining)
"coP" = (
@@ -64882,8 +62156,7 @@
"coQ" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f9";
- dir = 2
+ icon_state = "swall_f9"
},
/area/shuttle/mining)
"coR" = (
@@ -64906,7 +62179,6 @@
"coT" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -64932,8 +62204,7 @@
/area/ntrep)
"coW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/carpet,
/area/ntrep)
@@ -64957,8 +62228,7 @@
/area/blueshield)
"coY" = (
/obj/machinery/keycard_auth{
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/door/window{
dir = 1;
@@ -64969,12 +62239,10 @@
/area/blueshield)
"coZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -64986,7 +62254,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreencorner"
},
/area/medical/virology/lab{
@@ -64995,8 +62262,7 @@
"cpa" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -65016,12 +62282,10 @@
})
"cpb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -65033,12 +62297,10 @@
tag = ""
},
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = -32;
step_size = 0
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -65047,12 +62309,10 @@
})
"cpc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -65069,7 +62329,6 @@
icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -65078,12 +62337,10 @@
})
"cpd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -65096,7 +62353,6 @@
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -65105,12 +62361,10 @@
})
"cpe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -65126,7 +62380,6 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -65151,21 +62404,18 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"cph" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -65183,9 +62433,9 @@
tag = "icon-pipe-j1 (WEST)"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (WEST)";
+ dir = 8;
icon_state = "whitegreen";
- dir = 8
+ tag = "icon-whitegreen (WEST)"
},
/area/medical/medbay2)
"cpi" = (
@@ -65211,7 +62461,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
@@ -65226,7 +62475,6 @@
/obj/item/folder,
/obj/item/radio,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -65246,32 +62494,26 @@
"cpn" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (WEST)";
+ dir = 8;
icon_state = "whiteblue";
- dir = 8
+ tag = "icon-whiteblue (WEST)"
},
/area/medical/surgery1)
"cpo" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 0
+ pixel_x = -12
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -65285,9 +62527,8 @@
/area/medical/surgery2)
"cpp" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
- dir = 4
+ dir = 4;
+ tag = "icon-bulb1 (EAST)"
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -65318,7 +62559,6 @@
"cpr" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -65350,13 +62590,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -65388,9 +62626,7 @@
},
/obj/machinery/camera{
c_tag = "Medbay Surgery West Storage";
- dir = 1;
- network = list("SS13");
- pixel_x = 0
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -65440,14 +62676,12 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 12;
- pixel_y = 0
+ pixel_x = 12
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (SOUTHEAST)";
+ dir = 6;
icon_state = "whitegreen";
- dir = 6
+ tag = "icon-whitegreen (SOUTHEAST)"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -65462,7 +62696,6 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -65512,7 +62745,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/east,
@@ -65627,7 +62859,6 @@
master_tag = "viro_lab_airlock_control";
name = "Virology Lab Access Button";
pixel_x = -24;
- pixel_y = 0;
req_access_txt = "39"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -65655,15 +62886,14 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/camera{
c_tag = "Medbay Secondary Hallway South";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/medical/medbay2)
"cpT" = (
@@ -65688,9 +62918,9 @@
"cpU" = (
/obj/structure/closet/radiation,
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurple (NORTHWEST)";
+ dir = 9;
icon_state = "whitepurple";
- dir = 9
+ tag = "icon-whitepurple (NORTHWEST)"
},
/area/toxins/explab)
"cpV" = (
@@ -65698,17 +62928,17 @@
/obj/item/clipboard,
/obj/item/book/manual/experimentor,
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurple (NORTHEAST)";
+ dir = 5;
icon_state = "whitepurple";
- dir = 5
+ tag = "icon-whitepurple (NORTHEAST)"
},
/area/toxins/explab)
"cpW" = (
/obj/machinery/computer/rdconsole/experiment,
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurple (NORTH)";
+ dir = 1;
icon_state = "whitepurple";
- dir = 1
+ tag = "icon-whitepurple (NORTH)"
},
/area/toxins/explab)
"cpX" = (
@@ -65733,13 +62963,12 @@
/obj/structure/closet/emcloset,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurple (NORTHEAST)";
+ dir = 5;
icon_state = "whitepurple";
- dir = 5
+ tag = "icon-whitepurple (NORTHEAST)"
},
/area/toxins/explab)
"cpZ" = (
@@ -65759,7 +62988,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -65776,8 +63004,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -65845,7 +63072,6 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/northeastcorner,
@@ -65885,9 +63111,7 @@
"cqj" = (
/obj/machinery/camera{
c_tag = "Research Toxins Mixing East";
- dir = 2;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/obj/machinery/atmospherics/unary/portables_connector{
dir = 1
@@ -65915,8 +63139,7 @@
"cqm" = (
/obj/structure/dispenser,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -65948,7 +63171,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/holosign/surgery{
@@ -65969,29 +63191,24 @@
dir = 8
},
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
/turf/simulated/floor/plasteel,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"cqq" = (
/obj/machinery/driver_button{
- dir = 2;
id_tag = "toxinsdriver";
pixel_y = 24;
range = 18
@@ -66004,15 +63221,12 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"cqr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -66035,20 +63249,18 @@
"cqs" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/apmaint)
@@ -66060,12 +63272,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
name = "HoP Office";
sortType = 15
},
@@ -66099,8 +63309,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/apmaint)
@@ -66131,7 +63340,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/holosign/surgery{
@@ -66146,22 +63354,7 @@
dir = 4
},
/turf/simulated/floor/plasteel,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
-"cqy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/aft)
+/area/toxins/launch)
"cqz" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
@@ -66191,9 +63384,7 @@
opacity = 0
},
/turf/simulated/floor/plating,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"cqD" = (
/obj/structure/cable{
d1 = 4;
@@ -66205,7 +63396,6 @@
/area/maintenance/asmaint)
"cqE" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -66222,9 +63412,8 @@
/area/maintenance/apmaint)
"cqG" = (
/obj/machinery/shower{
- tag = "icon-shower (WEST)";
- icon_state = "shower";
- dir = 8
+ dir = 8;
+ tag = "icon-shower (WEST)"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -66277,7 +63466,6 @@
"cqN" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -66344,7 +63532,6 @@
announcementConsole = 1;
department = "NT Representative";
departmentType = 5;
- dir = 2;
name = "NT Representative Requests Console";
pixel_x = 30
},
@@ -66358,8 +63545,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -66475,8 +63661,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -66509,7 +63694,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/medical/surgery1)
@@ -66518,7 +63702,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/medical/surgery2)
@@ -66526,8 +63709,7 @@
/obj/machinery/door_control{
id = "telescienceblast";
name = "Test Chamber Blast Doors";
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/structure/cable{
d1 = 1;
@@ -66545,9 +63727,9 @@
"crh" = (
/obj/structure/closet/l3closet/scientist,
/turf/simulated/floor/plasteel{
- tag = "icon-whitepurple (NORTHWEST)";
+ dir = 9;
icon_state = "whitepurple";
- dir = 9
+ tag = "icon-whitepurple (NORTHWEST)"
},
/area/toxins/explab)
"cri" = (
@@ -66567,14 +63749,13 @@
pixel_y = -23
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -66599,19 +63780,17 @@
/obj/structure/table/glass,
/obj/item/storage/box/syringes,
/obj/machinery/camera{
- c_tag = "Virology Monkey Pen";
- network = list("SS13")
+ c_tag = "Virology Monkey Pen"
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (WEST)";
+ dir = 8;
icon_state = "whitegreen";
- dir = 8
+ tag = "icon-whitegreen (WEST)"
},
/area/medical/virology)
"crn" = (
/obj/structure/sign/fire{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -66627,8 +63806,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -66645,7 +63823,6 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -66662,7 +63839,6 @@
department = "Virology";
departmentType = 3;
name = "Virology Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
@@ -66698,9 +63874,9 @@
},
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (EAST)";
+ dir = 4;
icon_state = "whitegreen";
- dir = 4
+ tag = "icon-whitegreen (EAST)"
},
/area/medical/virology)
"crv" = (
@@ -66724,9 +63900,7 @@
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"crx" = (
/obj/structure/closet/bombcloset,
/obj/structure/cable{
@@ -66736,8 +63910,7 @@
tag = ""
},
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -66746,17 +63919,14 @@
/area/toxins/mixing)
"cry" = (
/obj/machinery/camera{
- c_tag = "Virology Airlock";
- network = list("SS13")
+ c_tag = "Virology Airlock"
},
/obj/machinery/shower{
pixel_y = 20
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 10;
- pixel_y = 0
+ pixel_x = 10
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
@@ -66816,8 +63986,7 @@
/obj/effect/decal/warning_stripes/northwestcorner,
/obj/effect/decal/warning_stripes/northwestcorner,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -66933,9 +64102,7 @@
dir = 9
},
/turf/simulated/floor/plasteel,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"crR" = (
/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel{
@@ -66954,7 +64121,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -66964,17 +64130,13 @@
dir = 4
},
/turf/simulated/floor/plasteel,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"crT" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/plasteel,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"crU" = (
/obj/structure/cable{
d1 = 1;
@@ -66985,8 +64147,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
@@ -66999,7 +64160,6 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -67067,7 +64227,6 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -67078,14 +64237,12 @@
name = "Medical Doctor"
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -67122,7 +64279,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -67135,11 +64291,9 @@
layer = 4;
name = "E.X.P.E.R.I-MENTOR Camera Screen";
network = list("Telepad");
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -67154,7 +64308,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -67169,7 +64322,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -67214,15 +64366,12 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/structure/disposalpipe/trunk,
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"cso" = (
/obj/machinery/light/small{
dir = 1
@@ -67245,14 +64394,11 @@
layer = 4;
name = "Test Chamber Telescreen";
network = list("Toxins");
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"csr" = (
/obj/structure/grille,
/obj/structure/window/plasmareinforced{
@@ -67270,9 +64416,7 @@
opacity = 0
},
/turf/simulated/floor/plating,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"css" = (
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel/airless,
@@ -67332,11 +64476,9 @@
/obj/item/flashlight/lamp,
/obj/machinery/camera{
c_tag = "Blueshield's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/wood,
@@ -67393,15 +64535,13 @@
"csE" = (
/obj/machinery/camera{
c_tag = "NT Representative's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/table/wood,
/obj/machinery/photocopier/faxmachine/longrange{
department = "NT Representative's Office"
},
/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/wood,
@@ -67429,8 +64569,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -67442,13 +64581,11 @@
/obj/structure/disposalpipe/segment,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/camera{
c_tag = "Aft Primary Hallway 1";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -67460,7 +64597,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light,
@@ -67472,7 +64608,6 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/toxins/mixing)
@@ -67489,11 +64624,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/toxins/mixing)
@@ -67504,16 +64637,13 @@
},
/obj/structure/closet/firecloset,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"csO" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/structure/closet/firecloset,
@@ -67530,7 +64660,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -67543,8 +64672,8 @@
name = "Grid Power Monitoring Computer"
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/engine/controlroom)
"csR" = (
@@ -67553,7 +64682,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/window/plasmareinforced{
@@ -67576,18 +64704,15 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (WEST)";
+ dir = 8;
icon_state = "whitegreen";
- dir = 8
+ tag = "icon-whitegreen (WEST)"
},
/area/medical/virology)
"csT" = (
@@ -67595,7 +64720,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -67624,7 +64748,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -67635,12 +64758,10 @@
"csW" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -67661,12 +64782,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -67675,8 +64794,7 @@
"csY" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -67691,12 +64809,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -67704,8 +64820,7 @@
/area/medical/virology)
"cta" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -67715,12 +64830,10 @@
"ctb" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
@@ -67729,12 +64842,10 @@
/area/medical/virology)
"ctc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -67748,12 +64859,10 @@
/area/medical/virology)
"ctd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -67768,8 +64877,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
@@ -67803,12 +64911,10 @@
req_access_txt = "39"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -67822,12 +64928,10 @@
/area/medical/virology)
"ctg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -67891,7 +64995,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -67901,7 +65004,6 @@
pixel_x = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -67918,8 +65020,7 @@
"ctn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -67947,8 +65048,8 @@
dir = 10
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 10
+ dir = 10;
+ icon_state = "blue"
},
/area/medical/cmostore)
"ctq" = (
@@ -67999,7 +65100,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -68017,7 +65117,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -68048,7 +65147,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
@@ -68083,7 +65181,6 @@
"ctC" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -68134,8 +65231,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/table,
/obj/item/stack/cable_coil{
@@ -68160,16 +65256,13 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/window/northleft{
dir = 4;
- icon_state = "left";
name = "Engineering Desk";
- req_access_txt = "0";
req_one_access_txt = "11;24"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
@@ -68177,8 +65270,7 @@
/area/engine/controlroom)
"ctL" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/portable_atmospherics/pump,
/turf/simulated/floor/plasteel{
@@ -68212,9 +65304,7 @@
opacity = 0
},
/turf/simulated/floor/plating,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"ctP" = (
/obj/structure/grille,
/obj/structure/window/plasmareinforced{
@@ -68236,14 +65326,11 @@
},
/obj/item/radio/intercom,
/turf/simulated/floor/plating,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"ctQ" = (
/obj/machinery/door/window/southright{
name = "Toxins Launcher";
- req_access_txt = "7";
- req_one_access_txt = "0"
+ req_access_txt = "7"
},
/obj/machinery/door/window/southright{
dir = 1;
@@ -68258,9 +65345,7 @@
opacity = 0
},
/turf/simulated/floor/plating,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"ctR" = (
/turf/simulated/wall/r_wall,
/area/blueshield)
@@ -68280,9 +65365,6 @@
/area/hallway/primary/aft)
"ctT" = (
/obj/machinery/door/window/southleft{
- base_state = "left";
- dir = 2;
- icon_state = "left";
name = "Assembly Line Delivery";
req_access_txt = "32"
},
@@ -68329,7 +65411,6 @@
/obj/machinery/door/window/westright{
name = "Engineering Monitoring Station";
req_access = null;
- req_access_txt = "0";
req_one_access_txt = "11;24;34"
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -68344,15 +65425,13 @@
/area/maintenance/asmaint)
"cua" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j2";
+ dir = 2;
icon_state = "pipe-j2";
- dir = 2
+ tag = "icon-pipe-j2"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -68380,14 +65459,12 @@
/obj/item/pen,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (WEST)";
+ dir = 8;
icon_state = "whitegreen";
- dir = 8
+ tag = "icon-whitegreen (WEST)"
},
/area/medical/virology)
"cue" = (
@@ -68395,7 +65472,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -68416,7 +65492,6 @@
/obj/effect/decal/warning_stripes/northwestcorner,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28;
pixel_y = -28
},
@@ -68430,7 +65505,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -68441,13 +65515,12 @@
},
/obj/machinery/computer/security/engineering,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/engine/controlroom)
"cuj" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -68458,11 +65531,9 @@
icon_state = "pipe-c"
},
/obj/effect/decal/warning_stripes/yellow/partial{
- icon_state = "3";
dir = 4
},
/obj/effect/decal/warning_stripes/arrow{
- icon_state = "4";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -68470,7 +65541,6 @@
"cul" = (
/obj/structure/table/glass,
/obj/structure/reagent_dispensers/virusfood{
- pixel_x = 0;
pixel_y = -30
},
/obj/item/reagent_containers/syringe/antiviral,
@@ -68478,7 +65548,6 @@
/obj/item/reagent_containers/dropper/precision,
/obj/item/reagent_containers/spray/cleaner,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -68503,14 +65572,12 @@
id_tag = "viro_lab_airlock_control";
name = "Virology Lab Access Console";
pixel_x = 24;
- pixel_y = 0;
req_one_access_txt = "39";
tag_exterior_door = "viro_lab_airlock_exterior";
tag_interior_door = "viro_lab_airlock_interior"
},
/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -68533,7 +65600,6 @@
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -68554,7 +65620,6 @@
"cur" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/structure/closet/l3closet,
@@ -68582,9 +65647,7 @@
},
/obj/machinery/door/window/northleft{
dir = 4;
- icon_state = "left";
name = "Engineering Monitoring Station";
- req_access_txt = "0";
req_one_access_txt = "11;24"
},
/obj/effect/decal/warning_stripes/yellow,
@@ -68603,7 +65666,6 @@
/area/maintenance/asmaint)
"cuv" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -68635,12 +65697,11 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/closet/radiation,
/turf/simulated/floor/plasteel{
@@ -68653,7 +65714,6 @@
pixel_y = 25
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -68671,8 +65731,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
d2 = 4;
@@ -68706,13 +65765,12 @@
dir = 6
},
/obj/structure/sign/poster/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (SOUTHWEST)";
+ dir = 10;
icon_state = "whitegreen";
- dir = 10
+ tag = "icon-whitegreen (SOUTHWEST)"
},
/area/medical/virology)
"cuG" = (
@@ -68741,7 +65799,6 @@
dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -68749,7 +65806,6 @@
"cuJ" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/table,
@@ -68759,8 +65815,7 @@
},
/obj/item/pen,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -68817,7 +65872,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -68867,7 +65921,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -68885,7 +65938,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/firealarm{
@@ -68951,7 +66003,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -69052,7 +66103,6 @@
department = "Science";
departmentType = 2;
name = "Science Requests Console";
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/vending/plasmaresearch,
@@ -69062,7 +66112,6 @@
/area/toxins/mixing)
"cvf" = (
/obj/machinery/atmospherics/trinary/mixer{
- density = 0;
dir = 8;
req_access = null
},
@@ -69075,7 +66124,6 @@
dir = 4
},
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -69105,9 +66153,7 @@
id_tag = "toxinsdriver"
},
/turf/simulated/floor/plating,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"cvk" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
@@ -69142,9 +66188,7 @@
},
/obj/structure/fans/tiny,
/turf/simulated/floor/plating,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"cvs" = (
/obj/machinery/door/poddoor{
id_tag = "toxinsdriver";
@@ -69190,8 +66234,7 @@
/obj/item/flash,
/obj/item/flash,
/obj/machinery/ai_status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plating,
/area/storage/tech)
@@ -69200,14 +66243,12 @@
/area/storage/tech)
"cvy" = (
/obj/machinery/camera{
- c_tag = "Tech Storage";
- dir = 2;
- network = list("SS13")
+ c_tag = "Tech Storage"
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/structure/rack{
dir = 8;
@@ -69228,7 +66269,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plating,
@@ -69238,7 +66278,6 @@
dir = 1
},
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/turf/simulated/floor/plating,
@@ -69292,8 +66331,7 @@
/obj/machinery/camera{
c_tag = "Research Hallway South";
dir = 1;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -69311,13 +66349,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -69343,7 +66379,6 @@
"cvK" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -69359,24 +66394,21 @@
/obj/machinery/disposal,
/obj/machinery/camera{
c_tag = "Atmospherics Monitoring";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/engine/controlroom)
"cvN" = (
@@ -69427,14 +66459,12 @@
/obj/machinery/door_control{
id = "psychoffice";
name = "Privacy Shutters Control";
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/wood,
/area/medical/psych)
"cvS" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -69453,7 +66483,6 @@
/area/medical/surgery1)
"cvT" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -69465,7 +66494,6 @@
/obj/item/clothing/mask/gas,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -69502,7 +66530,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -69522,35 +66549,31 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/ai_status_display{
pixel_x = -32;
- pixel_y = 0;
step_size = 0
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (NORTHWEST)";
+ dir = 9;
icon_state = "whitegreen";
- dir = 9
+ tag = "icon-whitegreen (NORTHWEST)"
},
/area/medical/virology)
"cwb" = (
/obj/structure/closet/secure_closet/personal/patient,
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (NORTHEAST)";
+ dir = 5;
icon_state = "whitegreen";
- dir = 5
+ tag = "icon-whitegreen (NORTHEAST)"
},
/area/medical/virology)
"cwc" = (
/obj/machinery/camera{
- c_tag = "Virology Break Room";
- network = list("SS13")
+ c_tag = "Virology Break Room"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -69561,8 +66584,7 @@
"cwd" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
@@ -69574,27 +66596,23 @@
/area/medical/virology)
"cwe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (NORTHEAST)";
+ dir = 5;
icon_state = "whitegreen";
- dir = 5
+ tag = "icon-whitegreen (NORTHEAST)"
},
/area/medical/virology)
"cwf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -69604,16 +66622,15 @@
/area/medical/virology)
"cwg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (NORTHWEST)";
+ dir = 9;
icon_state = "whitegreen";
- dir = 9
+ tag = "icon-whitegreen (NORTHWEST)"
},
/area/medical/virology)
"cwh" = (
@@ -69624,12 +66641,10 @@
req_access_txt = "39"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "whitegreenfull";
@@ -69642,9 +66657,9 @@
dir = 10
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (NORTHEAST)";
+ dir = 5;
icon_state = "whitegreen";
- dir = 5
+ tag = "icon-whitegreen (NORTHEAST)"
},
/area/medical/virology)
"cwj" = (
@@ -69659,8 +66674,7 @@
"cwk" = (
/obj/machinery/disposal,
/obj/structure/sign/poster/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -69702,8 +66716,8 @@
req_access_txt = "40"
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/medical/cmostore)
"cwo" = (
@@ -69731,7 +66745,6 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreencorner"
},
/area/medical/research{
@@ -69753,21 +66766,19 @@
/area/toxins/explab)
"cwr" = (
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/table,
/obj/item/storage/box/pillbottles{
layer = 4
},
/obj/item/storage/box/bodybags{
- layer = 3;
pixel_x = 5;
pixel_y = 5
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/medical/cmostore)
"cws" = (
@@ -69784,8 +66795,8 @@
},
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/medical/cmostore)
"cwt" = (
@@ -69926,25 +66937,11 @@
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"cwL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/aft)
"cwM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -69961,21 +66958,21 @@
/area/storage/tech)
"cwP" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/storage/tech)
"cwQ" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
d2 = 8;
@@ -69983,9 +66980,9 @@
},
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plating,
/area/storage/tech)
@@ -70015,8 +67012,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -70024,8 +67020,8 @@
/area/medical/medbay2)
"cwU" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
d2 = 8;
@@ -70060,13 +67056,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -70078,40 +67072,32 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/genetics)
"cwZ" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Biohazard_medi";
- name = "Quarantine Lockdown";
- opacity = 0
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- name = "Medbay Maintenance";
- req_access_txt = "5"
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/radio/intercom/specops{
+ pixel_x = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint)
+/area/shuttle/specops)
"cxa" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/genetics)
@@ -70146,7 +67132,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -70177,8 +67162,8 @@
sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank")
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/engine/controlroom)
"cxh" = (
@@ -70200,7 +67185,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -70209,25 +67193,22 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = "";
name = "Staff Room";
- req_access_txt = "5";
- req_one_access_txt = "0"
+ req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria";
tag = "icon-cafeteria (NORTHEAST)"
},
/area/medical/medbay2)
"cxk" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -70235,9 +67216,8 @@
/area/construction)
"cxl" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
- dir = 4
+ dir = 4;
+ tag = "icon-bulb1 (EAST)"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -70246,7 +67226,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -70295,8 +67274,7 @@
/area/engine/controlroom)
"cxs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "whitegreenfull";
@@ -70309,9 +67287,9 @@
dir = 5
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (WEST)";
+ dir = 8;
icon_state = "whitegreen";
- dir = 8
+ tag = "icon-whitegreen (WEST)"
},
/area/medical/virology)
"cxu" = (
@@ -70320,9 +67298,9 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (EAST)";
+ dir = 4;
icon_state = "whitegreen";
- dir = 4
+ tag = "icon-whitegreen (EAST)"
},
/area/medical/virology)
"cxv" = (
@@ -70340,9 +67318,9 @@
"cxw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (WEST)";
+ dir = 8;
icon_state = "whitegreen";
- dir = 8
+ tag = "icon-whitegreen (WEST)"
},
/area/medical/virology)
"cxx" = (
@@ -70352,9 +67330,9 @@
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (EAST)";
+ dir = 4;
icon_state = "whitegreen";
- dir = 4
+ tag = "icon-whitegreen (EAST)"
},
/area/medical/virology)
"cxy" = (
@@ -70363,8 +67341,7 @@
/obj/item/flashlight/lamp/green,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/carpet,
/area/medical/psych)
@@ -70421,7 +67398,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -70444,21 +67420,20 @@
/obj/structure/bed,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (SOUTHWEST)";
+ dir = 10;
icon_state = "whitegreen";
- dir = 10
+ tag = "icon-whitegreen (SOUTHWEST)"
},
/area/medical/virology)
"cxG" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (SOUTHEAST)";
+ dir = 6;
icon_state = "whitegreen";
- dir = 6
+ tag = "icon-whitegreen (SOUTHEAST)"
},
/area/medical/virology)
"cxH" = (
@@ -70479,13 +67454,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/genetics)
@@ -70494,7 +67467,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/sign/securearea{
@@ -70513,9 +67485,9 @@
/obj/item/storage/box/donkpockets,
/obj/machinery/computer/med_data/laptop,
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (EAST)";
+ dir = 4;
icon_state = "whitegreen";
- dir = 4
+ tag = "icon-whitegreen (EAST)"
},
/area/medical/virology)
"cxM" = (
@@ -70530,7 +67502,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -70556,7 +67527,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -70582,7 +67552,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light/small{
@@ -70608,7 +67577,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -70624,7 +67592,6 @@
/area/maintenance/asmaint)
"cxU" = (
/obj/structure/sign/poster/contraband/random{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light/small{
@@ -70640,14 +67607,12 @@
/area/maintenance/asmaint2)
"cxW" = (
/obj/structure/sign/securearea{
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light{
@@ -70746,8 +67711,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
@@ -70792,7 +67756,6 @@
},
/obj/structure/closet/emcloset,
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/visible{
@@ -70829,9 +67792,9 @@
/area/storage/tech)
"cyr" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/structure/cable,
/obj/effect/spawner/window/reinforced,
@@ -70839,8 +67802,7 @@
/area/storage/tech)
"cys" = (
/obj/machinery/camera{
- c_tag = "Secure Tech Storage";
- dir = 2
+ c_tag = "Secure Tech Storage"
},
/obj/structure/cable{
d1 = 1;
@@ -70948,7 +67910,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light{
@@ -70976,7 +67937,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/junction{
@@ -71007,7 +67967,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -71023,13 +67982,12 @@
/obj/structure/table,
/obj/item/t_scanner,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/engine/controlroom)
"cyH" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -71041,7 +67999,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -71049,8 +68006,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -71067,7 +68023,6 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/carpet,
@@ -71115,7 +68070,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -71144,12 +68098,10 @@
"cyU" = (
/obj/item/twohanded/required/kirbyplants,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -71168,7 +68120,6 @@
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = -32;
step_size = 0
},
@@ -71177,9 +68128,9 @@
pixel_x = -24
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (SOUTHWEST)";
+ dir = 10;
icon_state = "whitegreen";
- dir = 10
+ tag = "icon-whitegreen (SOUTHWEST)"
},
/area/medical/virology)
"cyW" = (
@@ -71189,20 +68140,18 @@
pixel_y = 6
},
/obj/item/storage/secure/safe{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (SOUTHEAST)";
+ dir = 6;
icon_state = "whitegreen";
- dir = 6
+ tag = "icon-whitegreen (SOUTHEAST)"
},
/area/medical/virology)
"cyX" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -71210,9 +68159,9 @@
"cyY" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (SOUTHWEST)";
+ dir = 10;
icon_state = "whitegreen";
- dir = 10
+ tag = "icon-whitegreen (SOUTHWEST)"
},
/area/medical/virology)
"cyZ" = (
@@ -71223,13 +68172,12 @@
/obj/structure/bed,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (SOUTHEAST)";
+ dir = 6;
icon_state = "whitegreen";
- dir = 6
+ tag = "icon-whitegreen (SOUTHEAST)"
},
/area/medical/virology)
"czb" = (
@@ -71241,7 +68189,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/mob/living/simple_animal/mouse,
@@ -71262,7 +68209,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/remains/robot,
@@ -71329,7 +68275,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -71342,7 +68287,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark{
@@ -71389,8 +68333,8 @@
/obj/structure/rack,
/obj/item/storage/belt/utility,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/maintenance/asmaint)
"czv" = (
@@ -71398,7 +68342,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -71411,7 +68354,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark{
@@ -71431,7 +68373,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -71450,12 +68391,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -71477,8 +68416,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -71491,7 +68429,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -71507,8 +68444,6 @@
/area/hallway/primary/aft)
"czB" = (
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -71518,7 +68453,6 @@
"czC" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump Engineering";
pixel_y = -24;
shock_proof = 1
@@ -71528,10 +68462,7 @@
"czD" = (
/obj/machinery/camera{
c_tag = "Engineering Construction Area";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ dir = 8
},
/obj/structure/cable{
d1 = 1;
@@ -71560,7 +68491,6 @@
/area/maintenance/incinerator)
"czG" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -71586,11 +68516,9 @@
dir = 1
},
/obj/machinery/camera{
- c_tag = "Virology Module North";
- network = list("SS13")
+ c_tag = "Virology Module North"
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -71656,9 +68584,9 @@
/area/maintenance/incinerator)
"czR" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 4;
@@ -71712,7 +68640,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -71722,7 +68649,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -71735,12 +68661,9 @@
"czW" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -71800,13 +68723,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -71846,7 +68767,6 @@
"cAf" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -71879,7 +68799,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitegreen";
tag = "icon-whitehall (WEST)"
},
@@ -71898,8 +68817,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
@@ -71907,7 +68825,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "0";
req_one_access_txt = "11;24"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -71919,7 +68836,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -71949,7 +68865,6 @@
/area/construction)
"cAp" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -71964,8 +68879,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -72003,14 +68917,12 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner";
tag = "icon-whitebluecorner"
},
@@ -72024,19 +68936,17 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitebluecorner (WEST)";
+ dir = 8;
icon_state = "whitebluecorner";
- dir = 8
+ tag = "icon-whitebluecorner (WEST)"
},
/area/medical/medbay2)
"cAu" = (
@@ -72103,8 +69013,8 @@
/area/maintenance/asmaint)
"cAC" = (
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/maintenance/asmaint)
"cAD" = (
@@ -72134,7 +69044,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -72185,7 +69094,6 @@
/obj/machinery/requests_console{
department = "Tech Storage";
name = "Tech Storage Requests Console";
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plating,
@@ -72215,15 +69123,14 @@
/area/hallway/primary/aft)
"cAN" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -72253,9 +69160,7 @@
/area/toxins/misc_lab)
"cAR" = (
/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 0
- },
+/obj/machinery/recharger,
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -72268,7 +69173,6 @@
/obj/structure/table,
/obj/item/mounted/frame/apc_frame,
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -72310,8 +69214,7 @@
/area/medical/virology)
"cAZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/wall/r_wall,
/area/toxins/misc_lab)
@@ -72347,15 +69250,10 @@
},
/area/maintenance/incinerator)
"cBe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0;
- tag = ""
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc1"
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
+/area/shuttle/administration)
"cBf" = (
/obj/machinery/light/small{
dir = 8
@@ -72375,7 +69273,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/engine/insulated,
@@ -72456,8 +69353,7 @@
/area/maintenance/incinerator)
"cBo" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/apmaint)
@@ -72496,9 +69392,7 @@
dir = 8;
layer = 2.9
},
-/obj/item/circuitboard/cloning{
- pixel_x = 0
- },
+/obj/item/circuitboard/cloning,
/obj/item/circuitboard/med_data{
pixel_x = 3;
pixel_y = -3
@@ -72552,8 +69446,8 @@
"cBv" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/hallway/primary/aft)
"cBw" = (
@@ -72569,8 +69463,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/medical/psych)
@@ -72579,7 +69472,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
@@ -72596,8 +69488,8 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/medical/cmostore)
"cBz" = (
@@ -72605,8 +69497,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/medical/cmostore)
"cBA" = (
@@ -72640,9 +69532,9 @@
/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cBD" = (
@@ -72657,7 +69549,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -72699,8 +69590,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -72767,7 +69657,6 @@
/obj/machinery/light,
/obj/item/clothing/glasses/welding,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/maintenance/asmaint)
@@ -72779,14 +69668,12 @@
},
/obj/item/storage/toolbox,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/maintenance/asmaint)
"cBX" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/maintenance/asmaint)
@@ -72843,8 +69730,7 @@
"cCd" = (
/obj/structure/closet/bombcloset,
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -72864,9 +69750,7 @@
/obj/structure/closet/secure_closet/scientist,
/obj/machinery/camera{
c_tag = "Research Test Lab West";
- dir = 2;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -72874,16 +69758,15 @@
/area/toxins/misc_lab)
"cCg" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -72914,9 +69797,7 @@
on = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -72930,9 +69811,9 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cCk" = (
@@ -72941,9 +69822,9 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cCl" = (
@@ -72955,30 +69836,29 @@
on = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cCm" = (
/obj/machinery/chem_master,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cCn" = (
/obj/machinery/chem_heater,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cCo" = (
@@ -72986,14 +69866,12 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -73009,7 +69887,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/wall/r_wall,
@@ -73022,7 +69899,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/closet/emcloset,
@@ -73033,7 +69909,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -73055,14 +69930,12 @@
/area/toxins/test_area)
"cCv" = (
/obj/machinery/door/airlock/external{
- name = "Toxins Test Chamber";
- req_access_txt = "0"
+ name = "Toxins Test Chamber"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -73089,7 +69962,6 @@
layer = 3.1;
master_tag = "incinerator_access_control";
name = "Incinerator Airlock Control";
- pixel_x = 0;
pixel_y = -23
},
/turf/simulated/floor/engine/insulated,
@@ -73109,7 +69981,6 @@
command = "cycle_interior";
master_tag = "incinerator_access_control";
name = "Incinerator Airlock Control";
- pixel_x = 0;
pixel_y = -22
},
/turf/simulated/floor/engine/insulated,
@@ -73117,7 +69988,6 @@
"cCz" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel{
@@ -73146,7 +70016,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -73196,7 +70065,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -73206,7 +70074,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -73226,7 +70093,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "0";
req_one_access_txt = "11;24"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -73248,8 +70114,7 @@
/area/construction)
"cCL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -73260,8 +70125,8 @@
/area/construction)
"cCM" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable,
/obj/effect/spawner/window/reinforced,
@@ -73269,8 +70134,8 @@
/area/storage/tech)
"cCN" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
d2 = 8;
@@ -73299,7 +70164,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -73319,7 +70183,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -73331,8 +70194,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/wood,
/area/medical/psych)
@@ -73341,7 +70203,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -73370,13 +70231,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -73387,7 +70246,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -73409,7 +70267,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -73432,7 +70289,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -73448,7 +70304,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -73476,8 +70331,7 @@
"cDb" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -73488,8 +70342,7 @@
/area/toxins/misc_lab)
"cDc" = (
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -73550,7 +70403,6 @@
pixel_y = 27
},
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/turf/simulated/floor/plasteel{
@@ -73568,12 +70420,10 @@
/area/atmos)
"cDk" = (
/obj/machinery/camera{
- c_tag = "Atmospherics North-East";
- network = list("SS13")
+ c_tag = "Atmospherics North-East"
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/atmospherics/binary/volume_pump/on{
@@ -73589,14 +70439,13 @@
name = "Air To Distro"
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump Engineering";
- pixel_x = 0;
pixel_y = 24;
shock_proof = 1
},
@@ -73637,8 +70486,7 @@
"cDs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -73650,13 +70498,12 @@
"cDt" = (
/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cDu" = (
@@ -73691,7 +70538,6 @@
/obj/structure/disposalpipe/segment,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -73714,21 +70560,17 @@
"cDz" = (
/obj/machinery/camera{
c_tag = "Atmospherics Access";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/light{
dir = 8
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- tag = "icon-intact (SOUTHEAST)";
- icon_state = "intact";
- dir = 6
+ dir = 6;
+ tag = "icon-intact (SOUTHEAST)"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -73767,18 +70609,16 @@
name = "Scientist"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cDE" = (
/obj/machinery/hologram/holopad,
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = -32;
- req_access_txt = "0"
+ pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/hidden/universal{
dir = 4
@@ -73790,30 +70630,29 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cDG" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cDH" = (
/obj/machinery/chem_dispenser,
/obj/item/reagent_containers/glass/beaker/large,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cDI" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/computer/drone_control,
@@ -73854,7 +70693,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -73903,8 +70741,6 @@
pixel_y = 5
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -73935,7 +70771,6 @@
/obj/machinery/door_control{
id = "disvent";
name = "Incinerator Vent Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "12"
},
@@ -73969,7 +70804,6 @@
/area/storage/tech)
"cDZ" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/atmospherics/binary/pump{
@@ -74010,7 +70844,6 @@
tag = ""
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/table,
@@ -74025,8 +70858,7 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plating,
/area/storage/tech)
@@ -74083,20 +70915,18 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival";
- dir = 8
+ dir = 8;
+ icon_state = "arrival"
},
/area/hallway/primary/aft)
"cEj" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -74145,13 +70975,11 @@
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -74213,9 +71041,7 @@
"cEu" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -74230,9 +71056,7 @@
/area/engine/mechanic_workshop)
"cEw" = (
/obj/machinery/camera{
- c_tag = "Mechanic's Workshop West";
- dir = 2;
- network = list("SS13")
+ c_tag = "Mechanic's Workshop West"
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop)
@@ -74294,7 +71118,6 @@
/area/toxins/xenobiology)
"cEI" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -74308,7 +71131,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/mecha_part_fabricator/spacepod,
@@ -74340,35 +71162,31 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/camera{
- c_tag = "Mechanic's Workshop East";
- dir = 2;
- network = list("SS13")
+ c_tag = "Mechanic's Workshop East"
},
/obj/machinery/space_heater,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/engine/mechanic_workshop)
"cEN" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/engine/mechanic_workshop)
"cEO" = (
@@ -74377,7 +71195,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -74387,13 +71204,12 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/engine/mechanic_workshop)
"cEQ" = (
@@ -74401,7 +71217,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -74417,7 +71232,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -74448,7 +71262,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -74467,13 +71280,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/disposalpipe/segment{
@@ -74492,7 +71302,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -74510,9 +71319,9 @@
"cFb" = (
/obj/machinery/chem_master,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cFc" = (
@@ -74529,8 +71338,7 @@
"cFd" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/wall/r_wall,
/area/engine/mechanic_workshop)
@@ -74577,12 +71385,11 @@
},
/obj/machinery/portable_atmospherics/pump,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival";
- dir = 8
+ dir = 8;
+ icon_state = "arrival"
},
/area/hallway/primary/aft)
"cFi" = (
@@ -74618,9 +71425,7 @@
dir = 4
},
/obj/machinery/camera{
- c_tag = "Aft Primary Hallway 3";
- dir = 2;
- network = list("SS13")
+ c_tag = "Aft Primary Hallway 3"
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -74646,9 +71451,7 @@
dir = 4
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -74697,13 +71500,11 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "0";
req_one_access_txt = "11;24"
},
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- tag = "icon-intact (NORTHWEST)";
- icon_state = "intact";
- dir = 9
+ dir = 9;
+ tag = "icon-intact (NORTHWEST)"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -74734,16 +71535,15 @@
pixel_x = -24
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (WEST)";
+ dir = 8;
icon_state = "whitegreen";
- dir = 8
+ tag = "icon-whitegreen (WEST)"
},
/area/medical/virology)
"cFy" = (
@@ -74755,9 +71555,9 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (EAST)";
+ dir = 4;
icon_state = "whitegreen";
- dir = 4
+ tag = "icon-whitegreen (EAST)"
},
/area/medical/virology)
"cFz" = (
@@ -74787,7 +71587,6 @@
"cFC" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 2;
icon_state = "0-2"
},
@@ -74800,7 +71599,6 @@
master_tag = "xeno_airlock_control";
name = "Xenobiology Access Button";
pixel_x = -24;
- pixel_y = 0;
req_access_txt = "55"
},
/obj/structure/cable{
@@ -74830,7 +71628,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -74854,7 +71651,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/purple{
@@ -74873,7 +71669,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/purple{
@@ -74898,7 +71693,6 @@
department = "Science";
departmentType = 2;
name = "Science Requests Console";
- pixel_x = 0;
pixel_y = -30
},
/obj/structure/table,
@@ -74921,7 +71715,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/firealarm{
@@ -74996,8 +71789,7 @@
/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -75065,7 +71857,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -75090,9 +71881,9 @@
/obj/item/reagent_containers/glass/beaker/large,
/obj/item/reagent_containers/glass/beaker/large,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cFV" = (
@@ -75113,9 +71904,9 @@
},
/obj/structure/closet/secure_closet/research_reagents,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cFZ" = (
@@ -75125,7 +71916,6 @@
amount = 50
},
/obj/item/stack/sheet/mineral/plasma{
- amount = 1;
layer = 2.9
},
/obj/item/stack/sheet/glass{
@@ -75136,9 +71926,9 @@
/obj/item/storage/box/monkeycubes,
/obj/item/storage/box/pillbottles,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cGa" = (
@@ -75151,9 +71941,9 @@
/obj/item/reagent_containers/dropper/precision,
/obj/item/reagent_containers/dropper/precision,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cGb" = (
@@ -75162,8 +71952,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
@@ -75185,9 +71974,9 @@
/obj/structure/table/reinforced,
/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
+ dir = 5;
icon_state = "vault";
- dir = 5
+ tag = "icon-vault (NORTHEAST)"
},
/area/toxins/misc_lab)
"cGe" = (
@@ -75210,8 +71999,7 @@
"cGg" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -75255,7 +72043,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -75263,8 +72050,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
@@ -75302,8 +72088,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -75312,9 +72097,9 @@
/area/hallway/primary/aft)
"cGp" = (
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j2";
+ dir = 2;
icon_state = "pipe-j2";
- dir = 2
+ tag = "icon-pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -75352,20 +72137,18 @@
/area/engine/break_room)
"cGu" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/table,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"cGv" = (
/obj/machinery/camera{
- c_tag = "Atmospherics Control Room";
- network = list("SS13")
+ c_tag = "Atmospherics Control Room"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/table,
/obj/item/book/manual/atmospipes,
@@ -75375,7 +72158,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump Engineering";
- pixel_x = 0;
pixel_y = 24;
shock_proof = 1
},
@@ -75389,14 +72171,13 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (WEST)";
+ dir = 8;
icon_state = "whitegreen";
- dir = 8
+ tag = "icon-whitegreen (WEST)"
},
/area/medical/virology)
"cGx" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -75407,36 +72188,33 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (WEST)";
+ dir = 8;
icon_state = "whitegreen";
- dir = 8
+ tag = "icon-whitegreen (WEST)"
},
/area/medical/virology)
"cGy" = (
/obj/machinery/ai_status_display{
pixel_x = 32;
- pixel_y = 0;
step_size = 0
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (EAST)";
+ dir = 4;
icon_state = "whitegreen";
- dir = 4
+ tag = "icon-whitegreen (EAST)"
},
/area/medical/virology)
"cGz" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/effect/decal/warning_stripes/northwest,
@@ -75451,9 +72229,7 @@
/obj/structure/closet/emcloset,
/obj/machinery/camera{
c_tag = "Xenobiology Access";
- dir = 2;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
@@ -75470,8 +72246,7 @@
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -75481,7 +72256,6 @@
"cGC" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -75520,8 +72294,7 @@
/obj/machinery/door/window/westright{
name = "Mechanic's Desk";
req_access = null;
- req_access_txt = "70";
- req_one_access_txt = "0"
+ req_access_txt = "70"
},
/obj/machinery/cell_charger,
/turf/simulated/floor/plasteel{
@@ -75564,8 +72337,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
@@ -75582,16 +72354,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
"cGN" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
- tag = "icon-map (NORTH)";
- icon_state = "map";
- dir = 1
+ dir = 1;
+ tag = "icon-map (NORTH)"
},
/turf/simulated/wall,
/area/engine/controlroom)
@@ -75600,7 +72370,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -75611,7 +72380,6 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -75624,7 +72392,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -75633,8 +72400,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -75659,8 +72425,7 @@
/obj/structure/table,
/obj/item/camera,
/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -75668,8 +72433,7 @@
/area/storage/office)
"cGT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/cable{
d1 = 1;
@@ -75693,7 +72457,6 @@
/obj/effect/decal/warning_stripes/northeast,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -75703,7 +72466,6 @@
"cGW" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -75744,8 +72506,7 @@
"cGZ" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -75771,7 +72532,6 @@
icon_state = "2-8"
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 8;
icon_state = "0-8"
},
@@ -75784,10 +72544,8 @@
/area/engine/chiefs_office)
"cHb" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/computer/station_alert,
/obj/structure/cable/yellow{
@@ -75809,7 +72567,6 @@
scrub_Toxins = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -75870,7 +72627,6 @@
"cHj" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -75908,7 +72664,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -75960,15 +72715,14 @@
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/machinery/camera{
- c_tag = "Engineering Foyer";
- network = list("SS13")
+ c_tag = "Engineering Foyer"
},
/obj/structure/noticeboard{
pixel_y = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/engine/break_room)
"cHu" = (
@@ -76019,12 +72773,10 @@
/obj/structure/closet/l3closet/scientist,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
@@ -76138,8 +72890,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -76179,8 +72930,6 @@
/obj/machinery/camera{
c_tag = "Aft Primary Hallway 2";
dir = 8;
- network = list("SS13");
- pixel_x = 0;
pixel_y = -22
},
/obj/structure/disposalpipe/segment{
@@ -76248,9 +72997,8 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- tag = "icon-intact (NORTHWEST)";
- icon_state = "intact";
- dir = 9
+ dir = 9;
+ tag = "icon-intact (NORTHWEST)"
},
/turf/simulated/wall,
/area/engine/break_room)
@@ -76260,8 +73008,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -76270,9 +73017,9 @@
/area/engine/break_room)
"cHW" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whitegreen (WEST)";
+ dir = 8;
icon_state = "whitegreen";
- dir = 8
+ tag = "icon-whitegreen (WEST)"
},
/area/medical/virology/lab{
name = "\improper Virology Lobby"
@@ -76296,7 +73043,6 @@
sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank")
},
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/turf/simulated/floor/plasteel,
@@ -76352,7 +73098,6 @@
shock_proof = 1
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 8;
icon_state = "0-8"
},
@@ -76386,8 +73131,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/engine/break_room)
@@ -76407,8 +73151,8 @@
/area/atmos/control)
"cIj" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken7";
- icon_state = "wood-broken7"
+ icon_state = "wood-broken7";
+ tag = "icon-wood-broken7"
},
/area/maintenance/asmaint)
"cIk" = (
@@ -76418,8 +73162,8 @@
"cIl" = (
/obj/structure/chair/stool,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
- icon_state = "wood-broken3"
+ icon_state = "wood-broken3";
+ tag = "icon-wood-broken3"
},
/area/maintenance/asmaint)
"cIm" = (
@@ -76442,7 +73186,6 @@
/area/maintenance/asmaint)
"cIp" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -76511,7 +73254,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -76543,7 +73285,6 @@
dir = 4
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 8;
icon_state = "0-8"
},
@@ -76557,8 +73298,7 @@
/area/maintenance/asmaint)
"cIA" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/structure/cable{
d1 = 2;
@@ -76567,9 +73307,7 @@
tag = ""
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -76578,7 +73316,6 @@
/area/toxins/xenobiology)
"cIB" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -76622,7 +73359,6 @@
desc = "Used for watching the horrors within the test chamber.";
name = "Research Monitor";
network = list("TestChamber");
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -76690,7 +73426,6 @@
desc = "A remote control-switch for the pod doors.";
id = "mechpodbay";
name = "Pod Door Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "70"
},
@@ -76708,7 +73443,6 @@
desc = "A remote control-switch for the pod doors.";
id = "mechpodbayouter";
name = "Pod Door Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "70"
},
@@ -76724,8 +73458,7 @@
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -76734,13 +73467,11 @@
/area/toxins/xenobiology)
"cIO" = (
/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/shower{
- tag = "icon-shower (EAST)";
- icon_state = "shower";
- dir = 4
+ dir = 4;
+ tag = "icon-shower (EAST)"
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
@@ -76752,7 +73483,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -76809,7 +73539,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/trunk{
@@ -76840,8 +73569,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -76984,8 +73712,7 @@
icon_state = "door_locked";
locked = 1;
name = "Assembly Line (KEEP OUT)";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -77019,8 +73746,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
@@ -77036,9 +73762,9 @@
/area/maintenance/aft)
"cJo" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/structure/rack{
dir = 8;
@@ -77069,8 +73795,7 @@
/area/atmos/control)
"cJq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/engine/break_room)
@@ -77085,8 +73810,8 @@
/area/toxins/xenobiology)
"cJs" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken6";
- icon_state = "wood-broken6"
+ icon_state = "wood-broken6";
+ tag = "icon-wood-broken6"
},
/area/maintenance/asmaint)
"cJt" = (
@@ -77098,8 +73823,8 @@
/area/maintenance/asmaint)
"cJv" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken";
- icon_state = "wood-broken"
+ icon_state = "wood-broken";
+ tag = "icon-wood-broken"
},
/area/maintenance/asmaint)
"cJw" = (
@@ -77149,7 +73874,6 @@
/obj/item/paper/pamphlet,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/item/stack/tape_roll,
@@ -77223,7 +73947,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
@@ -77247,7 +73970,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/hologram/holopad,
@@ -77256,8 +73978,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/atmos/control)
@@ -77266,9 +73987,7 @@
pixel_x = -27
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/cable/yellow{
@@ -77283,7 +74002,6 @@
/obj/machinery/door_control{
id = "xenobio3";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -77294,7 +74012,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/southeast,
@@ -77312,7 +74029,6 @@
/area/toxins/xenobiology)
"cJM" = (
/obj/structure/sign/atmosplaque{
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/closet/secure_closet/atmos_personal,
@@ -77327,7 +74043,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -77416,8 +74131,7 @@
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/floor/plating/airless,
/area/engine/mechanic_workshop)
@@ -77442,8 +74156,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Mechanic Workshop";
- req_access_txt = "70";
- req_one_access_txt = "0"
+ req_access_txt = "70"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -77477,13 +74190,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -77517,7 +74228,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -77590,8 +74300,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -77599,12 +74308,10 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -77667,7 +74374,6 @@
/obj/machinery/door_control{
id = "xenobio7";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -77682,12 +74388,12 @@
/area/toxins/xenobiology)
"cKt" = (
/obj/machinery/embedded_controller/radio/airlock/access_controller{
- tag_exterior_door = "xeno_airlock_exterior";
id_tag = "xeno_airlock_control";
- tag_interior_door = "xeno_airlock_interior";
name = "Xenobiology Access Console";
pixel_x = 8;
- pixel_y = 22
+ pixel_y = 22;
+ tag_exterior_door = "xeno_airlock_exterior";
+ tag_interior_door = "xeno_airlock_interior"
},
/obj/machinery/light_switch{
pixel_x = -6;
@@ -77709,21 +74415,19 @@
/area/maintenance/asmaint)
"cKv" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (EAST)";
- icon_state = "wooden_chair_wings";
- dir = 4
+ dir = 4;
+ tag = "icon-wooden_chair_wings (EAST)"
},
/turf/simulated/floor/wood,
/area/maintenance/asmaint)
"cKw" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (WEST)";
- icon_state = "wooden_chair_wings";
- dir = 8
+ dir = 8;
+ tag = "icon-wooden_chair_wings (WEST)"
},
/turf/simulated/floor/wood{
- tag = "icon-wood-broken7";
- icon_state = "wood-broken7"
+ icon_state = "wood-broken7";
+ tag = "icon-wood-broken7"
},
/area/maintenance/asmaint)
"cKx" = (
@@ -77731,14 +74435,11 @@
department = "Science";
departmentType = 2;
name = "Science Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/camera{
c_tag = "Xenobiology Module North";
- dir = 2;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -77753,14 +74454,12 @@
icon_state = "0-8"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/effect/decal/warning_stripes/northwestcorner,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -77780,8 +74479,7 @@
department = "Atmospherics";
departmentType = 3;
name = "Atmospherics Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/simulated/floor/plasteel,
/area/atmos/control)
@@ -77832,7 +74530,6 @@
"cKH" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 2;
icon_state = "0-2"
},
@@ -77854,8 +74551,7 @@
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -77868,7 +74564,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -77897,7 +74592,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment,
@@ -77909,8 +74603,8 @@
"cKM" = (
/obj/item/kitchen/utensil/fork,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken";
- icon_state = "wood-broken"
+ icon_state = "wood-broken";
+ tag = "icon-wood-broken"
},
/area/maintenance/asmaint)
"cKN" = (
@@ -77947,8 +74641,8 @@
/area/toxins/xenobiology)
"cKS" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
- icon_state = "wood-broken3"
+ icon_state = "wood-broken3";
+ tag = "icon-wood-broken3"
},
/area/maintenance/asmaint)
"cKT" = (
@@ -78017,8 +74711,8 @@
opacity = 0
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/toxins/xenobiology)
@@ -78037,7 +74731,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/newscaster{
@@ -78070,7 +74763,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/trunk{
@@ -78115,9 +74807,7 @@
"cLj" = (
/obj/machinery/camera{
c_tag = "Research Test Chamber";
- dir = 2;
- network = list("TestChamber","SS13","Research");
- pixel_x = 0
+ network = list("TestChamber","SS13","Research")
},
/turf/simulated/floor/engine,
/area/toxins/test_chamber)
@@ -78157,9 +74847,7 @@
id = "Skynet_heavy"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/decal/warning_stripes/north,
@@ -78199,7 +74887,6 @@
/obj/machinery/door_control{
id = "mechpod";
name = "Mechanic's Inner Door Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "70"
},
@@ -78221,8 +74908,6 @@
"cLs" = (
/obj/machinery/light_switch{
name = "light switch ";
- dir = 2;
- pixel_x = 0;
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -78234,7 +74919,6 @@
"cLt" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/structure/window/reinforced{
@@ -78247,7 +74931,6 @@
/area/engine/mechanic_workshop)
"cLu" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/computer/rdconsole/mechanics,
@@ -78263,7 +74946,6 @@
/area/assembly/assembly_line)
"cLw" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
pixel_y = -28
},
/obj/structure/closet/secure_closet/atmos_personal,
@@ -78404,7 +75086,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -78417,7 +75098,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light/small,
@@ -78431,7 +75111,6 @@
/obj/machinery/door_control{
id = "xenobio2";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -78442,7 +75121,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/east,
@@ -78464,15 +75142,14 @@
"cLT" = (
/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
- icon_state = "arrival";
- dir = 4
+ dir = 4;
+ icon_state = "arrival"
},
/area/hallway/primary/aft)
"cLU" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -78511,15 +75188,14 @@
"cLY" = (
/obj/item/stack/sheet/wood,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken5";
- icon_state = "wood-broken5"
+ icon_state = "wood-broken5";
+ tag = "icon-wood-broken5"
},
/area/maintenance/asmaint)
"cLZ" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (WEST)";
- icon_state = "wooden_chair_wings";
- dir = 8
+ dir = 8;
+ tag = "icon-wooden_chair_wings (WEST)"
},
/turf/simulated/floor/wood,
/area/maintenance/asmaint)
@@ -78545,8 +75221,8 @@
dir = 4
},
/turf/simulated/floor/wood{
- tag = "icon-wood-broken7";
- icon_state = "wood-broken7"
+ icon_state = "wood-broken7";
+ tag = "icon-wood-broken7"
},
/area/maintenance/asmaint)
"cMc" = (
@@ -78683,7 +75359,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -78712,7 +75387,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/item/paper,
@@ -78734,7 +75408,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -78849,7 +75522,6 @@
/obj/machinery/door_control{
id = "xenobio4";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -78865,8 +75537,8 @@
"cML" = (
/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel{
- icon_state = "arrival";
- dir = 4
+ dir = 4;
+ icon_state = "arrival"
},
/area/hallway/primary/aft)
"cMM" = (
@@ -78892,8 +75564,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -78926,7 +75597,6 @@
"cMR" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -78954,7 +75624,6 @@
/area/toxins/xenobiology)
"cMT" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -78976,7 +75645,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -79081,8 +75749,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/spawner/random_spawners/oil_maybe,
/turf/simulated/floor/plating,
@@ -79122,7 +75789,6 @@
/obj/machinery/door_control{
id = "xenobio6";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -79139,8 +75805,8 @@
opacity = 0
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/toxins/xenobiology)
@@ -79154,18 +75820,6 @@
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
-"cNo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/xenobiology)
"cNp" = (
/obj/structure/cable{
d1 = 2;
@@ -79179,8 +75833,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -79189,7 +75842,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -79208,8 +75860,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -79226,8 +75877,8 @@
opacity = 0
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/toxins/xenobiology)
@@ -79260,8 +75911,8 @@
opacity = 0
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/toxins/xenobiology)
@@ -79312,16 +75963,15 @@
/area/maintenance/aft)
"cNE" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10;
- level = 2
+ dir = 10
},
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
"cNF" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/solar{
id = "portsolar";
@@ -79344,14 +75994,12 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -79387,7 +76035,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -79461,7 +76108,6 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -79478,7 +76124,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -79490,8 +76135,8 @@
/area/engine/break_room)
"cNV" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/smes/engineering,
/obj/effect/decal/warning_stripes/northwest,
@@ -79516,7 +76161,6 @@
dir = 4
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 8;
icon_state = "0-8"
},
@@ -79547,8 +76191,8 @@
/area/engine/engineering)
"cOb" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/smes/engineering,
/obj/effect/decal/warning_stripes/west,
@@ -79557,7 +76201,6 @@
"cOc" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/structure/disposalpipe/segment{
@@ -79565,7 +76208,6 @@
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
@@ -79646,8 +76288,7 @@
"cOk" = (
/obj/machinery/camera{
c_tag = "Atmospherics East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/atmospherics/binary/valve/digital{
color = "";
@@ -79659,8 +76300,7 @@
/area/atmos)
"cOl" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel,
@@ -79708,7 +76348,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -79728,7 +76367,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
@@ -79755,8 +76393,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -79783,7 +76420,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/engine,
@@ -79819,11 +76455,9 @@
/area/atmos/distribution)
"cOB" = (
/obj/effect/decal/warning_stripes/yellow/partial{
- icon_state = "3";
dir = 8
},
/obj/effect/decal/warning_stripes/arrow{
- icon_state = "4";
dir = 8
},
/obj/effect/decal/cleanable/dirt,
@@ -79838,7 +76472,6 @@
/area/maintenance/asmaint2)
"cOD" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/engine,
@@ -79849,11 +76482,9 @@
pixel_y = -24
},
/obj/effect/decal/warning_stripes/yellow/partial{
- icon_state = "3";
dir = 4
},
/obj/effect/decal/warning_stripes/arrow{
- icon_state = "4";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -79887,8 +76518,7 @@
"cOI" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Mix to Distro";
- on = 0
+ name = "Mix to Distro"
},
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
@@ -79900,7 +76530,6 @@
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -79913,7 +76542,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/navbeacon{
@@ -79979,8 +76607,7 @@
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Assembly Line East";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -80025,18 +76652,10 @@
/turf/simulated/wall/r_wall,
/area/atmos/distribution)
"cOX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s10"
},
-/turf/simulated/floor/plating,
-/area/maintenance/aft)
+/area/shuttle/administration)
"cOY" = (
/obj/structure/cable{
d1 = 4;
@@ -80046,18 +76665,15 @@
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel,
@@ -80114,8 +76730,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/spawner/random_spawners/grille_often,
/turf/simulated/floor/plating,
@@ -80129,8 +76744,8 @@
/area/maintenance/genetics)
"cPg" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/smes/engineering,
/obj/effect/decal/warning_stripes/southwest,
@@ -80141,7 +76756,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -80206,8 +76820,8 @@
opacity = 0
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/toxins/xenobiology)
@@ -80231,12 +76845,11 @@
"cPo" = (
/obj/machinery/camera{
c_tag = "Engineering Equipment West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/closet/secure_closet/engineering_personal,
/obj/machinery/power/apc{
@@ -80252,7 +76865,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -80270,8 +76882,7 @@
/obj/effect/decal/warning_stripes/red/hollow,
/obj/machinery/camera{
c_tag = "Atmospherics North-West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -80299,9 +76910,7 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -80315,7 +76924,6 @@
/obj/structure/table,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/effect/decal/cleanable/dirt,
@@ -80337,7 +76945,6 @@
/obj/item/pen,
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -80357,7 +76964,6 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/item/clothing/mask/gas,
@@ -80373,16 +76979,14 @@
"cPC" = (
/obj/machinery/power/tracker,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/lattice/catwalk,
/turf/space,
/area/solar/port)
"cPD" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
"cPE" = (
@@ -80435,8 +77039,8 @@
/area/solar/port)
"cPI" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -80457,8 +77061,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -80480,8 +77083,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
@@ -80502,11 +77104,9 @@
"cPP" = (
/obj/machinery/camera{
c_tag = "Engineering Equipment East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/engineeringcart,
@@ -80524,13 +77124,11 @@
"cPS" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -80575,10 +77173,7 @@
"cPX" = (
/obj/machinery/camera{
c_tag = "Engineering SMES";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ dir = 8
},
/obj/machinery/firealarm{
dir = 4;
@@ -80634,8 +77229,7 @@
/area/engine/engineering)
"cQe" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
@@ -80645,7 +77239,6 @@
dir = 1
},
/obj/machinery/meter{
- frequency = 1443;
id = "wloop_atm_meter";
name = "Waste Loop"
},
@@ -80659,7 +77252,6 @@
/area/atmos/distribution)
"cQg" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
@@ -80669,7 +77261,6 @@
/area/atmos/distribution)
"cQh" = (
/obj/machinery/meter{
- frequency = 1443;
id = "dloop_atm_meter";
name = "Distribution Loop"
},
@@ -80679,11 +77270,9 @@
"cQi" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 10;
- initialize_directions = 10;
- level = 2
+ initialize_directions = 10
},
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/turf/simulated/floor/plasteel,
@@ -80715,8 +77304,7 @@
opacity = 0
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/atmos/distribution)
@@ -80725,23 +77313,21 @@
/area/medical/virology)
"cQo" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6;
- level = 2
+ dir = 6
},
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
"cQp" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/space,
/area/space/nearstation)
"cQq" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -80840,7 +77426,6 @@
/area/toxins/xenobiology)
"cQB" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/smartfridge/secure/extract,
@@ -80863,9 +77448,7 @@
},
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = -32;
- req_access_txt = "0"
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -80877,14 +77460,12 @@
department = "Chief Engineer's Desk";
departmentType = 7;
name = "Chief Engineer Requests Console";
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light{
dir = 1
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -80942,7 +77523,6 @@
desc = "A remote control-switch for secure storage.";
id = "Secure Storage";
name = "Engineering Secure Storage";
- pixel_x = 0;
pixel_y = 24;
req_access_txt = "11"
},
@@ -81015,8 +77595,7 @@
department = "Engineering";
departmentType = 3;
name = "Engineering Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/item/stack/sheet/glass{
amount = 50
@@ -81031,7 +77610,6 @@
/area/engine/equipmentstorage)
"cQP" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -81054,15 +77632,14 @@
pixel_y = 19
},
/obj/item/reagent_containers/syringe/antiviral{
- pixel_x = 0;
pixel_y = 13
},
/obj/item/reagent_containers/syringe/antiviral{
pixel_y = 16
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 10
+ dir = 10;
+ icon_state = "blue"
},
/area/medical/cmostore)
"cQS" = (
@@ -81070,7 +77647,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -81078,8 +77654,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -81095,8 +77670,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -81122,19 +77696,16 @@
/area/engine/engineering)
"cQW" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -81146,7 +77717,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/purple{
@@ -81184,8 +77754,7 @@
"cRa" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/machinery/meter,
/turf/simulated/floor/plasteel,
@@ -81216,15 +77785,13 @@
},
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 10;
- initialize_directions = 10;
- level = 2
+ initialize_directions = 10
},
/turf/simulated/floor/plating,
/area/atmos/distribution)
"cRd" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump{
dir = 1;
@@ -81266,8 +77833,7 @@
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
name = "RADIOACTIVE AREA";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -81306,14 +77872,12 @@
"cRj" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Pure to Mix";
- on = 0
+ name = "Pure to Mix"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -81330,7 +77894,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -81435,8 +77998,8 @@
},
/obj/item/storage/firstaid/toxin,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/medical/cmostore)
"cRv" = (
@@ -81504,8 +78067,8 @@
opacity = 0
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/toxins/xenobiology)
@@ -81522,8 +78085,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -81535,7 +78097,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -81574,7 +78135,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -81588,8 +78148,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plating,
/area/maintenance/aft)
@@ -81620,8 +78179,7 @@
/obj/structure/table,
/obj/machinery/camera{
c_tag = "Assembly Line West";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -81659,7 +78217,6 @@
/obj/item/multitool,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -81675,8 +78232,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
@@ -81742,7 +78298,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/stack/rods{
@@ -81753,8 +78308,7 @@
"cRV" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
@@ -81780,14 +78334,12 @@
/obj/machinery/camera{
c_tag = "Xenobiology Module South";
dir = 4;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/obj/structure/table/reinforced,
/obj/machinery/door_control{
id = "xenobio1";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -81798,7 +78350,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/east,
@@ -81826,13 +78377,10 @@
/area/toxins/xenobiology)
"cSa" = (
/obj/machinery/camera{
- c_tag = "Engineering Equipment North";
- network = list("SS13")
+ c_tag = "Engineering Equipment North"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/vending/engivend,
@@ -81862,8 +78410,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -81887,17 +78434,15 @@
/area/toxins/xenobiology)
"cSi" = (
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- tag_airpump = "engineering_west_pump";
- tag_exterior_door = "engineering_west_outer";
- frequency = 1379;
id_tag = "engineering_west_airlock";
- tag_interior_door = "engineering_west_inner";
pixel_x = 25;
req_access_txt = "10;13";
- tag_chamber_sensor = "engineering_west_sensor"
+ tag_airpump = "engineering_west_pump";
+ tag_chamber_sensor = "engineering_west_sensor";
+ tag_exterior_door = "engineering_west_outer";
+ tag_interior_door = "engineering_west_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "engineering_west_sensor";
pixel_x = 25;
pixel_y = 12
@@ -81931,8 +78476,7 @@
/area/engine/engineering)
"cSm" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 1;
- level = 2
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
@@ -81946,19 +78490,16 @@
/area/atmos)
"cSo" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Air to Mix";
- on = 0
+ name = "Air to Mix"
},
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
"cSp" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -81976,18 +78517,14 @@
opacity = 0
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
- },
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/atmos/distribution)
"cSr" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
/turf/simulated/floor/plasteel{
@@ -81997,8 +78534,7 @@
/area/atmos/distribution)
"cSs" = (
/obj/machinery/camera{
- c_tag = "Atmospherics Waste Tank";
- network = list("SS13")
+ c_tag = "Atmospherics Waste Tank"
},
/turf/simulated/floor/engine{
name = "vacuum floor";
@@ -82049,7 +78585,6 @@
id = "Singularity";
name = "Singularity Blast Doors";
pixel_x = 25;
- pixel_y = 0;
req_access_txt = "10"
},
/obj/effect/decal/warning_stripes/northeastcorner,
@@ -82063,17 +78598,15 @@
/area/engine/engineering)
"cSy" = (
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- tag_airpump = "engineering_east_pump";
- tag_exterior_door = "engineering_east_outer";
- frequency = 1379;
id_tag = "engineering_east_airlock";
- tag_interior_door = "engineering_east_inner";
pixel_x = -25;
req_access_txt = "10;13";
- tag_chamber_sensor = "engineering_east_sensor"
+ tag_airpump = "engineering_east_pump";
+ tag_chamber_sensor = "engineering_east_sensor";
+ tag_exterior_door = "engineering_east_outer";
+ tag_interior_door = "engineering_east_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "engineering_east_sensor";
pixel_x = -25;
pixel_y = 12
@@ -82259,7 +78792,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -82278,7 +78810,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/sign/poster/official/random{
@@ -82308,8 +78839,7 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/portable_atmospherics/canister/air,
@@ -82329,9 +78859,7 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/power/smes{
- charge = 0
- },
+/obj/machinery/power/smes,
/turf/simulated/floor/plating,
/area/maintenance/portsolar)
"cSU" = (
@@ -82339,7 +78867,6 @@
/area/engine/engineering)
"cSV" = (
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/carpet,
@@ -82367,7 +78894,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -82380,7 +78906,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/computer/atmos_alert,
@@ -82395,8 +78920,8 @@
dir = 4
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/light/small{
dir = 1
@@ -82417,7 +78942,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plating,
@@ -82427,7 +78951,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -82448,7 +78971,6 @@
/area/engine/equipmentstorage)
"cTf" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
@@ -82489,7 +79011,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -82502,7 +79023,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/purple{
@@ -82513,7 +79033,6 @@
"cTl" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/portable_atmospherics/canister/air,
@@ -82532,12 +79051,9 @@
/turf/simulated/floor/plating/airless,
/area/engine/engineering)
"cTn" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
@@ -82579,9 +79095,7 @@
name = "Atmos Blast Door";
opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/atmos/distribution)
"cTs" = (
@@ -82620,8 +79134,8 @@
sensors = list("waste_sensor" = "Tank")
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/atmos/distribution)
"cTv" = (
@@ -82675,7 +79189,6 @@
state = 2
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 8;
icon_state = "0-8"
},
@@ -82730,7 +79243,6 @@
anchored = 1
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 8;
icon_state = "0-8"
},
@@ -82753,8 +79265,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -82796,8 +79307,8 @@
opacity = 0
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/toxins/xenobiology)
@@ -82828,8 +79339,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -82840,8 +79350,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
@@ -82850,7 +79359,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/table,
@@ -82869,7 +79377,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -82910,7 +79417,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/table,
@@ -82949,17 +79455,15 @@
/area/solar/starboard)
"cTX" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10;
- level = 2
+ dir = 10
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/effect/decal/cleanable/dirt,
@@ -82978,18 +79482,15 @@
id_tag = "robotics_solar_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- tag_airpump = "robotics_solar_pump";
- tag_exterior_door = "robotics_solar_outer";
- frequency = 1379;
id_tag = "robotics_solar_airlock";
- tag_interior_door = "robotics_solar_inner";
- pixel_x = 0;
pixel_y = -25;
req_access_txt = "13";
- tag_chamber_sensor = "robotics_solar_sensor"
+ tag_airpump = "robotics_solar_pump";
+ tag_chamber_sensor = "robotics_solar_sensor";
+ tag_exterior_door = "robotics_solar_outer";
+ tag_interior_door = "robotics_solar_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "robotics_solar_sensor";
pixel_x = 12;
pixel_y = -25
@@ -83028,8 +79529,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -83109,7 +79609,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -83140,15 +79639,12 @@
},
/obj/item/book/manual/engineering_singularity_safety,
/obj/machinery/camera{
- c_tag = "Engineering North-West";
- network = list("SS13")
+ c_tag = "Engineering North-West"
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cUk" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/table,
@@ -83215,8 +79711,7 @@
/area/engine/engineering)
"cUq" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/grille,
/obj/structure/cable/yellow{
@@ -83240,7 +79735,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -83254,7 +79748,6 @@
/area/engine/equipmentstorage)
"cUu" = (
/obj/machinery/keycard_auth{
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/table/reinforced,
@@ -83303,8 +79796,7 @@
/area/engine/chiefs_office)
"cUz" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -83324,7 +79816,6 @@
id = "Singularity";
name = "Singularity Blast Doors";
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "10"
},
/obj/structure/cable/yellow{
@@ -83348,8 +79839,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
@@ -83400,8 +79890,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -83457,13 +79946,11 @@
/area/space/nearstation)
"cUN" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Unfiltered to Mix";
- on = 0
+ name = "Unfiltered to Mix"
},
/turf/simulated/floor/plasteel,
/area/atmos/distribution)
@@ -83494,7 +79981,6 @@
/obj/machinery/door_control{
id = "xenobio5";
name = "Containment Blast Doors";
- pixel_x = 0;
pixel_y = 4;
req_access_txt = "55"
},
@@ -83524,8 +80010,8 @@
name = "Gas Mix Inlet Valve"
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 6
+ dir = 6;
+ icon_state = "green"
},
/area/atmos/distribution)
"cUT" = (
@@ -83573,8 +80059,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/structure/cable{
d1 = 1;
@@ -83609,7 +80094,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -83628,7 +80112,6 @@
id = "Singularity";
name = "Singularity Blast Doors";
pixel_x = 25;
- pixel_y = 0;
req_access_txt = "10"
},
/obj/effect/decal/warning_stripes/east,
@@ -83717,8 +80200,7 @@
"cVl" = (
/obj/machinery/power/solar_control{
id = "portsolar";
- name = "Aft Port Solar Control";
- track = 0
+ name = "Aft Port Solar Control"
},
/obj/structure/cable,
/turf/simulated/floor/plating,
@@ -83726,12 +80208,10 @@
"cVm" = (
/obj/machinery/camera{
c_tag = "Aft Port Solar Control";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump Engineering";
pixel_y = -24;
shock_proof = 1
@@ -83742,8 +80222,7 @@
/obj/structure/closet/wardrobe/black,
/obj/machinery/camera{
c_tag = "Aft Port Solar Access";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
@@ -83753,7 +80232,6 @@
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
name = "HIGH VOLTAGE";
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plating,
@@ -83763,7 +80241,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -83782,7 +80259,6 @@
id = "Singularity";
name = "Singularity Blast Doors";
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "10"
},
/obj/effect/decal/warning_stripes/northwestcorner,
@@ -83838,8 +80314,8 @@
name = "Civilian"
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/hallway/secondary/exit)
"cVu" = (
@@ -83863,9 +80339,7 @@
"cVv" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 0
+ pixel_x = -12
},
/obj/structure/mirror{
pixel_x = -28
@@ -83912,8 +80386,7 @@
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
name = "RADIOACTIVE AREA";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -83964,8 +80437,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -83992,8 +80464,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/disposal,
/obj/structure/sign/deathsposal{
@@ -84026,8 +80497,7 @@
"cVK" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
/turf/simulated/floor/plating,
@@ -84036,16 +80506,14 @@
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/obj/structure/sign/nosmoking_2,
/turf/simulated/floor/plating,
/area/atmos/distribution)
"cVM" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
@@ -84064,15 +80532,12 @@
"cVO" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/atmos/distribution)
"cVP" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 4;
level = 2
@@ -84082,8 +80547,7 @@
/area/atmos/distribution)
"cVQ" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -84099,8 +80563,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/atmos/distribution)
@@ -84164,9 +80627,7 @@
/turf/simulated/floor/plating,
/area/storage/secure)
"cVY" = (
-/obj/machinery/the_singularitygen{
- anchored = 0
- },
+/obj/machinery/the_singularitygen,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/storage/secure)
@@ -84229,8 +80690,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/hallway/secondary/exit)
"cWi" = (
@@ -84243,8 +80704,8 @@
opacity = 0
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/toxins/xenobiology)
@@ -84326,7 +80787,6 @@
/area/maintenance/asmaint)
"cWr" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 27
},
/turf/simulated/floor/plasteel{
@@ -84369,8 +80829,7 @@
/obj/item/toy/plushie/octopus,
/obj/machinery/camera{
c_tag = "Departure Lounge East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -84408,16 +80867,14 @@
/area/engine/engineering)
"cWz" = (
/obj/item/radio/intercom{
- name = "station intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/computer/monitor{
name = "Grid Power Monitoring Computer"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -84426,7 +80883,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -84437,15 +80893,12 @@
/area/engine/equipmentstorage)
"cWC" = (
/obj/structure/sign/poster/official/random{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cWD" = (
-/obj/structure/closet/secure_closet/engineering_chief{
- req_access_txt = "0"
- },
+/obj/structure/closet/secure_closet/engineering_chief,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -84466,12 +80919,10 @@
/area/engine/engineering)
"cWG" = (
/obj/machinery/door/window/southleft{
- tag = "icon-left (WEST)";
- name = "Bar Delivery";
- icon_state = "left";
dir = 8;
+ name = "Bar Delivery";
req_access_txt = "25";
- base_state = "left"
+ tag = "icon-left (WEST)"
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -84495,7 +80946,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -84529,7 +80979,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -84548,7 +80997,6 @@
dir = 1
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -84564,13 +81012,11 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -84600,9 +81046,7 @@
/turf/simulated/floor/beach/sand,
/area/hallway/secondary/exit)
"cWR" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/meter,
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -84620,7 +81064,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/binary/volume_pump/on{
@@ -84650,11 +81093,9 @@
"cWV" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel,
@@ -84662,28 +81103,22 @@
"cWW" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/machinery/meter,
/turf/simulated/floor/plasteel,
/area/atmos)
"cWX" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
/turf/simulated/floor/plasteel,
/area/atmos)
"cWY" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/machinery/meter,
/turf/simulated/floor/plasteel,
@@ -84692,20 +81127,16 @@
/turf/simulated/floor/engine/n20,
/area/atmos)
"cXa" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "N2O to Pure";
- on = 0
+ name = "N2O to Pure"
},
/turf/simulated/floor/plasteel,
/area/atmos)
"cXb" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 1;
- level = 2
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -84719,12 +81150,9 @@
opacity = 0
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
- },
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/atmos)
"cXd" = (
@@ -84734,8 +81162,8 @@
name = "N2O Outlet Valve"
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 5
+ dir = 5;
+ icon_state = "escape"
},
/area/atmos)
"cXe" = (
@@ -84756,7 +81184,6 @@
"cXf" = (
/obj/machinery/light,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel,
@@ -84767,7 +81194,6 @@
name = "Central Access"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/hallway/secondary/exit)
@@ -84812,7 +81238,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/southeastcorner,
@@ -84820,8 +81245,7 @@
/area/hallway/secondary/exit)
"cXm" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -84829,8 +81253,7 @@
"cXn" = (
/obj/machinery/camera{
c_tag = "Departure Lounge West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -84843,7 +81266,6 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -84860,9 +81282,9 @@
/area/hallway/secondary/exit)
"cXq" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 4;
@@ -84882,9 +81304,7 @@
/area/maintenance/asmaint)
"cXs" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -84922,7 +81342,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -84959,7 +81378,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/disposalpipe/segment{
@@ -84981,7 +81399,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -85034,8 +81451,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -85048,13 +81464,10 @@
"cXG" = (
/obj/machinery/camera{
c_tag = "Engineering Chief Engineer's Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/item/radio/intercom{
- name = "station intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
@@ -85078,9 +81491,7 @@
"cXI" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = -32;
- req_access_txt = "0"
+ pixel_y = -32
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
@@ -85102,8 +81513,8 @@
location = "Kitchen"
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/maintenance/fsmaint2)
"cXL" = (
@@ -85171,8 +81582,7 @@
/area/atmos)
"cXR" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/purple,
/turf/simulated/floor/plasteel,
@@ -85180,8 +81590,7 @@
"cXS" = (
/obj/machinery/camera{
c_tag = "Engineering West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/structure/dispenser,
/obj/structure/cable/yellow{
@@ -85194,21 +81603,16 @@
id = "Secure Storage";
name = "Engineering Secure Storage";
pixel_x = -24;
- pixel_y = 0;
req_access_txt = "56"
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cXT" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/turf/simulated/floor/plasteel,
/area/atmos)
"cXU" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/simulated/floor/plasteel,
/area/atmos)
"cXV" = (
@@ -85219,31 +81623,27 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
"cXW" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 9;
- level = 2
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/atmos)
"cXX" = (
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Mix to Port";
- on = 0
+ name = "Mix to Port"
},
/turf/simulated/floor/plasteel,
/area/atmos)
"cXY" = (
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Air to Port";
- on = 0
+ name = "Air to Port"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -85256,8 +81656,7 @@
"cYa" = (
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Pure to Port";
- on = 0
+ name = "Pure to Port"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -85270,9 +81669,7 @@
name = "Atmos Blast Door";
opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/atmos)
"cYc" = (
@@ -85284,8 +81681,8 @@
sensors = list("n2o_sensor" = "Tank")
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 4
+ dir = 4;
+ icon_state = "escape"
},
/area/atmos)
"cYd" = (
@@ -85341,8 +81738,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -85529,12 +81925,10 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -85560,8 +81954,7 @@
"cYF" = (
/obj/structure/closet/radiation,
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
@@ -85575,7 +81968,6 @@
/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -85628,7 +82020,6 @@
/obj/effect/decal/warning_stripes/white/hollow,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light,
@@ -85651,8 +82042,7 @@
"cYP" = (
/obj/machinery/camera{
c_tag = "Central Hallway West";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/structure/cable{
d1 = 1;
@@ -85678,8 +82068,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -85696,8 +82085,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -85761,7 +82149,6 @@
/obj/machinery/door_control{
id = "stationawaygate";
name = "Gateway Shutters Access Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "62"
},
@@ -85779,14 +82166,12 @@
"cZc" = (
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/atmos)
"cZd" = (
/obj/machinery/atmospherics/trinary/filter{
- density = 0;
dir = 1;
filter_type = 4;
name = "Gas filter (N2O tank)";
@@ -85804,20 +82189,16 @@
opacity = 0
},
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
- },
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/atmos)
"cZf" = (
/obj/machinery/camera{
c_tag = "Engineering Particle Accelerator";
- dir = 2;
- pixel_x = 23;
- network = list("Singularity","SS13")
+ network = list("Singularity","SS13");
+ pixel_x = 23
},
/obj/machinery/light{
dir = 1
@@ -85839,19 +82220,17 @@
/area/engine/engineering)
"cZg" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/atmos)
"cZh" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/space,
/area/space/nearstation)
@@ -85868,8 +82247,7 @@
/area/atmos)
"cZj" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/structure/cable{
d1 = 1;
@@ -85892,8 +82270,7 @@
"cZl" = (
/obj/structure/closet/radiation,
/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/obj/machinery/light/small{
dir = 8
@@ -86123,7 +82500,6 @@
/obj/machinery/vending/snack,
/obj/machinery/ai_status_display{
pixel_x = 32;
- pixel_y = 0;
step_size = 0
},
/turf/simulated/floor/plasteel,
@@ -86167,8 +82543,7 @@
/area/engine/engineering)
"cZP" = (
/obj/machinery/camera{
- c_tag = "Engineering East";
- network = list("SS13")
+ c_tag = "Engineering East"
},
/obj/machinery/computer/security/telescreen{
desc = "Used for watching the singularity chamber.";
@@ -86176,7 +82551,6 @@
layer = 4;
name = "Singularity Engine Telescreen";
network = list("Singularity");
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel,
@@ -86222,10 +82596,7 @@
/turf/simulated/wall/r_wall,
/area/atmos)
"cZT" = (
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "purple"
@@ -86243,15 +82614,13 @@
icon_state = "0-8"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -86273,9 +82642,7 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"cZZ" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/unary/portables_connector{
dir = 4
},
@@ -86285,13 +82652,9 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/plasteel,
@@ -86317,7 +82680,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -86340,14 +82702,12 @@
/obj/machinery/requests_console{
department = "EVA";
name = "EVA Requests Console";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -86361,12 +82721,9 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"dah" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -86396,8 +82753,7 @@
"dak" = (
/obj/machinery/camera{
c_tag = "Departure Lounge South";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -86415,7 +82771,6 @@
/area/engine/engineering)
"dam" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel,
@@ -86438,14 +82793,12 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "EVA";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -86457,9 +82810,9 @@
/area/escapepodbay)
"dau" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc{
dir = 4;
@@ -86501,8 +82854,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -86535,8 +82887,7 @@
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/floor/plating/airless,
/area/escapepodbay)
@@ -86544,8 +82895,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -86634,8 +82984,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/maintenance/storage)
@@ -86688,8 +83037,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -86704,8 +83052,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -86721,13 +83068,10 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"daW" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "Plasma to Pure";
- on = 0
+ name = "Plasma to Pure"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -86738,8 +83082,7 @@
/area/maintenance/asmaint)
"daY" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8;
- level = 2
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -86750,16 +83093,15 @@
pixel_x = -25
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel,
/area/escapepodbay)
"dba" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,
/turf/space,
@@ -86787,8 +83129,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -86863,8 +83204,7 @@
/area/maintenance/genetics)
"dbo" = (
/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/turf/simulated/floor/plasteel,
/area/escapepodbay)
@@ -86908,8 +83248,7 @@
},
/obj/machinery/camera{
c_tag = "Engineering Secure Storage North";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/floodlight,
/turf/simulated/floor/plating,
@@ -86940,8 +83279,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -86955,7 +83293,6 @@
/area/maintenance/genetics)
"dbx" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -86969,8 +83306,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/maintenance/storage)
@@ -86985,8 +83321,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -86996,8 +83331,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -87009,8 +83343,7 @@
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
name = "RADIOACTIVE AREA";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/wall/r_wall,
/area/engine/engineering)
@@ -87043,12 +83376,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -87076,8 +83407,7 @@
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
name = "RADIOACTIVE AREA";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plating,
/area/engine/engineering)
@@ -87106,8 +83436,7 @@
"dbK" = (
/obj/machinery/camera{
c_tag = "Atmospherics West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plasteel,
@@ -87130,8 +83459,7 @@
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -87170,8 +83498,8 @@
state = 2
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/camera/emp_proof{
c_tag = "Engineering Singularity East";
@@ -87246,8 +83574,8 @@
/area/space/nearstation)
"dcb" = (
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/hallway/primary/central/north)
"dcc" = (
@@ -87257,8 +83585,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -87274,12 +83601,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -87288,9 +83613,9 @@
anchored = 1
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
@@ -87308,8 +83633,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -87346,7 +83670,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -87377,8 +83700,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -87443,7 +83765,6 @@
/area/maintenance/turbine)
"dcx" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/obj/structure/cable{
@@ -87452,8 +83773,7 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -87475,8 +83795,7 @@
"dcA" = (
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
@@ -87524,8 +83843,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -87541,8 +83859,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/light{
dir = 1
@@ -87585,7 +83902,6 @@
/area/storage/secure)
"dcO" = (
/obj/machinery/atmospherics/trinary/filter{
- density = 0;
dir = 1;
name = "Gas filter (Toxins tank)";
on = 1
@@ -87618,8 +83934,7 @@
"dcS" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
/turf/space,
@@ -87667,7 +83982,13 @@
/turf/simulated/floor/plating,
/area/quartermaster/storage)
"dcZ" = (
-/obj/machinery/bodyscanner,
+/obj/structure/table/glass,
+/obj/item/circular_saw,
+/obj/item/surgicaldrill,
+/obj/item/clothing/gloves/color/latex/nitrile,
+/obj/structure/sink{
+ dir = 1
+ },
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
@@ -87766,8 +84087,7 @@
"ddl" = (
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/machinery/meter,
/obj/machinery/light{
@@ -87828,8 +84148,7 @@
"ddt" = (
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Port to Filter";
- on = 0
+ name = "Port to Filter"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -87875,8 +84194,7 @@
"ddx" = (
/obj/machinery/camera{
c_tag = "Atmospherics Central";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -87924,7 +84242,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -87954,7 +84271,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -87993,8 +84309,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -88018,8 +84333,7 @@
/area/solar/starboard)
"ddO" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -88057,7 +84371,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -88077,8 +84390,8 @@
/area/engine/engineering)
"ddT" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -88100,7 +84413,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -88140,8 +84452,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -88151,8 +84462,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -88176,8 +84486,8 @@
/area/atmos)
"ded" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -88187,7 +84497,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -88240,13 +84549,10 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"dej" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "CO2 to Pure";
- on = 0
+ name = "CO2 to Pure"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -88257,15 +84563,14 @@
name = "CO2 Outlet Valve"
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/atmos)
"del" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
/turf/space,
@@ -88334,8 +84639,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -88344,8 +84648,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/maintenance/turbine)
@@ -88373,9 +84676,7 @@
/area/maintenance/turbine)
"dex" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/door/poddoor{
@@ -88436,8 +84737,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -88445,8 +84745,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/simulated/wall/r_wall,
/area/maintenance/starboardsolar)
@@ -88466,7 +84765,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -88503,16 +84801,13 @@
opacity = 0
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
@@ -88551,8 +84846,8 @@
/area/maintenance/starboardsolar)
"deO" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 6
@@ -88574,23 +84869,21 @@
"deQ" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/turf/simulated/floor/plasteel,
/area/atmos)
"deR" = (
/obj/machinery/atmospherics/binary/pump{
dir = 4;
- name = "N2 to Pure";
- on = 0
+ name = "N2 to Pure"
},
/turf/simulated/floor/plasteel,
/area/atmos)
"deS" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
@@ -88621,8 +84914,8 @@
sensors = list("co2_sensor" = "Tank")
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/atmos)
"deW" = (
@@ -88652,9 +84945,7 @@
/turf/simulated/floor/engine/co2,
/area/atmos)
"deZ" = (
-/obj/machinery/power/smes{
- charge = 0
- },
+/obj/machinery/power/smes,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -88674,8 +84965,7 @@
/obj/structure/chair/stool,
/obj/machinery/camera{
c_tag = "Aft Starboard Solar Control";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/starboardsolar)
@@ -88693,8 +84983,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -88727,7 +85016,6 @@
/area/maintenance/asmaint2)
"dfj" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/obj/structure/cable{
@@ -88766,16 +85054,13 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
/area/maintenance/starboardsolar)
"dfm" = (
/obj/machinery/door/airlock/external{
- aiControlDisabled = 0;
frequency = 1379;
- hackProof = 0;
icon_state = "door_locked";
id_tag = "atmospherics_south_outer";
locked = 1;
@@ -88787,12 +85072,11 @@
"dfn" = (
/obj/machinery/power/solar_control{
id = "starboardsolar";
- name = "Aft Starboard Solar Control";
- track = 0
+ name = "Aft Starboard Solar Control"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/maintenance/starboardsolar)
@@ -88806,7 +85090,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -88848,7 +85131,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/airlock/external{
@@ -88868,21 +85150,18 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- tag_airpump = "solar_xeno_pump";
- tag_exterior_door = "solar_xeno_outer";
- frequency = 1379;
id_tag = "solar_xeno_airlock";
- tag_interior_door = "solar_xeno_inner";
pixel_x = 25;
req_access_txt = "13";
- tag_chamber_sensor = "solar_xeno_sensor"
+ tag_airpump = "solar_xeno_pump";
+ tag_chamber_sensor = "solar_xeno_sensor";
+ tag_exterior_door = "solar_xeno_outer";
+ tag_interior_door = "solar_xeno_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "solar_xeno_sensor";
pixel_x = 25;
pixel_y = 12
@@ -88913,7 +85192,6 @@
/area/engine/engineering)
"dfA" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/structure/transit_tube{
@@ -88925,15 +85203,12 @@
},
/area/maintenance/storage)
"dfB" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
/turf/simulated/floor/plasteel,
/area/atmos)
"dfC" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel{
@@ -88948,9 +85223,7 @@
/area/maintenance/storage)
"dfE" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/transit_tube/station,
@@ -88963,28 +85236,24 @@
/area/maintenance/storage)
"dfF" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
"dfG" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/meter,
/turf/simulated/floor/plasteel,
/area/atmos)
"dfH" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "O2 to Pure";
- on = 0
+ name = "O2 to Pure"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -88995,15 +85264,12 @@
node1_concentration = 0.8;
node2_concentration = 0.2;
on = 1;
- pixel_x = 0;
- pixel_y = 0;
target_pressure = 4500
},
/turf/simulated/floor/plasteel,
/area/atmos)
"dfJ" = (
/obj/machinery/atmospherics/trinary/filter{
- density = 0;
dir = 1;
filter_type = 3;
name = "Gas filter (CO2 tank)";
@@ -89014,8 +85280,7 @@
"dfK" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 10;
- initialize_directions = 10;
- level = 2
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -89032,8 +85297,7 @@
/area/maintenance/asmaint)
"dfN" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -89058,8 +85322,6 @@
"dfQ" = (
/obj/machinery/light_switch{
name = "light switch ";
- dir = 2;
- pixel_x = 0;
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -89080,7 +85342,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/airlock/external{
@@ -89104,7 +85365,6 @@
/obj/structure/grille,
/obj/structure/window/reinforced/tinted{
dir = 8;
- icon_state = "twindow";
tag = ""
},
/obj/structure/window/reinforced/tinted{
@@ -89112,7 +85372,6 @@
},
/obj/structure/window/reinforced/tinted{
dir = 4;
- icon_state = "twindow";
tag = ""
},
/obj/structure/window/reinforced/tinted,
@@ -89140,8 +85399,8 @@
/area/maintenance/storage)
"dgd" = (
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 6
+ dir = 6;
+ icon_state = "blue"
},
/area/maintenance/storage)
"dge" = (
@@ -89157,9 +85416,7 @@
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
"dgg" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plasteel,
/area/atmos)
"dgh" = (
@@ -89183,7 +85440,6 @@
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
frequency = 1450;
id_tag = "dorms_maint";
- pixel_x = 0;
pixel_y = -25;
req_access_txt = "13";
tag_airpump = "dorms_pump";
@@ -89203,7 +85459,6 @@
dir = 1
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -89236,8 +85491,7 @@
"dgr" = (
/obj/machinery/camera{
c_tag = "Atmospherics South-West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/light{
dir = 8
@@ -89261,8 +85515,7 @@
"dgt" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/machinery/meter,
/turf/simulated/floor/plasteel,
@@ -89294,9 +85547,8 @@
},
/turf/simulated/floor/plating,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f6";
icon_state = "swall_f6";
- dir = 2
+ tag = "icon-swall_f6"
},
/area/shuttle/pod_4)
"dgE" = (
@@ -89309,9 +85561,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall/r_wall,
/area/maintenance/storage)
@@ -89322,7 +85572,6 @@
/obj/structure/table/wood,
/obj/item/reagent_containers/food/drinks/mug,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -89337,27 +85586,30 @@
/area/maintenance/storage)
"dgJ" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
"dgK" = (
-/obj/effect/spawner/lootdrop/trade_sol/sec,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
+/obj/structure/closet{
+ icon_closed = "yellow";
+ icon_state = "yellow";
+ name = "Engineering gear"
+ },
+/obj/effect/spawner/lootdrop/trade_sol/eng{
+ loot = list(/obj/item/pickaxe/drill/jackhammer = 50, /obj/item/storage/belt/utility/chief/full = 50, /obj/item/clothing/glasses/welding = 50, /obj/item/storage/belt/utility/full/multitool = 50, /obj/item/clothing/shoes/magboots = 50, /obj/item/rcd/combat = 50, /obj/item/rpd/bluespace = 50, /obj/item/tank/emergency_oxygen/double/full = 50, /obj/item/storage/backpack/holding = 50, /obj/item/clothing/glasses/meson/night = 50, /obj/item/clothing/glasses/material = 50, /obj/item/grenade/clusterbuster/metalfoam = 50, /obj/item/crowbar/power = 50, /obj/item/screwdriver/power = 50, /obj/item/t_scanner/extended_range = 50, /obj/item/borg/upgrade/abductor_engi = 50);
+ lootcount = 8;
+ name = "8. Eng. gear"
+ },
+/turf/simulated/floor/wood,
/area/shuttle/trade/sol)
"dgL" = (
-/obj/effect/spawner/lootdrop/trade_sol/eng,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
+/turf/simulated/floor/carpet/black,
/area/shuttle/trade/sol)
"dgM" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/atmospherics/pipe/simple/visible/purple{
@@ -89367,7 +85619,6 @@
/area/atmos)
"dgN" = (
/obj/machinery/atmospherics/trinary/filter{
- density = 0;
dir = 4;
filter_type = 2;
name = "Gas filter (N2 tank)";
@@ -89377,34 +85628,26 @@
/area/atmos)
"dgO" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- level = 2
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/turf/simulated/floor/plasteel,
/area/atmos)
"dgP" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
- },
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plasteel,
/area/atmos)
"dgQ" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
"dgR" = (
/obj/machinery/atmospherics/trinary/filter{
- density = 0;
dir = 4;
filter_type = 1;
name = "Gas filter (O2 tank)";
@@ -89431,8 +85674,7 @@
/area/maintenance/port)
"dgV" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 9;
- level = 2
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -89446,8 +85688,7 @@
opacity = 0
},
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 9;
- level = 2
+ dir = 9
},
/turf/simulated/floor/plating,
/area/atmos)
@@ -89474,14 +85715,12 @@
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
"dhb" = (
-/obj/machinery/flasher{
- id = "soltraderflash";
- pixel_y = -28
- },
/obj/structure/chair/comfy/shuttle{
dir = 8
},
-/turf/simulated/shuttle/floor,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
/area/shuttle/trade/sol)
"dhc" = (
/obj/structure/lattice,
@@ -89489,11 +85728,9 @@
/turf/space,
/area/space/nearstation)
"dhe" = (
-/obj/machinery/computer/shuttle/trade/sol,
/obj/machinery/door_control{
- id = "soltrader_south";
+ id = "soltradeship_south";
name = "Trade Deposits Door";
- normaldoorcontrol = 1;
pixel_x = 24;
pixel_y = 8;
req_access_txt = "160"
@@ -89503,7 +85740,14 @@
pixel_x = 24;
pixel_y = -8
},
-/turf/simulated/shuttle/floor,
+/obj/machinery/door_control{
+ id = "trader_privacy";
+ name = "Privacy Shutters Control";
+ pixel_x = 24;
+ req_access_txt = "160"
+ },
+/obj/item/flag/species/human,
+/turf/simulated/floor/wood,
/area/shuttle/trade/sol)
"dhf" = (
/obj/structure/closet/radiation,
@@ -89511,7 +85755,7 @@
/area/storage/secure)
"dhg" = (
/turf/simulated/shuttle/wall{
- icon_state = "swallc3"
+ icon_state = "swall4"
},
/area/shuttle/trade/sol)
"dhh" = (
@@ -89528,16 +85772,15 @@
req_access_txt = "160";
security_level = 6
},
-/turf/simulated/shuttle/floor,
+/turf/simulated/floor/wood,
/area/shuttle/trade/sol)
"dhi" = (
-/obj/effect/spawner/lootdrop/trade_sol/largeitem,
-/turf/simulated/shuttle/floor,
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/wood,
/area/shuttle/trade/sol)
"dhj" = (
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -89557,27 +85800,29 @@
/area/maintenance/asmaint)
"dhl" = (
/obj/machinery/light/spot,
-/obj/effect/spawner/lootdrop/trade_sol/serv,
-/obj/structure/closet,
-/turf/simulated/shuttle/floor,
+/obj/effect/spawner/lootdrop/trade_sol/largeitem{
+ loot = list(/obj/machinery/floodlight = 50, /obj/machinery/disco = 50, /obj/mecha/combat/durand/old = 50, /obj/machinery/snow_machine = 50);
+ name = "3. Large item"
+ },
+/turf/simulated/floor/wood,
/area/shuttle/trade/sol)
"dhm" = (
-/obj/effect/spawner/lootdrop/trade_sol/vehicle,
-/turf/simulated/shuttle/floor,
+/obj/effect/spawner/lootdrop/trade_sol/vehicle{
+ loot = list(/obj/vehicle/motorcycle = 50, /obj/vehicle/snowmobile/key = 50, /obj/vehicle/snowmobile/blue/key = 50, /obj/vehicle/space/speedbike/red = 50, /obj/vehicle/space/speedbike = 50);
+ name = "4. Vehicle"
+ },
+/turf/simulated/floor/wood,
/area/shuttle/trade/sol)
"dhn" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall13";
- dir = 2
+ icon_state = "swall13"
},
/area/shuttle/trade/sol)
"dho" = (
/obj/machinery/camera/emp_proof{
c_tag = "Engineering Singularity North-West";
- dir = 2;
network = list("Singularity","SS13");
- pixel_x = 20;
- pixel_y = 0
+ pixel_x = 20
},
/obj/machinery/power/grounding_rod{
anchored = 1
@@ -89598,9 +85843,6 @@
"dhq" = (
/obj/machinery/light,
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/structure/chair/wood{
@@ -89618,23 +85860,21 @@
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 4
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"dhs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 1
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"dht" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -89652,8 +85892,7 @@
"dhu" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/structure/cable{
d1 = 4;
@@ -89671,7 +85910,6 @@
"dhv" = (
/obj/machinery/camera/emp_proof{
c_tag = "Engineering Singularity North-East";
- dir = 2;
network = list("Singularity","SS13")
},
/obj/machinery/power/grounding_rod{
@@ -89681,8 +85919,7 @@
/area/engine/engineering)
"dhw" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -89725,17 +85962,15 @@
output_tag = "n2_out";
sensors = list("n2_sensor" = "Tank")
},
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/simulated/floor/plasteel{
icon_state = "red"
},
/area/atmos)
"dhB" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/atmos)
"dhC" = (
@@ -89743,8 +85978,8 @@
name = "Nitrogen Outlet Valve"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
+ dir = 6;
+ icon_state = "red"
},
/area/atmos)
"dhD" = (
@@ -89761,12 +85996,10 @@
},
/area/atmos)
"dhE" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 10
+ dir = 10;
+ icon_state = "blue"
},
/area/atmos)
"dhF" = (
@@ -89774,8 +86007,8 @@
name = "Oxygen Outlet Valve"
},
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 6
+ dir = 6;
+ icon_state = "blue"
},
/area/atmos)
"dhG" = (
@@ -89792,12 +86025,10 @@
},
/area/atmos)
"dhH" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plasteel{
- icon_state = "arrival";
- dir = 10
+ dir = 10;
+ icon_state = "arrival"
},
/area/atmos)
"dhI" = (
@@ -89814,22 +86045,18 @@
"dhJ" = (
/obj/machinery/camera{
c_tag = "Atmospherics South-East";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/atmospherics/binary/valve/digital/open{
name = "Mixed Air Outlet Valve"
},
/turf/simulated/floor/plasteel{
- icon_state = "arrival";
- dir = 6
+ dir = 6;
+ icon_state = "arrival"
},
/area/atmos)
"dhK" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -89838,8 +86065,7 @@
/area/crew_quarters/toilet)
"dhL" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/wall/r_wall,
/area/maintenance/turbine)
@@ -89853,7 +86079,6 @@
"dhN" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -89866,9 +86091,7 @@
id = "toilet_unitb";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/plasteel{
@@ -89905,9 +86128,8 @@
},
/turf/simulated/floor/plating,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f5";
icon_state = "swall_f5";
- dir = 2
+ tag = "icon-swall_f5"
},
/area/shuttle/pod_4)
"dhV" = (
@@ -89935,8 +86157,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
@@ -89971,14 +86192,13 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/maintenance/fsmaint2)
"dii" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -90018,8 +86238,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -90062,9 +86281,7 @@
name = "Atmos Blast Door";
opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/turf/simulated/floor/plating,
/area/atmos)
"diq" = (
@@ -90092,15 +86309,12 @@
name = "Atmos Blast Door";
opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/simulated/floor/plating,
/area/atmos)
"diu" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/structure/lattice,
/turf/space,
@@ -90116,8 +86330,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -90126,12 +86339,9 @@
"diw" = (
/obj/item/flag/nt,
/obj/machinery/camera{
- c_tag = "Central Hallway North";
- dir = 2;
- network = list("SS13")
+ c_tag = "Central Hallway North"
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -90166,8 +86376,7 @@
network = list("SS13","MiniSat")
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/turret_protected/aisat_interior)
@@ -90182,8 +86391,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/port)
@@ -90195,8 +86403,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -90234,8 +86441,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/landmark/start{
name = "Cyborg"
@@ -90278,12 +86484,10 @@
desc = "A remote control-switch for the engineering security doors.";
id = "teledoor";
name = "AI Satellite Teleport Shutters Control";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "17;75"
},
/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 2;
name = "standard air scrubber";
on = 1;
scrub_N2O = 1;
@@ -90381,18 +86585,18 @@
/area/engine/engineering)
"diU" = (
/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/space,
/area/space/nearstation)
"diV" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- level = 2
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
},
-/turf/space,
-/area/space/nearstation)
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
"diW" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible{
@@ -90402,9 +86606,7 @@
/area/space/nearstation)
"diX" = (
/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
dir = 4
},
@@ -90419,9 +86621,7 @@
/area/space/nearstation)
"diZ" = (
/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 4
},
@@ -90429,9 +86629,7 @@
/area/space/nearstation)
"dja" = (
/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- level = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 4
},
@@ -90468,12 +86666,11 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutral";
- dir = 4
+ dir = 4;
+ icon_state = "neutral"
},
/area/crew_quarters/dorms)
"djg" = (
@@ -90488,14 +86685,12 @@
/area/crew_quarters/dorms)
"djh" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
/obj/item/book/manual/sop_service,
/obj/item/pen/blue{
- pixel_x = 0;
pixel_y = 4
},
/obj/item/book/manual/barman_recipes,
@@ -90509,9 +86704,7 @@
pixel_y = 25
},
/obj/machinery/camera{
- c_tag = "Bar North";
- dir = 2;
- network = list("SS13")
+ c_tag = "Bar North"
},
/obj/structure/table/reinforced,
/obj/machinery/chem_dispenser/soda,
@@ -90527,7 +86720,6 @@
/obj/item/reagent_containers/food/drinks/flask/barflask,
/obj/item/reagent_containers/food/drinks/flask/barflask,
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = 32
},
/obj/item/clothing/head/that{
@@ -90605,11 +86797,10 @@
/area/storage/secure)
"djt" = (
/obj/machinery/door/window/eastright{
- tag = "icon-right";
- name = "Hydroponics Delivery";
- icon_state = "right";
dir = 2;
- req_access_txt = "35"
+ name = "Hydroponics Delivery";
+ req_access_txt = "35";
+ tag = "icon-right"
},
/obj/effect/decal/warning_stripes/yellow,
/obj/structure/disposalpipe/segment{
@@ -90639,8 +86830,7 @@
pixel_y = 22
},
/obj/machinery/camera{
- c_tag = "Hydroponics Pasture";
- network = list("SS13")
+ c_tag = "Hydroponics Pasture"
},
/obj/machinery/hydroponics/soil,
/obj/structure/disposalpipe/segment{
@@ -90652,7 +86842,6 @@
"djx" = (
/obj/machinery/hydroponics/soil,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/grass,
@@ -90675,7 +86864,6 @@
/obj/structure/grille,
/obj/structure/window/reinforced/tinted{
dir = 8;
- icon_state = "twindow";
tag = ""
},
/obj/structure/window/reinforced/tinted{
@@ -90683,7 +86871,6 @@
},
/obj/structure/window/reinforced/tinted{
dir = 4;
- icon_state = "twindow";
tag = ""
},
/obj/structure/window/reinforced/tinted,
@@ -90710,15 +86897,13 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/landmark/start{
name = "Cyborg"
@@ -90742,8 +86927,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -90772,7 +86956,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -90860,7 +87043,6 @@
/obj/machinery/turretid/stun{
control_area = "\improper AI Satellite Antechamber";
name = "AI Antechamber Turret Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "75"
},
@@ -90879,7 +87061,6 @@
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/structure/grille,
/obj/machinery/meter{
- frequency = 1443;
id = "mair_in_meter";
name = "Mixed Air Tank In"
},
@@ -90895,7 +87076,6 @@
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/structure/grille,
/obj/machinery/meter{
- frequency = 1443;
id = "mair_out_meter";
name = "Mixed Air Tank Out"
},
@@ -90905,21 +87085,18 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/nw)
"djW" = (
/obj/machinery/camera{
- c_tag = "Central Hallway North-West";
- dir = 2;
- network = list("SS13")
+ c_tag = "Central Hallway North-West"
},
/obj/structure/extinguisher_cabinet{
pixel_x = 5;
@@ -90981,8 +87158,7 @@
/obj/machinery/power/emitter,
/obj/machinery/camera{
c_tag = "Engineering Secure Storage South";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plating,
/area/storage/secure)
@@ -91003,15 +87179,13 @@
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -91030,13 +87204,11 @@
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -91056,7 +87228,6 @@
control_area = "\improper AI Satellite Atmospherics";
name = "AI Satellite Atmospherics Turret Control";
pixel_x = -28;
- pixel_y = 0;
req_access_txt = "75"
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -91109,23 +87280,18 @@
/area/atmos)
"dkl" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/north)
"dkm" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 4
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/hallway/primary/central/ne)
"dkn" = (
@@ -91140,12 +87306,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 4
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/hallway/primary/central/ne)
"dkp" = (
@@ -91228,9 +87393,7 @@
/area/atmos)
"dky" = (
/obj/machinery/camera{
- c_tag = "Central Hallway North-East";
- dir = 2;
- network = list("SS13")
+ c_tag = "Central Hallway North-East"
},
/obj/machinery/light{
dir = 1
@@ -91280,7 +87443,6 @@
control_area = "\improper AI Satellite Service";
name = "AI Satellite Service Bay Turret Control";
pixel_x = 24;
- pixel_y = 0;
req_access_txt = "75"
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -91315,7 +87477,6 @@
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/computer/cryopod/robot{
@@ -91363,7 +87524,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/ai_slipper{
@@ -91371,8 +87531,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -91409,7 +87568,6 @@
"dkR" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light/small{
@@ -91436,7 +87594,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -91447,8 +87604,7 @@
scrub_Toxins = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -91471,7 +87627,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -91493,7 +87648,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -91546,16 +87700,14 @@
/area/turret_protected/aisat_interior)
"dkZ" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 4;
- name = "gas pump"
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
"dla" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint)
@@ -91564,7 +87716,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -91589,7 +87740,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -91611,7 +87761,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -91628,8 +87777,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -91686,7 +87834,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -91721,7 +87868,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -91800,8 +87946,7 @@
dir = 1
},
/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "darkbluecorners"
@@ -92147,8 +88292,7 @@
/area/engine/engineering)
"dmk" = (
/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
@@ -92157,9 +88301,9 @@
})
"dml" = (
/obj/structure/disposalpipe/junction{
- tag = "icon-pipe-j2 (EAST)";
+ dir = 4;
icon_state = "pipe-j2";
- dir = 4
+ tag = "icon-pipe-j2 (EAST)"
},
/obj/machinery/atmospherics/binary/pump{
name = "Waste Out";
@@ -92265,8 +88409,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
@@ -92284,7 +88427,6 @@
external_pressure_bound = 0;
initialize_directions = 1;
internal_pressure_bound = 4000;
- on = 0;
pressure_checks = 2;
pump_direction = 0
},
@@ -92346,8 +88488,7 @@
tag = ""
},
/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
@@ -92430,8 +88571,7 @@
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/bluegrid,
/area/aisat{
@@ -92445,8 +88585,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plating,
/area/aisat{
@@ -92461,7 +88600,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -92474,9 +88612,7 @@
"dmS" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/camera/motion{
c_tag = "AI Satellite Hallway";
@@ -92617,8 +88753,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -92674,8 +88809,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -92685,8 +88819,7 @@
/area/turret_protected/ai)
"dnk" = (
/obj/machinery/atm{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central/ne)
@@ -92778,9 +88911,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall/r_wall,
/area/engine/engineering)
@@ -92802,8 +88933,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -92826,7 +88956,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -92905,7 +89034,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -92958,7 +89086,6 @@
department = "Hydroponics";
departmentType = 2;
name = "Hydroponics Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/plantgenes,
@@ -93006,13 +89133,11 @@
/obj/machinery/airlock_sensor{
frequency = 1450;
id_tag = "south_sensor";
- pixel_x = 0;
pixel_y = -25
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
frequency = 1450;
id_tag = "south_maint";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "13";
tag_airpump = "south_pump";
@@ -93024,21 +89149,16 @@
/area/maintenance/asmaint)
"dnM" = (
/obj/structure/table/wood,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/obj/item/camera{
desc = "A one use - polaroid camera. 30 photos left.";
name = "Camera";
- pictures_left = 30;
- pixel_x = 0;
- pixel_y = 0
+ pictures_left = 30
},
/obj/item/book/codex_gigas,
/turf/simulated/floor/plasteel{
- tag = "icon-cult";
icon_state = "cult";
- dir = 2
+ tag = "icon-cult"
},
/area/library)
"dnN" = (
@@ -93114,15 +89234,13 @@
"dnT" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/turret_protected/aisat_interior)
"dnU" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/floodlight,
/turf/simulated/floor/plasteel{
@@ -93132,20 +89250,17 @@
"dnV" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/sign/securearea{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/turret_protected/aisat_interior)
"dnW" = (
/obj/structure/closet/emcloset,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/turret_protected/aisat_interior)
@@ -93177,13 +89292,10 @@
"dnY" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -93205,12 +89317,10 @@
/obj/machinery/light/small,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/turret_protected/aisat_interior)
@@ -93229,7 +89339,6 @@
"doe" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/sign/securearea{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
@@ -93253,8 +89362,8 @@
/area/maintenance/fsmaint2)
"doh" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/solar{
id = "starboardsolar";
@@ -93268,15 +89377,14 @@
/obj/machinery/computer/card,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/light{
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/security/checkpoint2)
"doj" = (
@@ -93284,8 +89392,8 @@
pixel_x = 27
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/security/checkpoint2)
"dok" = (
@@ -93298,15 +89406,12 @@
id_tag = "atmospherics_south_pump"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "atmospherics_south_sensor";
pixel_x = -8;
pixel_y = -30
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "atmospherics_south";
- pixel_x = 0;
pixel_y = -25;
req_access_txt = null;
tag_airpump = "atmospherics_south_pump";
@@ -93342,9 +89447,7 @@
dir = 4
},
/obj/machinery/door/airlock/external{
- aiControlDisabled = 0;
frequency = 1379;
- hackProof = 0;
icon_state = "door_locked";
id_tag = "atmospherics_south_inner";
locked = 1;
@@ -93376,8 +89479,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"dor" = (
@@ -93389,8 +89491,7 @@
/area/maintenance/storage)
"dos" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/turf/simulated/floor/plating,
/area/maintenance/storage)
@@ -93403,33 +89504,12 @@
/area/engine/controlroom)
"dou" = (
/turf/simulated/shuttle/wall{
- tag = "icon-swall12";
icon_state = "swall12";
- dir = 2
+ tag = "icon-swall12"
},
/area/shuttle/pod_4)
"dov" = (
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1331;
- id_tag = "synd_airlock";
- pixel_x = 25;
- req_access_txt = "150";
- tag_airpump = "synd_pump";
- tag_chamber_sensor = "synd_sensor";
- tag_exterior_door = "synd_outer";
- tag_interior_door = "synd_inner"
- },
-/obj/machinery/airlock_sensor{
- frequency = 1331;
- id_tag = "synd_sensor";
- pixel_x = 25;
- pixel_y = 12;
- req_access_txt = "150"
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden{
+/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
/turf/simulated/shuttle/floor{
@@ -93439,8 +89519,7 @@
"dow" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f10";
- dir = 2
+ icon_state = "swall_f10"
},
/area/shuttle/pod_4)
"dox" = (
@@ -93476,23 +89555,14 @@
/turf/simulated/shuttle/plating,
/area/shuttle/pod_4)
"doA" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/syndicate/black/red,
-/obj/item/clothing/head/helmet/space/syndicate/black/red,
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 1;
- frequency = 1331;
- id_tag = "synd_pump"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc3"
},
-/area/shuttle/syndicate)
+/area/shuttle/administration)
"doB" = (
/obj/structure/table/wood,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/camera,
@@ -93508,9 +89578,7 @@
/area/space/nearstation)
"doF" = (
/turf/simulated/floor/plating,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"doG" = (
/obj/structure/cable,
/obj/machinery/power/solar{
@@ -93527,9 +89595,6 @@
/area/turret_protected/aisat_interior)
"doI" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/chair/comfy/shuttle{
@@ -93540,9 +89605,7 @@
"doK" = (
/obj/machinery/light,
/turf/simulated/floor/plating,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"doL" = (
/obj/docking_port/mobile/pod{
dir = 4;
@@ -93557,9 +89620,7 @@
/area/shuttle/pod_4)
"doM" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light,
@@ -93572,7 +89633,6 @@
/obj/machinery/computer/station_alert,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -93584,8 +89644,7 @@
"doV" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f9";
- dir = 2
+ icon_state = "swall_f9"
},
/area/shuttle/pod_4)
"doW" = (
@@ -93593,12 +89652,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -93614,12 +89671,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -93706,7 +89761,6 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -93719,7 +89773,6 @@
/obj/machinery/light/small,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -93732,7 +89785,6 @@
/obj/structure/table,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -93758,7 +89810,6 @@
})
"dpD" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 2;
name = "Air Out"
},
/turf/simulated/floor/plating,
@@ -93767,7 +89818,6 @@
})
"dpE" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 2;
name = "Mix to MiniSat"
},
/turf/simulated/floor/plating,
@@ -93776,8 +89826,8 @@
})
"dpF" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/computer/monitor{
name = "Grid Power Monitoring Computer"
@@ -93830,7 +89880,6 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/space_heater,
@@ -93873,7 +89922,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/rack,
@@ -93881,10 +89929,7 @@
pixel_x = -3;
pixel_y = 3
},
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/toolbox/mechanical,
/obj/item/multitool,
/obj/machinery/camera{
c_tag = "AI Satellite Service Bay";
@@ -93897,41 +89942,31 @@
})
"dpZ" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plating,
/area/aisat/entrance{
name = "\improper AI Satellite Atmospherics"
})
"dqg" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
tag = ""
},
-/obj/machinery/suit_storage_unit/security,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "dark"
},
/area/security/securearmoury)
"dqk" = (
@@ -93998,14 +90033,17 @@
pixel_y = -29
},
/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "darkbluecorners"
},
/area/turret_protected/aisat_interior)
+"dqz" = (
+/obj/structure/chair/comfy/shuttle,
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
"dqA" = (
/obj/structure/rack,
/obj/item/crowbar/red,
@@ -94043,7 +90081,6 @@
/area/aisat)
"dqM" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/machinery/porta_turret{
@@ -94057,7 +90094,6 @@
})
"dqO" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/porta_turret{
@@ -94163,8 +90199,7 @@
/area/turret_protected/ai)
"drA" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27
},
/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
@@ -94190,14 +90225,11 @@
/area/turret_protected/ai)
"drG" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
@@ -94210,8 +90242,7 @@
"drK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10;
- initialize_directions = 10;
- level = 1
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -94230,14 +90261,11 @@
/area/turret_protected/ai)
"drO" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
@@ -94296,7 +90324,6 @@
},
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "south bump Important Area";
pixel_y = -24
},
@@ -94328,7 +90355,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/requests_console{
@@ -94408,14 +90434,12 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/wall,
/area/turret_protected/ai)
"dse" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/obj/machinery/ai_slipper{
@@ -94426,7 +90450,6 @@
"dsg" = (
/obj/machinery/camera/motion{
c_tag = "AI Core South";
- dir = 2;
network = list("SS13","MiniSat")
},
/turf/simulated/floor/bluegrid,
@@ -94457,7 +90480,6 @@
"dsj" = (
/obj/machinery/camera{
c_tag = "AI Satellite Exterior South";
- dir = 2;
network = list("SS13","MiniSat")
},
/turf/space,
@@ -94491,7 +90513,12 @@
},
/area/maintenance/asmaint2)
"dsw" = (
-/turf/simulated/floor/mech_bay_recharge_floor,
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = -30
+ },
+/turf/simulated/shuttle/floor4,
/area/shuttle/escape)
"dsy" = (
/obj/machinery/light/small{
@@ -94544,7 +90571,6 @@
cell_type = 25000;
dir = 1;
name = "Engineering Engine Super APC";
- pixel_x = 0;
pixel_y = 24;
shock_proof = 1
},
@@ -94564,7 +90590,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/machinery/portable_atmospherics/canister/oxygen,
@@ -94689,7 +90714,6 @@
"dtk" = (
/obj/item/pipe_painter,
/obj/item/clothing/ears/earmuffs{
- pixel_x = 0;
pixel_y = 6
},
/obj/item/clothing/ears/earmuffs{
@@ -94728,7 +90752,6 @@
"dtq" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/structure/table,
@@ -94746,12 +90769,10 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump Engineering";
- pixel_x = 0;
pixel_y = 24;
shock_proof = 1
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 2;
icon_state = "0-2"
},
@@ -94765,7 +90786,6 @@
layer = 2.9
},
/obj/machinery/alarm{
- pixel_x = 0;
pixel_y = 24
},
/obj/effect/decal/warning_stripes/south,
@@ -94795,15 +90815,14 @@
/turf/space,
/area/space/nearstation)
"dwn" = (
-/obj/item/flag/med,
+/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cmo"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/shuttle/escape)
"dAN" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/security/detectives_office)
@@ -94814,14 +90833,25 @@
/turf/simulated/wall/r_wall,
/area/maintenance/fsmaint)
"dHM" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
+/obj/machinery/light/spot{
+ tag = "icon-tube1 (NORTH)"
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
/area/shuttle/escape)
+"dOy" = (
+/obj/structure/dispenser,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"dPF" = (
+/obj/machinery/chem_dispenser,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
"dQC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -94834,49 +90864,50 @@
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
"dSc" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/area/shuttle/escape)
-"dUh" = (
-/obj/machinery/status_display,
-/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- dir = 2
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
},
/area/shuttle/escape)
"dVs" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/crew_quarters/dorms)
-"esI" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/regular,
-/obj/machinery/light{
- dir = 1;
- on = 1
+"ecb" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+ icon_state = "brown"
},
/area/shuttle/escape)
+"esI" = (
+/obj/structure/table,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/storage/firstaid,
+/turf/simulated/floor/plasteel,
+/area/shuttle/escape)
"eJA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/turf/simulated/wall,
/area/maintenance/fsmaint)
-"eTE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = "0"
+"eMV" = (
+/obj/structure/bed/roller,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
+/area/shuttle/escape)
+"eTE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/wall,
/area/crew_quarters/dorms)
"eYG" = (
@@ -94888,8 +90919,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -94900,20 +90930,10 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/light/small{
dir = 4;
- icon_state = "bulb1";
tag = "icon-bulb1 (EAST)"
},
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
-"fcT" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/hos)
"fes" = (
/obj/structure/chair{
dir = 4
@@ -94921,6 +90941,12 @@
/obj/machinery/computer/mob_battle_terminal/red,
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
+"fgw" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
"fho" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -94934,6 +90960,24 @@
icon_state = "neutral"
},
/area/shuttle/escape)
+"fsj" = (
+/obj/structure/window/plasmareinforced{
+ color = "#FF0000";
+ dir = 8
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"fuT" = (
+/obj/machinery/iv_drip,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
"fyo" = (
/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
@@ -94942,24 +90986,25 @@
},
/area/security/detectives_office)
"fyM" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/latex/nitrile,
-/obj/item/clothing/mask/breath,
+/obj/item/flag/cargo,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cmo"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/shuttle/escape)
"fyN" = (
-/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc4"
},
-/area/security/securearmoury)
+/area/shuttle/administration)
"fzb" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_y = 30
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "browncorner"
+ icon_state = "neutral"
},
/area/shuttle/escape)
"fAw" = (
@@ -94967,28 +91012,28 @@
/obj/machinery/tcomms/core/station,
/obj/machinery/camera{
c_tag = "Telecommunications Core";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel/dark,
/area/tcommsat/chamber)
-"fGr" = (
-/obj/structure/sign/greencross,
-/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- dir = 2
+"fEn" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
},
-/area/shuttle/escape)
-"fGD" = (
-/obj/machinery/status_display{
- pixel_y = -32
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
},
+/area/shuttle/administration)
+"fGD" = (
/obj/structure/chair/comfy/shuttle{
dir = 1
},
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"fRL" = (
@@ -94998,29 +91043,46 @@
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
+"fTl" = (
+/obj/machinery/chem_master,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
"fUo" = (
/obj/machinery/light,
/obj/structure/chair/comfy/shuttle{
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"fZO" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/backpack/medic,
-/obj/item/storage/belt/medical,
+/obj/machinery/computer/mech_bay_power_console,
+/obj/machinery/light/spot{
+ tag = "icon-tube1 (NORTH)"
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cmo"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/shuttle/escape)
"gap" = (
-/obj/structure/table/reinforced,
+/obj/machinery/vending/security,
/turf/simulated/shuttle/floor4,
/area/shuttle/escape)
+"gdm" = (
+/obj/machinery/clonepod/upgraded,
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
"gel" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -95028,8 +91090,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -95045,17 +91106,33 @@
"gmY" = (
/obj/structure/chair/comfy/shuttle,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"gyR" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_y = 30
+ },
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTH)";
- icon_state = "whiteblue";
- dir = 1
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/shuttle/escape)
+"gEy" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8;
+ tag = "icon-heater (WEST)"
+ },
+/obj/structure/window/plasmareinforced{
+ color = "#FF0000";
+ dir = 4
+ },
+/turf/space,
+/turf/simulated/shuttle/plating,
+/area/shuttle/administration)
"gFG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
@@ -95066,6 +91143,12 @@
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
+"gMk" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
"gMZ" = (
/obj/machinery/atmospherics/pipe/simple/insulated{
dir = 6
@@ -95084,10 +91167,12 @@
},
/turf/simulated/floor/plating,
/area/toxins/mixing)
-"gQL" = (
-/obj/machinery/computer/card,
+"gZc" = (
+/obj/machinery/sleeper/upgraded{
+ dir = 4
+ },
/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+ icon_state = "floor3"
},
/area/shuttle/administration)
"hsy" = (
@@ -95111,14 +91196,9 @@
},
/turf/simulated/floor/plating,
/area/toxins/mixing)
-"hJq" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/plasteel,
-/area/security/main)
"hyv" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -95127,43 +91207,89 @@
},
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
+"hyR" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"hHo" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "adminshuttleshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/full/shuttle,
+/turf/simulated/floor/plating,
+/area/shuttle/administration)
"hJi" = (
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue";
- icon_state = "whiteblue"
+ dir = 1;
+ icon_state = "brown"
+ },
+/area/shuttle/escape)
+"hJq" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/plasteel,
+/area/security/main)
+"hTU" = (
+/obj/machinery/light/spot{
+ tag = "icon-tube1 (NORTH)"
},
+/turf/simulated/floor/mech_bay_recharge_floor,
/area/shuttle/escape)
"iau" = (
-/obj/structure/closet/crate/internals,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/tank/emergency_oxygen/engi,
-/obj/item/tank/emergency_oxygen/engi,
-/obj/item/tank/emergency_oxygen/engi,
-/obj/item/tank/emergency_oxygen/engi,
+/obj/machinery/light/spot{
+ tag = "icon-tube1 (NORTH)"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/shuttle/escape)
-"ioI" = (
-/obj/structure/reagent_dispensers/fueltank/chem{
- pixel_x = -32;
- pixel_y = 0
+"ils" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/backpack/medic,
+/obj/item/storage/belt/medical,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 29;
+ pixel_y = -30
+ },
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_y = -30
+ },
+/obj/machinery/light/spot{
+ tag = "icon-tube1 (NORTH)"
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
+ icon_state = "cmo"
+ },
+/area/shuttle/escape)
+"ioI" = (
+/obj/structure/chair/comfy/shuttle{
dir = 1
},
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
+ },
/area/shuttle/escape)
"iwt" = (
-/obj/machinery/computer/station_alert,
/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
+/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "darkyellow"
@@ -95176,17 +91302,16 @@
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
"iCr" = (
-/obj/machinery/light{
+/obj/structure/chair/comfy/shuttle,
+/obj/machinery/light/spot{
dir = 1;
- on = 1
+ tag = "icon-tube1 (NORTH)"
},
-/obj/structure/chair/comfy/shuttle,
/turf/simulated/shuttle/floor4,
/area/shuttle/escape)
"iHY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -95222,14 +91347,17 @@
dir = 4
},
/turf/simulated/wall/r_wall,
-/area/toxins/launch{
- name = "Toxins Launch Room"
- })
+/area/toxins/launch)
"iPL" = (
-/obj/structure/sign/greencross,
-/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- dir = 2
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"iUc" = (
@@ -95240,53 +91368,58 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/crew_quarters/dorms)
+"jat" = (
+/obj/machinery/door/airlock/centcom{
+ id_tag = "adminshuttle";
+ name = "Holding Cell";
+ opacity = 1;
+ req_access_txt = "104"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
"jbf" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"jnJ" = (
-/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
- },
-/obj/machinery/door_control{
- id = "adminshuttleblast";
- name = "Blast door control";
- pixel_x = -5;
- pixel_y = 35;
- req_access = list(101);
- req_access_txt = "0"
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12"
},
-/obj/machinery/door_control{
- id = "adminshuttleshutters";
- name = "Shutter control";
- pixel_x = 5;
- pixel_y = 35;
- req_access = list(101);
- req_access_txt = "0"
+/area/shuttle/administration)
+"jtw" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall11"
},
+/area/shuttle/administration)
+"jJT" = (
/obj/structure/chair/comfy/shuttle{
- dir = 4
+ dir = 1
},
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
},
-/area/shuttle/administration)
-"jJT" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/donut_box,
-/turf/simulated/shuttle/floor4,
/area/shuttle/escape)
"jMV" = (
-/obj/structure/bed/roller,
-/obj/machinery/iv_drip,
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"jPN" = (
@@ -95318,31 +91451,41 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/aft)
+"jXY" = (
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "cmo"
+ },
+/area/shuttle/escape)
"kaG" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/structure/closet/crate/medical,
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/o2{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/storage/firstaid/toxin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"kcF" = (
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/sunnybush,
-/obj/structure/window/full/shuttle,
-/turf/simulated/floor/grass,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall14";
+ tag = "icon-swall14"
+ },
/area/shuttle/escape)
"kiu" = (
/obj/structure/table/wood,
/obj/item/deck/cards,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"kjI" = (
@@ -95357,26 +91500,15 @@
/area/crew_quarters/dorms)
"ksF" = (
/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor4,
-/area/shuttle/escape)
-"kyW" = (
-/obj/structure/table,
-/obj/item/weldingtool/largetank{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/clothing/glasses/welding{
- pixel_y = 10
+ dir = 4
},
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 8
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = -26
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"kCz" = (
@@ -95391,13 +91523,14 @@
},
/obj/structure/chair/comfy/shuttle,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"kHU" = (
/obj/structure/table/reinforced,
/obj/item/storage/toolbox/mechanical,
+/obj/item/multitool,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "vault"
@@ -95419,23 +91552,21 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
"kMV" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
+/obj/structure/chair/comfy/shuttle{
dir = 8
},
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 26
+ },
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"kNZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall,
/area/crew_quarters/dorms)
@@ -95447,9 +91578,17 @@
/turf/space,
/area/space/nearstation)
"kPl" = (
-/obj/item/storage/firstaid/o2,
-/obj/structure/table,
-/turf/simulated/floor/plasteel,
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
+ },
/area/shuttle/escape)
"kUs" = (
/obj/machinery/computer/atmos_alert,
@@ -95459,29 +91598,33 @@
},
/area/shuttle/escape)
"law" = (
-/obj/machinery/ai_status_display,
-/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- dir = 2
+/obj/structure/bed/roller,
+/obj/structure/sink{
+ layer = 4;
+ pixel_y = 26
},
-/area/shuttle/escape)
-"lax" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
+ icon_state = "cmo"
},
/area/shuttle/escape)
"ldp" = (
-/turf/simulated/floor/plasteel{
- icon_state = "bot";
+/obj/structure/chair/comfy/shuttle{
dir = 1
},
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 30
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
+ },
/area/shuttle/escape)
"leU" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f10";
- dir = 2
+ icon_state = "swall_f10"
},
/area/shuttle/escape)
"lkw" = (
@@ -95491,12 +91634,16 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
"lkY" = (
-/obj/machinery/sleeper{
- dir = 4
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_x = 30;
+ pixel_y = 0
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cmo"
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"lop" = (
@@ -95514,24 +91661,16 @@
icon_state = "neutral"
},
/area/shuttle/escape)
-"lKS" = (
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cmo"
- },
-/area/shuttle/escape)
"lLC" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel,
/area/atmos)
"lLQ" = (
-/obj/machinery/computer/emergency_shuttle,
+/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
- dir = 1;
icon_state = "darkblue"
},
/area/shuttle/escape)
@@ -95541,11 +91680,18 @@
},
/turf/simulated/floor/plating,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f6";
icon_state = "swall_f6";
- dir = 2
+ tag = "icon-swall_f6"
},
/area/shuttle/pod_3)
+"lTl" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
"mkE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
/obj/machinery/atmospherics/unary/vent_scrubber{
@@ -95558,93 +91704,54 @@
/obj/machinery/light,
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
-"mpx" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
+"mlC" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s9"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/shuttle/escape)
-"msR" = (
-/obj/structure/closet/crate/medical,
-/obj/item/storage/firstaid/regular,
-/obj/item/storage/firstaid/o2{
- pixel_x = 2;
- pixel_y = -2
+/area/shuttle/administration)
+"mrb" = (
+/obj/machinery/vending/medical,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
},
-/obj/item/storage/firstaid/toxin{
- pixel_x = -2;
- pixel_y = 4
+/area/shuttle/administration)
+"msR" = (
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Escape Shuttle Infirmary"
},
-/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/shuttle/escape)
"mxT" = (
-/obj/machinery/sleeper,
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 26
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cmo"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/shuttle/escape)
"mzv" = (
/obj/machinery/atmospherics/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
"mGt" = (
-/obj/structure/closet/crate/engineering,
-/obj/item/storage/toolbox/electrical{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/storage/toolbox/emergency,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 4;
- pixel_y = -4
- },
+/obj/item/flag/med,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ icon_state = "cmo"
},
/area/shuttle/escape)
"mKg" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/window/brigdoor{
- req_access_txt = "3"
- },
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
-/obj/item/ammo_box/magazine/enforcer,
+/obj/effect/decal/warning_stripes/red/hollow,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "vault"
+ icon_state = "dark"
},
/area/security/securearmoury)
"mMw" = (
@@ -95669,16 +91776,38 @@
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"mQF" = (
+/obj/structure/closet/crate/internals,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/tank/emergency_oxygen/engi,
+/obj/item/tank/emergency_oxygen/engi,
+/obj/item/tank/emergency_oxygen/engi,
+/obj/item/tank/emergency_oxygen/engi,
+/obj/structure/reagent_dispensers/fueltank/chem{
+ pixel_y = 30
+ },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
+"mSq" = (
+/obj/machinery/vending/cigarette,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
"naH" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
+/obj/structure/bed/roller,
+/turf/simulated/floor/plasteel{
+ icon_state = "cmo"
},
-/turf/simulated/floor/plasteel,
/area/shuttle/escape)
+"nbH" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
"nhb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -95694,26 +91823,44 @@
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
+"nrg" = (
+/turf/space,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
"ntp" = (
/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
/obj/item/stock_parts/cell/high,
+/obj/machinery/cell_charger,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "vault"
},
/area/shuttle/escape)
"nvl" = (
+/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/shuttle/escape)
+"nyJ" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"nBZ" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
"nCT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 6
},
/obj/machinery/light{
dir = 8
@@ -95732,20 +91879,15 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"nIj" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/door/airlock/shuttle/glass{
+ name = "Shuttle Cargo Hatch"
},
+/turf/simulated/floor/plasteel,
/area/shuttle/escape)
"nMi" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
@@ -95754,25 +91896,34 @@
/turf/space,
/area/space/nearstation)
"nRP" = (
-/obj/structure/table,
-/obj/item/storage/firstaid,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
+ },
/area/shuttle/escape)
"nVM" = (
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+/obj/machinery/door/airlock/shuttle/glass{
+ name = "Emergency Airlock Access";
+ req_one_access_txt = "2;19"
},
+/turf/simulated/floor/plasteel,
/area/shuttle/escape)
"nXr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
+"obG" = (
+/obj/machinery/mech_bay_recharge_port,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/shuttle/escape)
"obW" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -95780,30 +91931,66 @@
},
/area/shuttle/escape)
"oqQ" = (
-/obj/machinery/light,
/obj/structure/chair/comfy/shuttle{
dir = 4
},
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_y = -30
+ },
+/obj/machinery/light/spot{
+ tag = "icon-tube1 (NORTH)"
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/shuttle/escape)
+"otE" = (
+/obj/machinery/computer/shuttle/admin{
+ name = "NTV Argos shuttle console"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
"oyv" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"oDA" = (
/obj/structure/chair/comfy/shuttle{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
+"oEZ" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/machinery/door_control{
+ id = "adminshuttleblast";
+ name = "Blast door control";
+ pixel_x = -5;
+ pixel_y = 35;
+ req_access = list(101)
+ },
+/obj/machinery/door_control{
+ id = "adminshuttleshutters";
+ name = "Shutter control";
+ pixel_x = 5;
+ pixel_y = 35;
+ req_access = list(101)
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
"oOZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
/turf/simulated/wall/r_wall,
@@ -95818,15 +92005,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -95835,33 +92020,23 @@
},
/area/tcommsat/chamber)
"oRM" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/turf/simulated/shuttle/floor4,
-/area/shuttle/escape)
-"oUw" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/item/reagent_containers/food/drinks/mug/med,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cmo"
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
/area/shuttle/escape)
"oZV" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "adminshuttle";
- name = "Medbay";
- opacity = 1;
- req_access_txt = "101"
- },
+/obj/machinery/mecha_part_fabricator/upgraded,
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
+"pae" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s5"
+ },
+/area/shuttle/administration)
"pcR" = (
/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel,
@@ -95893,7 +92068,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -95916,25 +92090,60 @@
},
/area/shuttle/escape)
"pGQ" = (
-/obj/machinery/mech_bay_recharge_port,
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/item/flag/med,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ icon_state = "cmo"
},
/area/shuttle/escape)
-"pXU" = (
-/obj/structure/closet/crate,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
-/turf/simulated/floor/plasteel,
-/area/security/range)
+"pOu" = (
+/obj/machinery/computer/communications,
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"pOZ" = (
+/obj/machinery/autolathe/security{
+ hacked = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"pQi" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "adminshuttleshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/full/shuttle,
+/turf/space,
+/turf/simulated/floor/plating,
+/area/shuttle/administration)
"pZO" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 10
},
/turf/space,
/area/space/nearstation)
+"qch" = (
+/obj/structure/table,
+/obj/item/clothing/glasses/welding{
+ pixel_y = 10
+ },
+/obj/item/weldingtool/largetank{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
+ },
+/area/shuttle/escape)
"qdA" = (
/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
@@ -95968,20 +92177,10 @@
/turf/simulated/wall,
/area/crew_quarters/dorms)
"qxC" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/o2{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/storage/firstaid/regular,
-/obj/item/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
- },
+/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (NORTHEAST)";
- icon_state = "whiteblue";
- dir = 5
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/shuttle/escape)
"qFg" = (
@@ -95991,11 +92190,9 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
"qJu" = (
-/obj/machinery/door/airlock/shuttle/glass{
- name = "Emergency Airlock Access";
- req_one_access_txt = "2;19"
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plasteel,
/area/shuttle/escape)
"qOo" = (
/obj/structure/chair{
@@ -96004,46 +92201,23 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
-"qPj" = (
-/obj/structure/rack,
-/obj/item/target/syndicate,
-/obj/item/target/syndicate,
-/obj/item/target/syndicate,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/security/range)
"qPO" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/rack,
-/obj/item/storage/box/buck{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/box/buck,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+/turf/space,
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc3"
},
-/area/security/securearmoury)
+/area/shuttle/administration)
"qUv" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
/turf/space,
/area/space/nearstation)
"reA" = (
-/obj/item/radio/intercom{
- dir = 8;
- name = "station intercom (General)";
- pixel_x = -28
- },
/obj/structure/chair/comfy/shuttle{
dir = 4
},
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
+ },
/turf/simulated/shuttle/floor4,
/area/shuttle/escape)
"rlX" = (
@@ -96089,37 +92263,57 @@
/obj/structure/table,
/turf/simulated/floor/plating,
/area/storage/secure)
+"rrE" = (
+/obj/structure/table,
+/obj/item/storage/lockbox/mindshield,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"rwM" = (
+/obj/machinery/optable,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
"rAt" = (
-/obj/structure/extinguisher_cabinet,
-/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- dir = 2
+/obj/structure/table,
+/obj/item/stock_parts/cell/high,
+/obj/machinery/cell_charger,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/shuttle/escape)
-"rEw" = (
-/obj/machinery/computer/shuttle/admin{
- name = "NTV Argos shuttle console"
+"rAQ" = (
+/obj/machinery/door/airlock/centcom{
+ id_tag = "adminshuttle";
+ name = "Medbay";
+ opacity = 1;
+ req_access_txt = "101"
},
/turf/simulated/shuttle/floor{
icon_state = "floor4"
},
/area/shuttle/administration)
+"rEw" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall1";
+ tag = "icon-swall1"
+ },
+/area/shuttle/administration)
"rFd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
"rGB" = (
-/obj/structure/closet/crate,
-/obj/item/storage/toolbox/emergency,
-/obj/item/storage/toolbox/emergency,
-/obj/item/flashlight/flare,
-/obj/item/flashlight/flare,
-/obj/item/crowbar,
-/obj/item/wrench,
-/obj/item/radio,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 8;
+ icon_state = "brown"
},
/area/shuttle/escape)
"rIF" = (
@@ -96132,7 +92326,7 @@
icon_state = "propulsion_l";
tag = "icon-propulsion_l (EAST)"
},
-/turf/space,
+/turf/simulated/shuttle/plating,
/area/shuttle/administration)
"rTy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -96162,28 +92356,44 @@
},
/area/turret_protected/aisat_interior)
"rYq" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "adminshuttle";
- name = "Bridge";
- opacity = 1;
- req_access_txt = "101"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
+/obj/structure/chair/comfy/shuttle,
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
+/turf/simulated/shuttle/floor,
/area/shuttle/administration)
"sbp" = (
/turf/simulated/shuttle/wall{
icon_state = "wall3"
},
/area/shuttle/escape)
+"snu" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s6"
+ },
+/area/shuttle/administration)
+"sAK" = (
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "swall2"
+ },
+/area/shuttle/administration)
+"sDa" = (
+/obj/structure/window/plasmareinforced{
+ color = "#FF0000";
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
"sDw" = (
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/fernybush,
-/obj/structure/window/full/shuttle,
-/turf/simulated/floor/grass,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
+ },
/area/shuttle/escape)
"sDN" = (
/obj/structure/morgue{
@@ -96195,9 +92405,28 @@
icon_state = "darkblue"
},
/area/security/detectives_office)
+"sGi" = (
+/obj/structure/table,
+/obj/item/storage/box/handcuffs,
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
"sHt" = (
/turf/simulated/floor/engine,
/area/holodeck/alphadeck)
+"sJS" = (
+/obj/machinery/autolathe/upgraded{
+ hacked = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
"sPb" = (
/obj/machinery/alarm{
pixel_y = 24
@@ -96210,9 +92439,8 @@
/area/crew_quarters/dorms)
"sPV" = (
/turf/simulated/floor/plasteel{
- tag = "icon-browncorner (EAST)";
- icon_state = "browncorner";
- dir = 4
+ dir = 4;
+ icon_state = "brown"
},
/area/shuttle/escape)
"sUK" = (
@@ -96224,9 +92452,17 @@
},
/area/shuttle/syndicate_sit)
"sVQ" = (
+/obj/structure/closet/crate,
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/emergency,
+/obj/item/flashlight/flare,
+/obj/item/flashlight/flare,
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/item/radio,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "browncorner"
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"tbC" = (
@@ -96236,50 +92472,105 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
"tdh" = (
-/obj/item/twohanded/required/kirbyplants,
+/obj/structure/closet/crate/engineering,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 4;
+ pixel_y = -4
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
+ dir = 1;
+ icon_state = "bot"
},
/area/shuttle/escape)
"tku" = (
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/shuttle/escape)
+"tll" = (
+/obj/machinery/door/window/brigdoor/westleft{
+ color = "#d70000";
+ req_access_txt = "104"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
"toq" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
+ dir = 9;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTH)"
},
/area/shuttle/escape)
-"tEM" = (
-/obj/item/storage/box/tranquilizer{
- pixel_x = 3;
+"tpg" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/o2{
+ pixel_x = -3;
pixel_y = -3
},
-/obj/structure/rack,
-/obj/structure/window/reinforced{
- dir = 4
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/machinery/light/spot{
+ tag = "icon-tube1 (NORTH)"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ dir = 5;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (NORTHEAST)"
},
-/area/security/securearmoury)
+/area/shuttle/escape)
+"tzT" = (
+/obj/machinery/computer/card,
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"tAY" = (
+/obj/structure/table,
+/obj/item/storage/box/chemimp{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/storage/box/trackimp,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"tEM" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
"tIz" = (
-/obj/machinery/computer/mech_bay_power_console,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitebluecorner";
+ tag = "icon-whiteblue (NORTH)"
+ },
/area/shuttle/escape)
"uom" = (
/turf/simulated/floor/plasteel,
/area/shuttle/escape)
"usf" = (
-/obj/machinery/computer/communications,
+/obj/machinery/computer/crew,
/turf/simulated/floor/plasteel{
- dir = 5;
icon_state = "darkblue"
},
/area/shuttle/escape)
@@ -96289,9 +92580,8 @@
},
/turf/simulated/floor/plating,
/turf/simulated/shuttle/wall{
- tag = "icon-swall_f5";
icon_state = "swall_f5";
- dir = 2
+ tag = "icon-swall_f5"
},
/area/shuttle/pod_3)
"uxy" = (
@@ -96301,13 +92591,12 @@
/turf/space,
/area/space/nearstation)
"uxA" = (
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_x = -32
+ },
/obj/machinery/computer/security{
network = list("SS13","Research Outpost","Mining Outpost","Telecomms")
},
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_x = -32;
- pixel_y = 0
- },
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "darkred"
@@ -96319,22 +92608,45 @@
icon_state = "propulsion_r";
tag = "icon-propulsion_r (EAST)"
},
-/turf/space,
+/turf/simulated/shuttle/plating,
+/area/shuttle/administration)
+"uBP" = (
+/obj/machinery/recharge_station/upgraded,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
/area/shuttle/administration)
"uDK" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- tag = "icon-intact (NORTHEAST)";
- icon_state = "intact";
- dir = 5
+ dir = 5;
+ tag = "icon-intact (NORTHEAST)"
},
/turf/space,
/area/space/nearstation)
+"uQb" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall13"
+ },
+/area/shuttle/administration)
+"uTI" = (
+/turf/space,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
"uXX" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = -30
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
},
-/turf/simulated/floor/plasteel,
/area/shuttle/escape)
"vup" = (
/obj/machinery/atmospherics/pipe/simple/insulated{
@@ -96343,6 +92655,18 @@
/obj/structure/lattice,
/turf/space,
/area/space/nearstation)
+"vFf" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
"vFZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -96352,46 +92676,39 @@
dir = 1
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -28
},
/obj/machinery/light/small,
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
-"vGW" = (
-/obj/item/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 29;
- pixel_y = -30
- },
-/obj/structure/bed/roller,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cmo"
- },
-/area/shuttle/escape)
"vJw" = (
-/obj/item/twohanded/required/kirbyplants,
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/color/latex/nitrile,
+/obj/item/clothing/mask/breath,
/obj/structure/extinguisher_cabinet{
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "cmo"
},
/area/shuttle/escape)
"vMh" = (
-/obj/item/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 29;
- pixel_y = -60
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = -26
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "brown"
},
/area/shuttle/escape)
+"vTi" = (
+/obj/machinery/computer/cloning,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
"vUG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -96399,18 +92716,10 @@
/turf/simulated/wall,
/area/maintenance/fsmaint)
"vVC" = (
-/obj/structure/closet/fireaxecabinet{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/obj/structure/chair/comfy/shuttle,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 1;
+ icon_state = "browncorner";
+ tag = "icon-browncorner (EAST)"
},
/area/shuttle/escape)
"wbr" = (
@@ -96420,14 +92729,28 @@
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
/turf/simulated/floor/plasteel/dark,
/area/tcommsat/chamber)
+"wdq" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = 6
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = -3
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = -12
+ },
+/turf/simulated/floor/plasteel,
+/area/security/main)
"whv" = (
/obj/machinery/computer/HolodeckControl,
/turf/simulated/floor/plasteel,
@@ -96435,38 +92758,79 @@
"wkg" = (
/obj/machinery/door/airlock/command/glass{
name = "Escape Shuttle Cockpit";
- req_access_txt = "0";
- req_one_access_txt = "2;19"
+ req_access_txt = "19"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/shuttle/escape)
-"wuR" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Armory_North";
- location = "Armory_sprava"
+"wli" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue (EAST)"
},
+/area/shuttle/escape)
+"wsj" = (
+/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "cmo"
},
-/area/security/securearmoury)
+/area/shuttle/escape)
+"wuR" = (
+/obj/machinery/vending/coffee,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
"wxQ" = (
-/obj/machinery/light,
/obj/structure/chair/comfy/shuttle{
dir = 8
},
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_y = -30
+ },
+/obj/machinery/light/spot{
+ tag = "icon-tube1 (NORTH)"
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/shuttle/escape)
+"wyo" = (
+/obj/structure/table,
+/obj/item/bonegel,
+/obj/item/bonesetter,
+/obj/item/hemostat,
+/obj/item/cautery,
+/obj/item/surgicaldrill,
+/obj/item/circular_saw,
+/obj/item/scalpel,
+/obj/item/retractor,
+/obj/item/FixOVein,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
"wHx" = (
-/obj/machinery/door/airlock/shuttle/glass{
- name = "Shuttle Cargo Hatch"
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = -26
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "bot"
},
-/turf/simulated/floor/plasteel,
/area/shuttle/escape)
"wOS" = (
/obj/structure/table,
@@ -96501,14 +92865,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/suit_storage_unit/security,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "dark"
},
/area/security/securearmoury)
"xfQ" = (
@@ -96524,19 +92882,18 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
"xgN" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
- },
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 8
- },
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- tag = "icon-whiteblue (SOUTHEAST)";
- icon_state = "whiteblue";
- dir = 6
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/shuttle/escape)
+"xgS" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
"xlr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -96544,36 +92901,23 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/dorms)
"xlz" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/structure/chair/comfy/shuttle{
+/obj/machinery/sleeper{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ icon_state = "cmo"
},
/area/shuttle/escape)
"xnj" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ icon_state = "brown"
},
/area/shuttle/escape)
"xtk" = (
-/obj/structure/bed/roller,
+/obj/machinery/recharge_station/ert,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cmo"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/shuttle/escape)
"xyo" = (
@@ -96594,46 +92938,33 @@
/turf/space,
/area/space/nearstation)
"xBQ" = (
-/obj/item/radio/intercom{
- dir = 8;
- name = "station intercom (General)";
- pixel_x = -28
- },
-/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ dir = 4;
+ icon_state = "browncorner";
+ tag = "icon-browncorner (EAST)"
},
/area/shuttle/escape)
"xBR" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
- },
-/obj/machinery/recharge_station,
/turf/simulated/floor/plasteel{
- icon_state = "bot";
- dir = 1
+ icon_state = "white"
},
/area/shuttle/escape)
"xTB" = (
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "browncorner";
- tag = "icon-browncorner (EAST)"
+ icon_state = "whiteblue";
+ tag = "icon-whiteblue"
},
/area/shuttle/escape)
"xVt" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner";
- dir = 2
+ icon_state = "neutralcorner"
},
/area/crew_quarters/dorms)
"xWg" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- tag = "icon-intact (SOUTHEAST)";
- icon_state = "intact";
- dir = 6
+ dir = 6;
+ tag = "icon-intact (SOUTHEAST)"
},
/turf/space,
/area/space/nearstation)
@@ -96645,7 +92976,6 @@
req_access_txt = "101"
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/shuttle/floor{
@@ -96653,24 +92983,9 @@
},
/area/shuttle/administration)
"yjg" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/structure/rack,
-/obj/item/gun/projectile/shotgun/riot,
-/obj/item/gun/projectile/shotgun/riot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/securearmoury)
"ylx" = (
@@ -102696,13 +99011,13 @@ aaa
aaa
aaa
apt
-apx
-apx
-apx
-apx
-apx
-apx
-apx
+aqi
+aqi
+aqi
+aqi
+aqi
+aqi
+aqi
dhn
aaa
aaa
@@ -102953,12 +99268,12 @@ aaa
aaa
aaa
apr
-apw
-arh
+dhi
+bWM
arf
-arh
+bWN
dgK
-arh
+cbA
dhi
apr
aaa
@@ -103211,11 +99526,11 @@ aaa
aaa
apu
aqh
-arh
-arg
-arh
dgL
-arh
+dgL
+dgL
+dgL
+dgL
dhm
apu
aaa
@@ -103468,11 +99783,11 @@ aaa
aaa
apr
aqg
-arh
-arh
-arh
-arh
-arh
+dgL
+dgL
+dgL
+dgL
+dgL
dhl
apr
aaa
@@ -103725,12 +100040,12 @@ aaa
aaa
apr
arh
-arh
-arh
-arh
-arh
-arW
-arh
+dgL
+dgL
+dgL
+dgL
+dgL
+cgz
apr
aaa
aaa
@@ -103981,13 +100296,13 @@ aaa
aaa
aaa
apr
-arh
+dhi
aqk
arW
-arW
+cag
arW
dhe
-arh
+cgz
apr
aaa
aaa
@@ -104237,14 +100552,14 @@ aaa
aaa
aaa
aaa
-apr
+apt
aqi
aqm
asa
-asa
+cai
asa
dhg
-aqi
+ckd
apr
aaa
aaa
@@ -104495,13 +100810,13 @@ aaa
aaa
aaa
apr
-arh
-aql
-arZ
+bWK
+are
+dhb
aPV
dhb
-aql
-arh
+cds
+cgz
apr
aaa
aaa
@@ -104754,9 +101069,9 @@ aaa
apu
aqj
are
-arh
-arh
-arh
+are
+are
+are
dhh
arY
apu
@@ -105009,13 +101324,13 @@ aaa
aaa
aaa
apv
-apx
-apx
+aqi
+aqi
aqo
aQX
aqo
-apx
-apx
+aqi
+aqi
asK
aaa
aVV
@@ -105052,14 +101367,14 @@ bPL
rSv
uBM
cae
+pae
+acT
aaa
-bPL
+snu
+cae
rSv
uBM
-cae
-aaa
-aaa
-aaa
+pae
aaa
aaa
aaa
@@ -105287,11 +101602,11 @@ aab
aaa
aaa
aaa
-aaa
-bPv
+clC
+bPU
bvi
bPU
-aaa
+clC
aaa
aaa
aaa
@@ -105305,19 +101620,19 @@ aaa
aaa
aaa
bPL
-bPI
+fyN
+bWG
bWG
bWG
-bPI
-bPI
-bPI
+cak
+bRG
+bRG
+uQb
bWG
+gEy
bWG
-bPI
-cae
-aaa
-aaa
-aaa
+cBe
+pae
aaa
aaa
aaa
@@ -105548,7 +101863,7 @@ bPv
btv
bvj
bwE
-bPU
+bPv
aaa
bAQ
bCa
@@ -105561,21 +101876,21 @@ aaa
aaa
aaa
bPL
-bPI
+fyN
bVe
-bRA
-bRA
+wuR
+mSq
caf
-bPI
-cdl
-ceR
+jnJ
+cdp
+bRA
+jnJ
+cih
ceR
-cig
-bPI
-cae
-aaa
-aaa
-aaa
+nrg
+gZc
+cBe
+pae
aaa
aaa
aaa
@@ -105804,7 +102119,7 @@ aLd
brO
bty
bvj
-bwG
+bwJ
brO
aaa
bAR
@@ -105822,18 +102137,18 @@ bRA
bVf
bRA
bRA
-cag
-bPI
-cdm
-ceR
+bRA
+jnJ
+cdp
+bRA
+jnJ
+vTi
ceR
ceR
-ckd
-bPI
-cae
-aaa
-aaa
-aaa
+nrg
+fuT
+cBe
+pae
aaa
aaa
aaa
@@ -106059,9 +102374,9 @@ blB
boL
aLd
brO
-btC
+bwI
bvj
-bwH
+bwI
brO
aaa
bAR
@@ -106073,24 +102388,24 @@ aLd
aaa
aaa
aaa
-bPI
+jnJ
bRv
bRA
bVg
cuH
bRA
cah
-bPI
+jnJ
cdp
+bRA
+jnJ
+gdm
ceR
ceR
ceR
ceR
-clC
-bPI
-aaa
-aaa
-aaa
+wyo
+jnJ
aaa
aaa
aaa
@@ -106316,38 +102631,38 @@ aSf
boP
aSd
brQ
-btD
+bwI
bvj
bwI
brQ
bjQ
bAR
aAi
-bCb
-bCl
+bEL
+bEL
bAR
aSd
aaa
aaa
aaa
-bPI
+jnJ
bRw
bRA
bVh
cuH
bRA
-cai
-bPI
-cdl
-ceR
-cgw
+bRA
+jnJ
+cdp
+bRA
+jnJ
cih
ceR
clD
-bPI
-aaa
-aaa
-aaa
+fTl
+ceR
+rwM
+jnJ
aaa
aaa
aaa
@@ -106573,7 +102888,7 @@ blE
boL
aSd
brO
-btD
+bwI
bvj
bwI
brO
@@ -106587,24 +102902,24 @@ aSd
aaa
aaa
aaa
-bPI
+jnJ
bRx
bTl
bVi
cuH
bRA
bRA
-bPI
-cdo
+jnJ
+cdp
+bRA
+jnJ
+cii
ceR
ceR
-cii
-ckf
-clE
-bPI
-aaa
-aaa
-aaa
+dPF
+hyR
+mrb
+jnJ
aaa
aaa
aaa
@@ -106760,7 +103075,7 @@ aaa
aaa
aaa
aaa
-acT
+aeP
abQ
abQ
abQ
@@ -106768,7 +103083,7 @@ abQ
abQ
abQ
abQ
-acq
+aoE
aaa
aaa
aaa
@@ -106836,7 +103151,7 @@ bwJ
brO
aSd
ahb
-bCb
+clG
bCb
bEL
bAR
@@ -106844,24 +103159,24 @@ aSd
aSd
aSd
aSd
-bPI
-bRG
+cBe
bRG
bRG
bRG
+rEw
bYt
+sAK
+jtw
+rEw
+bYt
+cBe
+rEw
+rAQ
+sAK
bRG
bRG
bRG
-oZV
-bRG
-bRG
-bRG
-bRG
-bPI
-aaa
-aaa
-aaa
+uQb
aaa
aaa
aaa
@@ -107012,17 +103327,17 @@ aaa
aaa
aaa
acT
-abQ
-abQ
+aaa
+abT
abQ
abQ
abQ
abI
-afz
-abV
+abQ
+ahh
agf
agE
-abV
+ajH
ahw
ahy
ahN
@@ -107087,13 +103402,13 @@ aSf
bsd
aSd
brO
-btD
+bwI
bvj
bwI
brO
aSd
ahb
-bCb
+clI
bCb
bEL
bAR
@@ -107115,10 +103430,10 @@ bRA
bRA
bRA
bRA
-bPI
-aaa
-aaa
-aaa
+bRA
+bRA
+bRA
+jnJ
aaa
aaa
aaa
@@ -107268,14 +103583,14 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
abI
-ade
-ade
adS
ade
-ade
+ady
abI
-afz
+abV
abV
abV
abV
@@ -107344,15 +103659,15 @@ aSf
bsh
aSd
brR
-btD
+bwI
bvj
bwI
brR
aSd
bAR
-bBZ
-bCb
bEL
+bCb
+cos
bAR
aSd
bGl
@@ -107371,11 +103686,11 @@ bRA
bRA
bRA
bRA
-clF
-bPI
-aaa
-aaa
-aaa
+bRA
+bRA
+bRA
+xgS
+jnJ
aaa
aaa
aaa
@@ -107525,10 +103840,10 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
abI
-abV
-abV
-abV
+acJ
abV
abV
abI
@@ -107537,7 +103852,7 @@ abV
abV
agF
ahg
-abV
+amq
ahy
ahP
aaa
@@ -107601,7 +103916,7 @@ brc
bsh
aSd
brO
-btD
+bwI
bvj
bwI
brO
@@ -107609,27 +103924,31 @@ aMs
bAR
bAS
bCb
-bEL
+cwZ
bAR
aSd
bKp
bKp
bOb
-bPI
-bRG
+cik
bRG
+rEw
ylx
bRG
bRG
-bRG
+doA
rYq
-bRG
-bRG
-bRG
+nbH
+nbH
+fgw
cik
bRG
+rEw
+jat
+sAK
bRG
-bPI
+uQb
+aaa
aaa
aaa
aaa
@@ -107731,12 +104050,12 @@ aaa
aaa
aaa
aaa
+"}
+(44,1,1) = {"
aaa
aaa
aaa
aaa
-"}
-(44,1,1) = {"
aaa
aaa
aaa
@@ -107771,32 +104090,28 @@ aaa
aaa
aaa
aaa
+acT
aaa
aaa
aaa
+acT
+aaa
aaa
-abG
-abQ
-abQ
-abQ
-acq
aaa
aaa
abI
+acU
abV
-ady
-abV
-abV
-abV
+adz
abI
afB
-ady
+abV
abV
ahv
abQ
abQ
abQ
-acs
+apD
aaa
aaa
aaa
@@ -107858,9 +104173,9 @@ blE
bsh
aSd
brO
-btz
+clE
bvj
-bwJ
+clF
brO
aMs
bAT
@@ -107872,24 +104187,24 @@ aSd
aMd
bLZ
aSd
-bPI
+jnJ
bRB
bTo
bRA
-bWI
-bPI
-gQL
-bRA
bRA
-bPI
+gMk
+jnJ
+dqz
+nbH
+nbH
+fgw
+jnJ
+ckj
bRA
bRA
-ckg
-clG
-bPI
-aaa
-aaa
-aaa
+sGi
+rrE
+jnJ
aaa
aaa
aaa
@@ -108032,19 +104347,19 @@ aaa
aaa
aaa
aaa
-abI
-abU
-acd
-ack
-abI
+abT
+abQ
+abQ
+abQ
+acn
+aaa
+aaa
aaa
aaa
abI
-adf
-adz
adT
abV
-abV
+adW
abI
afC
abV
@@ -108129,24 +104444,24 @@ aSd
aMd
bLZ
aSd
-bPI
-bRC
+jnJ
+bVg
bRA
bRA
-bWJ
-bPI
+bRA
+nyJ
jnJ
-cbx
-cbx
-bPI
+dqz
+nbH
+nbH
+fgw
+jnJ
+ckj
bRA
bRA
bRA
-clI
-bPI
-aaa
-aaa
-aaa
+tAY
+jnJ
aaa
aaa
aaa
@@ -108290,8 +104605,8 @@ aaa
aaa
aaa
abJ
-abV
-abV
+abZ
+acd
acl
abI
abQ
@@ -108301,15 +104616,15 @@ abQ
abQ
abQ
aes
-aeP
+abV
abI
abQ
afP
agg
+ajA
abQ
-abQ
-abQ
-acq
+amF
+acT
aaa
aaa
aaa
@@ -108386,24 +104701,24 @@ aSd
aMd
bLZ
aSd
-bPI
+jnJ
bRD
bRA
bRA
-bWK
-bPI
+bRA
+uBP
cak
rEw
cdr
-bPI
+cdr
+sAK
+uQb
+ckj
bRA
bRA
bRA
bRA
-bPI
-aaa
-aaa
-aaa
+jnJ
aaa
aaa
aaa
@@ -108551,11 +104866,11 @@ aaw
abV
abV
abI
-acz
-acI
-acI
-acI
-acI
+acA
+afg
+ace
+ace
+ace
adU
abV
abV
@@ -108564,7 +104879,6 @@ afD
abV
abV
agH
-abV
ahy
ahN
aaa
@@ -108590,6 +104904,7 @@ aaa
aaa
aaa
aaa
+aaa
awr
axi
axi
@@ -108644,23 +104959,23 @@ aMd
bMa
bjQ
bPR
-bPI
-bTp
+diV
bRA
bRA
-bPI
-car
-cbA
-cds
-bPI
-cgz
-cio
+bRA
+uBP
+jnJ
+nbH
+nbH
+nbH
+nbH
+jnJ
ckj
-bPI
-bYv
-aaa
-aaa
-aaa
+bRA
+uTI
+bRA
+bRA
+jnJ
aaa
aaa
aaa
@@ -108821,7 +105136,6 @@ abV
abV
abV
agI
-ahh
ahy
ahO
aaa
@@ -108838,6 +105152,7 @@ aaa
aaa
aaa
aaa
+aaa
alw
alw
alw
@@ -108900,24 +105215,24 @@ bLs
bmS
bMb
aLd
-aaa
-bPI
+cOX
+doA
bWL
bRA
-bWM
-bPI
-aaa
-aaa
-aaa
-bPI
-bRA
bRA
+pOZ
+jnJ
+oEZ
+nBZ
+nBZ
+nBZ
+jnJ
ckh
-bPI
-aaa
-aaa
-aaa
-aaa
+sDa
+tll
+fsj
+cik
+mlC
aaa
aaa
aaa
@@ -109066,19 +105381,18 @@ abV
acm
abI
acA
-acJ
-acJ
-acJ
-acJ
+abV
+ace
+ace
+ace
acf
aet
abV
abV
-abV
+ahd
abV
abV
agH
-abV
ahy
ahP
aaa
@@ -109095,6 +105409,7 @@ aaa
aaa
aaa
aaa
+aaa
alw
aab
aab
@@ -109159,21 +105474,21 @@ bLZ
aSd
aaa
bPR
-bPI
-bTl
-bWN
-bPI
-aaa
-aaa
-aaa
-bPI
+oZV
+bRA
+bRA
+sJS
+jnJ
+pOu
+otE
+tzT
cgA
-cil
-bPI
-bYv
-aaa
-aaa
-aaa
+jnJ
+ckj
+uTI
+bRA
+lTl
+jnJ
aaa
aaa
aaa
@@ -109319,25 +105634,25 @@ aaa
aaa
abK
abZ
-abV
+ack
abV
abI
abQ
abQ
-acU
abQ
abQ
-adW
+abQ
+abQ
adc
aeQ
-abI
+afz
abQ
afQ
agh
+ajB
abQ
-abQ
-abQ
-acs
+anv
+acT
aaa
aaa
aaa
@@ -109415,22 +105730,22 @@ aSf
bMc
aSd
aaa
-aaa
-bPR
-bRG
-bRG
-bYv
-aaa
-aaa
-aaa
-bPR
-bRG
-bRG
+cOX
+qPO
+tEM
+dOy
bYv
-aaa
-aaa
-aaa
-aaa
+jtw
+hHo
+hHo
+pQi
+hHo
+jtw
+qPO
+vFf
+fEn
+cik
+mlC
aaa
aaa
aaa
@@ -109574,11 +105889,11 @@ aaa
aaa
aaa
aaa
-abI
-abZ
-acf
-acn
-abI
+abU
+abQ
+abQ
+abQ
+acI
aaa
aaa
aaa
@@ -109673,12 +105988,20 @@ bCf
bCf
aaa
aaa
+cOX
+bRG
+bRG
+mlC
aaa
aaa
aaa
aaa
aaa
aaa
+cOX
+bRG
+bRG
+mlC
aaa
aaa
aaa
@@ -109783,6 +106106,8 @@ aaa
aaa
aaa
aaa
+"}
+(52,1,1) = {"
aaa
aaa
aaa
@@ -109791,13 +106116,6 @@ aaa
aaa
aaa
aaa
-"}
-(52,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -109828,31 +106146,28 @@ aaa
aaa
aaa
aaa
+acT
aaa
aaa
aaa
-abL
-abQ
-abQ
-abQ
-acs
+acT
aaa
aaa
aaa
aaa
adB
-acN
-acQ
-dox
+abV
+dov
+acl
abI
afF
-ady
+abV
abV
agK
abQ
abQ
abQ
-acq
+aoE
aaa
aaa
aaa
@@ -110098,16 +106413,16 @@ aaa
aaa
aaa
adA
-acN
+abV
dov
-doA
+abV
abI
afG
abV
abV
abV
+afg
abV
-ahz
ahy
ahN
aaa
@@ -110355,16 +106670,16 @@ aaa
aaa
aaa
adC
-abQ
-abQ
-abQ
+acN
+adf
+dox
abI
afH
-ady
abV
abV
abV
-ahA
+abV
+abV
ahy
ahO
aaa
@@ -110611,16 +106926,16 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
+abU
+abQ
+abQ
+abQ
abI
-afI
-afR
-agi
-abV
-abV
+abQ
+ahB
+ahB
+ahB
+ahB
ahB
ahy
ahP
@@ -110872,7 +107187,7 @@ aaa
aaa
aaa
aaa
-adC
+afI
abQ
abQ
abQ
@@ -110880,7 +107195,7 @@ abQ
abQ
abQ
abQ
-acs
+apD
aaa
aaa
aaa
@@ -113487,7 +109802,7 @@ aGn
aHn
aLn
aGn
-aKe
+aLx
aLq
aMx
aNE
@@ -113744,7 +110059,7 @@ aHS
aHS
aHl
aHl
-aKe
+aLx
aLp
aGn
aNF
@@ -114001,7 +110316,7 @@ aEL
aEL
aHS
aHl
-aKe
+aLx
aGn
aGn
aNH
@@ -114258,7 +110573,7 @@ aGn
aGn
aGn
aGn
-aKe
+aLx
aHS
aHS
aHS
@@ -115545,7 +111860,7 @@ aGn
aGn
aGn
aHS
-aKe
+aLx
aGn
aPc
aGn
@@ -119434,7 +115749,7 @@ bzJ
byB
bAF
bDX
-bNO
+bOp
bDX
bSK
bPV
@@ -120237,7 +116552,7 @@ cDS
cvo
cEQ
cGi
-cqy
+cMV
cKb
cKf
cKf
@@ -121424,7 +117739,7 @@ aaa
aaa
aaa
aBB
-acY
+auV
ads
adM
aed
@@ -121434,7 +117749,7 @@ afb
afo
afU
ago
-aib
+aie
ajp
aIo
aIo
@@ -121933,22 +118248,22 @@ aaa
aaa
aaa
aaa
-aMr
-afO
-abM
-aab
+abY
+amW
+amW
+amW
awB
ada
adt
awB
-aab
apF
+aew
aeJ
afd
afq
aef
aqX
-aib
+aie
ajM
alc
anZ
@@ -122044,7 +118359,7 @@ cJx
cNZ
cLd
cKb
-cOX
+cPj
cSU
cSU
cSU
@@ -122190,7 +118505,7 @@ aaa
aaa
aaa
aaa
-afO
+amW
ahF
ahF
ahF
@@ -122199,8 +118514,8 @@ ahF
ahF
ahF
apF
-apF
-aeL
+aez
+afj
aoi
afs
aeh
@@ -122301,7 +118616,7 @@ cME
cMx
cLf
cKb
-cOX
+cPj
cSU
cUk
cVh
@@ -122447,7 +118762,7 @@ aaa
aaa
aaa
aaa
-abM
+amW
ahF
ahF
ahF
@@ -122558,7 +118873,7 @@ cJx
cJx
cLn
cKb
-cOX
+cPj
cSU
cUj
cVi
@@ -122704,7 +119019,7 @@ aaa
aaa
aaa
aaa
-aab
+amW
ahF
ahF
ahF
@@ -122815,7 +119130,7 @@ cNG
cNG
cLf
cKb
-cOX
+cPj
cSU
dsI
cVj
@@ -122961,7 +119276,7 @@ aaa
aaa
aaa
aaa
-aab
+amW
ahF
ahF
ahF
@@ -122969,7 +119284,7 @@ ahF
ahF
ahF
ahF
-aeg
+adE
aeq
aeM
ahI
@@ -123072,7 +119387,7 @@ cNG
cOG
cOE
cKb
-cOX
+cPj
cSU
dsH
dsP
@@ -123214,10 +119529,10 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
+amW
+aab
+amW
+aab
abM
ahF
ahF
@@ -123226,8 +119541,8 @@ ahF
ahF
ahF
ahF
-apF
-apF
+adF
+aeA
aeT
afj
afw
@@ -123471,9 +119786,9 @@ aaa
aaa
aaa
aaa
+aab
aaa
-aaa
-aaa
+aab
aaa
afX
ahF
@@ -123483,14 +119798,14 @@ ahF
ahF
ahF
ahF
-aab
apF
+aeL
aeO
afi
afv
aeg
aqX
-aib
+aie
ajR
alo
axL
@@ -123586,7 +119901,7 @@ cJx
cJx
cLD
cKb
-cOX
+cPj
cSU
dsK
cOg
@@ -123728,19 +120043,19 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-afX
-agt
-agt
-agt
+amW
+aab
+aiv
+aiv
+aiv
+aiv
+aiv
+aiv
ale
-agt
-agt
-agt
-agt
+aiv
+aiv
+aiv
+aiv
aqv
aqv
aqv
@@ -123843,7 +120158,7 @@ cJx
cJx
cPv
cKb
-cOX
+cPj
cSU
dsL
cOg
@@ -123985,19 +120300,19 @@ aaa
aaa
aaa
aaa
+aab
aaa
-aaa
-aaa
-aaa
-aaa
-agt
-ahH
-aif
+aiv
+abO
+abO
+abO
+abO
+aiv
alg
-aiw
-aYm
-alf
-agt
+aiv
+abO
+abO
+aiv
aey
aeU
afk
@@ -124100,7 +120415,7 @@ cJx
cJx
cNG
cKb
-cOX
+cPj
cSU
dsK
cOg
@@ -124242,19 +120557,19 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-agt
-ahR
-aij
+amW
+aab
+aiv
+abO
+aiv
+aiv
+aiv
+aiv
acH
-aew
-anW
-alg
-alU
+aiv
+aiv
+aiv
+aiv
amz
agD
aos
@@ -124499,22 +120814,22 @@ aaa
aaa
aaa
aaa
+aab
aaa
-aaa
-aaa
-aaa
-abP
-agt
-agt
-ahG
-anW
-adb
-adv
-adP
-aei
-amy
-anv
-aor
+aiv
+abO
+aiv
+ahT
+ahT
+ahD
+yjg
+yjg
+yjg
+yjg
+aiv
+afm
+anz
+aou
apf
aqw
aqX
@@ -124756,19 +121071,19 @@ aaa
aaa
aaa
aaa
-aaa
-aiv
-aiv
+amW
+aab
aiv
+abO
aiv
-agt
+ahT
ahT
ain
-acH
+act
+aeR
aeR
-acH
ali
-apP
+aiv
amz
anz
aou
@@ -124871,7 +121186,7 @@ cMG
cMG
cPL
cJZ
-cOX
+cPj
cRR
cUu
cRM
@@ -125013,19 +121328,19 @@ aaa
aaa
aaa
aaa
+aab
aaa
aiv
abO
-abO
-abO
-agt
-ahS
+aiv
+aca
+ahT
aik
aiz
ajk
-anW
+ajk
alh
-agt
+aiv
amA
any
aot
@@ -125270,26 +121585,26 @@ aaa
aaa
aaa
aaa
-aaa
-abY
-abO
+amW
+aab
aiv
+abO
aiv
-agt
-agt
-agt
-agt
-ajn
-agt
-ajn
-agt
+mKg
+mKg
+aik
+yjg
+yjg
+yjg
+yjg
+adR
amC
agL
afl
apj
aqx
ago
-aiy
+ase
akd
alN
aop
@@ -125383,7 +121698,7 @@ cHJ
cHI
cHD
cHD
-cwL
+cMV
cJZ
cRR
cRR
@@ -125527,18 +121842,18 @@ aaa
aaa
aaa
aaa
+aab
aaa
aiv
abO
aiv
-acL
-akl
+mKg
mKg
dqg
xeW
-adg
-ajj
-alj
+xeW
+xeW
+xeW
alV
amB
anB
@@ -125784,19 +122099,19 @@ aaa
aaa
aaa
aaa
-aaa
+amW
+aab
aiv
abO
-acu
-afm
-agu
-adh
-adh
-wuR
-adh
-fyN
-all
aiv
+mKg
+mKg
+aio
+yjg
+yjg
+yjg
+yjg
+aei
amE
anE
aox
@@ -125877,12 +122192,12 @@ ciN
cfn
clZ
cnA
-cqy
+cMV
crV
ctl
cue
cvK
-cwL
+cMV
crV
cnA
cHD
@@ -126041,13 +122356,13 @@ aaa
aaa
aaa
aaa
+aab
aaa
aiv
abO
aiv
-ahW
-agS
-ahU
+mKg
+mKg
aio
acK
ajo
@@ -126057,8 +122372,8 @@ aiv
amD
anD
alW
-apS
-apS
+aqv
+aqv
agO
aso
atj
@@ -126298,16 +122613,16 @@ aaa
aaa
aaa
aaa
-aaa
+amW
+aab
aiv
abO
aiv
-air
-agS
-ajr
-ajr
-ajr
+acb
ajr
+aci
+acu
+acx
all
aln
aiv
@@ -126315,7 +122630,7 @@ amG
agX
aoz
apA
-apS
+aui
agT
aiA
akh
@@ -126347,7 +122662,7 @@ avq
avq
aHp
aRx
-aUw
+bdN
aDN
biQ
bpQ
@@ -126555,27 +122870,27 @@ aaa
aaa
aaa
aaa
+aab
aaa
aiv
abO
aiv
-aiO
agR
-acj
-aiB
+yjg
aiB
-ajq
-afe
-alm
+yjg
+yjg
+yjg
+yjg
alX
-amF
+apl
anF
aoy
apl
aqy
agQ
ask
-akg
+atj
aDv
aow
apz
@@ -126812,18 +123127,18 @@ aaa
aaa
aaa
aaa
-aaa
+amW
+aab
aiv
abO
aiv
-ajL
-akw
-akf
-akf
-akf
-akf
-akf
-akf
+alY
+yjg
+aco
+acv
+acv
+acj
+acv
alZ
amI
anJ
@@ -127069,24 +123384,24 @@ aaa
aaa
aaa
aaa
+aab
+aaa
abP
-aiv
abO
-acC
-afm
+aiv
alY
-tEM
-qPO
yjg
-ajK
-akt
+yjg
+yjg
+yjg
+yjg
aku
aiv
amH
-anJ
+afJ
ahY
apB
-apS
+aui
ajm
asm
alM
@@ -127326,24 +123641,24 @@ aaa
aaa
aaa
aaa
-aaa
-aiv
+amW
+aab
+abP
abO
aiv
-aiv
-aiv
-aiv
-aiv
-aiv
-aiv
-aiv
-aiv
+acc
+ach
+acp
+acw
+acy
+acE
+acS
aiv
amJ
-anJ
+ahe
aoD
apE
-apS
+aui
agW
asp
aty
@@ -127583,24 +123898,24 @@ aaa
aaa
aaa
aaa
+aab
aaa
aiv
+abO
+aiv
+aiv
+aiv
+aiv
+aiv
+aiv
+aiv
+aiv
aiv
-akB
-aca
-acg
-aco
-alB
-acP
-adi
-atY
-anH
-anH
aui
-anK
+aui
aoC
-apD
-apS
+aui
+aui
agV
aso
atx
@@ -127840,22 +124155,22 @@ aaa
aaa
aaa
aaa
-aaa
-acp
-aaa
-akB
-acc
-ach
-acg
-acg
-aeu
+amW
+aab
+aiv
+abO
+abO
+abO
+abO
+abO
+aiv
adk
adx
adQ
aek
-aeA
-aoJ
+wdq
aoJ
+aoF
apI
anA
ahk
@@ -128097,22 +124412,22 @@ aaa
aaa
aaa
aaa
+aab
aaa
-aaa
-aaa
-akB
-acb
-aqd
-act
-aqd
-acM
+aiv
+aiv
+aiv
+aiv
+aiv
+aiv
+anH
adj
-acg
-anA
aej
-aez
-anL
-aoE
+aej
+aej
+aoJ
+aoJ
+aoF
apH
aqA
ahj
@@ -128154,7 +124469,7 @@ aRx
dhr
djf
dko
-bnp
+bnN
dnC
bmi
aaa
@@ -128354,26 +124669,26 @@ aaa
aaa
aaa
aaa
+aab
+aaa
+aab
aaa
+aab
aaa
+aab
aaa
-akB
-akW
-akW
-pXU
-qPj
-acO
+anH
adl
-adE
-anA
+aoJ
amd
-aez
+amd
+aoJ
agY
aoG
apJ
aqC
-ago
-aso
+ahC
+aif
atC
awV
avz
@@ -128445,7 +124760,7 @@ cjn
ckT
clS
cPd
-cos
+cPd
cPd
cqY
cmt
@@ -128552,28 +124867,8 @@ aaa
aaa
aaa
aaa
-"}
-(125,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+"}
+(125,1,1) = {"
aaa
aaa
aaa
@@ -128614,31 +124909,51 @@ aaa
aaa
aaa
aaa
-akB
-aca
-alB
-aco
-aqd
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+amW
+aab
+amW
+aab
+amW
+aab
+amW
+aab
acM
-alB
-adD
-anA
amc
-aez
-anM
+amc
+amc
+amc
+aoJ
+aoJ
aoF
-apJ
-aqB
-ahC
-asq
-atB
+ahR
+anx
+ago
+aso
+atE
auE
apa
axt
ati
auT
awe
-axO
+axR
ayY
ayr
aAZ
@@ -128871,21 +125186,21 @@ aaa
aaa
aaa
aaa
-akB
-acc
-ach
-aqd
-aqd
-aev
+aaa
+aaa
+aaa
+aab
+aaa
+anH
adn
adG
-anA
+acg
amf
-aez
-ahe
-aoF
+adl
+aoJ
+ahH
apL
-anx
+anA
ago
aiR
atE
@@ -129128,22 +125443,22 @@ aaa
aaa
aaa
aaa
-akB
-acb
-alB
-acv
-acg
-acP
-adm
-adF
-adR
+aaa
+aaa
+aaa
+amW
+aab
+anH
+anH
+anA
+anA
ael
aeB
anO
aoH
afx
anA
-ago
+ahW
aso
atE
auE
@@ -129385,22 +125700,22 @@ aaa
aaa
aaa
aaa
-akB
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
anH
-anA
-anA
-anA
-anA
-anA
-anA
-anA
-anA
-amq
-anR
+acL
+acV
+aeu
+hJq
+aoJ
aoL
-apm
-anA
-ahD
+aoR
+aqA
+ago
aiS
akn
alR
@@ -129643,20 +125958,20 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
aab
-anA
-acw
-acD
-acS
-anA
+aab
+aaa
+anH
akv
alp
-alG
-hJq
-anQ
+aoJ
+aoJ
+aoJ
aoI
aoR
-aqA
+adp
ago
aso
atE
@@ -129901,17 +126216,17 @@ aaa
aaa
aaa
aaa
-aci
-acy
-anA
-anA
-anA
+aaa
+aaa
+amW
+aab
+anH
akF
adX
aoJ
amM
-anQ
-aoI
+aoJ
+aoL
apM
apR
ahC
@@ -130030,7 +126345,7 @@ dgg
dgP
dhC
dip
-diV
+djE
djB
dkk
dkO
@@ -130158,18 +126473,18 @@ aaa
aaa
aaa
aaa
-aci
-acx
-acE
-acE
-anA
+aaa
+aaa
+aab
+aaa
+aqA
aoJ
alq
afK
amr
anS
aoM
-afJ
+aoJ
anx
ago
aiT
@@ -130415,10 +126730,10 @@ aaa
aaa
aaa
aaa
-anA
-acB
-acB
-acw
+aaa
+aaa
+aab
+aaa
adp
aoJ
alu
@@ -130672,12 +126987,12 @@ aaa
aaa
aaa
aaa
-anA
-anA
-anA
-anA
-anA
-aoJ
+aaa
+aaa
+aab
+aaa
+acB
+acO
adY
amm
amN
@@ -130930,11 +127245,11 @@ aaa
aaa
aaa
aaa
+aaa
aab
-anA
-acV
-anH
-akI
+aaa
+acC
+alF
alF
alF
amQ
@@ -131184,20 +127499,20 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
+amW
+aab
+amW
+aab
+amW
aab
-anA
-anA
anH
akH
-alC
+alF
amp
amP
-anV
-aof
-aoQ
+alF
+alF
+alF
anA
ahQ
aiV
@@ -131441,15 +127756,15 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
+aab
aaa
aab
+aaa
aab
+aaa
aih
akJ
-akH
+adi
alC
amT
aof
@@ -131698,12 +128013,12 @@ aaa
aaa
aaa
aaa
+aab
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+aih
+aih
+aih
+aih
aih
akK
aiY
@@ -131711,7 +128026,7 @@ amv
amS
ajV
aiY
-aiY
+ahV
aqG
ajJ
asy
@@ -131955,16 +128270,16 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+amW
+aab
+aih
adq
+agu
+ajn
+aih
adI
-aiY
-ajV
+adm
+aev
anb
ajV
aiY
@@ -132212,15 +128527,15 @@ aaa
aaa
aaa
aaa
+aab
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-adq
+adb
+adv
+agS
+ajq
+acD
adH
-aiY
+alm
afM
aeC
ahm
@@ -132469,15 +128784,15 @@ aaa
aaa
aaa
aaa
+aab
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aih
-akN
-alH
+adg
+adD
+ahG
+ajK
+akw
+aoT
+alB
amu
and
aeW
@@ -132726,15 +129041,15 @@ aaa
aaa
aaa
aaa
+aab
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aih
-aih
-aih
+adh
+adP
+ahS
+akf
+akN
+acP
+adw
amt
aeD
aeV
@@ -132983,15 +129298,15 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
+amW
aab
aih
+afe
+ahU
+akl
+aih
+aih
+aih
aih
aih
aih
@@ -133240,14 +129555,14 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aab
+aaa
+aih
+agt
+ajj
+akt
+alj
+aih
ajb
ajs
aeE
@@ -133497,13 +129812,13 @@ aaa
aaa
aaa
aaa
+aab
aaa
+aab
aaa
aaa
aaa
-aaa
-aaa
-aaa
+aab
aaa
ajb
ajt
@@ -133751,17 +130066,17 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
abp
aaa
aaa
-aaa
-aaa
+amW
+aab
+amW
+aab
+aab
+aab
+amW
+aab
ajb
ajv
ajw
@@ -133794,7 +130109,7 @@ aFJ
aFJ
aOI
aQG
-aSO
+qFg
aVq
aVq
aZE
@@ -134017,7 +130332,7 @@ aaa
aaa
aaa
aaa
-aaa
+aab
aaa
ajb
aju
@@ -134274,8 +130589,8 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
+amW
+aab
ajb
ajw
ajw
@@ -134531,7 +130846,7 @@ aaa
aaa
aaa
aaa
-aaa
+aab
aaa
ajb
ajx
@@ -134788,7 +131103,7 @@ aaa
aaa
aaa
aaa
-aaa
+aab
aaa
alI
ajy
@@ -135045,8 +131360,8 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
+alv
+aab
alJ
aaa
aaa
@@ -136162,7 +132477,7 @@ ckC
cxj
ckC
ciY
-cwZ
+czY
cqM
crE
cvX
@@ -137876,8 +134191,8 @@ aaa
alv
aab
alD
-amo
-amo
+axq
+axq
ann
aoK
apn
@@ -140483,7 +136798,7 @@ aGX
aUe
aGY
aGX
-aWy
+bbh
bau
bau
bch
@@ -140740,7 +137055,7 @@ aIE
aGY
aGY
aGX
-aWy
+bbh
bau
bav
bci
@@ -140997,7 +137312,7 @@ aGX
aMz
aMz
aQL
-aWy
+bbh
bau
bao
bcs
@@ -141254,7 +137569,7 @@ aKX
aIE
aUW
aUW
-aWy
+bbh
bau
bax
bcj
@@ -141511,7 +137826,7 @@ aUU
aIE
aGY
aGY
-aWy
+bbh
aGX
aGX
aGX
@@ -141828,15 +138143,15 @@ aaa
cBR
cKY
cEH
-cNo
+cPp
cEH
-cNo
+cPp
cEH
-cNo
+cPp
cEH
-cNo
+cPp
cEH
-cNo
+cPp
cXv
cMQ
cZs
@@ -142343,7 +138658,7 @@ cBR
cxN
cxN
cKx
-cNo
+cPp
cEH
cOo
cOP
@@ -142600,7 +138915,7 @@ cIO
cIB
cxN
cKt
-cNo
+cPp
cEH
cOn
cOO
@@ -142865,7 +139180,7 @@ cPK
cQs
cRt
cSf
-cNo
+cPp
cMQ
cZy
cJK
@@ -143379,7 +139694,7 @@ cSH
cQr
cVg
cSh
-cNo
+cPp
cNc
cxN
cxN
@@ -143893,7 +140208,7 @@ cSH
cQD
cxN
cWg
-cNo
+cPp
cMQ
cZB
cJK
@@ -147729,7 +144044,7 @@ cuZ
cgs
cxV
czL
-cBe
+cac
cCo
cjY
bGG
@@ -150006,22 +146321,22 @@ aYD
bic
bic
bic
-boK
+ckf
bqp
-brK
+bWJ
bic
-bqo
-bnb
-blD
+aYU
+aYU
+aYU
bic
boK
bic
boK
bic
+bqp
bic
-bqo
-blD
-bic
+aYU
+aYU
bic
bIE
bIA
@@ -150267,19 +146582,19 @@ bDz
bjC
uom
btt
-blA
-blA
-blA
-bzq
-uom
+nHW
+nHW
+nHW
+nHW
+obW
uXX
-uom
+obW
bzq
-blA
-blA
-blA
+bjC
+mGt
xlz
-iau
+xlz
+jXY
bjC
bIx
bKm
@@ -150523,21 +146838,21 @@ bDz
bDz
pdr
fpO
+nHW
+nHW
+nHW
+nHW
+nHW
obW
-obW
-obW
-obW
-obW
-obW
-obW
-obW
-obW
-obW
-obW
-obW
+nHW
obW
nHW
-bBR
+aYU
+xlz
+toq
+nRP
+nRP
+aYU
bIx
bKm
aaa
@@ -150710,7 +147025,7 @@ aaa
aaa
aaa
afZ
-agw
+aim
agw
agw
agZ
@@ -150720,8 +147035,8 @@ aiC
ahJ
agw
agw
-ahs
-aaa
+bnp
+bRC
aaa
aaa
aaa
@@ -150778,23 +147093,23 @@ iCr
bDz
bDz
bGJ
-bBR
+aYU
fpO
obW
-oDA
-oDA
-oDA
-oDA
-oDA
obW
-oDA
-oDA
-oDA
-oDA
-oDA
+obW
+obW
+obW
+obW
+obW
obW
nHW
-bBS
+aYU
+naH
+sDw
+xBR
+eMV
+aYU
bIx
bKm
aaa
@@ -150968,17 +147283,17 @@ aaa
aaa
agZ
ail
-ail
+ajC
adV
-ail
-ail
-ail
+aha
+anK
+aha
+aha
aha
aha
-ajz
ajY
akp
-aaa
+bTp
aaa
aaa
aaa
@@ -151035,22 +147350,22 @@ bmY
bDz
bDz
bGJ
-bBS
+aYU
fpO
+nHW
+nHW
+nHW
+nHW
+nHW
+nHW
+nHW
obW
-kcF
-dUh
-sDw
-rAt
-kcF
-obW
-sDw
-rAt
-kcF
+nHW
+bjC
law
sDw
-obW
-nHW
+xTB
+ils
bjC
sbp
sbp
@@ -151227,15 +147542,15 @@ aga
agx
add
agZ
-agZ
-agZ
-ail
+aha
+aha
+aha
aiE
aha
-ajA
-ajY
+aha
+apS
akp
-aaa
+bTp
aaa
aaa
aaa
@@ -151288,26 +147603,26 @@ bcJ
uxA
qdA
bjC
-jJT
-ksF
+bmY
bDz
-oRM
-bjC
+bDz
+bGJ
+aYU
fpO
-obW
-blA
-blA
-blA
-blA
+ioI
+nHW
blA
+nHW
+nHW
+nHW
+ioI
obW
-blA
-naH
-blA
-blA
-blA
obW
-nHW
+msR
+nRP
+tIz
+xTB
+tpg
bjC
bIx
bKm
@@ -151483,16 +147798,16 @@ aaa
agc
agw
agw
-ahn
-aaa
+amo
agZ
-ail
+agZ
+aha
aiF
aha
-ajB
-agZ
-ahn
-aaa
+aha
+aIb
+bNO
+bTp
aaa
aaa
aaa
@@ -151541,30 +147856,30 @@ aaa
aaa
aYU
baX
-bcK
+beC
beC
wxQ
-bBX
+bjC
+blC
+bqo
+bDz
+dsw
+bjC
+dHM
+bic
+aYU
+bic
+aYU
bic
aYU
-pdr
bic
-bjG
-dHM
-obW
-obW
-obW
-obW
-obW
-obW
-obW
-obW
-obW
-obW
-obW
obW
obW
-nHW
+msR
+oRM
+oRM
+aaA
+wli
aYU
bIx
bKm
@@ -151743,13 +148058,13 @@ aaa
aaa
aaa
agZ
-ail
+aha
aiG
aha
-ajC
+aha
+aJq
agZ
-aaa
-aaa
+bWI
aaa
aaa
aaa
@@ -151800,28 +148115,28 @@ aYU
baY
bcL
bcK
-bcK
+bcL
bim
-esI
-blC
-lax
-tdh
+bic
aYU
-fpO
-obW
-oDA
-oDA
-oDA
-oDA
-oDA
-obW
-oDA
-oDA
+pdr
+bic
+bjG
+fzb
+iPL
oDA
+ksF
oDA
+kPl
oDA
+iPL
obW
-nHW
+fGD
+bjC
+pGQ
+vJw
+wsj
+mGt
bjC
sbp
sbp
@@ -152000,10 +148315,11 @@ afZ
aho
ahJ
agZ
-ail
+aha
aiH
ajd
ajD
+aKe
agZ
aaa
aaa
@@ -152052,7 +148368,6 @@ aaa
aaa
aaa
aaa
-aaa
aYU
aYH
bcL
@@ -152066,20 +148381,20 @@ fpO
wkg
fpO
obW
-kcF
-law
-sDw
-rAt
-kcF
obW
-sDw
-rAt
-kcF
-dUh
-sDw
+obW
+obW
+obW
+obW
+obW
obW
nHW
-bBR
+kcF
+bic
+bic
+bic
+bic
+kcF
bIx
bKm
aaa
@@ -152257,7 +148572,7 @@ agZ
ahp
ahp
agZ
-ail
+ahZ
agw
agw
agw
@@ -152316,27 +148631,27 @@ bcL
bcK
bcK
bin
-bjJ
+blD
obW
obW
-fpO
+dSc
wkg
fpO
obW
-blA
-blA
-blA
-blA
-blA
obW
-blA
-blA
-blA
-blA
-blA
+obW
+obW
+obW
+obW
+obW
obW
nHW
-bBS
+kcF
+bic
+bic
+bic
+bic
+kcF
bIx
bKm
aaa
@@ -152510,12 +148825,12 @@ aaa
aaa
afZ
agw
+ahp
aha
aha
+agZ
aha
agZ
-ail
-ahZ
aha
ajE
ajZ
@@ -152570,29 +148885,29 @@ aaa
aYU
usf
bcL
-vMh
bcK
+bcL
bim
-vVC
-blv
+bic
nVM
-vJw
-aYU
-fpO
-obW
-obW
-obW
-obW
-obW
-obW
-obW
-obW
-obW
-obW
-obW
-obW
+nVM
+bic
+bjG
+gyR
+jbf
+jMV
+kMV
+jMV
+lkY
+jMV
+jbf
obW
-nHW
+fGD
+bjC
+rAt
+vMh
+ecb
+qch
bjC
sbp
sbp
@@ -152765,13 +149080,13 @@ aaa
aaa
aaa
aaa
-aaa
+ahq
agz
-abT
+aha
aha
ahK
agZ
-agw
+ahK
agZ
aha
aha
@@ -152826,30 +149141,30 @@ aaa
aaa
aYU
pDl
-bcK
+qpX
qpX
oqQ
-bBX
-bic
-qJu
+bjC
+bnb
qJu
-bic
-bjG
-iau
btu
-uom
-uom
-oDA
-oDA
-oDA
-xnj
-oDA
-oDA
+esI
+bjC
+iau
+bic
+aYU
+bic
+aYU
+bic
+aYU
+bic
obW
obW
-oDA
+nIj
+rGB
+vVC
xnj
-iau
+obG
aYU
bIx
bKm
@@ -152965,70 +149280,70 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-"}
-(220,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+aaa
+aaa
+"}
+(220,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahz
agB
ahc
-ahq
+aha
ahL
ahZ
-aim
+aha
ahZ
aha
aha
@@ -153087,27 +149402,27 @@ kHU
iwt
kUs
bjC
-kPl
-nVM
-blv
-nRP
-bBX
-bic
-bic
-wHx
+gmY
+fpO
+lxD
+nHW
+bjC
+obW
+jJT
+nHW
wHx
-bic
-bic
-bic
-bqp
-iPL
-aYU
-nIj
+nHW
+nHW
+nHW
+jJT
+obW
+obW
nIj
-aYU
-dUh
-bic
-bjG
+sPV
+xBQ
+xnj
+hTU
+bjC
bIx
bKm
aaa
@@ -153279,13 +149594,13 @@ aaa
aaa
aaa
aaa
-aaa
+ahA
agA
-ahd
aha
aha
+ahK
agZ
-agw
+ahK
agZ
aha
aha
@@ -153349,20 +149664,20 @@ fpO
lxD
fUo
bjC
-pGQ
-ioI
-uom
-uom
-kMV
-xBQ
-xBR
+obW
+nHW
+nHW
+nHW
+nHW
+nHW
+nHW
+nHW
+obW
+nHW
bjC
-lkY
-gyR
-mQF
mQF
hJi
-oUw
+xnj
fZO
bjC
sbp
@@ -153538,12 +149853,12 @@ aaa
aaa
agc
agw
+mMw
aha
aha
+agZ
aha
agZ
-ail
-ahZ
aha
ajF
aka
@@ -153606,22 +149921,22 @@ fpO
lxD
fGD
bjC
-dsw
-fzb
-toq
-toq
-toq
-toq
-sPV
-mpx
-lKS
-gyR
-mQF
-mQF
+obW
+obW
+obW
+obW
+obW
+obW
+obW
+obW
+obW
+nHW
+aYU
+sVQ
hJi
-lKS
+xnj
xtk
-bBR
+aYU
bIx
bKm
aaa
@@ -153799,7 +150114,7 @@ agZ
mMw
mMw
agZ
-ail
+ahZ
agw
agw
agw
@@ -153859,26 +150174,26 @@ aaa
aaa
aYU
gmY
-fpO
-lxD
+brK
+bBX
nHW
bjC
-tIz
-sVQ
-jbf
-jbf
-jbf
-jbf
-xTB
-mpx
-lKS
-gyR
-mQF
-mQF
+obW
+nHW
+nHW
+nHW
+nHW
+nHW
+nHW
+nHW
+obW
+nHW
+aYU
+tdh
hJi
-lKS
-vGW
-bBS
+xnj
+xtk
+aYU
bIx
bKm
aaa
@@ -154056,10 +150371,11 @@ agc
ahr
ahM
agZ
-ail
+aha
aiI
aha
-ajG
+aha
+aSO
agZ
aaa
aaa
@@ -154113,24 +150429,23 @@ aaa
aaa
aaa
aaa
-aaa
bjC
-iau
+gmY
nvl
tku
-iau
+nHW
bjC
-kyW
+mxT
+ldp
+nHW
+nHW
+nHW
+nHW
+nHW
ldp
-dSc
-iau
-rGB
-mGt
-msR
-fGr
mxT
xgN
-jMV
+bjC
kaG
qxC
dwn
@@ -154313,13 +150628,13 @@ aaa
aaa
aaa
agZ
-ail
+aha
aiJ
aha
aha
+aha
agZ
-aaa
-aaa
+bRC
aaa
aaa
aaa
@@ -154378,19 +150693,19 @@ nFM
aYU
bIC
bic
-bqo
-bnb
-bnb
-bnb
-blD
+bic
+aYU
+aYU
+aYU
+bic
+bic
+bic
+bic
bic
bIC
bic
bic
-bqo
-bnb
-bnb
-blD
+bic
bic
bIC
bIF
@@ -154567,16 +150882,16 @@ aaa
afZ
agw
agw
-ahs
-aaa
+amo
agZ
-ail
+agZ
+aha
aiK
aje
-ajH
-agZ
-ahs
-aaa
+aha
+aWy
+bNO
+bTp
aaa
aaa
aaa
@@ -154825,15 +151140,15 @@ agd
agC
adL
agZ
-agZ
-agZ
-ail
+aha
+aha
+aha
aiL
aha
aha
-ajY
+aha
akp
-aaa
+bTp
aaa
aaa
aaa
@@ -155080,17 +151395,17 @@ aaa
aaa
agZ
ail
-ail
+ajG
aen
-ail
-ail
-ail
+aha
+anW
+aha
+aha
aha
aha
-ajz
ajY
akp
-aaa
+bTp
aaa
aaa
aaa
@@ -155336,7 +151651,7 @@ aaa
aaa
aaa
agc
-agw
+ajz
agw
agw
agZ
@@ -155346,8 +151661,8 @@ aiM
ahM
agw
agw
-ahn
-aaa
+bnp
+bWI
aaa
aaa
aaa
diff --git a/_maps/map_files/cyberiad/z2.dmm b/_maps/map_files/cyberiad/z2.dmm
index eac95eae7b74f..7a14537252983 100644
--- a/_maps/map_files/cyberiad/z2.dmm
+++ b/_maps/map_files/cyberiad/z2.dmm
@@ -1,82424 +1,98018 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/unsimulated/wall{
- icon_state = "iron6";
- tag = "icon-iron6"
- },
-/area/space)
-"ab" = (
-/turf/unsimulated/floor/snow,
-/area/syndicate_mothership)
-"ac" = (
-/obj/structure/flora/grass/brown,
-/turf/unsimulated/floor/snow,
-/area/syndicate_mothership)
-"ad" = (
-/obj/structure/flora/bush,
-/turf/unsimulated/floor/snow,
-/area/syndicate_mothership)
-"ae" = (
-/obj/structure/flora/tree/pine{
- pixel_x = 1
- },
-/turf/unsimulated/floor/snow,
-/area/syndicate_mothership)
-"af" = (
-/obj/structure/window/reinforced,
-/turf/unsimulated/wall{
- icon_state = "iron12";
- tag = "icon-iron12"
- },
-/area/space)
-"ag" = (
-/turf/unsimulated/floor/snow,
-/turf/unsimulated/floor/snow{
- icon_state = "gravsnow_corner"
- },
-/area/syndicate_mothership)
-"ah" = (
-/turf/unsimulated/wall{
- icon_state = "iron14";
- tag = "icon-iron14"
- },
-/area/space)
-"ai" = (
-/obj/item/radio/intercom/syndicate{
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"aj" = (
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "asteroid6";
- tag = "icon-asteroid6"
- },
-/area/holodeck/source_desert)
-"ak" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/unsimulated/wall{
- icon_state = "iron3";
- tag = "icon-iron3"
- },
-/area/space)
-"al" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"am" = (
-/obj/structure/rack/holorack,
-/obj/item/clothing/under/dress/dress_saloon,
-/obj/item/clothing/head/hairflower,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/holodeck/source_theatre)
-"an" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/unsimulated/wall{
- icon_state = "iron3";
- tag = "icon-iron3"
- },
-/area/space)
-"ao" = (
-/obj/effect/landmark/costume/random,
-/obj/structure/rack/holorack,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/holodeck/source_theatre)
-"ap" = (
-/turf/space/transit/east{
- dir = 8
- },
-/area/space)
-"aq" = (
-/turf/space/transit/horizontal{
- dir = 4
- },
-/area/space)
-"ar" = (
-/turf/simulated/floor/holofloor{
- dir = 8;
- icon_state = "blue"
- },
-/area/holodeck/source_knightarena)
-"as" = (
-/obj/structure/table/holotable,
-/obj/machinery/readybutton,
-/turf/simulated/floor/holofloor{
- dir = 9;
- icon_state = "red"
- },
-/area/holodeck/source_knightarena)
-"at" = (
-/turf/unsimulated/wall,
-/area/vox_station)
-"au" = (
-/turf/unsimulated/floor/vox,
-/area/vox_station)
-"av" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "asteroid8";
- tag = "icon-asteroid8 (EAST)"
- },
-/area/holodeck/source_desert)
-"aw" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"ax" = (
-/turf/simulated/floor/holofloor{
- icon_state = "engine";
- name = "Holodeck Projector Floor"
- },
-/area/holodeck/source_wildlife)
-"ay" = (
-/obj/machinery/vox_win_button,
-/turf/unsimulated/floor/vox{
- icon_state = "light_on"
- },
-/area/vox_station)
-"az" = (
-/turf/simulated/floor/holofloor{
- icon_state = "engine";
- name = "Holodeck Projector Floor"
- },
-/area/holodeck/source_plating)
-"aA" = (
-/turf/simulated/floor/holofloor,
-/area/holodeck/source_basketball)
-"aB" = (
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"aE" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/unsimulated/wall{
- icon_state = "iron3";
- tag = "icon-iron3"
- },
-/area/space)
-"aF" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "asteroid2";
- tag = "icon-asteroid2 (EAST)"
- },
-/area/holodeck/source_desert)
-"aH" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/suit/armor/riot/knight/red,
-/obj/item/clothing/head/helmet/riot/knight/red,
-/obj/item/holo/claymore/red,
-/turf/simulated/floor/holofloor{
- dir = 1;
- icon_state = "red"
- },
-/area/holodeck/source_knightarena)
-"aI" = (
-/obj/machinery/door/airlock/centcom,
-/turf/unsimulated/floor/vox,
-/area/vox_station)
-"aJ" = (
-/obj/structure/girder/displaced,
-/turf/unsimulated/floor/vox,
-/area/vox_station)
-"aK" = (
-/obj/structure/closet/crate,
-/turf/unsimulated/floor/vox,
-/area/vox_station)
-"aN" = (
-/turf/space,
-/area/space)
-"aP" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/simulated/floor/holofloor/grass,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "wood_siding1";
- tag = "icon-wood_siding1"
- },
-/area/holodeck/source_picnicarea)
-"aQ" = (
-/turf/simulated/floor/holofloor{
- dir = 1;
- icon_state = "red"
- },
-/area/holodeck/source_basketball)
-"aT" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/holofloor/grass,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "wood_siding2";
- tag = "icon-wood_siding2 (EAST)"
- },
-/area/holodeck/source_picnicarea)
-"aU" = (
-/turf/simulated/floor/holofloor{
- dir = 1;
- icon_state = "red"
- },
-/area/holodeck/source_emptycourt)
-"aV" = (
-/turf/simulated/floor/holofloor{
- dir = 9;
- icon_state = "red"
- },
-/area/holodeck/source_emptycourt)
-"aW" = (
-/turf/simulated/floor/holofloor{
- dir = 5;
- icon_state = "red"
- },
-/area/holodeck/source_emptycourt)
-"aX" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "asteroid";
- tag = "icon-asteroid"
- },
-/area/holodeck/source_desert)
-"aY" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "asteroid";
- tag = "icon-asteroid"
- },
-/area/holodeck/source_desert)
-"aZ" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "asteroid11";
- tag = "icon-asteroid11 (EAST)"
- },
-/area/holodeck/source_desert)
-"ba" = (
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "rampbottom";
- tag = "icon-rampbottom"
- },
-/area/holodeck/source_theatre)
-"bb" = (
-/obj/structure/holowindow,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "red"
- },
-/area/holodeck/source_knightarena)
-"bd" = (
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "asteroid7";
- tag = "icon-asteroid7"
- },
-/area/holodeck/source_knightarena)
-"be" = (
-/turf/unsimulated/wall,
-/area/tdome)
-"bf" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"bh" = (
-/obj/structure/kitchenspike,
-/turf/unsimulated/floor/vox,
-/area/vox_station)
-"bi" = (
-/obj/structure/table/wood,
-/turf/unsimulated/floor/vox,
-/area/vox_station)
-"bk" = (
-/obj/machinery/door/airlock/centcom{
- opacity = 1
- },
-/turf/unsimulated/floor/vox,
-/area/vox_station)
-"bl" = (
-/turf/unsimulated/floor/plating/vox,
-/area/vox_station)
-"bm" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/space,
-/turf/unsimulated/wall{
- icon_state = "iron12";
- tag = "icon-iron12"
- },
-/area/space)
-"bp" = (
-/obj/effect/landmark{
- name = "Atmospheric Test Start"
- },
-/turf/simulated/floor/holofloor{
- icon_state = "engine";
- name = "Burn-Mix Floor";
- nitrogen = 0;
- oxygen = 2500;
- temperature = 370;
- toxins = 5000
- },
-/area/holodeck/source_burntest)
-"br" = (
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "asteroid7";
- tag = "icon-asteroid7"
- },
-/area/holodeck/source_desert)
-"bt" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "blue"
- },
-/area/holodeck/source_knightarena)
-"bx" = (
-/obj/structure/flora/ausbushes/grassybush,
-/turf/simulated/floor/holofloor/grass,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "wood_siding5";
- tag = "icon-wood_siding5"
- },
-/area/holodeck/source_picnicarea)
-"by" = (
-/obj/structure/chair/stool/holostool,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "asteroid";
- tag = "icon-asteroid"
- },
-/area/holodeck/source_picnicarea)
-"bB" = (
-/obj/structure/table/holotable/wood,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "asteroid";
- tag = "icon-asteroid"
- },
-/area/holodeck/source_picnicarea)
-"bC" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "green"
- },
-/area/holodeck/source_emptycourt)
-"bD" = (
-/obj/structure/flora/ausbushes/grassybush,
-/turf/simulated/floor/holofloor/grass,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "wood_siding9";
- tag = "icon-wood_siding9"
- },
-/area/holodeck/source_picnicarea)
-"bE" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "wood";
- tag = "icon-wood (EAST)"
- },
-/area/holodeck/source_theatre)
-"bF" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet6-2";
- tag = "icon-carpet6-2 (EAST)"
- },
-/area/holodeck/source_theatre)
-"bG" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet14-10";
- tag = "icon-carpet14-10 (EAST)"
- },
-/area/holodeck/source_theatre)
-"bI" = (
-/obj/structure/holowindow,
-/turf/simulated/floor/holofloor{
- dir = 8;
- icon_state = "red"
- },
-/area/holodeck/source_knightarena)
-"bJ" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet10-8";
- tag = "icon-carpet10-8 (EAST)"
- },
-/area/holodeck/source_theatre)
-"bK" = (
-/obj/structure/holowindow,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "asteroid7";
- tag = "icon-asteroid7"
- },
-/area/holodeck/source_knightarena)
-"bL" = (
-/obj/docking_port/stationary/transit{
- dir = 4;
- dwidth = 1;
- height = 4;
- id = "pod3_transit";
- name = "pod 3 in transit";
- width = 3
- },
-/turf/space/transit/east{
- dir = 8
- },
-/area/space)
-"bM" = (
-/turf/simulated/floor/holofloor,
-/area/holodeck/source_emptycourt)
-"bP" = (
-/obj/structure/holowindow{
- dir = 1
- },
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "asteroid7";
- tag = "icon-asteroid7"
- },
-/area/holodeck/source_knightarena)
-"bQ" = (
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "asteroid5";
- tag = "icon-asteroid5"
- },
-/area/holodeck/source_desert)
-"bR" = (
-/turf/simulated/floor/holofloor{
- dir = 8;
- icon_state = "red"
- },
-/area/holodeck/source_emptycourt)
-"bS" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "red"
- },
-/area/holodeck/source_emptycourt)
-"bT" = (
-/obj/structure/holowindow{
- dir = 1
- },
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "blue"
- },
-/area/holodeck/source_knightarena)
-"bU" = (
-/obj/structure/chair/office/dark,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"bW" = (
-/turf/space/transit/horizontal,
-/area/space)
-"bY" = (
-/obj/structure/flora/ausbushes/grassybush,
-/turf/simulated/floor/holofloor/grass,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "wood_siding6";
- tag = "icon-wood_siding6"
- },
-/area/holodeck/source_picnicarea)
-"bZ" = (
-/turf/unsimulated/wall,
-/area/space)
-"cb" = (
-/obj/structure/flora/ausbushes/grassybush,
-/turf/simulated/floor/holofloor/grass,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "wood_siding10";
- tag = "icon-wood_siding10"
- },
-/area/holodeck/source_picnicarea)
-"cc" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/unsimulated/wall{
- icon_state = "iron12";
- tag = "icon-iron12"
- },
-/area/space)
-"cd" = (
-/turf/space,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "asteroid";
- tag = "icon-asteroid"
- },
-/area/holodeck/source_desert)
-"ce" = (
-/obj/structure/holowindow{
- dir = 1
- },
-/turf/simulated/floor/holofloor{
- dir = 8;
- icon_state = "blue"
- },
-/area/holodeck/source_knightarena)
-"cf" = (
-/turf/unsimulated/wall{
- icon_state = "iron10";
- tag = "icon-iron10"
- },
-/area/space)
-"cg" = (
-/obj/structure/chair/stool/holostool,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet7-3";
- tag = "icon-carpet7-3 (EAST)"
- },
-/area/holodeck/source_theatre)
-"ch" = (
-/obj/structure/chair/stool/holostool,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet15-15";
- tag = "icon-carpet15-15 (EAST)"
- },
-/area/holodeck/source_theatre)
-"ci" = (
-/obj/structure/chair/stool/holostool,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet11-12";
- tag = "icon-carpet11-12 (EAST)"
- },
-/area/holodeck/source_theatre)
-"cj" = (
-/turf/unsimulated/wall,
-/area/centcom/reset)
-"ck" = (
-/turf/space/transit,
-/area/space)
-"cl" = (
-/obj/structure/table/holotable,
-/turf/simulated/floor/holofloor{
- dir = 5;
- icon_state = "red"
- },
-/area/holodeck/source_knightarena)
-"cm" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"co" = (
-/obj/structure/closet/secure_closet/bar{
- req_access = null;
- req_access_txt = "112"
- },
-/turf/unsimulated/floor{
- icon_state = "white"
- },
-/area/tdome)
-"cp" = (
-/turf/unsimulated/wall,
-/area/centcom/bathroom)
-"cq" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet4-0";
- tag = "icon-carpet4-0 (EAST)"
- },
-/area/holodeck/source_meetinghall)
-"cr" = (
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/bathroom)
-"cs" = (
-/turf/space,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "asteroid7";
- tag = "icon-asteroid7"
- },
-/area/holodeck/source_desert)
-"ct" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/space,
-/turf/unsimulated/wall{
- icon_state = "iron3";
- tag = "icon-iron3"
- },
-/area/space)
-"cu" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "asteroid";
- tag = "icon-asteroid"
- },
-/area/holodeck/source_picnicarea)
-"cv" = (
-/turf/simulated/floor/holofloor{
- dir = 8;
- icon_state = "green"
- },
-/area/holodeck/source_emptycourt)
-"cy" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet2-0";
- tag = "icon-carpet2-0 (EAST)"
- },
-/area/holodeck/source_theatre)
-"cz" = (
-/obj/docking_port/stationary/transit{
- dir = 8;
- dwidth = 3;
- height = 5;
- id = "mining_transit";
- name = "mining in transit";
- width = 7
- },
-/turf/space/transit,
-/area/space)
-"cA" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "red"
- },
-/area/holodeck/source_knightarena)
-"cD" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/simulated/floor/holofloor/grass,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "wood_siding2";
- tag = "icon-wood_siding2 (EAST)"
- },
-/area/holodeck/source_picnicarea)
-"cE" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/holofloor/grass,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "wood_siding1";
- tag = "icon-wood_siding1"
- },
-/area/holodeck/source_picnicarea)
-"cH" = (
-/turf/unsimulated/floor{
- icon_state = "white"
- },
-/area/tdome)
-"cI" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/unsimulated/wall{
- icon_state = "iron12";
- tag = "icon-iron12"
- },
-/area/space)
-"cJ" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/surgery,
-/obj/item/mmi,
-/obj/item/mmi,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"cK" = (
-/obj/machinery/gibber,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
-/area/tdome)
-"cL" = (
-/turf/simulated/floor/holofloor,
-/area/holodeck/source_thunderdomecourt)
-"cN" = (
-/obj/docking_port/stationary/transit{
- dir = 4;
- dwidth = 1;
- height = 4;
- id = "pod4_transit";
- name = "pod 4 in transit";
- width = 3
- },
-/turf/space/transit/east{
- dir = 8
- },
-/area/space)
-"cO" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet3-0";
- tag = "icon-carpet3-0 (EAST)"
- },
-/area/holodeck/source_theatre)
-"cP" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "asteroid1";
- tag = "icon-asteroid1 (EAST)"
- },
-/area/holodeck/source_desert)
-"cR" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows2";
- tag = "icon-fakewindows2 (WEST)"
- },
-/area/ninja/holding)
-"cS" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (WEST)"
- },
-/area/ninja/holding)
-"cT" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 4;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (EAST)"
- },
-/area/ninja/holding)
-"cU" = (
-/turf/unsimulated/wall{
- desc = "The door appears to be locked tightly.";
- icon = 'icons/obj/doors/airlocks/hatch/centcom.dmi';
- icon_state = "closed";
- name = "Locked Door"
- },
-/area/ninja/holding)
-"cV" = (
-/turf/unsimulated/wall{
- desc = "The door appears to be locked tightly.";
- icon = 'icons/obj/doors/airlocks/hatch/centcom.dmi';
- icon_state = "closed";
- name = "Locked Door"
- },
-/area/ninja/outpost)
-"cW" = (
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/ninja/outpost)
-"cX" = (
-/obj/structure/table,
-/obj/machinery/kitchen_machine/microwave/upgraded,
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/ninja/holding)
-"cY" = (
-/obj/structure/closet/secure_closet/bar{
- req_access_txt = "25"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/ninja/holding)
-"cZ" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/ninja/holding)
-"da" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/ninja/holding)
-"db" = (
-/obj/structure/table,
-/obj/item/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/ninja/holding)
-"dc" = (
-/obj/machinery/vending/boozeomat,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/ninja/holding)
-"dd" = (
-/obj/structure/table/holotable,
-/turf/simulated/floor/holofloor{
- dir = 10;
- icon_state = "blue"
- },
-/area/holodeck/source_knightarena)
-"de" = (
-/obj/structure/rack,
-/obj/item/toy/sword,
-/obj/item/gun/projectile/revolver/capgun,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"df" = (
-/obj/structure/rack,
-/obj/item/camera,
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"dg" = (
-/obj/machinery/computer/arcade,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"dh" = (
-/obj/machinery/prize_counter,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"di" = (
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/turf/unsimulated/beach/sand,
-/area/ninja/holding)
-"dj" = (
-/turf/simulated/floor/holofloor{
- dir = 8;
- icon_state = "red"
- },
-/area/holodeck/source_knightarena)
-"dn" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/suit/armor/riot/knight/blue,
-/obj/item/clothing/head/helmet/riot/knight/blue,
-/obj/item/holo/claymore/blue,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "blue"
- },
-/area/holodeck/source_knightarena)
-"dq" = (
-/obj/structure/flora/grass/green,
-/turf/simulated/floor/holofloor{
- icon_state = "snow";
- tag = "icon-snow"
- },
-/area/holodeck/source_snowfield)
-"dr" = (
-/obj/structure/chair/stool/holostool,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet7-0";
- tag = "icon-carpet7-0 (EAST)"
- },
-/area/holodeck/source_meetinghall)
-"dt" = (
-/obj/structure/flora/grass/both,
-/turf/simulated/floor/holofloor{
- icon_state = "snow";
- tag = "icon-snow"
- },
-/area/holodeck/source_snowfield)
-"du" = (
-/obj/docking_port/stationary/transit{
- dir = 4;
- dwidth = 11;
- height = 13;
- id = "emergency_transit";
- name = "emergency in transit";
- width = 24
- },
-/turf/space/transit,
-/area/space)
-"dv" = (
-/turf/simulated/floor/holofloor{
- dir = 8;
- icon_state = "red"
- },
-/area/holodeck/source_boxingcourt)
-"dw" = (
-/obj/structure/table,
-/obj/machinery/kitchen_machine/microwave/upgraded,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/ninja/holding)
-"dx" = (
-/obj/structure/table,
-/obj/item/clothing/head/that{
- pixel_x = 4;
- pixel_y = 6
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/ninja/holding)
-"dy" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"dz" = (
-/obj/structure/chair/stool,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"dA" = (
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "asteroid";
- tag = "icon-asteroid"
- },
-/area/holodeck/source_desert)
-"dC" = (
-/obj/structure/table/holotable,
-/obj/machinery/readybutton,
-/turf/simulated/floor/holofloor{
- dir = 6;
- icon_state = "blue"
- },
-/area/holodeck/source_knightarena)
-"dD" = (
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/holodeck/source_theatre)
-"dE" = (
-/obj/structure/rack,
-/obj/item/clothing/under/color/red,
-/obj/item/clothing/shoes/brown,
-/obj/item/grenade/smokebomb,
-/obj/item/restraints/legcuffs/beartrap,
-/obj/item/sleeping_carp_scroll,
-/obj/item/twohanded/bostaff,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena_source)
-"dF" = (
-/obj/structure/rack,
-/obj/item/clothing/under/color/green,
-/obj/item/clothing/shoes/brown,
-/obj/item/grenade/smokebomb,
-/obj/item/restraints/legcuffs/beartrap,
-/obj/item/sleeping_carp_scroll,
-/obj/item/twohanded/bostaff,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena_source)
-"dG" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet8-0";
- tag = "icon-carpet8-0 (EAST)"
- },
-/area/holodeck/source_meetinghall)
-"dH" = (
-/turf/unsimulated/wall{
- desc = "The door appears to be locked tightly.";
- icon = 'icons/obj/doors/airlocks/hatch/centcom.dmi';
- icon_state = "closed";
- name = "Locked Door"
- },
-/area/tdome)
-"dI" = (
-/obj/machinery/vending/cigarette,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "redbluefull";
- tag = "icon-redbluefull (WEST)"
- },
-/area/tdome/tdomeobserve)
-"dJ" = (
-/turf/simulated/floor/holofloor{
- dir = 6;
- icon_state = "carpetsymbol";
- tag = "icon-carpetsymbol (SOUTHEAST)"
- },
-/area/holodeck/source_meetinghall)
-"dM" = (
-/turf/space,
-/turf/simulated/floor/holofloor/space,
-/area/holodeck/source_space)
-"dO" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "red"
- },
-/area/holodeck/source_boxingcourt)
-"dP" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 1;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (WEST)"
- },
-/area/ninja/outpost)
-"dQ" = (
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/ninja/outpost)
-"dR" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 0
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/ninja/holding)
-"dS" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/shaker,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/ninja/holding)
-"dT" = (
-/obj/structure/table,
-/obj/item/lighter/zippo,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/ninja/holding)
-"dU" = (
-/obj/structure/table,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/ninja/holding)
-"dV" = (
-/obj/structure/table,
-/obj/item/dice/d20,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/ninja/holding)
-"dW" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/cans/cola,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/ninja/holding)
-"dX" = (
-/obj/docking_port/stationary/transit{
- dir = 4;
- dwidth = 7;
- height = 5;
- id = "sst_transit";
- name = "sst in transit";
- width = 11
- },
-/turf/space/transit,
-/area/space)
-"dY" = (
-/obj/structure/table/holotable/wood,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "grimy";
- tag = "icon-grimy"
- },
-/area/holodeck/source_meetinghall)
-"ec" = (
-/obj/docking_port/stationary/transit{
- dir = 8;
- dwidth = 5;
- height = 7;
- id = "supply_transit";
- name = "supply in transit";
- width = 12
- },
-/turf/space/transit,
-/area/space)
-"ed" = (
-/obj/structure/rack,
-/obj/item/clothing/head/that{
- pixel_x = 4;
- pixel_y = 6
- },
-/obj/item/clothing/under/suit_jacket,
-/obj/item/clothing/suit/wcoat,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"ee" = (
-/obj/structure/chair/stool/bar,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"ef" = (
-/turf/unsimulated/floor/snow,
-/turf/simulated/shuttle/wall{
- dir = 8;
- icon_state = "diagonalWall3"
- },
-/area/syndicate_mothership)
-"eg" = (
-/turf/unsimulated/floor/snow,
-/turf/simulated/shuttle/wall{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/syndicate_mothership)
-"eh" = (
-/obj/structure/flora/tree/pine,
-/turf/unsimulated/floor/snow,
-/area/syndicate_mothership)
-"ei" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/cans/beer,
-/obj/item/reagent_containers/food/drinks/cans/beer,
-/obj/item/reagent_containers/food/drinks/cans/beer,
-/obj/item/lighter/zippo,
-/obj/item/storage/fancy/cigarettes,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "redbluefull";
- tag = "icon-redbluefull (WEST)"
- },
-/area/tdome/tdomeobserve)
-"ej" = (
-/obj/machinery/door/airlock/external{
- id_tag = "sit_away";
- req_access_txt = "150"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"el" = (
-/obj/structure/chair/stool/holostool,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet11-0";
- tag = "icon-carpet11-0 (EAST)"
- },
-/area/holodeck/source_meetinghall)
-"em" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/space,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "asteroid";
- tag = "icon-asteroid"
- },
-/area/holodeck/source_desert)
-"en" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark{
- name = "Syndicate-Spawn"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"eo" = (
-/obj/structure/rack,
-/obj/item/storage/fancy/crayons,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"ep" = (
-/obj/machinery/vending/coffee,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"eq" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"es" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "asteroid3";
- tag = "icon-asteroid3 (EAST)"
- },
-/area/holodeck/source_desert)
-"et" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "wood";
- tag = "icon-wood (EAST)"
- },
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "siding1";
- tag = "icon-siding1"
- },
-/area/holodeck/source_theatre)
-"eu" = (
-/obj/structure/chair/stool,
-/obj/machinery/computer/security/telescreen{
- desc = "Damn, they better have /tg/thechannel on these things.";
- icon_state = "entertainment";
- name = "Entertainment monitor";
- pixel_y = -30
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"ev" = (
-/obj/effect/landmark{
- name = "Holocarp Spawn"
- },
-/turf/simulated/floor/holofloor{
- icon_state = "engine";
- name = "Holodeck Projector Floor"
- },
-/area/holodeck/source_wildlife)
-"ew" = (
-/obj/machinery/vending/snack,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"ex" = (
-/obj/item/flag/syndi,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"ey" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/syndicate_mothership)
-"ez" = (
-/obj/item/radio/intercom/syndicate{
- pixel_x = -28
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/syndicate_mothership)
-"eA" = (
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/syndicate_mothership)
-"eB" = (
-/obj/structure/chair/stool/holostool,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet15-0";
- tag = "icon-carpet15-0 (EAST)"
- },
-/area/holodeck/source_meetinghall)
-"eC" = (
-/turf/simulated/floor/holofloor{
- dir = 10;
- icon_state = "red"
- },
-/area/holodeck/source_basketball)
-"eE" = (
-/turf/simulated/floor/holofloor{
- dir = 8;
- icon_state = "red"
- },
-/area/holodeck/source_basketball)
-"eH" = (
-/turf/simulated/floor/holofloor{
- dir = 8;
- icon_state = "green"
- },
-/area/holodeck/source_boxingcourt)
-"eK" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet1-0";
- tag = "icon-carpet1-0 (EAST)"
- },
-/area/holodeck/source_theatre)
-"eL" = (
-/obj/structure/holowindow{
- dir = 1
- },
-/turf/simulated/floor/holofloor,
-/area/holodeck/source_thunderdomecourt)
-"eM" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "green"
- },
-/area/holodeck/source_boxingcourt)
-"eN" = (
-/turf/simulated/floor/holofloor{
- icon_state = "engine";
- name = "Burn-Mix Floor";
- nitrogen = 0;
- oxygen = 2500;
- temperature = 370;
- toxins = 5000
- },
-/area/holodeck/source_burntest)
-"eO" = (
-/obj/machinery/vending/cigarette,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"eP" = (
-/obj/structure/table,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"eQ" = (
-/turf/simulated/floor/holofloor,
-/area/holodeck/source_boxingcourt)
-"eR" = (
-/obj/structure/chair/stool,
-/obj/machinery/light/spot,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"eS" = (
-/obj/machinery/vending/cola,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"eT" = (
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/obj/machinery/computer/syndicate_depot/teleporter,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"eU" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 1;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (WEST)"
- },
-/area/syndicate_mothership)
-"eV" = (
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 3;
- height = 5;
- id = "sit_away";
- name = "Syndicate Base";
- width = 11
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/syndicate_mothership)
-"eW" = (
-/turf/simulated/floor/holofloor{
- icon_state = "snow";
- tag = "icon-snow"
- },
-/area/holodeck/source_snowfield)
-"eX" = (
-/obj/structure/chair/stool/holostool,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet5-1";
- tag = "icon-carpet5-1 (EAST)"
- },
-/area/holodeck/source_theatre)
-"eY" = (
-/obj/effect/decal/warning_stripes/yellow,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/ninja/holding)
-"eZ" = (
-/obj/machinery/door/airlock/external{
- id_tag = "sst_away";
- req_access_txt = "150"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/syndicate_mothership)
-"fa" = (
-/obj/effect/landmark{
- name = "Syndicate-Spawn"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/syndicate_mothership)
-"fb" = (
-/obj/effect/landmark{
- name = "Holding Facility"
- },
-/obj/machinery/light/spot{
- dir = 8;
- icon_state = "tube1";
- tag = "icon-tube1 (WEST)"
- },
-/turf/unsimulated/floor{
- icon_state = "engine"
- },
-/area/ninja/holding)
-"fc" = (
-/obj/docking_port/stationary{
- dir = 4;
- dwidth = 7;
- height = 5;
- id = "sst_away";
- name = "Syndicate Base";
- width = 11
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/syndicate_mothership)
-"fd" = (
-/obj/item/flag/syndi,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/syndicate_mothership)
-"fe" = (
-/obj/structure/table{
- dir = 2;
- icon_state = "tabledir"
- },
-/obj/item/reagent_containers/food/drinks/cans/cola,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "redbluefull";
- tag = "icon-redbluefull (WEST)"
- },
-/area/tdome/tdomeobserve)
-"ff" = (
-/turf/unsimulated/wall,
-/area/ninja/outpost)
-"fg" = (
-/turf/unsimulated/wall,
-/area/ninja/holding)
-"fh" = (
-/obj/structure/sign/double/map/left{
- pixel_y = -32
- },
-/obj/machinery/light,
-/obj/structure/rack/skeletal_bar/left,
-/obj/item/reagent_containers/food/drinks/bottle/vodka,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/syndicate_mothership)
-"fi" = (
-/obj/machinery/computer/shuttle/syndicate/recall,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/syndicate_mothership)
-"fj" = (
-/obj/structure/chair/stool/holostool,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet13-5";
- tag = "icon-carpet13-5 (EAST)"
- },
-/area/holodeck/source_theatre)
-"fk" = (
-/obj/structure/chair/stool/holostool,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet9-4";
- tag = "icon-carpet9-4 (EAST)"
- },
-/area/holodeck/source_theatre)
-"fl" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "redbluefull";
- tag = "icon-redbluefull (WEST)"
- },
-/area/tdome/tdomeobserve)
-"fm" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the Thunderdome.";
- name = "Thunderdome Telescreen";
- network = list("Thunderdome");
- pixel_y = 30
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "redbluefull";
- tag = "icon-redbluefull (WEST)"
- },
-/area/tdome/tdomeobserve)
-"fn" = (
-/turf/simulated/floor/holofloor{
- dir = 10;
- icon_state = "green"
- },
-/area/holodeck/source_emptycourt)
-"fo" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"fp" = (
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "green"
- },
-/area/holodeck/source_emptycourt)
-"fq" = (
-/turf/simulated/floor/holofloor{
- dir = 6;
- icon_state = "green"
- },
-/area/holodeck/source_emptycourt)
-"fr" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "carpetside"
- },
-/area/wizard_station)
-"fs" = (
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "carpetside"
- },
-/area/wizard_station)
-"ft" = (
-/obj/effect/landmark/start{
- name = "wizard"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpet"
- },
-/area/wizard_station)
-"fu" = (
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/ninja/outpost)
-"fv" = (
-/obj/structure/ninjatele{
- pixel_y = 25
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/ninja/outpost)
-"fw" = (
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 4;
- height = 11;
- id = "trade_sol_base";
- name = "docking bay 2 at Jupiter Station";
- width = 9
- },
-/turf/space,
-/area/space)
-"fx" = (
-/obj/structure/table/wood,
-/turf/unsimulated/floor{
- dir = 10;
- icon_state = "carpetside"
- },
-/area/wizard_station)
-"fy" = (
-/obj/structure/table/wood,
-/obj/effect/landmark{
- name = "Teleport-Scroll"
- },
-/turf/unsimulated/floor{
- dir = 6;
- icon_state = "carpetside"
- },
-/area/wizard_station)
-"fz" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpetside"
- },
-/area/wizard_station)
-"fA" = (
-/turf/unsimulated/wall{
- icon_state = "iron5";
- tag = "icon-iron5"
- },
-/area/space)
-"fB" = (
-/obj/structure/chair/comfy/purp,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"fC" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/unsimulated/wall{
- icon_state = "iron12";
- tag = "icon-iron12"
- },
-/area/space)
-"fD" = (
-/turf/space,
-/turf/unsimulated/wall,
-/area/space)
-"fE" = (
-/turf/unsimulated/wall{
- icon_state = "iron11";
- tag = "icon-iron11"
- },
-/area/space)
-"fF" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "redbluefull";
- tag = "icon-redbluefull (WEST)"
- },
-/area/tdome/tdomeobserve)
-"fG" = (
-/obj/machinery/door/poddoor{
- id_tag = "thunderdomeaxe";
- name = "Axe Supply"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena_source)
-"fH" = (
-/turf/unsimulated/beach/sand,
-/area/ninja/holding)
-"fI" = (
-/obj/effect/overlay/palmtree_r,
-/obj/effect/overlay/coconut,
-/turf/unsimulated/beach/sand,
-/area/ninja/holding)
-"fJ" = (
-/obj/structure/table/wood,
-/obj/machinery/recharger{
- pixel_y = 0
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"fK" = (
-/obj/effect/overlay/palmtree_l,
-/turf/unsimulated/beach/sand,
-/area/ninja/holding)
-"fL" = (
-/obj/machinery/computer/cryopod{
- density = 0;
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/trader_station/sol)
-"fM" = (
-/obj/machinery/door/poddoor{
- id_tag = "thunderdomegen";
- name = "General Supply"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena_source)
-"fN" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/tdome/arena_source)
-"fO" = (
-/obj/machinery/door/poddoor{
- id_tag = "thunderdome";
- name = "Thunderdome Blast Door"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/tdome/arena_source)
-"fP" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "green"
- },
-/area/tdome/arena_source)
-"fQ" = (
-/obj/machinery/light/spot{
- dir = 8;
- icon_state = "tube1";
- tag = "icon-tube1 (WEST)"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"fR" = (
-/obj/structure/chair/comfy/purp{
- dir = 4
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"fS" = (
-/obj/structure/table/wood,
-/obj/item/stack/spacecash,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"fT" = (
-/turf/simulated/floor/holofloor/space,
-/area/holodeck/source_space)
-"fU" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/mugwort,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"fV" = (
-/obj/machinery/vending/coffee,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "redbluefull";
- tag = "icon-redbluefull (WEST)"
- },
-/area/tdome/tdomeobserve)
-"fW" = (
-/obj/item/flag/wiz,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"fX" = (
-/turf/simulated/floor/holofloor{
- dir = 9;
- icon_state = "red"
- },
-/area/holodeck/source_basketball)
-"fY" = (
-/obj/structure/holohoop,
-/turf/simulated/floor/holofloor{
- dir = 1;
- icon_state = "red"
- },
-/area/holodeck/source_basketball)
-"fZ" = (
-/obj/machinery/cryopod/right,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/trader_station/sol)
-"ga" = (
-/obj/machinery/light/spot{
- dir = 8;
- icon_state = "tube1";
- tag = "icon-tube1 (WEST)"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"gb" = (
-/obj/machinery/light/spot{
- dir = 4;
- icon_state = "tube1";
- tag = "icon-tube1 (EAST)"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"gc" = (
-/obj/machinery/light,
-/obj/machinery/cryopod/right,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/trader_station/sol)
-"gd" = (
-/obj/structure/rack,
-/obj/item/clothing/under/plasmaman/wizard,
-/obj/item/clothing/head/helmet/space/plasmaman/wizard,
-/obj/item/clothing/mask/breath,
-/obj/item/tank/plasma/plasmaman/belt/full,
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/wizard_station)
-"ge" = (
-/turf/unsimulated/floor/snow,
-/turf/simulated/shuttle/wall{
- icon_state = "diagonalWall3"
- },
-/area/syndicate_mothership)
-"gf" = (
-/obj/item/camera,
-/turf/unsimulated/beach/sand,
-/area/ninja/holding)
-"gg" = (
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"gh" = (
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/syndicate_mothership)
-"gi" = (
-/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"gj" = (
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"gk" = (
-/obj/machinery/flasher{
- id = "flash";
- name = "Thunderdome Flash"
- },
-/turf/simulated/floor/bluegrid,
-/area/tdome/arena_source)
-"gl" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (WEST)"
- },
-/area/wizard_station)
-"gm" = (
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "diagonalWall3";
- tag = "icon-diagonalWall3"
- },
-/area/syndicate_mothership)
-"gn" = (
-/obj/machinery/camera{
- c_tag = "Thunderdome Arena";
- network = list("Thunderdome");
- pixel_x = 10
- },
-/turf/simulated/floor/bluegrid,
-/area/tdome/arena_source)
-"go" = (
-/turf/simulated/floor/holofloor{
- dir = 5;
- icon_state = "red"
- },
-/area/holodeck/source_basketball)
-"gq" = (
-/turf/simulated/floor/beach/sand,
-/area/holodeck/source_beach)
-"gr" = (
-/obj/structure/table/holotable,
-/obj/machinery/readybutton{
- pixel_y = 0
- },
-/turf/simulated/floor/holofloor{
- dir = 9;
- icon_state = "red"
- },
-/area/holodeck/source_thunderdomecourt)
-"gs" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/head/helmet/thunderdome,
-/obj/item/clothing/suit/armor/tdome/red,
-/obj/item/clothing/under/color/red,
-/obj/item/holo/esword/red,
-/turf/simulated/floor/holofloor{
- dir = 1;
- icon_state = "red"
- },
-/area/holodeck/source_thunderdomecourt)
-"gt" = (
-/obj/docking_port/stationary/transit{
- dir = 8;
- dwidth = 8;
- height = 20;
- id = "freegolem_transit";
- name = "free golem in transit";
- width = 16
- },
-/turf/space/transit/horizontal{
- dir = 4
- },
-/area/space)
-"gu" = (
-/obj/structure/table/holotable,
-/turf/simulated/floor/holofloor{
- dir = 5;
- icon_state = "red"
- },
-/area/holodeck/source_thunderdomecourt)
-"gv" = (
-/obj/effect/decal/cleanable/blood,
-/turf/unsimulated/floor{
- icon_state = "chapel"
- },
-/area/wizard_station)
-"gw" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "chapel"
- },
-/area/wizard_station)
-"gx" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"gz" = (
-/mob/living/carbon/human/monkey,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "chapel"
- },
-/area/wizard_station)
-"gA" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/sleeper/upgraded,
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/ninja/outpost)
-"gB" = (
-/turf/unsimulated/floor/snow,
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/syndicate_mothership)
-"gC" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/wizard_station)
-"gD" = (
-/mob/living/simple_animal/hostile/creature{
- name = "Experiment 35b"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/wizard_station)
-"gE" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 1;
- icon_state = "fakewindows2";
- tag = "icon-fakewindows2 (NORTH)"
- },
-/area/wizard_station)
-"gG" = (
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "chapel"
- },
-/area/wizard_station)
-"gH" = (
-/obj/docking_port/stationary/transit{
- dir = 8;
- dwidth = 7;
- height = 5;
- id = "sit_transit";
- name = "sit in transit";
- width = 11
- },
-/turf/space/transit,
-/area/space)
-"gI" = (
-/obj/machinery/vending/syndisnack,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"gJ" = (
-/obj/machinery/door/poddoor{
- id_tag = "thunderdomehea";
- name = "Heavy Supply"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena_source)
-"gK" = (
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "grimy";
- tag = "icon-grimy"
- },
-/area/holodeck/source_meetinghall)
-"gL" = (
-/obj/effect/decal/remains/human,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/wizard_station)
-"gM" = (
-/turf/unsimulated/floor{
- icon_state = "chapel"
- },
-/area/wizard_station)
-"gN" = (
-/obj/structure/rack,
-/obj/item/kitchen/knife/ritual,
-/obj/structure/window/reinforced/clockwork{
- dir = 8
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "chapel"
- },
-/area/wizard_station)
-"gO" = (
-/turf/unsimulated/wall/fakeglass,
-/area/ninja/outpost)
-"gP" = (
-/obj/effect/landmark{
- name = "ninjastart"
- },
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/ninja/outpost)
-"gQ" = (
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/ninja/outpost)
-"gR" = (
-/obj/structure/rack,
-/obj/item/clothing/under/color/red,
-/obj/item/clothing/shoes/brown,
-/obj/item/clothing/suit/armor/vest,
-/obj/item/clothing/head/helmet/swat,
-/obj/item/gun/energy/laser,
-/obj/item/shield/energy,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 3;
- pixel_y = -30
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena_source)
-"gS" = (
-/obj/item/beach_ball,
-/turf/unsimulated/beach/sand,
-/area/ninja/holding)
-"gT" = (
-/obj/structure/rack,
-/obj/item/clothing/under/color/green,
-/obj/item/clothing/shoes/brown,
-/obj/item/clothing/suit/armor/vest,
-/obj/item/clothing/head/helmet/swat,
-/obj/item/gun/energy/laser,
-/obj/item/shield/energy,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 3;
- pixel_y = -30
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena_source)
-"gU" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/gloves/boxing/hologlove,
-/turf/simulated/floor/holofloor{
- dir = 9;
- icon_state = "red"
- },
-/area/holodeck/source_boxingcourt)
-"gV" = (
-/turf/simulated/floor/holofloor{
- dir = 1;
- icon_state = "red"
- },
-/area/holodeck/source_boxingcourt)
-"gW" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/gloves/boxing/hologlove,
-/turf/simulated/floor/holofloor{
- dir = 5;
- icon_state = "red"
- },
-/area/holodeck/source_boxingcourt)
-"gX" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "red"
- },
-/area/holodeck/source_basketball)
-"gY" = (
-/obj/machinery/vending/syndicigs,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"gZ" = (
-/obj/docking_port/stationary/transit{
- dir = 2;
- dwidth = 2;
- height = 18;
- id = "skipjack_transit";
- name = "skipjack in transit";
- width = 19
- },
-/turf/space/transit,
-/area/space)
-"ha" = (
-/obj/docking_port/stationary/transit{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 22;
- id = "syndicate_transit";
- name = "syndicate in transit";
- width = 18
- },
-/turf/space/transit,
-/area/space)
-"hc" = (
-/obj/docking_port/stationary/transit{
- dir = 8;
- dwidth = 2;
- height = 5;
- id = "laborcamp_transit";
- name = "labor in transit";
- width = 9
- },
-/turf/space/transit,
-/area/space)
-"hd" = (
-/obj/docking_port/stationary/transit{
- dir = 1;
- dwidth = 1;
- height = 4;
- id = "pod1_transit";
- name = "pod 1 in transit";
- width = 3
- },
-/turf/space/transit,
-/area/space)
-"he" = (
-/turf/unsimulated/beach/coastline,
-/area/ninja/holding)
-"hf" = (
-/obj/item/clothing/head/collectable/paper,
-/turf/unsimulated/beach/coastline,
-/area/ninja/holding)
-"hg" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"hh" = (
-/obj/docking_port/stationary/transit{
- dir = 1;
- dwidth = 1;
- height = 4;
- id = "pod2_transit";
- name = "pod 2 in transit";
- width = 3
- },
-/turf/space/transit,
-/area/space)
-"hi" = (
-/obj/docking_port/stationary{
- area_type = /area/syndicate_mothership;
- dir = 1;
- dwidth = 11;
- height = 18;
- id = "emergency_syndicate";
- name = "404 Not Found";
- turf_type = /turf/unsimulated/floor/snow;
- width = 29
- },
-/turf/unsimulated/floor/snow,
-/area/syndicate_mothership)
-"hj" = (
-/turf/unsimulated/floor/snow,
-/turf/unsimulated/floor/snow{
- dir = 4;
- icon_state = "gravsnow_corner";
- tag = "icon-gravsnow_corner (EAST)"
- },
-/area/syndicate_mothership)
-"hk" = (
-/obj/structure/closet/secure_closet/freezer/meat{
- req_access_txt = "112"
- },
-/turf/unsimulated/floor{
- icon_state = "white"
- },
-/area/tdome)
-"hl" = (
-/obj/machinery/door/airlock/external{
- id_tag = "syndicate_away";
- req_access_txt = "150"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"hm" = (
-/turf/unsimulated/floor/snow,
-/turf/unsimulated/floor/snow{
- dir = 8;
- icon_state = "gravsnow_corner";
- tag = "icon-gravsnow_corner (WEST)"
- },
-/area/syndicate_mothership)
-"hn" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"ho" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 1;
- icon_state = "fakewindows"
- },
-/area/syndicate_mothership)
-"hq" = (
-/turf/unsimulated/floor/snow,
-/turf/unsimulated/floor/snow{
- dir = 6;
- icon_state = "gravsnow_corner";
- tag = "icon-gravsnow_corner (SOUTHEAST)"
- },
-/area/syndicate_mothership)
-"hr" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 0;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (EAST)"
- },
-/area/syndicate_mothership)
-"hs" = (
-/turf/unsimulated/floor/snow,
-/turf/unsimulated/floor/snow{
- dir = 10;
- icon_state = "gravsnow_corner";
- tag = "icon-gravsnow_corner (SOUTHWEST)"
- },
-/area/syndicate_mothership)
-"ht" = (
-/obj/structure/flora/tree/pine{
- pixel_x = 1
- },
-/turf/unsimulated/floor/snow,
-/turf/unsimulated/floor/snow{
- dir = 10;
- icon_state = "gravsnow_corner";
- tag = "icon-gravsnow_corner (SOUTHWEST)"
- },
-/area/syndicate_mothership)
-"hu" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows"
- },
-/area/syndicate_mothership)
-"hv" = (
-/turf/unsimulated/beach/water,
-/area/ninja/holding)
-"hw" = (
-/obj/machinery/light/spot,
-/turf/unsimulated/beach/water,
-/area/ninja/holding)
-"hx" = (
-/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"hy" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 4;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (EAST)"
- },
-/area/syndicate_mothership)
-"hz" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows2";
- tag = "icon-fakewindows2 (WEST)"
- },
-/area/syndicate_mothership)
-"hA" = (
-/obj/machinery/door/airlock/hatch/syndicate{
- name = "Shuttle Dock"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"hB" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"hC" = (
-/obj/effect/spawner/window/reinforced,
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/ninja/holding)
-"hD" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"hE" = (
-/turf/unsimulated/floor/snow,
-/turf/unsimulated/floor/snow{
- icon_state = "gravsnow_corner"
- },
-/turf/unsimulated/floor/snow{
- dir = 1;
- icon_state = "gravsnow_corner";
- tag = "icon-gravsnow_corner (NORTH)"
- },
-/area/syndicate_mothership)
-"hF" = (
-/obj/effect/landmark{
- name = "Holding Facility"
- },
-/turf/unsimulated/floor{
- icon_state = "engine"
- },
-/area/ninja/holding)
-"hG" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"hH" = (
-/obj/machinery/vending/sovietsoda,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"hI" = (
-/turf/unsimulated/floor/snow,
-/turf/unsimulated/floor/snow{
- dir = 1;
- icon_state = "gravsnow_corner";
- tag = "icon-gravsnow_corner (NORTH)"
- },
-/area/syndicate_mothership)
-"hJ" = (
-/obj/structure/table/wood,
-/obj/item/gun/projectile/revolver/russian,
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"hK" = (
-/turf/unsimulated/floor/snow,
-/turf/unsimulated/floor/snow{
- dir = 5;
- icon_state = "gravsnow_corner";
- tag = "icon-gravsnow_corner (NORTHEAST)"
- },
-/area/syndicate_mothership)
-"hL" = (
-/obj/machinery/vending/cigarette,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"hM" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows3";
- tag = "icon-fakewindows (WEST)"
- },
-/area/syndicate_mothership)
-"hN" = (
-/obj/structure/sign/double/map/left{
- pixel_y = 32
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"hO" = (
-/obj/machinery/washing_machine,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"hP" = (
-/obj/structure/flora/grass/brown,
-/turf/unsimulated/floor/snow,
-/turf/unsimulated/floor/snow{
- dir = 4;
- icon_state = "gravsnow_corner";
- tag = "icon-gravsnow_corner (EAST)"
- },
-/area/syndicate_mothership)
-"hQ" = (
-/obj/structure/table,
-/obj/item/storage/fancy/crayons,
-/obj/item/storage/fancy/crayons,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/syndicate_mothership)
-"hR" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"hS" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/beer,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"hT" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/soda,
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"hU" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/drinkingglasses,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"hV" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/shaker,
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"hX" = (
-/obj/item/storage/fancy/crayons,
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/obj/structure/table,
-/obj/item/storage/fancy/crayons,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/syndicate_mothership)
-"hZ" = (
-/turf/simulated/floor/light,
-/area/secret/gaybar)
-"ia" = (
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"ib" = (
-/obj/structure/table/wood,
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"ic" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"id" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/light,
-/area/secret/gaybar)
-"ie" = (
-/obj/machinery/washing_machine,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/syndicate_mothership)
-"if" = (
-/obj/structure/table/wood,
-/obj/machinery/light/small,
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"ig" = (
-/obj/structure/table/wood,
-/obj/item/book/manual/barman_recipes,
-/obj/machinery/light/small,
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"ih" = (
-/turf/unsimulated/wall,
-/area/wizard_station)
-"ii" = (
-/obj/machinery/computer/shuttle/syndicate/recall,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"ij" = (
-/obj/item/radio/intercom/syndicate{
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/item/twohanded/required/kirbyplants,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"ik" = (
-/obj/machinery/vending/syndicigs,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"il" = (
-/obj/machinery/vending/syndisnack,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"im" = (
-/obj/structure/urinal{
- pixel_y = 28
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/syndicate_mothership)
-"in" = (
-/obj/item/mop,
-/obj/structure/mirror{
- pixel_x = 28
- },
-/obj/item/twohanded/required/kirbyplants,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/syndicate_mothership)
-"io" = (
-/obj/item/soap/syndie,
-/obj/structure/mopbucket,
-/obj/machinery/light{
- dir = 1
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/syndicate_mothership)
-"ip" = (
-/obj/structure/flora/grass/brown,
-/turf/unsimulated/floor/snow,
-/turf/unsimulated/floor/snow{
- dir = 10;
- icon_state = "gravsnow_corner";
- tag = "icon-gravsnow_corner (SOUTHWEST)"
- },
-/area/syndicate_mothership)
-"iq" = (
-/obj/structure/noticeboard{
- pixel_x = -32
- },
-/obj/item/paper/syndimemo,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"is" = (
-/mob/living/simple_animal/pet/dog/fox/Syndifox,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"it" = (
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
- },
-/area/syndicate_mothership)
-"iu" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"iv" = (
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
- },
-/area/shuttle/assault_pod)
-"iw" = (
-/obj/effect/overlay/palmtree_r,
-/turf/simulated/floor/beach/sand,
-/area/holodeck/source_beach)
-"ix" = (
-/obj/machinery/sleeper/syndie,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"iy" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/syndicate_mothership)
-"iz" = (
-/obj/machinery/door/airlock/centcom{
- name = "Restroom";
- opacity = 1;
- req_access_txt = "150"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"iA" = (
-/obj/structure/mirror{
- pixel_x = 28
- },
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/syndicate_mothership)
-"iB" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"iC" = (
-/obj/structure/table/wood,
-/obj/item/pizzabox,
-/obj/item/paicard/syndicate,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"iD" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/cans/beer{
- pixel_x = -2;
- pixel_y = 5
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"iE" = (
-/obj/structure/closet/syndicate/sst,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"iF" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/machinery/door/window{
- dir = 8;
- name = "Tactical Toilet";
- opacity = 1;
- req_access_txt = "150"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/syndicate_mothership)
-"iG" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"iH" = (
-/obj/structure/flora/tree/pine{
- pixel_x = 1
- },
-/turf/unsimulated/floor/snow,
-/turf/unsimulated/floor/snow{
- icon_state = "gravsnow_corner"
- },
-/area/syndicate_mothership)
-"iI" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"iJ" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"iK" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 9;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (NORTHWEST)"
- },
-/area/syndicate_mothership)
-"iL" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"iM" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/cans/beer{
- pixel_x = 5;
- pixel_y = -2
- },
-/obj/item/toy/cards/deck/syndicate{
- pixel_x = -6;
- pixel_y = 6
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"iN" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/mushroompizzaslice{
- pixel_x = -5;
- pixel_y = 5
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"iO" = (
-/obj/machinery/porta_turret/syndicate/pod,
-/turf/simulated/floor/pod,
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 8;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/assault_pod)
-"iP" = (
-/obj/machinery/door/airlock/centcom{
- aiControlDisabled = 1;
- name = "Assault Pod";
- opacity = 1;
- req_one_access_txt = "150"
- },
-/turf/simulated/floor/plating,
-/area/shuttle/assault_pod)
-"iQ" = (
-/obj/machinery/porta_turret/syndicate/pod,
-/turf/simulated/floor/pod,
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/assault_pod)
-"iR" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 1;
- icon_state = "fakewindows2";
- tag = "icon-fakewindows2 (NORTH)"
- },
-/area/syndicate_mothership)
-"iS" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/assault_pod)
-"iT" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"iU" = (
-/obj/machinery/door/poddoor{
- id_tag = "nukeop_ready";
- name = "Shuttle Dock Door"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"iV" = (
-/turf/simulated/floor/plating,
-/area/syndicate_mothership)
-"iW" = (
-/obj/machinery/door/airlock/external{
- req_access_txt = "150"
- },
-/turf/simulated/floor/plating,
-/area/syndicate_mothership)
-"iX" = (
-/obj/machinery/light,
-/turf/simulated/floor/plating,
-/area/syndicate_mothership)
-"iY" = (
-/mob/living/simple_animal/pet/cat/Syndi,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"iZ" = (
-/obj/machinery/door/airlock/external{
- id_tag = "syndicate_away";
- req_access_txt = "150"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"ja" = (
-/turf/unsimulated/wall,
-/area/tdome/arena)
-"jb" = (
-/obj/machinery/igniter/on,
-/turf/simulated/floor/plasteel,
-/area/tdome/arena)
-"jc" = (
-/turf/simulated/floor/plasteel,
-/area/tdome/arena)
-"jd" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (WEST)"
- },
-/area/syndicate_mothership)
-"je" = (
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/wizard_station)
-"jf" = (
-/obj/structure/chair/stool/bar,
-/obj/effect/landmark{
- name = "Syndicate-Spawn"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"jg" = (
-/obj/machinery/door_control{
- id = "nukeop_ready";
- name = "Mission Launch Control";
- pixel_x = -26;
- pixel_y = -2;
- req_access_txt = "151"
- },
-/obj/item/twohanded/required/kirbyplants,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"jh" = (
-/obj/structure/sign/double/map/right{
- pixel_y = 32
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"ji" = (
-/obj/machinery/door_control{
- id = "syndicate_sit_1";
- name = "Shuttle Blast Doors";
- pixel_x = -26;
- pixel_y = -2;
- req_access_txt = "150"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"jj" = (
-/obj/machinery/computer/shuttle/syndicate/drop_pod,
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
- },
-/area/shuttle/assault_pod)
-"jk" = (
-/obj/structure/table/wood,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/syndicate_mothership)
-"jl" = (
-/obj/structure/rack,
-/obj/item/clothing/under/color/red,
-/obj/item/clothing/shoes/brown,
-/obj/item/clothing/suit/armor/tdome/red,
-/obj/item/clothing/head/helmet/thunderdome,
-/obj/item/melee/energy/sword/saber/red,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena_source)
-"jm" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/drinkingglasses,
-/obj/item/reagent_containers/food/drinks/bottle/rum,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/syndicate_mothership)
-"jn" = (
-/obj/structure/table/wood,
-/obj/item/syndicatedetonator,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/syndicate_mothership)
-"jo" = (
-/obj/structure/table/wood,
-/obj/item/toy/nuke,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/syndicate_mothership)
-"jp" = (
-/turf/simulated/floor/plasteel,
-/area/tdome/arena_source)
-"jq" = (
-/obj/machinery/light/spot{
- dir = 4;
- icon_state = "tube1";
- tag = "icon-tube1 (EAST)"
- },
-/obj/structure/closet/syndicate/sst,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"jr" = (
-/obj/structure/rack,
-/obj/item/clothing/under/color/green,
-/obj/item/clothing/shoes/brown,
-/obj/item/clothing/suit/armor/tdome/green,
-/obj/item/clothing/head/helmet/thunderdome,
-/obj/item/melee/energy/sword/saber/green,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena_source)
-"js" = (
-/obj/structure/table/reinforced,
-/obj/item/syndicatedetonator,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"jt" = (
-/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/assault_pod)
-"ju" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"jv" = (
-/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"jw" = (
-/obj/machinery/light/small{
- dir = 8;
- icon_state = "bulb1";
- tag = "icon-bulb1 (WEST)"
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/assault_pod)
-"jx" = (
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"jy" = (
-/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"jz" = (
-/obj/machinery/light,
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"jA" = (
-/obj/docking_port/stationary/transit{
- dir = 8;
- dwidth = 10;
- height = 35;
- id = "whiteship_transit";
- name = "whiteship in transit";
- width = 21
- },
-/turf/space/transit/horizontal{
- dir = 4
- },
-/area/space)
-"jB" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'FOURTH WALL'.";
- name = "\improper FOURTH WALL";
- pixel_x = -32
- },
-/turf/unsimulated/floor/snow,
-/area/syndicate_mothership)
-"jC" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "sit_tele";
- name = "Teleporter"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"jD" = (
-/obj/structure/table/reinforced,
-/obj/item/healthanalyzer,
-/obj/item/healthanalyzer{
- pixel_y = 5
- },
-/obj/item/healthupgrade{
- pixel_x = 6;
- pixel_y = 5
- },
-/obj/item/healthupgrade{
- pixel_x = 6
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"jE" = (
-/obj/structure/rack,
-/obj/item/tank/emergency_oxygen/vox,
-/obj/item/clothing/mask/breath/vox,
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/wizard_station)
-"jF" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/syndicate{
- pixel_x = 5
- },
-/obj/item/multitool{
- pixel_x = -7;
- pixel_y = -1
- },
-/obj/item/multitool,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"jG" = (
-/obj/machinery/light/spot,
-/obj/structure/table/reinforced,
-/obj/item/radio/beacon/syndicate/bomb{
- pixel_y = 8
- },
-/obj/item/radio/beacon/syndicate/bomb{
- pixel_y = 4
- },
-/obj/item/radio/beacon/syndicate/bomb,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"jH" = (
-/obj/structure/chair/office{
- dir = 1
- },
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_y = -32
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"jI" = (
-/turf/space,
-/area/adminconstruction)
-"jJ" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"jK" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/light,
-/turf/simulated/floor/plating/airless,
-/area/syndicate_mothership)
-"jM" = (
-/obj/machinery/door/window{
- dir = 4;
- name = "Uplink Management Control";
- req_access_txt = "151"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/syndicate_mothership)
-"jN" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/bodyscanner,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"jO" = (
-/obj/structure/sign/double/map/right{
- pixel_y = -32
- },
-/obj/structure/rack/skeletal_bar/right,
-/obj/item/reagent_containers/food/drinks/bottle/gin,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/syndicate_mothership)
-"jP" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien21"
- },
-/area/abductor_ship)
-"jQ" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien20"
- },
-/area/abductor_ship)
-"jR" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien23"
- },
-/area/abductor_ship)
-"jS" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien22"
- },
-/area/abductor_ship)
-"jT" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien24"
- },
-/area/abductor_ship)
-"jU" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien16"
- },
-/area/abductor_ship)
-"jV" = (
-/obj/machinery/abductor/experiment{
- team = 1
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"jW" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien17"
- },
-/area/abductor_ship)
-"jX" = (
-/obj/machinery/abductor/pad{
- team = 1
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"jY" = (
-/obj/machinery/abductor/console{
- team = 1
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"jZ" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien19"
- },
-/area/abductor_ship)
-"ka" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien18"
- },
-/area/abductor_ship)
-"kb" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- name = "Equipment Room";
- req_access_txt = "150"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"kc" = (
-/obj/machinery/porta_turret/syndicate/pod,
-/turf/simulated/floor/pod,
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "diagonalWall3";
- tag = "icon-diagonalWall3"
- },
-/area/shuttle/assault_pod)
-"kd" = (
-/obj/structure/closet/secure_closet/freezer/fridge{
- req_access_txt = "112"
- },
-/turf/unsimulated/floor{
- icon_state = "white"
- },
-/area/tdome)
-"ke" = (
-/obj/effect/overlay/palmtree_l,
-/obj/effect/overlay/coconut,
-/turf/simulated/floor/beach/sand,
-/area/holodeck/source_beach)
-"kf" = (
-/turf/simulated/floor/holofloor{
- dir = 8;
- icon_state = "red"
- },
-/area/holodeck/source_thunderdomecourt)
-"kh" = (
-/obj/machinery/porta_turret/syndicate/pod,
-/turf/simulated/floor/pod,
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/assault_pod)
-"kj" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "stage_stairs"
- },
-/area/syndicate_mothership)
-"kk" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "sst_tele";
- name = "Teleporter"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"kl" = (
-/obj/machinery/vending/tool,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/syndicate_mothership)
-"km" = (
-/obj/machinery/door/airlock/centcom{
- aiControlDisabled = 1;
- name = "Assault Pod";
- opacity = 1;
- req_one_access_txt = "150"
- },
-/obj/docking_port/mobile/assault_pod,
-/turf/simulated/floor/plating,
-/area/shuttle/assault_pod)
-"kn" = (
-/obj/machinery/sleeper/syndie{
- dir = 2;
- icon_state = "sleeper_s-open"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"ko" = (
-/obj/structure/flora/bush,
-/turf/unsimulated/floor/snow,
-/turf/unsimulated/floor/snow{
- dir = 1;
- icon_state = "gravsnow_corner";
- tag = "icon-gravsnow_corner (NORTH)"
- },
-/area/syndicate_mothership)
-"kp" = (
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/obj/machinery/sleeper/syndie{
- dir = 2;
- icon_state = "sleeper_s-open"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"kq" = (
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/syndicate_mothership)
-"kr" = (
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"ks" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/syndicate_mothership)
-"kt" = (
-/obj/machinery/abductor/experiment{
- team = 4
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"ku" = (
-/obj/machinery/abductor/pad{
- team = 4
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"kv" = (
-/obj/machinery/abductor/console{
- team = 4
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"kw" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien14"
- },
-/area/abductor_ship)
-"kx" = (
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"ky" = (
-/obj/machinery/computer/camera_advanced/abductor{
- team = 1
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"kz" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien15"
- },
-/area/abductor_ship)
-"kA" = (
-/obj/structure/closet/abductor,
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"kB" = (
-/turf/simulated/floor/bluegrid,
-/area/tdome/arena_source)
-"kC" = (
-/obj/structure/chair/stool,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/syndicate_mothership)
-"kD" = (
-/obj/machinery/computer/camera_advanced/abductor{
- team = 4
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"kE" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien12"
- },
-/area/abductor_ship)
-"kF" = (
-/obj/effect/landmark/abductor/scientist,
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"kG" = (
-/obj/structure/table/abductor,
-/obj/item/retractor/alien,
-/obj/item/hemostat/alien,
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"kH" = (
-/obj/effect/landmark/abductor/agent,
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"kI" = (
-/obj/machinery/optable/abductor,
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"kJ" = (
-/obj/structure/closet/syndicate/personal,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "vault"
- },
-/area/syndicate_mothership)
-"kK" = (
-/obj/structure/table,
-/obj/item/storage/fancy/crayons,
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"kL" = (
-/obj/structure/table,
-/obj/item/gun/energy/ionrifle,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/syndicate_mothership)
-"kM" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien13"
- },
-/area/abductor_ship)
-"kN" = (
-/obj/structure/table/abductor,
-/obj/item/storage/box/alienhandcuffs,
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"kO" = (
-/obj/effect/landmark/abductor/scientist{
- team = 4
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"kP" = (
-/obj/effect/landmark/abductor/agent{
- team = 4
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"kQ" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien10"
- },
-/area/abductor_ship)
-"kR" = (
-/obj/structure/table/abductor,
-/obj/item/paper/abductor,
-/obj/item/scalpel/alien,
-/obj/item/cautery/alien,
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"kS" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien11"
- },
-/area/abductor_ship)
-"kT" = (
-/obj/effect/landmark{
- name = "Syndicate-Infiltrator";
- tag = "Commando"
- },
-/obj/structure/mirror{
- pixel_x = -28
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"kU" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien6"
- },
-/area/abductor_ship)
-"kV" = (
-/obj/machinery/abductor/gland_dispenser,
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"kW" = (
-/obj/structure/chair,
-/obj/effect/landmark{
- name = "tdomeobserve"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "redbluefull";
- tag = "icon-redbluefull (WEST)"
- },
-/area/tdome/tdomeobserve)
-"kX" = (
-/obj/machinery/vending/snack,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "redbluefull";
- tag = "icon-redbluefull (WEST)"
- },
-/area/tdome/tdomeobserve)
-"kY" = (
-/obj/structure/table{
- dir = 9;
- icon_state = "tabledir"
- },
-/obj/item/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/unsimulated/floor{
- icon_state = "white"
- },
-/area/tdome)
-"kZ" = (
-/obj/structure/table,
-/obj/machinery/kitchen_machine/microwave/upgraded,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
-/area/tdome)
-"la" = (
-/obj/structure/table/reinforced,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
-/area/tdome)
-"lb" = (
-/obj/item/camera,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "redbluefull";
- tag = "icon-redbluefull (WEST)"
- },
-/area/tdome/tdomeobserve)
-"lc" = (
-/obj/structure/rack,
-/obj/item/clothing/under/color/red,
-/obj/item/clothing/shoes/brown,
-/obj/item/grenade/smokebomb,
-/obj/item/restraints/legcuffs/beartrap,
-/obj/item/sleeping_carp_scroll,
-/obj/item/twohanded/bostaff,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena)
-"ld" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (WEST)"
- },
-/area/tdome)
-"le" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows2";
- tag = "icon-fakewindows2 (WEST)"
- },
-/area/tdome)
-"lf" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 4;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (EAST)"
- },
-/area/tdome)
-"lg" = (
-/obj/structure/mirror{
- pixel_x = 28
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"lh" = (
-/obj/structure/rack,
-/obj/item/clothing/under/color/green,
-/obj/item/clothing/shoes/brown,
-/obj/item/grenade/smokebomb,
-/obj/item/restraints/legcuffs/beartrap,
-/obj/item/sleeping_carp_scroll,
-/obj/item/twohanded/bostaff,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena)
-"li" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien7"
- },
-/area/abductor_ship)
-"lj" = (
-/obj/machinery/door/poddoor{
- id_tag = "thunderdomeaxe";
- name = "Axe Supply"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena)
-"lk" = (
-/obj/structure/table/abductor,
-/obj/item/surgicaldrill/alien,
-/obj/item/circular_saw/alien,
-/obj/item/FixOVein/alien,
-/obj/item/bonesetter/alien,
-/obj/item/bonegel/alien,
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"ll" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien9"
- },
-/area/abductor_ship)
-"lm" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien8"
- },
-/area/abductor_ship)
-"ln" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien2"
- },
-/area/abductor_ship)
-"lo" = (
-/obj/structure/rack,
-/obj/item/clothing/under/color/red,
-/obj/item/clothing/shoes/brown,
-/obj/item/clothing/suit/armor/tdome/red,
-/obj/item/clothing/head/helmet/thunderdome,
-/obj/item/melee/energy/sword/saber/red,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena)
-"lp" = (
-/obj/machinery/door/poddoor{
- id_tag = "thunderdomegen";
- name = "General Supply"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena)
-"lq" = (
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/tdome/tdome2)
-"lr" = (
-/obj/machinery/door/poddoor{
- id_tag = "thunderdome";
- name = "Thunderdome Blast Door"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/tdome/arena)
-"lt" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/tdome/arena)
-"lu" = (
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "chapel"
- },
-/area/wizard_station)
-"lv" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "green"
- },
-/area/tdome/arena)
-"lw" = (
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/tdome/tdome1)
-"lx" = (
-/obj/structure/rack,
-/obj/item/clothing/under/color/green,
-/obj/item/clothing/shoes/brown,
-/obj/item/clothing/suit/armor/tdome/green,
-/obj/item/clothing/head/helmet/thunderdome,
-/obj/item/melee/energy/sword/saber/green,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena)
-"ly" = (
-/turf/unsimulated/wall/abductor,
-/area/abductor_ship)
-"lz" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien4"
- },
-/area/abductor_ship)
-"lA" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien3"
- },
-/area/abductor_ship)
-"lB" = (
-/obj/effect/landmark{
- name = "tdome2"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/tdome/tdome2)
-"lC" = (
-/turf/unsimulated/wall,
-/area/tdome/arena_source)
-"lD" = (
-/obj/machinery/igniter/on,
-/turf/simulated/floor/plasteel,
-/area/tdome/arena_source)
-"lE" = (
-/obj/machinery/light/spot,
-/turf/simulated/floor/plasteel,
-/area/tdome/arena_source)
-"lF" = (
-/turf/unsimulated/wall/abductor{
- icon_state = "alien5"
- },
-/area/abductor_ship)
-"lG" = (
-/obj/effect/landmark{
- name = "tdome1"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/tdome/tdome1)
-"lH" = (
-/obj/machinery/camera{
- c_tag = "Thunderdome Red Team";
- network = list("Thunderdome");
- pixel_x = 11;
- pixel_y = -9
- },
-/obj/effect/landmark{
- name = "tdome2"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/tdome/tdome2)
-"lI" = (
-/turf/simulated/floor/bluegrid,
-/area/tdome/arena)
-"lJ" = (
-/obj/machinery/flasher{
- id = "flash";
- name = "Thunderdome Flash"
- },
-/turf/simulated/floor/bluegrid,
-/area/tdome/arena)
-"lK" = (
-/obj/machinery/camera{
- c_tag = "Thunderdome Green Team";
- network = list("Thunderdome");
- pixel_x = 12;
- pixel_y = -10
- },
-/obj/effect/landmark{
- name = "tdome1"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/tdome/tdome1)
-"lL" = (
-/obj/machinery/abductor/experiment{
- team = 2
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"lM" = (
-/obj/machinery/abductor/pad{
- team = 2
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"lN" = (
-/obj/machinery/abductor/console{
- team = 2
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"lO" = (
-/obj/machinery/abductor/experiment{
- team = 3
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"lP" = (
-/obj/machinery/abductor/pad{
- team = 3
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"lQ" = (
-/obj/machinery/abductor/console{
- team = 3
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"lR" = (
-/obj/machinery/computer/camera_advanced/abductor{
- team = 2
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"lS" = (
-/obj/machinery/computer/camera_advanced/abductor{
- team = 3
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"lT" = (
-/obj/effect/landmark/abductor/scientist{
- team = 2
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"lU" = (
-/obj/effect/landmark/abductor/agent{
- team = 2
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"lV" = (
-/obj/effect/landmark/abductor/scientist{
- team = 3
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"lW" = (
-/obj/machinery/camera{
- c_tag = "Thunderdome Arena";
- network = list("Thunderdome");
- pixel_x = 10
- },
-/turf/simulated/floor/bluegrid,
-/area/tdome/arena)
-"lX" = (
-/obj/machinery/door/poddoor{
- id_tag = "thunderdomehea";
- name = "Heavy Supply"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena)
-"lY" = (
-/obj/effect/landmark/abductor/agent{
- team = 3
- },
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"lZ" = (
-/obj/structure/rack,
-/obj/item/clothing/under/color/red,
-/obj/item/clothing/shoes/brown,
-/obj/item/clothing/suit/armor/vest,
-/obj/item/clothing/head/helmet/swat,
-/obj/item/gun/energy/laser,
-/obj/item/shield/energy,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 3;
- pixel_y = -30
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena)
-"ma" = (
-/obj/item/storage/lockbox/t4{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/storage/lockbox/t4{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/structure/table/reinforced,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"mb" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "red"
- },
-/area/holodeck/source_thunderdomecourt)
-"mc" = (
-/obj/structure/rack,
-/obj/item/clothing/under/color/green,
-/obj/item/clothing/shoes/brown,
-/obj/item/clothing/suit/armor/vest,
-/obj/item/clothing/head/helmet/swat,
-/obj/item/gun/energy/laser,
-/obj/item/shield/energy,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 3;
- pixel_y = -30
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/tdome/arena)
-"md" = (
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/tdome/tdomeadmin)
-"me" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/landmark{
- name = "tdomeadmin"
- },
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/tdome/tdomeadmin)
-"mf" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/drinkingglass/devilskiss,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/tdome/tdomeadmin)
-"mg" = (
-/obj/structure/chair/comfy/black{
- dir = 1
- },
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/tdome/tdomeadmin)
-"mh" = (
-/obj/structure/table,
-/obj/machinery/door_control{
- desc = "A remote control switch for port-side blast doors.";
- icon_state = "doorctrl0";
- id = "thunderdome";
- name = "Main Blast Doors";
- pixel_x = -3;
- pixel_y = 0;
- req_access_txt = "104"
- },
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/tdome/tdomeadmin)
-"mi" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the Thunderdome.";
- name = "Thunderdome Telescreen";
- network = list("Thunderdome");
- pixel_y = -30
- },
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/tdome/tdomeadmin)
-"mj" = (
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/tdome/tdomeadmin)
-"mk" = (
-/obj/structure/table,
-/obj/machinery/door_control{
- desc = "A remote control switch for port-side blast doors.";
- icon_state = "doorctrl0";
- id = "thunderdomehea";
- name = "Ranged Gear";
- pixel_x = 0;
- pixel_y = 5;
- req_access_txt = "104"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/tdome/tdomeadmin)
-"ml" = (
-/obj/structure/table,
-/obj/machinery/door_control{
- desc = "A remote control switch for port-side blast doors.";
- icon_state = "doorctrl0";
- id = "thunderdomegen";
- name = "General Equiptment";
- pixel_x = 0;
- pixel_y = 5;
- req_access_txt = "104"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/tdome/tdomeadmin)
-"mm" = (
-/obj/structure/table,
-/obj/machinery/door_control{
- desc = "A remote control switch for port-side blast doors.";
- icon_state = "doorctrl0";
- id = "thunderdomeaxe";
- name = "Specialist Supply";
- pixel_x = 0;
- pixel_y = 5;
- req_access_txt = "104"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/tdome/tdomeadmin)
-"mn" = (
-/turf/unsimulated/wall,
-/area/centcom)
-"mo" = (
-/turf/unsimulated/wall,
-/area/centcom/holding)
-"mp" = (
-/obj/structure/bed,
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom)
-"mq" = (
-/obj/structure/toilet{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "platingdmg3"
- },
-/area/centcom)
-"mr" = (
-/turf/unsimulated/wall,
-/area/trader_station/sol)
-"ms" = (
-/obj/structure/toilet{
- dir = 8
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom)
-"mt" = (
-/obj/effect/landmark{
- name = "Syndicate-Infiltrator";
- tag = "Commando"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"mu" = (
-/obj/effect/decal/cleanable/cobweb2,
-/obj/structure/toilet{
- dir = 8
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom)
-"mv" = (
-/obj/machinery/light/spot,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"mw" = (
-/obj/structure/bed,
-/turf/unsimulated/floor{
- icon_state = "floorscorched2"
- },
-/area/centcom)
-"mx" = (
-/obj/effect/decal/cleanable/blood,
-/obj/structure/toilet{
- dir = 8
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom)
-"my" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/holding)
-"mz" = (
-/obj/structure/bookcase,
-/obj/item/book/manual/sop_engineering,
-/obj/item/book/manual/sop_medical,
-/obj/item/book/manual/sop_science{
- pixel_y = -14
- },
-/obj/item/book/manual/sop_security,
-/obj/item/book/manual/sop_service,
-/obj/item/book/manual/sop_supply,
-/obj/item/book/manual/sop_general,
-/obj/item/book/manual/sop_legal,
-/obj/item/book/manual/sop_command,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/holding)
-"mA" = (
-/obj/machinery/computer/secure_data,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/holding)
-"mB" = (
-/obj/machinery/computer/sm_monitor,
-/obj/structure/table/wood,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/holding)
-"mC" = (
-/obj/machinery/computer/sm_monitor,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/holding)
-"mD" = (
-/obj/machinery/photocopier,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/holding)
-"mE" = (
-/obj/effect/landmark{
- name = "prisonwarp"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom)
-"mF" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom)
-"mG" = (
-/obj/effect/decal/cleanable/blood,
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom)
-"mH" = (
-/turf/unsimulated/floor{
- icon_state = "panelscorched"
- },
-/area/centcom)
-"mI" = (
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom)
-"mJ" = (
-/turf/unsimulated/floor{
- icon_state = "platingdmg3"
- },
-/area/centcom)
-"mK" = (
-/obj/structure/chair/comfy/purp,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/holding)
-"mL" = (
-/turf/unsimulated/floor{
- dir = 9;
- icon_state = "carpetside"
- },
-/area/centcom/holding)
-"mM" = (
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "carpetside"
- },
-/area/centcom/holding)
-"mN" = (
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "carpetside"
- },
-/area/centcom/holding)
-"mO" = (
-/turf/unsimulated/wall{
- desc = "The door appears to be locked tightly.";
- icon = 'icons/obj/doors/airlocks/hatch/centcom.dmi';
- icon_state = "closed";
- name = "Locked Door"
- },
-/area/centcom)
-"mP" = (
-/obj/effect/forcefield{
- desc = "You can't get in. Heh.";
- layer = 1;
- name = "Blocker"
- },
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows3";
- tag = "icon-fakewindows (WEST)"
- },
-/area/centcom)
-"mQ" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/wood,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/holding)
-"mR" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "carpetside"
- },
-/area/centcom/holding)
-"mS" = (
-/obj/structure/table/wood,
-/obj/item/book/manual/security_space_law{
- pixel_x = 3
- },
-/obj/item/book/manual/security_space_law/black{
- pixel_x = -4
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpet"
- },
-/area/centcom/holding)
-"mT" = (
-/obj/structure/chair/comfy/red,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpet"
- },
-/area/centcom/holding)
-"mU" = (
-/obj/structure/table/wood,
-/obj/item/radio/intercom/specops,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpet"
- },
-/area/centcom/holding)
-"mV" = (
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "carpetside"
- },
-/area/centcom/holding)
-"mW" = (
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom)
-"mX" = (
-/obj/machinery/camera{
- c_tag = "CentComm Special Ops. Bathroom";
- dir = 2;
- network = list("ERT","CentComm")
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom)
-"mY" = (
-/obj/item/flag/nt,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"mZ" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/item/flag/nt,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"na" = (
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- req_access_txt = "114"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "stage_stairs"
- },
-/area/centcom/holding)
-"nb" = (
-/obj/structure/table,
-/obj/item/circular_saw,
-/obj/item/surgicaldrill{
- pixel_y = 5
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"nc" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/unsimulated/floor{
- dir = 10;
- icon_state = "carpetside"
- },
-/area/centcom/holding)
-"nd" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin/nanotrasen,
-/obj/item/folder/blue{
- pixel_x = 7;
- pixel_y = -7
- },
-/obj/item/folder/red{
- pixel_x = 7
- },
-/obj/item/folder/yellow{
- pixel_x = 7;
- pixel_y = 7
- },
-/obj/item/stamp/centcom{
- pixel_x = -5;
- pixel_y = 5
- },
-/obj/item/stamp/magistrate{
- pixel_x = -5;
- pixel_y = -5
- },
-/obj/structure/window/reinforced,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpetside"
- },
-/area/centcom/holding)
-"ne" = (
-/obj/structure/table/wood,
-/obj/item/gavelblock,
-/obj/item/gavelhammer,
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- req_access_txt = "114"
- },
-/obj/item/clothing/head/justice_wig,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpetside"
- },
-/area/centcom/holding)
-"nf" = (
-/obj/structure/table/wood,
-/obj/item/megaphone,
-/obj/structure/window/reinforced,
-/obj/item/taperecorder,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpetside"
- },
-/area/centcom/holding)
-"ng" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/structure/window/reinforced,
-/turf/unsimulated/floor{
- dir = 6;
- icon_state = "carpetside"
- },
-/area/centcom/holding)
-"nh" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/flag/nt,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"ni" = (
-/obj/effect/decal/cleanable/blood,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom)
-"nj" = (
-/turf/unsimulated/wall,
-/area/syndicate_mothership)
-"nk" = (
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"nl" = (
-/obj/structure/table/wood,
-/obj/item/book/manual/security_space_law,
-/obj/item/paper_bin/nanotrasen,
-/obj/item/pen,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"nm" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/obj/structure/sign/bobross{
- pixel_x = -32
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"nn" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/glass/beaker/waterbottle,
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- pixel_x = -5
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"no" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker/waterbottle,
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- pixel_x = -5
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"np" = (
-/obj/item/paper_bin,
-/obj/structure/table,
-/obj/machinery/camera{
- c_tag = "Centaral Command Supreme Court";
- pixel_x = 12;
- pixel_y = -6
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"nq" = (
-/obj/structure/table/wood,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"nr" = (
-/obj/item/radio/intercom/syndicate{
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"ns" = (
-/obj/machinery/door_control{
- id = "syndicate_elite";
- name = "Shuttle Blast Doors";
- pixel_x = 26;
- pixel_y = -2;
- req_access_txt = "150"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"nt" = (
-/obj/structure/mirror{
- pixel_x = -28
- },
-/obj/effect/landmark{
- name = "Syndicate-Infiltrator";
- tag = "Commando"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"nu" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/table,
-/obj/item/pen,
-/obj/item/storage/bible,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"nv" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/syndicate{
- pixel_x = 5
- },
-/obj/item/clothing/head/welding{
- pixel_x = -9;
- pixel_y = 10
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"nw" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/obj/structure/sign/bobross{
- pixel_x = 32
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"nx" = (
-/obj/machinery/door/airlock/hatch/syndicate/command,
-/obj/machinery/door/poddoor/impassable{
- id_tag = "commandcenter"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"ny" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/flare{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/item/storage/box/flare{
- pixel_x = 6;
- pixel_y = 2
- },
-/obj/item/storage/box/flare{
- pixel_x = 6;
- pixel_y = -2
- },
-/obj/item/storage/box/bola{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/item/storage/box/bola{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/storage/box/bola{
- pixel_x = -2;
- pixel_y = -2
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"nz" = (
-/obj/effect/landmark{
- name = "prisonwarp"
- },
-/turf/unsimulated/floor{
- icon_state = "panelscorched"
- },
-/area/centcom)
-"nA" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/landmark{
- name = "prisonwarp"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom)
-"nB" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "commandcenter";
- name = "Privacy Shutters"
- },
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows3";
- tag = "icon-fakewindows (WEST)"
- },
-/area/syndicate_mothership)
-"nC" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/flashbangs{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/item/storage/box/flashbangs{
- pixel_x = 6;
- pixel_y = 2
- },
-/obj/item/storage/box/flashbangs{
- pixel_x = 6;
- pixel_y = -2
- },
-/obj/item/storage/box/teargas{
- pixel_x = 2;
- pixel_y = 6
- },
-/obj/item/storage/box/teargas{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/storage/box/teargas{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/storage/box/barrier{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/item/storage/box/barrier{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/storage/box/barrier{
- pixel_x = -2;
- pixel_y = -2
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"nD" = (
-/obj/structure/rack,
-/obj/item/shield/riot{
- pixel_x = -6;
- pixel_y = -6
- },
-/obj/item/shield/riot{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/shield/riot,
-/obj/item/shield/riot{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/shield/riot{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/item/shield/riot/tele{
- pixel_x = -7
- },
-/obj/item/shield/riot/tele,
-/obj/item/shield/riot/tele{
- pixel_x = 7
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"nE" = (
-/obj/structure/table/wood,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"nF" = (
-/obj/machinery/computer/shuttle/sit,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"nG" = (
-/obj/item/ammo_box/magazine/laser,
-/obj/item/ammo_box/magazine/laser,
-/obj/item/ammo_box/magazine/laser,
-/obj/item/ammo_box/magazine/laser,
-/obj/item/ammo_box/magazine/laser,
-/obj/item/ammo_box/magazine/laser,
-/obj/item/ammo_box/magazine/laser,
-/obj/item/ammo_box/magazine/laser,
-/obj/structure/closet/secure_closet/guncabinet,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"nH" = (
-/obj/structure/rack,
-/obj/item/gun/projectile/automatic/m90{
- pixel_y = -4
- },
-/obj/item/gun/projectile/automatic/m90{
- pixel_y = 4
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"nI" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door_control{
- id = "sit_ready";
- name = "SIT Base Access";
- pixel_x = -6;
- pixel_y = 6;
- req_access_txt = "153"
- },
-/obj/machinery/door_control{
- id = "sit_tele";
- name = "SIT Teleporter Access";
- pixel_x = 6;
- pixel_y = 6;
- req_access_txt = "153"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"nJ" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"nK" = (
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- req_access_txt = "109"
- },
-/obj/structure/chair/office{
- dir = 1
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"nL" = (
-/obj/machinery/computer/shuttle/sst,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"nM" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door_control{
- id = "sst_armory";
- name = "SST Extra Weapons";
- pixel_x = -6;
- pixel_y = -4;
- req_access_txt = "153"
- },
-/obj/machinery/door_control{
- id = "sst_ready";
- name = "SST Base Access";
- pixel_x = -6;
- pixel_y = 6;
- req_access_txt = "153"
- },
-/obj/machinery/door_control{
- id = "sst_tele";
- name = "SST Teleporter Access";
- pixel_x = 6;
- pixel_y = 6;
- req_access_txt = "153"
- },
-/obj/machinery/door_control{
- id = "sst_mechbay";
- name = "SST Mech Bay";
- pixel_x = 6;
- pixel_y = -4;
- req_access_txt = "153"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"nN" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"nO" = (
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"nP" = (
-/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated{
- dir = 8;
- icon_state = "recharge_port"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/syndicate_mothership)
-"nQ" = (
-/obj/machinery/hydroponics/constructable,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"nR" = (
-/obj/machinery/vending/hydroseeds,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"nS" = (
-/obj/mecha/combat/marauder/mauler/loaded,
-/obj/effect/decal/warning_stripes/red/hollow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"nT" = (
-/obj/machinery/vending/hydronutrients,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"nU" = (
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/magazine/m556,
-/obj/structure/closet/crate,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"nV" = (
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8
- },
-/obj/effect/decal/warning_stripes/arrow{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"nW" = (
-/obj/effect/decal/warning_stripes/blue,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"nX" = (
-/obj/structure/flora/tree/pine,
-/turf/unsimulated/floor/snow,
-/turf/unsimulated/floor/snow{
- icon_state = "gravsnow_corner"
- },
-/area/syndicate_mothership)
-"nY" = (
-/obj/structure/flora/grass/brown,
-/turf/unsimulated/floor/snow,
-/turf/unsimulated/floor/snow{
- icon_state = "gravsnow_corner"
- },
-/area/syndicate_mothership)
-"nZ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/unsimulated/floor{
- icon_state = "engine"
- },
-/turf/unsimulated/wall{
- dir = 1;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"oa" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/unsimulated/floor{
- icon_state = "engine"
- },
-/turf/unsimulated/wall{
- dir = 8;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"ob" = (
-/obj/effect/landmark{
- name = "Syndicate-Infiltrator-Leader";
- tag = "Commando"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"oc" = (
-/obj/machinery/chem_master,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"od" = (
-/obj/structure/toilet{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "platingdmg1"
- },
-/area/centcom)
-"oe" = (
-/obj/structure/toilet{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "floorscorched2"
- },
-/area/centcom)
-"of" = (
-/obj/machinery/smartfridge,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"og" = (
-/obj/structure/rack,
-/obj/item/gun/projectile/automatic/wt550{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/gun/projectile/automatic/wt550,
-/obj/item/gun/projectile/automatic/wt550{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"oh" = (
-/obj/structure/chair/office{
- dir = 1
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"oi" = (
-/obj/item/storage/fancy/cigcase,
-/obj/structure/table,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
-/area/centcom/control)
-"oj" = (
-/turf/unsimulated/floor{
- icon_state = "white"
- },
-/area/centcom/control)
-"ok" = (
-/obj/item/storage/box/disks_plantgene,
-/obj/item/storage/box/disks_plantgene,
-/obj/item/storage/box/disks_plantgene,
-/obj/item/storage/box/disks_plantgene,
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"ol" = (
-/obj/machinery/smartfridge/disks,
-/obj/structure/table,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"om" = (
-/obj/machinery/plantgenes/seedvault,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"on" = (
-/obj/machinery/seed_extractor,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"oo" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/hydroponics/constructable,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"op" = (
-/obj/machinery/recharge_station/upgraded,
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"oq" = (
-/obj/machinery/door/airlock/centcom{
- name = "Supreme Court";
- opacity = 1;
- req_access_txt = "109"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"or" = (
-/obj/structure/closet/crate/can,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
-/area/centcom/control)
-"os" = (
-/obj/structure/table,
-/obj/item/ashtray/glass,
-/obj/item/cigbutt/cigarbutt{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/unsimulated/floor{
- icon_state = "white"
- },
-/area/centcom/control)
-"ot" = (
-/obj/machinery/chem_dispenser/mutagensaltpeter,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"ou" = (
-/obj/structure/closet/secure_closet/brig,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/holding)
-"ov" = (
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/holding)
-"ow" = (
-/obj/structure/morgue{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/holding)
-"ox" = (
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/structure/closet/crate,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"oy" = (
-/obj/item/clothing/glasses/sunglasses/blindfold,
-/obj/structure/table,
-/obj/item/taperecorder,
-/obj/item/camera/digital,
-/obj/item/storage/box/bodybags,
-/obj/item/healthanalyzer/advanced,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"oz" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"oA" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 8;
- id_tag = "commandcenter";
- name = "Privacy Shutters"
- },
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows3";
- tag = "icon-fakewindows (WEST)"
- },
-/area/syndicate_mothership)
-"oB" = (
-/obj/machinery/crema_switch{
- pixel_y = 25
- },
-/obj/machinery/bodyscanner,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"oC" = (
-/obj/structure/crematorium,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"oD" = (
-/obj/machinery/vending/cigarette/free,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
-/area/centcom/control)
-"oE" = (
-/obj/item/cigbutt,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
-/area/centcom/control)
-"oF" = (
-/obj/machinery/biogenerator,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"oG" = (
-/obj/machinery/camera{
- c_tag = "CentComm Special Ops. Mass Drivers";
- dir = 2;
- network = list("ERT","CentComm")
- },
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"oH" = (
-/obj/item/radio/intercom/specops{
- pixel_y = 25
- },
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"oI" = (
-/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"oJ" = (
-/obj/mecha/combat/marauder/seraph/loaded,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"oK" = (
-/obj/machinery/camera{
- c_tag = "CentComm Special Ops. Assault Armor Storage";
- dir = 2;
- network = list("ERT","CentComm")
- },
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"oL" = (
-/obj/structure/bed,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/holding)
-"oM" = (
-/obj/machinery/door/airlock/centcom{
- name = "Prison Cell";
- opacity = 1;
- req_access_txt = "104"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/holding)
-"oN" = (
-/turf/unsimulated/floor{
- icon_state = "gcircuit"
- },
-/area/centcom/holding)
-"oO" = (
-/obj/machinery/chem_dispenser/supgraded,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"oP" = (
-/obj/structure/closet/crate/hydroponics,
-/obj/item/cultivator,
-/obj/item/cultivator,
-/obj/item/cultivator,
-/obj/item/cultivator,
-/obj/item/shovel/spade,
-/obj/item/shovel/spade,
-/obj/item/shovel/spade,
-/obj/item/shovel/spade,
-/obj/item/hatchet,
-/obj/item/hatchet,
-/obj/item/hatchet,
-/obj/item/hatchet,
-/obj/item/seeds/gatfruit,
-/obj/item/seeds/cherry/bomb,
-/obj/item/seeds/ambrosia/gaia,
-/obj/item/seeds/ambrosia/gaia,
-/obj/item/seeds/ambrosia/gaia,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"oQ" = (
-/obj/effect/landmark{
- name = "Marauder Exit"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/specops)
-"oR" = (
-/obj/machinery/door/poddoor{
- id_tag = "ASSAULT3";
- name = "Launch Bay #3"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/specops)
-"oS" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/specops)
-"oT" = (
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"oU" = (
-/obj/machinery/door/poddoor{
- id_tag = "ASSAULT";
- name = "Assault Armor"
- },
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"oV" = (
-/obj/effect/forcefield{
- desc = "You can't get in. Heh.";
- layer = 1;
- name = "Blocker"
- },
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows3";
- tag = "icon-fakewindows (WEST)"
- },
-/area/centcom/holding)
-"oW" = (
-/obj/machinery/door/airlock/centcom{
- name = "Special Room";
- opacity = 1;
- req_access_txt = "104"
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"oX" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "rcircuit"
- },
-/area/centcom/holding)
-"oY" = (
-/obj/structure/table,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpet"
- },
-/area/centcom/control)
-"oZ" = (
-/obj/structure/rack,
-/obj/item/gun/energy/sniperrifle{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/gun/energy/sniperrifle,
-/obj/item/gun/energy/sniperrifle{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 0;
- pixel_y = 30
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"pa" = (
-/obj/structure/dresser,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpet"
- },
-/area/centcom/control)
-"pb" = (
-/obj/structure/sign/nosmoking_1{
- pixel_x = -32
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"pc" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/light/spot{
- dir = 4;
- icon_state = "tube1";
- tag = "icon-tube1 (EAST)"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpet"
- },
-/area/centcom/control)
-"pd" = (
-/obj/effect/spawner/window/reinforced,
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/control)
-"pe" = (
-/obj/machinery/door/airlock/centcom{
- name = "Smoking Room";
- opacity = 1;
- req_access_txt = "113"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"pf" = (
-/obj/machinery/door/airlock/centcom{
- name = "Greenhouse";
- opacity = 1;
- req_access_txt = "102"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"ph" = (
-/obj/mecha/combat/marauder/loaded,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"pi" = (
-/obj/machinery/clonepod/biomass,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHEAST)"
- },
-/area/centcom/living)
-"pj" = (
-/obj/machinery/camera{
- c_tag = "CentComm Special Ops. Ready Room East";
- dir = 8;
- network = list("ERT","CentComm")
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/holding)
-"pk" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpet"
- },
-/area/centcom/control)
-"pl" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpet"
- },
-/area/centcom/control)
-"pm" = (
-/obj/machinery/door/airlock/centcom{
- name = "Living Quarters";
- opacity = 1;
- req_access_txt = "102"
- },
-/turf/unsimulated/floor{
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull"
- },
-/area/centcom/control)
-"pn" = (
-/obj/machinery/atm{
- pixel_y = 24
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/centcom/control)
-"po" = (
-/obj/structure/chair/stool,
-/obj/structure/sign/poster/random{
- pixel_y = 32
- },
-/turf/unsimulated/floor{
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull"
- },
-/area/centcom/control)
-"pq" = (
-/obj/item/reagent_containers/food/condiment/peppermill{
- pixel_x = 2;
- pixel_y = 6
- },
-/obj/structure/table,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/centcom/control)
-"pr" = (
-/obj/machinery/computer/sm_monitor,
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"ps" = (
-/obj/item/reagent_containers/food/drinks/cans/cola,
-/obj/structure/table,
-/turf/unsimulated/floor{
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull"
- },
-/area/centcom/control)
-"pt" = (
-/obj/structure/chair/stool,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/centcom/control)
-"pu" = (
-/turf/unsimulated/floor{
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull"
- },
-/area/centcom/control)
-"pv" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/centcom/control)
-"pw" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/unsimulated/floor{
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull"
- },
-/area/centcom/control)
-"px" = (
-/obj/item/instrument/accordion,
-/obj/item/instrument/bikehorn,
-/obj/item/instrument/eguitar,
-/obj/item/instrument/guitar,
-/obj/item/instrument/harmonica,
-/obj/item/instrument/piano_synth,
-/obj/item/instrument/saxophone,
-/obj/item/instrument/trombone,
-/obj/item/instrument/violin,
-/obj/item/instrument/xylophone,
-/obj/structure/closet/crate,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/centcom/control)
-"py" = (
-/obj/structure/closet/secure_closet/bar{
- req_access = null;
- req_access_txt = "102"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"pz" = (
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/syndicate_mothership)
-"pA" = (
-/obj/machinery/light,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/syndicate_mothership)
-"pB" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"pC" = (
-/obj/machinery/vending/boozeomat{
- req_access_txt = "102"
- },
-/turf/unsimulated/wall,
-/area/centcom/control)
-"pD" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"pE" = (
-/obj/machinery/chem_master/condimaster{
- name = "CondiMaster Neo";
- pixel_x = -5
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"pF" = (
-/turf/unsimulated/wall/fakeglass,
-/area/syndicate_mothership)
-"pG" = (
-/obj/structure/foodcart,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"pH" = (
-/obj/machinery/icemachine,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"pI" = (
-/obj/machinery/kitchen_machine/oven/upgraded,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"pJ" = (
-/obj/machinery/door/poddoor{
- id_tag = "ASSAULT2";
- name = "Launch Bay #2"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/specops)
-"pK" = (
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/obj/structure/table/reinforced,
-/obj/item/paper_bin/syndicate,
-/obj/item/stamp/syndicate,
-/obj/item/pen/multi/gold,
-/obj/item/folder/red,
-/obj/item/folder/red{
- pixel_x = 7
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"pL" = (
-/obj/machinery/mass_driver{
- dir = 8;
- drive_range = 50;
- id_tag = "ASSAULT2";
- name = "gravpult"
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"pM" = (
-/obj/machinery/door/airlock/centcom{
- name = "Prison";
- opacity = 1;
- req_access_txt = "104"
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/holding)
-"pN" = (
-/obj/structure/table,
-/obj/item/paper_bin/nanotrasen,
-/obj/item/pen/multi/fountain,
-/obj/item/assembly/signaler{
- code = 6;
- frequency = 1445
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"pO" = (
-/obj/structure/table,
-/obj/item/gun/energy/laser,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 3;
- pixel_y = -30
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/holding)
-"pP" = (
-/obj/item/reagent_containers/food/drinks/cans/beer,
-/obj/structure/table,
-/turf/unsimulated/floor{
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull"
- },
-/area/centcom/control)
-"pQ" = (
-/obj/structure/rack,
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = -7;
- pixel_y = -7
- },
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = -4;
- pixel_y = -4
- },
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = -1;
- pixel_y = -1
- },
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 3;
- pixel_y = -30
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"pR" = (
-/obj/structure/table,
-/obj/machinery/juicer{
- pixel_y = 6
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/centcom/control)
-"pS" = (
-/obj/structure/chair/stool,
-/turf/unsimulated/floor{
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull"
- },
-/area/centcom/control)
-"pT" = (
-/obj/machinery/mass_driver{
- dir = 8;
- drive_range = 50;
- id_tag = "ASSAULT3";
- name = "gravpult"
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"pU" = (
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"pV" = (
-/obj/structure/piano,
-/turf/unsimulated/floor{
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull"
- },
-/area/centcom/control)
-"pW" = (
-/obj/machinery/kitchen_machine/grill/upgraded,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"pX" = (
-/obj/machinery/computer/pod/deathsquad,
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"pY" = (
-/obj/structure/table,
-/obj/machinery/chem_dispenser/beer/upgraded,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"pZ" = (
-/obj/structure/table,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"qb" = (
-/obj/machinery/kitchen_machine/candy_maker/upgraded,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"qc" = (
-/obj/structure/closet/secure_closet/freezer/meat{
- req_access_txt = "102"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"qd" = (
-/obj/structure/closet/secure_closet/freezer/meat,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"qe" = (
-/obj/machinery/door/poddoor{
- id_tag = "ASSAULT1";
- name = "Launch Bay #1"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/specops)
-"qf" = (
-/obj/machinery/mass_driver{
- dir = 8;
- drive_range = 50;
- id_tag = "ASSAULT1";
- name = "gravpult"
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"qg" = (
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"qh" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_x = -32
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"qi" = (
-/obj/structure/rack,
-/obj/item/gun/energy/sniperrifle{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/gun/energy/sniperrifle,
-/obj/item/gun/energy/sniperrifle{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 0;
- pixel_y = 30
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"qj" = (
-/obj/machinery/door/airlock/centcom{
- name = "Living Quarters";
- opacity = 1;
- req_access_txt = "102"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/centcom/control)
-"qk" = (
-/obj/structure/table,
-/obj/machinery/chem_dispenser/soda/upgraded,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"ql" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"qm" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"qo" = (
-/obj/machinery/door/airlock/centcom{
- name = "Freezer";
- opacity = 1;
- req_access_txt = "102"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"qp" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/centcom/evac)
-"qq" = (
-/obj/item/reagent_containers/food/drinks/cans/beer,
-/obj/structure/table,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/centcom/control)
-"qr" = (
-/obj/mecha/combat/gygax/ert/loaded,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"qs" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/ammo_box/shotgun/buck,
-/obj/item/ammo_box/shotgun/buck,
-/obj/item/ammo_box/shotgun/buck,
-/obj/item/gun/projectile/shotgun/automatic/combat,
-/obj/item/gun/projectile/shotgun/automatic/combat,
-/obj/item/gun/projectile/shotgun/automatic/combat,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"qt" = (
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/item/ammo_box/magazine/wt550m9,
-/obj/structure/closet/crate,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"qu" = (
-/obj/machinery/cooker/cerealmaker,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"qv" = (
-/obj/structure/closet/crate,
-/obj/item/grenade/plastic/x4,
-/obj/item/grenade/plastic/x4,
-/obj/item/grenade/plastic/x4,
-/obj/item/grenade/plastic/x4,
-/obj/item/grenade/plastic/c4_shaped/flash,
-/obj/item/grenade/plastic/c4_shaped/flash,
-/obj/item/grenade/plastic/c4_shaped/flash,
-/obj/item/grenade/plastic/c4_shaped/flash,
-/obj/item/grenade/plastic/c4_shaped,
-/obj/item/grenade/plastic/c4_shaped,
-/obj/item/grenade/plastic/c4_shaped,
-/obj/item/grenade/plastic/c4_shaped,
-/obj/item/storage/lockbox/t4,
-/obj/item/storage/lockbox/t4,
-/obj/item/storage/lockbox/t4,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"qw" = (
-/obj/structure/rack,
-/obj/item/gun/energy/gun/nuclear{
- pixel_x = -8;
- pixel_y = -8
- },
-/obj/item/gun/energy/gun/nuclear{
- pixel_x = -4;
- pixel_y = -4
- },
-/obj/item/gun/energy/gun/nuclear,
-/obj/item/gun/energy/gun/nuclear{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/gun/energy/gun/nuclear{
- pixel_x = 8;
- pixel_y = 8
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 3;
- pixel_y = -30
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"qx" = (
-/obj/structure/chair/sofa/corner{
- dir = 1
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"qy" = (
-/obj/machinery/cooker/deepfryer/upgraded,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"qz" = (
-/obj/structure/rack,
-/obj/item/gun/energy/ionrifle/carbine{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/gun/energy/ionrifle/carbine,
-/obj/item/gun/energy/ionrifle/carbine{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 3;
- pixel_y = -30
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"qA" = (
-/obj/structure/table,
-/obj/machinery/processor{
- pixel_x = 0;
- pixel_y = 10
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"qB" = (
-/obj/machinery/door/poddoor{
- id_tag = "ASSAULT0";
- name = "Launch Bay #0"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/specops)
-"qC" = (
-/obj/machinery/vending/cigarette/free,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"qD" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s6"
- },
-/area/shuttle/gamma/space)
-"qE" = (
-/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated{
- dir = 1
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/reset)
-"qF" = (
-/turf/simulated/floor/mech_bay_recharge_floor,
-/area/syndicate_mothership)
-"qG" = (
-/obj/machinery/computer/mech_bay_power_console,
-/turf/unsimulated/floor,
-/area/syndicate_mothership)
-"qH" = (
-/obj/item/flag/nt,
-/turf/unsimulated/floor{
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull"
- },
-/area/centcom/control)
-"qI" = (
-/obj/machinery/mass_driver{
- dir = 8;
- drive_range = 50;
- id_tag = "ASSAULT0";
- name = "gravpult"
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"qJ" = (
-/obj/item/flag/nt,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"qK" = (
-/obj/machinery/camera{
- c_tag = "CentComm Special Ops. Assault Armor South";
- dir = 1;
- network = list("ERT","CentComm")
- },
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8
- },
-/obj/effect/decal/warning_stripes/arrow{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"qL" = (
-/obj/item/flag/nt,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "green"
- },
-/area/centcom/control)
-"qM" = (
-/obj/item/flag/nt,
-/turf/unsimulated/floor{
- dir = 9;
- icon_state = "green"
- },
-/area/centcom/control)
-"qN" = (
-/obj/item/radio/intercom/specops{
- pixel_y = -28
- },
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"qO" = (
-/obj/machinery/cryopod/right,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"qP" = (
-/obj/machinery/computer/cryopod{
- pixel_y = 32
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"qQ" = (
-/obj/machinery/cryopod,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"qR" = (
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -6
- },
-/obj/structure/table,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/centcom/control)
-"qS" = (
-/obj/structure/chair/sofa{
- dir = 4
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"qT" = (
-/obj/machinery/cooker/foodgrill,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"qU" = (
-/obj/structure/table,
-/obj/machinery/kitchen_machine/microwave/upgraded,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"qV" = (
-/obj/machinery/gibber,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"qW" = (
-/obj/structure/kitchenspike,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"qX" = (
-/obj/structure/closet{
- icon_closed = "cabinet_closed";
- icon_opened = "cabinet_open";
- icon_state = "cabinet_closed"
- },
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/centcom/specops)
-"qY" = (
-/obj/structure/bookcase,
-/obj/item/book/manual/sop_engineering,
-/obj/item/book/manual/sop_medical,
-/obj/item/book/manual/sop_science{
- pixel_y = -14
- },
-/obj/item/book/manual/sop_security,
-/obj/item/book/manual/sop_service,
-/obj/item/book/manual/sop_supply,
-/obj/item/book/manual/sop_general,
-/obj/item/book/manual/sop_legal,
-/obj/item/book/manual/sop_command,
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/centcom/specops)
-"qZ" = (
-/obj/machinery/shower{
- pixel_y = 25
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/bathroom)
-"ra" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "GRAVPULTS";
- name = "Gravity Catapults"
- },
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"rb" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "GRAVPULTS";
- name = "Gravity Catapults"
- },
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"rc" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "ASSAULT";
- name = "Assault Armor"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"rd" = (
-/obj/structure/chair/wood{
- dir = 4
- },
-/turf/unsimulated/floor{
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull"
- },
-/area/centcom/control)
-"re" = (
-/obj/structure/curtain/open/shower/centcom,
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/bathroom)
-"rf" = (
-/obj/machinery/door_control{
- id = "toilet_ert_unit_4";
- name = "Toilet door control";
- normaldoorcontrol = 1;
- pixel_y = 25;
- specialfunctions = 4
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/bathroom)
-"rg" = (
-/obj/machinery/gameboard,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/centcom/control)
-"rh" = (
-/obj/structure/chair/wood{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull"
- },
-/area/centcom/control)
-"ri" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"rj" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "toilet_ert_unit_4";
- name = "Bathroom";
- opacity = 1
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/bathroom)
-"rk" = (
-/obj/structure/closet,
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/bathroom)
-"rl" = (
-/obj/item/radio/intercom/specops{
- pixel_y = 25
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"rm" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "generalert";
- name = "Genetal equipment"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"rn" = (
-/obj/docking_port/stationary/transit{
- dir = 2;
- dwidth = 8;
- height = 15;
- id = "admin_transit";
- name = "admin in transit";
- width = 18
- },
-/turf/space/transit/horizontal,
-/area/space)
-"ro" = (
-/obj/machinery/door_control{
- id = "generalert";
- name = "General equipment remote door-control";
- pixel_y = 25;
- req_access_txt = "114"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"rp" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/item/gun/projectile/automatic/pistol{
- name = "pistol"
- },
-/obj/item/gun/projectile/automatic/pistol{
- name = "pistol"
- },
-/obj/item/gun/projectile/automatic/pistol{
- name = "pistol"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/gamma/space)
-"rq" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/gun/energy/sniperrifle,
-/obj/item/gun/energy/sniperrifle,
-/obj/item/gun/energy/sniperrifle,
-/obj/machinery/light/spot{
- dir = 4;
- icon_state = "tube1";
- tag = "icon-tube1 (EAST)"
- },
-/obj/machinery/ai_status_display{
- pixel_y = 32
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/gamma/space)
-"rr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/structure/reagent_dispensers/watertank/high,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/centcom/living)
-"rs" = (
-/obj/machinery/vending/medical,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"rt" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/mecha_part_fabricator/upgraded,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"ru" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 4;
- name = "Connector Port (Air Supply)"
- },
-/obj/machinery/portable_atmospherics/canister/oxygen{
- name = "Canister: \[O2] (CRYO)"
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
- },
-/area/centcom/living)
-"rv" = (
-/obj/effect/spawner/window/reinforced,
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "red";
- tag = "icon-red (EAST)"
- },
-/area/centcom/gamma)
-"rw" = (
-/obj/effect/spawner/window/reinforced,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/gamma)
-"rx" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall3";
- tag = "icon-swall3"
- },
-/area/shuttle/gamma/space)
-"ry" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/gamma/space)
-"rz" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker,
-/obj/item/reagent_containers/food/condiment/enzyme,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"rA" = (
-/obj/structure/table,
-/obj/item/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/kitchen/rollingpin,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"rB" = (
-/obj/machinery/vending/dinnerware{
- req_access_txt = "102"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "cafeteria"
- },
-/area/centcom/control)
-"rC" = (
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/gamma)
-"rD" = (
-/obj/structure/reagent_dispensers/oil,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/centcom/living)
-"rE" = (
-/turf/unsimulated/wall,
-/area/start)
-"rF" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag/blood/AMinus,
-/obj/item/reagent_containers/iv_bag/blood/APlus,
-/obj/item/reagent_containers/iv_bag/blood/BMinus,
-/obj/item/reagent_containers/iv_bag/blood/BPlus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/reagent_containers/iv_bag/salglu,
-/obj/machinery/iv_drip,
-/obj/machinery/iv_drip,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"rG" = (
-/obj/machinery/door/airlock/centcom{
- name = "Gamma Armory";
- opacity = 1;
- req_access_txt = "114"
- },
-/obj/machinery/door/poddoor/impassable{
- id_tag = "CCGAMMA";
- name = "Gamma Security"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/centcom/gamma)
-"rH" = (
-/obj/effect/landmark/start,
-/turf/unsimulated/floor,
-/area/start)
-"rI" = (
-/obj/machinery/chem_master,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/centcom/living)
-"rJ" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/beakers/bluespace{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/storage/box/beakers/bluespace,
-/obj/item/reagent_scanner/adv,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"rK" = (
-/turf/unsimulated/wall/splashscreen,
-/area/start)
-"rL" = (
-/obj/machinery/bsa/full/admin/east,
-/obj/effect/decal/warning_stripes/north,
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/control)
-"rM" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/storage/belt/utility/chief/full,
-/obj/structure/table/reinforced,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/obj/item/storage/firstaid/machine,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/item/soap/nanotrasen,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"rN" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/control)
-"rO" = (
-/turf/space,
-/area/centcom/control)
-"rP" = (
-/obj/structure/chair/sofa,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"rQ" = (
-/obj/machinery/chem_dispenser/supgraded,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/centcom/living)
-"rR" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"rS" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/control)
-"rT" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/control)
-"rU" = (
-/obj/machinery/chem_heater,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHWEST)"
- },
-/area/centcom/living)
-"rV" = (
-/obj/machinery/teleport/hub/upgraded{
- admin_usage = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"rW" = (
-/obj/machinery/computer/communications,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"rX" = (
-/obj/structure/table/reinforced,
-/obj/machinery/reagentgrinder,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/centcom/living)
-"rY" = (
-/turf/space,
-/turf/unsimulated/wall,
-/area/centcom/control)
-"rZ" = (
-/turf/unsimulated/wall{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/centcom/control)
-"sa" = (
-/obj/structure/chair/sofa/left,
-/obj/structure/sign/goldenplaque{
- desc = "Лучший сотрудник века";
- name = "Это Толя Раммфан";
- pixel_y = 30
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"sb" = (
-/obj/machinery/camera{
- c_tag = "CentComm Special Ops. Rest Room";
- network = list("ERT","CentComm")
- },
-/obj/item/twohanded/required/kirbyplants,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"sc" = (
-/obj/machinery/atm{
- pixel_y = 32
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"sd" = (
-/obj/machinery/dna_scannernew,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/centcom/living)
-"se" = (
-/turf/space,
-/turf/space,
-/area/space)
-"sf" = (
-/obj/structure/weightmachine/weightlifter,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"sg" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s10"
- },
-/area/shuttle/gamma/space)
-"sh" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s10"
- },
-/area/shuttle/escape)
-"si" = (
-/obj/machinery/porta_turret/centcom/pulse,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
- },
-/area/centcom/gamma)
-"sj" = (
-/obj/machinery/computer/scan_consolenew,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/centcom/living)
-"sk" = (
-/obj/structure/chair/sofa,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/escape)
-"sl" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/centcom/gamma)
-"sm" = (
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/centcom/living)
-"sn" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/centcom/gamma)
-"so" = (
-/obj/structure/closet/crate/freezer{
- desc = "A crate.";
- name = "Medical crate"
- },
-/obj/item/storage/box/monkeycubes,
-/obj/item/storage/box/monkeycubes,
-/obj/item/storage/box/monkeycubes/farwacubes,
-/obj/item/storage/box/monkeycubes/farwacubes,
-/obj/item/storage/box/monkeycubes/neaeracubes,
-/obj/item/storage/box/monkeycubes/neaeracubes,
-/obj/item/storage/box/monkeycubes/stokcubes,
-/obj/item/storage/box/monkeycubes/stokcubes,
-/obj/item/storage/box/monkeycubes/wolpincubes,
-/obj/item/storage/box/monkeycubes/wolpincubes,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/centcom/living)
-"sp" = (
-/obj/structure/closet/secure_closet/medical2,
-/obj/machinery/camera{
- c_tag = "CentComm Special Ops. Medbay";
- dir = 1;
- network = list("ERT","CentComm")
- },
-/obj/item/radio/intercom/specops{
- pixel_y = -28
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/centcom/living)
-"sq" = (
-/obj/effect/landmark/shuttle_import,
-/turf/space,
-/area/space)
-"sr" = (
-/obj/machinery/door/airlock/centcom{
- name = "Restroom";
- opacity = 1;
- req_access_txt = "109"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/living)
-"ss" = (
-/obj/item/storage/box/gloves,
-/obj/item/storage/box/masks,
-/obj/structure/closet/crate/freezer{
- desc = "A crate.";
- name = "Medical crate"
- },
-/obj/item/storage/box/masks,
-/obj/item/storage/box/masks,
-/obj/item/storage/box/gloves,
-/obj/item/storage/box/gloves,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/centcom/living)
-"st" = (
-/obj/machinery/chem_dispenser/soda,
-/obj/structure/table/wood/fancy,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"su" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/surgery,
-/obj/item/mmi,
-/obj/item/mmi,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/centcom/living)
-"sv" = (
-/obj/machinery/camera{
- c_tag = "CentComm Special Ops. Bathroom";
- dir = 2;
- network = list("ERT","CentComm")
- },
-/obj/structure/table/reinforced,
-/obj/item/paper,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/centcom/gamma)
-"sw" = (
-/obj/machinery/computer/operating,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHEAST)"
- },
-/area/centcom/living)
-"sy" = (
-/obj/structure/table/reinforced,
-/obj/machinery/turretid/lethal{
- ailock = 1;
- check_synth = 1;
- name = "Gamma Turret Control Panel";
- pixel_x = 0;
- req_access = list(114)
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/centcom/gamma)
-"sC" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/centcom/gamma)
-"sD" = (
-/obj/machinery/porta_turret/centcom/pulse,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
- },
-/area/centcom/gamma)
-"sE" = (
-/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated{
- dir = 8;
- icon_state = "recharge_port"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"sF" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"sG" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"sI" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/storage/box/cups,
-/obj/machinery/camera{
- c_tag = "CentComm Special Ops. Ready Room North";
- dir = 2;
- network = list("ERT","CentComm")
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"sJ" = (
-/obj/machinery/dna_scannernew,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/centcom/living)
-"sK" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"sL" = (
-/obj/effect/landmark{
- name = "Response Team"
- },
-/obj/effect/landmark{
- name = "Commando"
- },
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"sM" = (
-/obj/effect/landmark{
- name = "Response Team"
- },
-/obj/effect/landmark{
- name = "Commando"
- },
-/obj/machinery/camera{
- c_tag = "CentComm Special Ops. Starting Room";
- dir = 2;
- network = list("ERT","CentComm")
- },
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"sN" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/item/radio/intercom/specops{
- pixel_y = 25
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"sO" = (
-/obj/machinery/door/airlock/centcom{
- name = "Airlock";
- opacity = 1;
- req_access_txt = "109"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"sR" = (
-/obj/machinery/door/airlock/centcom{
- name = "Dinner room";
- opacity = 1;
- req_access_txt = "113"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"sS" = (
-/obj/structure/table/wood,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"sT" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/ammo_box/shotgun/buck,
-/obj/item/ammo_box/shotgun/buck,
-/obj/item/ammo_box/shotgun/buck,
-/obj/item/gun/projectile/shotgun/automatic/combat,
-/obj/item/gun/projectile/shotgun/automatic/combat,
-/obj/item/gun/projectile/shotgun/automatic/combat,
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/machinery/light/spot{
- dir = 8;
- icon_state = "tube1";
- tag = "icon-tube1 (WEST)"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/gamma/space)
-"sU" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/gun/energy/gun/nuclear,
-/obj/item/gun/energy/gun/nuclear,
-/obj/item/gun/energy/gun/nuclear,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/gamma/space)
-"sV" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/centcom/gamma)
-"sW" = (
-/obj/structure/extinguisher_cabinet,
-/turf/unsimulated/wall,
-/area/centcom/gamma)
-"sY" = (
-/obj/machinery/door/airlock/centcom{
- name = "Special Operations";
- opacity = 1;
- req_access_txt = "109"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"sZ" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"ta" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"tc" = (
-/turf/unsimulated/wall,
-/area/syndicate_mothership/jail)
-"td" = (
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"te" = (
-/obj/machinery/cryopod/robot,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"tf" = (
-/turf/unsimulated/floor{
- dir = 9;
- icon_state = "green"
- },
-/area/centcom/control)
-"tg" = (
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "green"
- },
-/area/centcom/control)
-"th" = (
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "green"
- },
-/area/centcom/control)
-"ti" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"tj" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/control)
-"tk" = (
-/obj/structure/flora/ausbushes/fernybush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/control)
-"tl" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/control)
-"tm" = (
-/obj/structure/flora/ausbushes/stalkybush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/control)
-"tn" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/item/healthanalyzer/advanced,
-/obj/item/reagent_containers/applicator/dual,
-/obj/item/robotanalyzer,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"tp" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/control)
-"tq" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/control)
-"tr" = (
-/obj/structure/flora/ausbushes/pointybush,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"ts" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"tt" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"tu" = (
-/obj/item/flag/nt,
-/turf/unsimulated/floor{
- dir = 9;
- icon_state = "carpetside"
- },
-/area/centcom/control)
-"tw" = (
-/obj/structure/filingcabinet/filingcabinet,
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "carpetside"
- },
-/area/centcom/control)
-"tx" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "carpetside"
- },
-/area/centcom/control)
-"ty" = (
-/turf/unsimulated/wall{
- dir = 1;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/centcom/control)
-"tz" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/burrito,
-/obj/item/reagent_containers/food/snacks/carrotfries,
-/obj/item/reagent_containers/food/snacks/customizable,
-/obj/item/reagent_containers/food/snacks/sliceable/pizza/vegetablepizza,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"tA" = (
-/obj/structure/sink{
- pixel_y = 15
- },
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"tB" = (
-/obj/machinery/vending/snack/free,
-/obj/structure/sign/poster/official/enlist{
- pixel_y = 32
- },
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"tC" = (
-/obj/machinery/vending/snack/free,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"tD" = (
-/obj/machinery/vending/cola/free,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"tE" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
- },
-/area/centcom/living)
-"tF" = (
-/obj/machinery/vending/coffee/free,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"tG" = (
-/obj/machinery/vending/chinese/free,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"tI" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 5;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (NORTHEAST)"
- },
-/area/wizard_station)
-"tJ" = (
-/obj/structure/chair/sofa/right{
- dir = 4
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"tK" = (
-/obj/machinery/vending/cola/free,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"tL" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = 32
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/gamma/space)
-"tM" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/centcom/gamma)
-"tN" = (
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "red";
- tag = "icon-red (EAST)"
- },
-/area/centcom/gamma)
-"tO" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (WEST)"
- },
-/area/centcom/specops)
-"tP" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows2";
- tag = "icon-fakewindows2 (WEST)"
- },
-/area/centcom/specops)
-"tQ" = (
-/obj/docking_port/stationary/transit{
- dir = 8;
- dwidth = 2;
- height = 11;
- id = "specops_transit";
- name = "specops in transit";
- turf_type = /turf/space/transit/horizontal;
- width = 5
- },
-/turf/space/transit/horizontal,
-/area/space)
-"tS" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 4;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (EAST)"
- },
-/area/centcom/specops)
-"tT" = (
-/obj/machinery/door/airlock/centcom{
- name = "Prison";
- opacity = 1;
- req_access_txt = "104"
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"tU" = (
-/obj/machinery/door/airlock/centcom{
- name = "Team Storage";
- opacity = 1;
- req_access_txt = "109"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"tV" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "green"
- },
-/area/centcom/control)
-"tW" = (
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "green"
- },
-/area/centcom/control)
-"tX" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/flora/ausbushes/fernybush,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"tY" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"tZ" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/grassybush,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"ua" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/rock/pile,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"ub" = (
-/obj/structure/window/reinforced,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"ue" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"uf" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"ug" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/reedbush,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"uh" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"ui" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"uk" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/rock,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"ul" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/unsimulated/floor/grass,
-/area/centcom/control)
-"um" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "carpetside"
- },
-/area/centcom/control)
-"un" = (
-/obj/docking_port/stationary/transit{
- dir = 8;
- dwidth = 2;
- height = 12;
- id = "ferry_transit";
- name = "ferry in transit";
- turf_type = /turf/space/transit/horizontal;
- width = 5
- },
-/turf/space/transit/horizontal,
-/area/space)
-"uo" = (
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "carpetside"
- },
-/area/centcom/control)
-"up" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/burrito,
-/obj/item/reagent_containers/food/snacks/carrotfries,
-/obj/item/reagent_containers/food/snacks/cheeseburger,
-/obj/item/reagent_containers/food/snacks/loadedbakedpotato,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"uq" = (
-/obj/machinery/newscaster/security_unit{
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"ur" = (
-/turf/space,
-/turf/unsimulated/wall{
- dir = 8;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"us" = (
-/turf/space,
-/turf/unsimulated/wall{
- dir = 1;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"ut" = (
-/obj/structure/sign/poster/official/kill_syndicate{
- pixel_x = 32
- },
-/obj/item/twohanded/required/kirbyplants,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"uu" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/turf/unsimulated/wall{
- dir = 2;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- name = "window";
- opacity = 0;
- tag = "icon-window5_end"
- },
-/area/admin)
-"uv" = (
-/obj/machinery/door/airlock/shuttle{
- req_access_txt = "0"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/gamma/space)
-"uw" = (
-/obj/machinery/door/poddoor{
- id_tag = "CCGAMMA";
- name = "Gamma Security"
- },
-/obj/machinery/door/airlock/centcom{
- name = "Gamma Armory";
- opacity = 1;
- req_access_txt = "114"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/centcom/gamma)
-"ux" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "toilet_cc_unit_2";
- name = "Toilet";
- opacity = 1;
- req_access_txt = "106"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"uy" = (
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/centcom/gamma)
-"uz" = (
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/centcom/gamma)
-"uA" = (
-/turf/unsimulated/wall{
- dir = 1;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "wall3";
- tag = "icon-wall3 (NORTH)"
- },
-/area/admin)
-"uB" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/turf/unsimulated/wall{
- dir = 2;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- name = "window";
- opacity = 0;
- tag = "icon-window5_mid"
- },
-/area/admin)
-"uC" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/turf/unsimulated/wall{
- dir = 1;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- name = "window";
- opacity = 0;
- tag = "icon-window5_end (NORTH)"
- },
-/area/admin)
-"uD" = (
-/turf/space,
-/turf/unsimulated/wall{
- dir = 1;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/space)
-"uE" = (
-/turf/unsimulated/wall{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "wall3";
- tag = "icon-wall3 (EAST)"
- },
-/area/admin)
-"uF" = (
-/obj/structure/chair/office/dark,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"uG" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "SPECOPS";
- name = "Ready Room"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"uH" = (
-/obj/structure/rack,
-/obj/item/clothing/head/bandana,
-/obj/item/clothing/head/ushanka,
-/obj/item/clothing/head/helmet/roman/legionaire,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"uI" = (
-/obj/structure/rack,
-/obj/item/clothing/mask/gas/swat{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/mask/gas/cyborg,
-/obj/item/clothing/mask/chameleon,
-/obj/item/clothing/mask/balaclava{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"uJ" = (
-/obj/structure/rack,
-/obj/item/clothing/head/helmet/space/santahat{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"uK" = (
-/obj/structure/rack,
-/obj/item/clothing/head/helmet/swat/syndicate{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/head/helmet/space/deathsquad,
-/obj/item/clothing/head/helmet/space/deathsquad/beret{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"uL" = (
-/obj/structure/rack,
-/obj/item/clothing/head/soft/black{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/head/soft/blue,
-/obj/item/clothing/head/soft/red{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"uM" = (
-/obj/structure/rack,
-/obj/item/clothing/head/welding/flamedecal{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/head/welding/flamedecal/blue,
-/obj/item/clothing/head/welding/white{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"uN" = (
-/obj/structure/rack,
-/obj/item/storage/backpack/holding,
-/obj/item/storage/backpack/duffel/clown,
-/obj/item/storage/backpack/duffel/captain,
-/obj/item/storage/backpack/duffel/science,
-/obj/item/storage/backpack/duffel/syndie/ammo,
-/obj/item/storage/backpack/duffel/syndie/med,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"uO" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"uP" = (
-/obj/machinery/door/airlock/centcom{
- name = "Special Operations";
- opacity = 1;
- req_access_txt = "109"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"uQ" = (
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "greencorner"
- },
-/area/centcom/control)
-"uR" = (
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "greencorner"
- },
-/area/centcom/control)
-"uS" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/turf/unsimulated/wall{
- desc = "This window appears to be reinforced, it looks nearly impossible to break.";
- dir = 8;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- name = "window";
- opacity = 0;
- tag = "icon-window5_end (WEST)"
- },
-/area/admin)
-"uT" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"uU" = (
-/obj/structure/rack,
-/obj/item/clothing/under/shorts/black{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/under/shorts/blue,
-/obj/item/clothing/under/shorts/red{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"uV" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/deathsquad,
-/obj/item/clothing/suit/space/deathsquad/officer{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"uW" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin{
- pixel_y = 5
- },
-/obj/item/pen/multi,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "carpetside"
- },
-/area/centcom/control)
-"uX" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/turf/unsimulated/wall{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- name = "window";
- opacity = 0;
- tag = "icon-window5 (EAST)"
- },
-/area/admin)
-"uY" = (
-/obj/structure/rack,
-/obj/item/clothing/mask/chameleon{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/under/soviet,
-/obj/item/clothing/under/pirate{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"uZ" = (
-/obj/structure/rack,
-/obj/item/clothing/glasses/sunglasses{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/glasses/hud/health/sunglasses,
-/obj/item/clothing/glasses/hud/security/sunglasses,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"va" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "carpet15-14";
- tag = "icon-carpet (WEST)"
- },
-/area/centcom/control)
-"vb" = (
-/obj/structure/rack,
-/obj/item/clothing/glasses/material{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/glasses/meson,
-/obj/item/clothing/glasses/thermal{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vc" = (
-/obj/structure/rack,
-/obj/item/clothing/gloves/color/black/thief{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/rainbow{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/clothing/gloves/combat{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/gloves/color/captain{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vd" = (
-/obj/machinery/computer/bsa_control/admin,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "carpetside"
- },
-/area/centcom/control)
-"ve" = (
-/obj/effect/decal/warning_stripes/northwest,
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/control)
-"vf" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/control)
-"vg" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/suit/armor/laserproof,
-/obj/item/clothing/suit/armor/vest{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vh" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/turf/unsimulated/wall{
- dir = 2;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5";
- name = "window";
- opacity = 0;
- tag = "icon-window5"
- },
-/area/admin)
-"vi" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/burrito,
-/obj/item/reagent_containers/food/snacks/carrotfries,
-/obj/item/reagent_containers/food/snacks/cheeseburger,
-/obj/item/reagent_containers/food/snacks/sliceable/turkey,
-/obj/item/reagent_containers/food/snacks/chinese/sweetsourchickenball,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"vj" = (
-/obj/structure/rack,
-/obj/item/clothing/under/rank/centcom/captain{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/under/rank/centcom/officer,
-/obj/item/clothing/under/rank/centcom/representative{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vk" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/pirate_black{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/suit/blacktrenchcoat,
-/obj/item/clothing/suit/jacket{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vl" = (
-/obj/mecha/combat/marauder/loaded,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vm" = (
-/obj/mecha/combat/marauder/seraph/loaded,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vn" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/mech_bay_recharge_port/upgraded,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vo" = (
-/obj/mecha/combat/honker/loaded,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vp" = (
-/obj/machinery/computer/mech_bay_power_console,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vq" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/turf/unsimulated/wall{
- desc = "This window appears to be reinforced, it looks nearly impossible to break.";
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- name = "window";
- opacity = 0;
- tag = "icon-window5 (EAST)"
- },
-/area/admin)
-"vr" = (
-/obj/structure/rack,
-/obj/item/clothing/under/syndicate{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/under/syndicate/combat,
-/obj/item/clothing/under/acj{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vt" = (
-/obj/structure/closet/secure_closet/contractor,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"vv" = (
-/obj/machinery/door/airlock/hatch/syndicate{
- name = "Torture Room"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"vx" = (
-/obj/structure/rack,
-/obj/item/clothing/shoes/magboots/syndie{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/shoes/magboots/advance,
-/obj/item/clothing/shoes/magboots{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vy" = (
-/obj/structure/rack,
-/obj/item/clothing/glasses/night{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/glasses/hud/health/night,
-/obj/item/clothing/glasses/hud/security/night{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vz" = (
-/obj/structure/rack,
-/obj/item/clothing/shoes/green{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/shoes/centcom,
-/obj/item/clothing/shoes/chameleon/noslip{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/clothing/shoes/rainbow{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/shoes/combat/swat,
-/obj/item/clothing/shoes/combat{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vA" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/hardsuit/syndi{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/suit/space/hardsuit/shielded/wizard,
-/obj/item/clothing/suit/space/santa{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vB" = (
-/obj/item/mecha_parts/mecha_equipment/cable_layer,
-/obj/item/mecha_parts/mecha_equipment/drill/diamonddrill,
-/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp,
-/obj/item/mecha_parts/mecha_equipment/rcd,
-/obj/item/mecha_parts/mecha_equipment/extinguisher,
-/obj/structure/closet/crate,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vC" = (
-/turf/space,
-/turf/unsimulated/wall{
- dir = 2;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/space)
-"vD" = (
-/obj/structure/rack,
-/obj/item/radio/headset/heads/captain{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/radio/headset/syndicate,
-/obj/item/radio/headset/heads/ntrep{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/radio/headset/ert{
- pixel_x = 6;
- pixel_y = -6
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vE" = (
-/obj/structure/rack,
-/obj/item/storage/belt/utility/full/multitool{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/belt/military,
-/obj/item/storage/belt/military/assault{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/belt/champion/wrestling,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vF" = (
-/obj/mecha/combat/marauder/mauler/loaded,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vG" = (
-/obj/mecha/combat/gygax/dark/loaded,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vH" = (
-/obj/mecha/combat/phazon,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vI" = (
-/obj/structure/mirror{
- pixel_y = -30
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vJ" = (
-/obj/structure/rack,
-/obj/item/storage/backpack/holding{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/backpack/satchel,
-/obj/item/storage/backpack/holding{
- pixel_x = -6;
- pixel_y = 6
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vK" = (
-/obj/structure/rack,
-/obj/item/implanter/adrenalin{
- pixel_x = 12;
- pixel_y = -12
- },
-/obj/item/implanter/emp{
- pixel_x = 9;
- pixel_y = -9
- },
-/obj/item/implanter/explosive{
- pixel_x = 6;
- pixel_y = -6
- },
-/obj/item/implanter/explosive_macro{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/implanter/freedom,
-/obj/item/implanter/krav_maga{
- pixel_x = -9;
- pixel_y = 9
- },
-/obj/item/implanter/mindshield{
- pixel_x = -6;
- pixel_y = 6
- },
-/obj/item/implanter/storage{
- pixel_x = -3;
- pixel_y = 3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vL" = (
-/obj/structure/chair/stool,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"vM" = (
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/pulse,
-/obj/item/mecha_parts/mecha_equipment/weapon/honker,
-/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/carbine,
-/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg,
-/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack,
-/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flashbang/clusterbang,
-/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot,
-/obj/structure/closet/crate,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vN" = (
-/obj/machinery/door/airlock/hatch{
- name = "Clothing Storage";
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vO" = (
-/obj/machinery/door/airlock/hatch{
- name = "Mecha Room";
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"vP" = (
-/turf/space,
-/turf/unsimulated/wall{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"vQ" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/turf/unsimulated/wall{
- dir = 2;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- name = "window";
- opacity = 0;
- tag = "icon-window5_mid"
- },
-/area/admin)
-"vR" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/turf/unsimulated/wall{
- dir = 2;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- name = "window";
- opacity = 0;
- tag = "icon-window5_end"
- },
-/area/admin)
-"vS" = (
-/obj/structure/table,
-/obj/item/kitchen/utensil/spoon,
-/obj/item/kitchen/utensil/fork,
-/obj/item/reagent_containers/food/condiment/peppermill,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"vT" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/turf/unsimulated/wall{
- dir = 1;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- name = "window";
- opacity = 0;
- tag = "icon-window5_end (NORTH)"
- },
-/area/admin)
-"vU" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "diagonalWall3";
- tag = "icon-diagonalWall3 (EAST)"
- },
-/area/admin)
-"vV" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "diagonalWall3";
- tag = "icon-diagonalWall3"
- },
-/area/admin)
-"vW" = (
-/obj/machinery/chem_master,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"vX" = (
-/obj/structure/table,
-/obj/item/storage/box/beakers,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"vY" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"vZ" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"wa" = (
-/obj/structure/table,
-/obj/item/storage/pill_bottle/random_drug_bottle,
-/obj/item/reagent_containers/glass/bottle/adminordrazine,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"wb" = (
-/obj/machinery/door/airlock/external,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "ADMINLOCKDOWN";
- name = "Security Doors";
- opacity = 0
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"wc" = (
-/obj/machinery/door/airlock/hatch{
- name = "External Airlock";
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"wd" = (
-/obj/machinery/chem_dispenser{
- desc = "It appears Fox is doing more fruit chemistry today!";
- hackedcheck = 1
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"we" = (
-/obj/structure/table,
-/obj/item/kitchen/utensil/spoon,
-/obj/item/kitchen/utensil/fork,
-/obj/item/reagent_containers/food/condiment/saltshaker,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"wf" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/turf/unsimulated/wall{
- desc = "This window appears to be reinforced, it looks nearly impossible to break.";
- dir = 8;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- name = "window";
- opacity = 0;
- tag = "icon-window5_end (WEST)"
- },
-/area/admin)
-"wh" = (
-/obj/structure/sign/poster/contraband/energy_swords{
- pixel_x = -32
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"wi" = (
-/obj/structure/chair/stool,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"wj" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"wk" = (
-/obj/docking_port/stationary/transit{
- dir = 8;
- dwidth = 2;
- height = 11;
- id = "trade_sol_transit";
- name = "trade_sol in transit";
- turf_type = /turf/space/transit/horizontal;
- width = 5
- },
-/turf/space/transit/horizontal,
-/area/space)
-"wl" = (
-/obj/machinery/door/airlock/hatch{
- name = "Armory";
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"wm" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/turf/unsimulated/wall{
- dir = 1;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"wn" = (
-/obj/machinery/chem_heater,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"wo" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/turf/unsimulated/wall{
- desc = "This window appears to be reinforced, it looks nearly impossible to break.";
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- name = "window";
- opacity = 0;
- tag = "icon-window5 (EAST)"
- },
-/area/admin)
-"wp" = (
-/obj/item/storage/box/syringes,
-/obj/item/assembly/igniter,
-/obj/item/assembly/igniter,
-/obj/item/assembly/igniter,
-/obj/item/assembly/igniter,
-/obj/item/assembly/timer,
-/obj/item/assembly/timer,
-/obj/item/assembly/timer,
-/obj/item/assembly/timer,
-/obj/item/grenade/chem_grenade/large,
-/obj/item/grenade/chem_grenade/large,
-/obj/item/grenade/chem_grenade/large,
-/obj/item/grenade/chem_grenade/large,
-/obj/item/gun/syringe/rapidsyringe,
-/obj/item/reagent_containers/spray/chemsprayer,
-/obj/structure/closet,
-/obj/item/gun/projectile/shotgun/sc_pump,
-/obj/item/ammo_casing/shotgun/dart,
-/obj/item/ammo_casing/shotgun/dart,
-/obj/item/ammo_casing/shotgun/dart,
-/obj/item/ammo_casing/shotgun/dart,
-/obj/item/ammo_casing/shotgun/dart,
-/obj/item/ammo_casing/shotgun/dart,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"wq" = (
-/turf/space,
-/turf/unsimulated/wall{
- dir = 2;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"wr" = (
-/obj/structure/weightmachine/stacklifter,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"ws" = (
-/obj/structure/rack,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/item/gun/projectile/automatic/pistol,
-/obj/item/gun/projectile/automatic/pistol{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/suppressor,
-/obj/item/suppressor{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"wt" = (
-/obj/structure/rack,
-/obj/item/ammo_box/magazine/smgm45,
-/obj/item/ammo_box/magazine/smgm45,
-/obj/item/ammo_box/magazine/smgm45,
-/obj/item/ammo_box/magazine/smgm45,
-/obj/item/ammo_box/magazine/smgm45,
-/obj/item/ammo_box/magazine/smgm45,
-/obj/item/gun/projectile/automatic/c20r,
-/obj/item/gun/projectile/automatic/c20r{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"wu" = (
-/obj/structure/rack,
-/obj/item/ammo_box/magazine/m12g,
-/obj/item/ammo_box/magazine/m12g,
-/obj/item/ammo_box/magazine/m12g/stun,
-/obj/item/ammo_box/magazine/m12g/stun,
-/obj/item/ammo_box/magazine/m12g/dragon,
-/obj/item/ammo_box/magazine/m12g/dragon,
-/obj/item/gun/projectile/automatic/shotgun/bulldog,
-/obj/item/gun/projectile/automatic/shotgun/bulldog{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"wv" = (
-/obj/structure/rack,
-/obj/item/ammo_box/magazine/m75,
-/obj/item/ammo_box/magazine/m75,
-/obj/item/ammo_box/magazine/m75,
-/obj/item/ammo_box/magazine/m75,
-/obj/item/ammo_box/magazine/m75,
-/obj/item/ammo_box/magazine/m75,
-/obj/item/gun/projectile/automatic/gyropistol,
-/obj/item/gun/projectile/automatic/gyropistol{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"ww" = (
-/obj/machinery/vending/liberationstation,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"wx" = (
-/obj/structure/rack,
-/obj/item/ammo_box/a357,
-/obj/item/ammo_box/a357,
-/obj/item/gun/projectile/revolver/mateba,
-/obj/item/gun/projectile/revolver/mateba{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"wy" = (
-/obj/structure/rack,
-/obj/item/ammo_box/magazine/m50,
-/obj/item/ammo_box/magazine/m50,
-/obj/item/ammo_box/magazine/m50,
-/obj/item/ammo_box/magazine/m50,
-/obj/item/ammo_box/magazine/m50,
-/obj/item/ammo_box/magazine/m50,
-/obj/item/gun/projectile/automatic/pistol/deagle,
-/obj/item/gun/projectile/automatic/pistol/deagle{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"wz" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/grown/citrus/lemon,
-/obj/item/reagent_containers/food/snacks/grown/berries,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/obj/item/reagent_containers/food/snacks/grown/cherries,
-/obj/item/reagent_containers/food/snacks/grown/citrus/orange,
-/obj/item/reagent_containers/food/snacks/grown/corn,
-/obj/item/reagent_containers/food/snacks/grown/mushroom/amanita,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"wA" = (
-/obj/structure/table,
-/obj/item/storage/box/beakers,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/obj/item/reagent_containers/glass/beaker/bluespace,
-/obj/item/storage/box/autoinjectors,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"wB" = (
-/obj/structure/table,
-/obj/item/storage/box/syringes,
-/obj/item/assembly/igniter,
-/obj/item/assembly/igniter,
-/obj/item/assembly/igniter,
-/obj/item/assembly/igniter,
-/obj/item/assembly/timer,
-/obj/item/assembly/timer,
-/obj/item/assembly/timer,
-/obj/item/assembly/timer,
-/obj/item/grenade/chem_grenade/large,
-/obj/item/grenade/chem_grenade/large,
-/obj/item/grenade/chem_grenade/large,
-/obj/item/grenade/chem_grenade/large,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"wC" = (
-/turf/unsimulated/wall,
-/area/centcom/living)
-"wD" = (
-/obj/structure/table,
-/obj/item/assembly/signaler,
-/obj/item/assembly/signaler,
-/obj/item/assembly/signaler,
-/obj/item/assembly/signaler,
-/obj/item/assembly/signaler,
-/obj/item/assembly/infra,
-/obj/item/assembly/infra,
-/obj/item/assembly/infra,
-/obj/item/assembly/infra,
-/obj/item/assembly/infra,
-/obj/item/assembly/prox_sensor,
-/obj/item/assembly/prox_sensor,
-/obj/item/assembly/prox_sensor,
-/obj/item/assembly/prox_sensor,
-/obj/item/assembly/prox_sensor,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"wE" = (
-/obj/docking_port/stationary/transit{
- dwidth = 3;
- height = 7;
- id = "steel_rain_transit";
- name = "steel_rain in transit";
- width = 7
- },
-/turf/space/transit/horizontal,
-/area/space)
-"wF" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/turf/unsimulated/wall{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5";
- name = "window";
- opacity = 0;
- tag = "icon-window5 (EAST)"
- },
-/area/admin)
-"wG" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/turf/unsimulated/wall{
- dir = 2;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5";
- name = "window";
- opacity = 0;
- tag = "icon-window5"
- },
-/area/admin)
-"wH" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "ADMINCHEMLOCKDOWN";
- name = "Security Doors";
- opacity = 0
- },
-/obj/machinery/door/airlock/hatch{
- name = "Chem Lab";
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"wI" = (
-/obj/structure/rack,
-/obj/item/ammo_box/magazine/mm556x45,
-/obj/item/ammo_box/magazine/mm556x45,
-/obj/item/ammo_box/magazine/mm556x45,
-/obj/item/ammo_box/magazine/mm556x45,
-/obj/item/gun/projectile/automatic/l6_saw,
-/obj/item/gun/projectile/automatic/l6_saw{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"wJ" = (
-/obj/structure/rack,
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/a40mm,
-/obj/item/ammo_box/a40mm,
-/obj/item/ammo_box/a40mm,
-/obj/item/ammo_box/a40mm,
-/obj/item/gun/projectile/automatic/m90,
-/obj/item/gun/projectile/automatic/m90{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"wL" = (
-/obj/structure/rack,
-/obj/item/gun/projectile/automatic/proto,
-/obj/item/gun/projectile/automatic/proto{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"wM" = (
-/obj/structure/mirror{
- dir = 4;
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"wO" = (
-/obj/machinery/optable,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"wP" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/syndicate,
-/obj/item/shard,
-/obj/item/kitchen/knife,
-/obj/item/storage/firstaid/tactical,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"wQ" = (
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "carpetside"
- },
-/area/admin)
-"wR" = (
-/obj/structure/table,
-/obj/item/gun/energy/pulse/pistol,
-/obj/machinery/door_control{
- desc = "A remote control switch to lock down the admin lab.";
- icon_state = "doorctrl0";
- id = "ADMINCHEMLOCKDOWN";
- name = "Lockdown";
- pixel_y = 24;
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- dir = 9;
- icon_state = "carpetside"
- },
-/area/admin)
-"wS" = (
-/obj/machinery/computer/secure_data,
-/obj/item/paper/sop,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "carpetside"
- },
-/area/admin)
-"wT" = (
-/obj/structure/rack,
-/obj/item/gun/energy/lasercannon,
-/obj/item/gun/energy/lasercannon{
- pixel_x = 6;
- pixel_y = -6
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"wU" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/turf/unsimulated/wall{
- dir = 8;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"wV" = (
-/obj/effect/decal/cleanable/blood,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"wW" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil,
-/obj/item/stack/rods,
-/obj/item/pen,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"wX" = (
-/obj/structure/chair/office/dark,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpet"
- },
-/area/admin)
-"wY" = (
-/obj/machinery/computer/communications,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "carpetside"
- },
-/area/admin)
-"wZ" = (
-/obj/machinery/computer/med_data,
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "carpetside"
- },
-/area/admin)
-"xa" = (
-/obj/structure/rack,
-/obj/item/shield/energy,
-/obj/item/shield/energy{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xb" = (
-/obj/structure/rack,
-/obj/item/melee/energy/sword/saber,
-/obj/item/melee/energy/sword/saber{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xc" = (
-/obj/structure/rack,
-/obj/item/katana{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/katana,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xd" = (
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/specops)
-"xe" = (
-/obj/structure/rack,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 30
- },
-/obj/item/gun/energy/xray,
-/obj/item/gun/energy/xray{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xf" = (
-/obj/structure/table,
-/obj/random/toolbox,
-/obj/random/bomb_supply,
-/obj/machinery/syndicatebomb/badmin/clown,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"xg" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/syndicate,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"xh" = (
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"xi" = (
-/obj/structure/table,
-/obj/item/rcd,
-/obj/item/rcd_ammo,
-/obj/item/rcd_ammo,
-/obj/item/storage/pill_bottle/random_drug_bottle,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"xj" = (
-/obj/structure/table,
-/obj/item/scalpel,
-/obj/item/bonesetter,
-/obj/item/bonegel,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"xk" = (
-/obj/structure/table,
-/obj/item/kitchen/utensil/fork,
-/obj/item/lighter,
-/obj/item/restraints/handcuffs/cable/red,
-/obj/item/storage/box/mousetraps,
-/obj/item/storage/fancy/cigarettes,
-/obj/item/pen,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"xl" = (
-/obj/structure/table,
-/obj/machinery/door/window/southleft{
- name = "security checkpoint";
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpetside"
- },
-/area/admin)
-"xm" = (
-/obj/structure/table,
-/obj/structure/window/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/unsimulated/floor{
- dir = 10;
- icon_state = "carpetside"
- },
-/area/admin)
-"xn" = (
-/obj/structure/table,
-/obj/structure/window/reinforced,
-/obj/machinery/recharger,
-/turf/unsimulated/floor{
- dir = 6;
- icon_state = "carpetside"
- },
-/area/admin)
-"xo" = (
-/obj/structure/rack,
-/obj/item/gun/energy/laser/instakill/blue{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/gun/energy/laser/instakill/red{
- pixel_x = -3;
- pixel_y = 3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xp" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = 30
- },
-/obj/structure/rack,
-/obj/item/gun/energy/pulse/pistol/m1911,
-/obj/item/gun/energy/pulse/pistol/m1911{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xq" = (
-/obj/structure/table,
-/obj/item/tank/oxygen/yellow,
-/obj/random/bomb_supply,
-/obj/item/clothing/under/rebeloutfit,
-/obj/item/clothing/suit/poncho/ponchoshame,
-/obj/item/clothing/head/sombrero/shamebrero,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"xr" = (
-/obj/machinery/door/airlock/hatch{
- name = "Tool Storage";
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"xs" = (
-/obj/structure/table,
-/obj/item/FixOVein,
-/obj/item/retractor,
-/obj/item/cautery,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"xt" = (
-/obj/structure/kitchenspike,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"xu" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/turf/unsimulated/wall{
- dir = 2;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- name = "window";
- opacity = 0;
- tag = "icon-window5_mid"
- },
-/area/admin)
-"xv" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/turf/unsimulated/wall{
- dir = 2;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- name = "window";
- opacity = 0;
- tag = "icon-window5_end"
- },
-/area/admin)
-"xw" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/turf/unsimulated/wall{
- dir = 1;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- name = "window";
- opacity = 0;
- tag = "icon-window5_end (NORTH)"
- },
-/area/admin)
-"xx" = (
-/obj/structure/rack,
-/obj/item/gun/energy/meteorgun,
-/obj/item/gun/energy/meteorgun{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xy" = (
-/obj/structure/rack,
-/obj/item/gun/energy/kinetic_accelerator/crossbow,
-/obj/item/gun/energy/kinetic_accelerator/crossbow{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xz" = (
-/obj/structure/holowindow{
- dir = 1
- },
-/turf/simulated/floor/holofloor{
- dir = 8;
- icon_state = "green"
- },
-/area/holodeck/source_thunderdomecourt)
-"xA" = (
-/obj/structure/rack,
-/obj/item/twohanded/knighthammer{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/twohanded/mjollnir,
-/obj/item/twohanded/singularityhammer{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xB" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = 30
- },
-/obj/structure/rack,
-/obj/item/gun/energy/pulse,
-/obj/item/gun/energy/pulse{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xC" = (
-/obj/structure/table,
-/obj/random/tool,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/pinpointer/advpinpointer,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"xD" = (
-/obj/structure/table,
-/obj/item/grenade/syndieminibomb{
- pixel_x = 4;
- pixel_y = 2;
- pixel_z = 0
- },
-/obj/item/grenade/syndieminibomb{
- pixel_x = -1
- },
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"xE" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 0
- },
-/obj/item/toy/cards/deck/syndicate/black,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"xF" = (
-/obj/structure/table,
-/obj/item/surgicaldrill,
-/obj/item/stack/medical/bruise_pack/advanced,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"xG" = (
-/obj/structure/table,
-/obj/item/hemostat,
-/obj/item/circular_saw,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"xH" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "ADMINCHEMLOCKDOWN";
- name = "Security Doors";
- opacity = 0
- },
-/obj/machinery/door/airlock/hatch{
- desc = "Uh oh.";
- name = "Operating Theater";
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/admin)
-"xI" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/turf/unsimulated/wall{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"xJ" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/admin)
-"xK" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/turf/unsimulated/wall{
- dir = 2;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"xL" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/adminconstruction)
-"xM" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/turf/unsimulated/wall{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"xN" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/turf/unsimulated/wall{
- dir = 2;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"xO" = (
-/obj/machinery/door/airlock/hatch{
- desc = "You've heard rumors of the horrors that go on within this lab.";
- name = "Laboratory (DANGER!)";
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xP" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 4;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (EAST)"
- },
-/area/trader_station/sol)
-"xQ" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (WEST)"
- },
-/area/trader_station/sol)
-"xR" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (WEST)"
- },
-/area/vox_station)
-"xS" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows2";
- tag = "icon-fakewindows2 (WEST)"
- },
-/area/vox_station)
-"xT" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 4;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (EAST)"
- },
-/area/vox_station)
-"xU" = (
-/obj/machinery/computer/crew,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xV" = (
-/obj/machinery/computer/supplycomp/public,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xW" = (
-/obj/machinery/computer/rdservercontrol{
- badmin = 1;
- name = "Master R&D Server Controller"
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xX" = (
-/obj/machinery/computer/security{
- network = list("SS13","Telecomms","Research Outpost","Mining Outpost","ERT","CentComm","Thunderdome")
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xY" = (
-/obj/structure/table,
-/obj/item/card/id/silver{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/card/id/captains_spare,
-/obj/item/card/id/lifetime{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"xZ" = (
-/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/centcom/gamma)
-"ya" = (
-/obj/machinery/r_n_d/server/centcom,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"yb" = (
-/obj/structure/table,
-/obj/item/card/id/centcom{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/card/id{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/card/id/admin{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"yc" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/turf/unsimulated/wall{
- dir = 2;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5";
- name = "window";
- opacity = 0;
- tag = "icon-window5"
- },
-/area/admin)
-"yd" = (
-/obj/structure/chair/comfy/black,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/admin)
-"ye" = (
-/obj/machinery/computer/shuttle/trade/sol,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/trader_station/sol)
-"yf" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"yh" = (
-/obj/machinery/vending/snack,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/trader_station/sol)
-"yi" = (
-/obj/machinery/computer/card/centcom,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"yj" = (
-/obj/machinery/computer/card,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"yk" = (
-/obj/structure/chair/comfy/black{
- dir = 1
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"yl" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Computer Hub";
- req_access_txt = "0"
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "ADMINLOCKDOWN";
- name = "Security Doors";
- opacity = 0
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"ym" = (
-/obj/effect/landmark{
- name = "aroomwarp";
- tag = ""
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"yn" = (
-/obj/machinery/door/airlock/hatch{
- desc = "For all your shady business needs";
- name = "Gambling Den";
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/admin)
-"yo" = (
-/obj/structure/table/wood,
-/obj/item/toy/cards/deck/syndicate,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/admin)
-"yp" = (
-/obj/structure/table/wood,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/admin)
-"yr" = (
-/obj/machinery/vending/tool,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"ys" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/drinkingglass/devilskiss,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/admin)
-"yu" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/turf/unsimulated/wall{
- desc = "This window appears to be reinforced, it looks nearly impossible to break.";
- dir = 8;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- name = "window";
- opacity = 0;
- tag = "icon-window5_end (WEST)"
- },
-/area/admin)
-"yw" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/trader_station/sol)
-"yx" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "browncorner"
- },
-/area/trader_station/sol)
-"yy" = (
-/turf/unsimulated/wall,
-/area/centcom/control)
-"yz" = (
-/obj/structure/chair/comfy/black{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"yA" = (
-/obj/structure/chair/stool,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/admin)
-"yB" = (
-/obj/structure/table/wood,
-/obj/item/lighter/zippo/engraved,
-/obj/item/storage/fancy/cigarettes/dromedaryco,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/admin)
-"yC" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/turf/unsimulated/wall{
- desc = "This window appears to be reinforced, it looks nearly impossible to break.";
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- name = "window";
- opacity = 0;
- tag = "icon-window5 (EAST)"
- },
-/area/admin)
-"yD" = (
-/obj/machinery/door/airlock/external{
- id_tag = "trade_sol_base";
- name = "Docking Port"
- },
-/turf/unsimulated/floor/plating,
-/area/trader_station/sol)
-"yF" = (
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/trader_station/sol)
-"yH" = (
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"yI" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "brown"
- },
-/area/trader_station/sol)
-"yJ" = (
-/obj/machinery/computer/communications,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"yK" = (
-/obj/structure/chair/comfy/black,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"yL" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/turf/unsimulated/wall{
- dir = 1;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"yM" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"yN" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/turf/unsimulated/wall{
- dir = 8;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"yO" = (
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "browncorner"
- },
-/area/trader_station/sol)
-"yP" = (
-/obj/machinery/computer/atmos_alert,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"yQ" = (
-/turf/unsimulated/wall,
-/area/centcom/gamma)
-"yR" = (
-/obj/machinery/computer/message_monitor,
-/obj/item/paper/monitorkey,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"yS" = (
-/obj/machinery/computer/account_database{
- name = "Admin Accounts Database"
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"yT" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall3";
- tag = "icon-swall3"
- },
-/area/shuttle/escape)
-"yU" = (
-/obj/machinery/computer/secure_data,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"yV" = (
-/obj/structure/table,
-/obj/machinery/door_control{
- desc = "A remote control switch to lock down external access to the admin room.";
- icon_state = "doorctrl0";
- id = "ADMINLOCKDOWN";
- name = "Lockdown";
- pixel_y = 0;
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"yW" = (
-/obj/machinery/door/airlock/shuttle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/gamma/space)
-"yX" = (
-/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/gamma/space)
-"yY" = (
-/obj/structure/table/reinforced,
-/obj/item/radio/intercom/specops,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"yZ" = (
-/obj/structure/table/reinforced,
-/obj/effect/landmark{
- name = "nukecode"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"za" = (
-/obj/structure/table,
-/obj/item/gun/projectile/automatic/pistol,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"zb" = (
-/obj/structure/table,
-/obj/item/storage/fancy/cigarettes/syndicate,
-/obj/item/reagent_containers/food/drinks/cans/adminbooze,
-/obj/item/reagent_containers/food/drinks/cans/badminbrew,
-/obj/item/reagent_containers/food/drinks/cans/madminmalt,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"zc" = (
-/obj/structure/table/reinforced,
-/obj/item/paper,
-/obj/item/pen,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"zd" = (
-/obj/machinery/door/airlock/hatch{
- desc = "Danger: May contain robustness";
- name = "Dojo";
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"ze" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Shuttle Bay";
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"zf" = (
-/obj/structure/showcase,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"zg" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"zh" = (
-/obj/structure/table/reinforced,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"zi" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "16"
- },
-/turf/simulated/floor/plating,
-/area/centcom/evac)
-"zj" = (
-/obj/structure/chair/comfy/brown,
-/obj/effect/landmark{
- name = "traderstart_sol"
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/trader_station/sol)
-"zk" = (
-/obj/machinery/camera{
- c_tag = "CentComm Special Ops. Ready Room East";
- dir = 8;
- network = list("ERT","CentComm")
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"zl" = (
-/obj/item/storage/toolbox/syndicate{
- desc = "A powerful relic many men worked long and hard to keep safe and away from the forces of evil.";
- force = 1e+008;
- name = "toolbox of robustness"
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/table/wood,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"zm" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/grenade/clusterbuster/smoke,
-/obj/structure/table/wood,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"zn" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 1;
- icon_state = "fakewindows2"
- },
-/area/trader_station/sol)
-"zq" = (
-/obj/machinery/door/window/eastleft{
- name = "security checkpoint";
- req_access_txt = "104"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"zr" = (
-/obj/effect/forcefield{
- desc = "You can't get in. Heh.";
- layer = 1;
- name = "Blocker"
- },
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "specopsoffice";
- name = "Privacy Shutters"
- },
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows3";
- tag = "icon-fakewindows (WEST)"
- },
-/area/centcom/specops)
-"zt" = (
-/obj/structure/table/wood,
-/obj/item/dice/d20,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/trader_station/sol)
-"zu" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/obj/effect/landmark{
- name = "traderstart_sol"
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/trader_station/sol)
-"zv" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/table/wood,
-/obj/item/sleeping_carp_scroll,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"zw" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/table/wood,
-/obj/item/twohanded/bostaff,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"zx" = (
-/obj/machinery/door/airlock/centcom{
- name = "Special Operations Command";
- opacity = 1;
- req_access_txt = "114"
- },
-/obj/machinery/door/poddoor/impassable{
- id_tag = "specopsoffice";
- name = "Super Privacy Shutters"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"zy" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/trader_station/sol)
-"zz" = (
-/obj/structure/ninjatele{
- pixel_x = -28
- },
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"zA" = (
-/obj/structure/ninjatele{
- pixel_x = 28
- },
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"zC" = (
-/obj/structure/chair/comfy/brown{
- dir = 1
- },
-/obj/effect/landmark{
- name = "traderstart_sol"
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/trader_station/sol)
-"zD" = (
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/turf/unsimulated/wall{
- dir = 1;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"zE" = (
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/turf/unsimulated/wall{
- dir = 8;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"zF" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 0;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (EAST)"
- },
-/area/trader_station/sol)
-"zG" = (
-/obj/effect/overlay/coconut,
-/turf/unsimulated/beach/sand,
-/area/centcom/evac)
-"zH" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/flora/ausbushes/fernybush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/specops)
-"zI" = (
-/obj/effect/decal/cleanable/blood,
-/obj/structure/toilet{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"zJ" = (
-/obj/structure/bed,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"zK" = (
-/obj/effect/decal/cleanable/fungus,
-/turf/unsimulated/wall{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "wall3";
- tag = "icon-wall3 (EAST)"
- },
-/area/admin)
-"zL" = (
-/obj/item/flag/syndi,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"zM" = (
-/obj/machinery/door/window{
- dir = 1;
- name = "Suit Storage";
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- icon_state = "engine"
- },
-/area/admin)
-"zN" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 4;
- id_tag = "commandcenter";
- name = "Privacy Shutters"
- },
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows3";
- tag = "icon-fakewindows (WEST)"
- },
-/area/syndicate_mothership)
-"zO" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/flora/ausbushes,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/specops)
-"zP" = (
-/obj/machinery/door/airlock{
- name = "Toilet";
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/trader_station/sol)
-"zQ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/flora/ausbushes/leafybush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/specops)
-"zR" = (
-/obj/structure/table/wood,
-/obj/machinery/photocopier{
- icon_state = "fax";
- name = "fax machine"
- },
-/obj/item/photo{
- name = "butts"
- },
-/turf/unsimulated/floor{
- dir = 10;
- icon_state = "carpetside"
- },
-/area/centcom/control)
-"zS" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/trader_station/sol)
-"zT" = (
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 2;
- height = 18;
- id = "skipjack_away";
- name = "vox bay 1";
- width = 19
- },
-/turf/space,
-/area/space)
-"zU" = (
-/obj/machinery/door/window/southleft{
- name = "Cell B";
- req_access_txt = "101"
- },
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"zV" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s9"
- },
-/area/shuttle/escape)
-"zW" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpet15-5"
- },
-/area/centcom/control)
-"zX" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpetside"
- },
-/area/centcom/control)
-"zY" = (
-/obj/structure/window/reinforced,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"zZ" = (
-/obj/structure/urinal{
- pixel_y = 28
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/trader_station/sol)
-"Aa" = (
-/obj/item/mop,
-/obj/structure/mirror{
- pixel_x = 28
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/trader_station/sol)
-"Ab" = (
-/obj/structure/mopbucket,
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/soap,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/trader_station/sol)
-"Ac" = (
-/obj/machinery/iv_drip,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"Ad" = (
-/obj/machinery/vending/medical,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"Ae" = (
-/obj/structure/chair,
-/obj/effect/decal/cleanable/blood,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"Af" = (
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/turf/unsimulated/wall{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"Ag" = (
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/turf/unsimulated/wall{
- dir = 2;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "diagonalWall3"
- },
-/area/admin)
-"Ah" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/suit/straight_jacket,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"Ai" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/handcuffs,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"Aj" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/glasses/sunglasses/blindfold,
-/obj/item/clothing/mask/muzzle,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"Ak" = (
-/turf/unsimulated/floor{
- icon_state = "engine"
- },
-/turf/unsimulated/wall{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5";
- name = "window";
- opacity = 0;
- tag = "icon-window5 (EAST)"
- },
-/area/admin)
-"Al" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/trader_station/sol)
-"Am" = (
-/obj/structure/mirror{
- pixel_x = 28
- },
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/trader_station/sol)
-"An" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows"
- },
-/area/trader_station/sol)
-"Ao" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows2";
- tag = "icon-fakewindows2 (WEST)"
- },
-/area/trader_station/sol)
-"Ap" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/centcom/living)
-"Ar" = (
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/turf/unsimulated/wall{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5";
- name = "window";
- opacity = 0;
- tag = "icon-window5 (EAST)"
- },
-/area/admin)
-"As" = (
-/obj/machinery/door/airlock/hatch{
- desc = "Uh oh. You'd better hope you aren't going in here!";
- name = "Prisoner Treatment"
- },
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"At" = (
-/obj/machinery/door/airlock/hatch{
- desc = "Uh oh. You'd better hope you aren't going in here!";
- name = "Detainment"
- },
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"Au" = (
-/turf/unsimulated/floor{
- icon_state = "engine"
- },
-/turf/unsimulated/wall{
- dir = 2;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5";
- name = "window";
- opacity = 0;
- tag = "icon-window5"
- },
-/area/admin)
-"Av" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/machinery/door/window{
- dir = 8;
- name = "Toilet";
- opacity = 1;
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/trader_station/sol)
-"Aw" = (
-/obj/machinery/computer/communications,
-/turf/unsimulated/floor{
- dir = 6;
- icon_state = "carpetside"
- },
-/area/centcom/control)
-"Ay" = (
-/obj/structure/table/reinforced,
-/obj/item/melee/classic_baton/telescopic,
-/obj/item/paper/Court,
-/obj/item/pen,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"Az" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/mousetraps,
-/obj/item/storage/box/trackimp,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"AA" = (
-/obj/structure/table/reinforced,
-/obj/item/scalpel,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"AB" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/grenades,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"AC" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/flashbangs,
-/obj/item/storage/box/flashes,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"AD" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/teargas,
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"AE" = (
-/obj/machinery/door/window{
- dir = 1;
- name = "Cell A";
- req_access_txt = "101"
- },
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"AF" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"AG" = (
-/obj/structure/toilet{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "dark";
- tag = "icon-dark"
- },
-/area/admin)
-"AI" = (
-/obj/machinery/door/airlock/hatch{
- name = "Teleporter Access";
- req_access_txt = "0"
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "ADMINLOCKDOWN";
- name = "Security Doors";
- opacity = 0
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"AJ" = (
-/obj/structure/rack,
-/obj/item/tank/jetpack/oxygen,
-/obj/item/tank/jetpack/oxygen,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"AK" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space,
-/obj/item/clothing/suit/space,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/head/helmet/space,
-/obj/item/clothing/head/helmet/space,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"AL" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/hardsuit/syndi,
-/obj/item/clothing/suit/space/hardsuit/syndi/elite{
- pixel_x = -6;
- pixel_y = 6
- },
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"AM" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/control)
-"AN" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/cheeseburger,
-/obj/item/reagent_containers/food/snacks/chimichanga,
-/obj/item/reagent_containers/food/snacks/lasagna,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"AO" = (
-/obj/structure/table,
-/obj/random/powercell,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"AP" = (
-/obj/structure/table,
-/obj/random/tool,
-/obj/random/bomb_supply,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"AQ" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"AR" = (
-/obj/structure/table,
-/obj/random/technology_scanner,
-/obj/random/tech_supply,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"AS" = (
-/obj/machinery/computer/teleporter,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"AT" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/yellow,
-/obj/random/bomb_supply,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"AU" = (
-/obj/machinery/teleport/hub/upgraded{
- admin_usage = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"AV" = (
-/obj/machinery/teleport/station,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"AW" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/electrical,
-/turf/unsimulated/floor{
- icon_state = "floor";
- tag = "icon-floor"
- },
-/area/admin)
-"AX" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "commandcenter"
- },
-/obj/machinery/door/airlock/hatch/syndicate/command,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"AY" = (
-/obj/machinery/light/spot{
- dir = 8;
- icon_state = "tube1";
- tag = "icon-tube1 (WEST)"
- },
-/obj/machinery/pdapainter,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"AZ" = (
-/obj/structure/table,
-/obj/machinery/light/spot{
- dir = 4;
- icon_state = "tube1";
- tag = "icon-tube1 (EAST)"
- },
-/obj/item/storage/backpack/satchel,
-/obj/item/storage/backpack/satchel,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Ba" = (
-/obj/machinery/light/spot{
- dir = 8;
- icon_state = "tube1";
- tag = "icon-tube1 (WEST)"
- },
-/obj/machinery/vending/tool,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Bb" = (
-/obj/structure/chair/comfy/red,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"Bc" = (
-/obj/structure/sign/poster/official/enlist{
- pixel_x = 32
- },
-/obj/structure/closet/crate/can,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"Bd" = (
-/obj/machinery/vending/coffee/free,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Be" = (
-/obj/structure/table,
-/obj/item/storage/backpack/industrial,
-/obj/item/storage/backpack/industrial,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Bf" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Gamma Armory APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/gamma/space)
-"Bg" = (
-/obj/structure/table/wood,
-/obj/item/syndicatedetonator,
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "carpetside"
- },
-/area/syndicate_mothership)
-"Bh" = (
-/obj/structure/table,
-/obj/item/storage/backpack/medic,
-/obj/item/storage/backpack/medic,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Bi" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/mech_bay_recharge_port/upgraded,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/gamma/space)
-"Bj" = (
-/obj/mecha/combat/durand/loaded{
- operation_req_access = list(1)
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/mech_bay_recharge_floor,
-/area/shuttle/gamma/space)
-"Bk" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/computer/mech_bay_power_console,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/gamma/space)
-"Bl" = (
-/obj/machinery/teleport/station,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Bm" = (
-/obj/structure/table,
-/obj/item/storage/backpack/science,
-/obj/item/storage/backpack/science,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Bn" = (
-/obj/machinery/door/airlock/hatch/syndicate,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "bar"
- },
-/area/syndicate_mothership)
-"Bo" = (
-/obj/structure/table/wood,
-/obj/item/radio/intercom/syndicate,
-/turf/unsimulated/floor{
- dir = 9;
- icon_state = "carpetside"
- },
-/area/syndicate_mothership)
-"Bp" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/drinkingglass/devilskiss,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "carpetside"
- },
-/area/syndicate_mothership)
-"Bq" = (
-/obj/effect/spawner/window/reinforced,
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/evac)
-"Br" = (
-/obj/structure/chair/office/dark,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Bs" = (
-/obj/machinery/computer/teleporter,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Bt" = (
-/obj/structure/chair/comfy/red{
- dir = 1;
- icon_state = "comfychair"
- },
-/obj/effect/landmark{
- name = "Syndicate Officer"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpetside"
- },
-/area/syndicate_mothership)
-"Bu" = (
-/obj/structure/table/wood,
-/obj/machinery/door_control{
- id = "commandcenter";
- name = "Privacy Shutters";
- req_access_txt = "153"
- },
-/turf/unsimulated/floor{
- dir = 10;
- icon_state = "carpetside"
- },
-/area/syndicate_mothership)
-"Bv" = (
-/obj/machinery/computer/camera_advanced,
-/turf/unsimulated/floor{
- dir = 6;
- icon_state = "carpetside"
- },
-/area/syndicate_mothership)
-"Bw" = (
-/obj/structure/table/reinforced,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Bx" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark{
- name = "Syndicate-Commando";
- tag = "Commando"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"By" = (
-/obj/machinery/computer/shuttle/syndicate{
- name = "Nuclear Operatives Shuttle Console"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Bz" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door_control{
- id = "nukeop_base";
- name = "Nuclear Base Access";
- pixel_x = -6;
- pixel_y = 6;
- req_access_txt = "153"
- },
-/obj/machinery/door_control{
- id = "nukeop_ready";
- name = "Nuclear Shuttle Access";
- pixel_x = 6;
- pixel_y = 6;
- req_access_txt = "153"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BA" = (
-/obj/structure/displaycase/stechkin,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BB" = (
-/obj/structure/closet/secure_closet/syndicate_officer,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BC" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "sst_mechbay";
- name = "Mech Bay"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BD" = (
-/obj/machinery/door/airlock/hatch/syndicate{
- name = "Holding Cell"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BE" = (
-/obj/structure/rack,
-/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
-/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
-/obj/item/gun/projectile/automatic/shotgun/bulldog,
-/obj/item/gun/projectile/automatic/shotgun/bulldog,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BF" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "sst_armory";
- name = "Armory"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BG" = (
-/obj/mecha/combat/gygax/dark/loaded,
-/obj/effect/decal/warning_stripes/red/hollow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BH" = (
-/obj/structure/rack,
-/obj/item/ammo_box/magazine/smgm45,
-/obj/item/ammo_box/magazine/smgm45,
-/obj/item/ammo_box/magazine/smgm45,
-/obj/item/ammo_box/magazine/smgm45,
-/obj/item/ammo_box/magazine/smgm45,
-/obj/item/ammo_box/magazine/smgm45,
-/obj/item/ammo_box/magazine/smgm45,
-/obj/item/ammo_box/magazine/smgm45,
-/obj/item/gun/projectile/automatic/c20r,
-/obj/item/gun/projectile/automatic/c20r,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BI" = (
-/obj/structure/rack,
-/obj/item/ammo_box/magazine/sniper_rounds,
-/obj/item/ammo_box/magazine/sniper_rounds,
-/obj/item/ammo_box/magazine/sniper_rounds/penetrator,
-/obj/item/ammo_box/magazine/sniper_rounds/haemorrhage,
-/obj/item/gun/projectile/automatic/sniper_rifle/syndicate,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BJ" = (
-/obj/structure/rack,
-/obj/item/gun/medbeam,
-/obj/item/clothing/glasses/hud/health/night,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BK" = (
-/obj/structure/rack,
-/obj/item/ammo_casing/rocket,
-/obj/item/ammo_casing/rocket,
-/obj/item/ammo_casing/rocket,
-/obj/item/ammo_casing/rocket,
-/obj/item/ammo_casing/rocket,
-/obj/item/gun/rocketlauncher,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BL" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BM" = (
-/obj/machinery/door/airlock/hatch/syndicate{
- name = "SIT Ready Room"
- },
-/obj/machinery/door/poddoor/impassable{
- id_tag = "sit_ready"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BN" = (
-/obj/machinery/door/airlock/hatch/syndicate{
- name = "SST Ready Room"
- },
-/obj/machinery/door/poddoor/impassable{
- id_tag = "sst_ready"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BO" = (
-/obj/machinery/bluespace_beacon/syndicate/infiltrator,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BP" = (
-/obj/structure/flora/ausbushes/genericbush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"BQ" = (
-/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated,
-/turf/unsimulated/floor,
-/area/syndicate_mothership)
-"BR" = (
-/obj/machinery/vending/engineering,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"BS" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BT" = (
-/obj/machinery/door/window/northleft{
- name = "cell door";
- req_access_txt = "150"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BU" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/computer/arcade/orion_trail,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BV" = (
-/obj/structure/chair,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BW" = (
-/obj/structure/chair/stool,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BX" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen/red,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BY" = (
-/obj/structure/bed,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"BZ" = (
-/obj/structure/closet/secure_closet{
- req_access_txt = "150"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Ca" = (
-/obj/machinery/door/window/northleft{
- name = "Out";
- req_access_txt = "150"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Cb" = (
-/obj/machinery/door/window/northright{
- name = "In";
- req_access_txt = "150"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Cc" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "nukeop_base"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Cd" = (
-/obj/docking_port/stationary{
- area_type = /area/syndicate_mothership;
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 22;
- id = "syndicate_away";
- name = "syndicate base";
- turf_type = /turf/unsimulated/floor/snow;
- width = 18
- },
-/turf/unsimulated/floor/snow,
-/area/syndicate_mothership)
-"Cj" = (
-/obj/structure/rack,
-/obj/item/kitchen/knife/ritual,
-/turf/unsimulated/floor{
- icon_state = "chapel"
- },
-/area/wizard_station)
-"Cl" = (
-/obj/machinery/vending/security,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Cp" = (
-/obj/machinery/door/poddoor/impassable{
- desc = "A remote control switch to connect the ready room to the rest of Centcom.";
- id_tag = "gygax1";
- name = "Addition gun poddoor";
- req_access_txt = "114"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Cr" = (
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "siding1";
- tag = "icon-siding1"
- },
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "wood";
- tag = "icon-wood (EAST)"
- },
-/area/holodeck/source_theatre)
-"Cs" = (
-/obj/machinery/computer/communications,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"Ct" = (
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- pixel_x = -30;
- pixel_y = 0;
- req_access_txt = "0"
- },
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"Cu" = (
-/obj/structure/flora/ausbushes/pointybush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/control)
-"Cw" = (
-/turf/unsimulated/floor{
- icon_state = "light_on"
- },
-/area/space)
-"Cy" = (
-/obj/machinery/door_control{
- id = "ertgygax2";
- name = "ERT gygax #2 remote door-control";
- pixel_y = -25;
- req_access_txt = "114"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"CC" = (
-/obj/structure/toilet{
- dir = 4
- },
-/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"CD" = (
-/obj/machinery/recharge_station/upgraded,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"CG" = (
-/turf/unsimulated/floor{
- dir = 9;
- icon_state = "green"
- },
-/area/centcom/evac)
-"CK" = (
-/obj/machinery/light/spot,
-/obj/structure/chair{
- dir = 1
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"CL" = (
-/obj/machinery/door_control{
- id = "shower_cc_unit_2";
- name = "Shower door control";
- normaldoorcontrol = 1;
- pixel_y = 25;
- specialfunctions = 4
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"CM" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "advlaser";
- name = "advanced gun reinforced blast door"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"CN" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall14";
- tag = "icon-swall14"
- },
-/area/centcom/evac)
-"CR" = (
-/obj/item/clothing/glasses/sunglasses/yeah,
-/turf/unsimulated/beach/sand,
-/area/centcom/evac)
-"CS" = (
-/obj/machinery/door_control{
- id = "ertgygax1";
- name = "ERT gygax #1 remote door-control";
- pixel_y = -25;
- req_access_txt = "114"
- },
-/obj/machinery/camera{
- c_tag = "CentComm Special Ops. Armory 1";
- dir = 1;
- network = list("ERT","CentComm")
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"CW" = (
-/obj/item/soap/nanotrasen,
-/obj/item/bikehorn/rubberducky,
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/bathroom)
-"CY" = (
-/obj/machinery/door/airlock/hatch{
- name = "Cockpit";
- req_access_txt = "106"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor2";
- tag = "icon-floor2"
- },
-/area/centcom/evac)
-"CZ" = (
-/obj/structure/flora/tree/pine,
-/turf/simulated/floor/holofloor{
- icon_state = "snow";
- tag = "icon-snow"
- },
-/area/holodeck/source_snowfield)
-"De" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "green"
- },
-/area/holodeck/source_basketball)
-"Df" = (
-/obj/structure/rack,
-/obj/item/gun/projectile/automatic/wt550{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/gun/projectile/automatic/wt550,
-/obj/item/gun/projectile/automatic/wt550{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Dh" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "17"
- },
-/turf/simulated/floor/plating,
-/area/centcom/evac)
-"Di" = (
-/obj/structure/mirror{
- pixel_y = 32
- },
-/obj/structure/sink{
- pixel_y = 15
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"Dj" = (
-/obj/machinery/door/airlock/hatch/syndicate{
- damage_deflection = 75;
- id_tag = "syndicate_jail_cell";
- locked = 1;
- name = "Syndicate Jail Cell"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"Dk" = (
-/obj/machinery/light/spot,
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/wizard_station)
-"Dr" = (
-/obj/structure/chair/stool/bar,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/evac)
-"Ds" = (
-/obj/structure/flora/ausbushes/grassybush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/control)
-"Dv" = (
-/turf/space,
-/area/admin)
-"Dx" = (
-/obj/structure/chair/comfy/black{
- dir = 4
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Dy" = (
-/obj/machinery/shuttle_manipulator,
-/turf/unsimulated/floor{
- icon_state = "light_on"
- },
-/area/centcom/specops)
-"DI" = (
-/obj/structure/table,
-/obj/item/lighter/zippo,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/evac)
-"DM" = (
-/obj/machinery/door/airlock/centcom{
- name = "Unit 6";
- opacity = 1
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"DN" = (
-/turf/unsimulated/floor{
- icon_state = "light_on"
- },
-/area/centcom/specops)
-"DP" = (
-/obj/machinery/atmospherics/unary/cold_sink/freezer{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHEAST)"
- },
-/area/centcom/evac)
-"DQ" = (
-/obj/machinery/computer/card,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/centcom/evac)
-"DS" = (
-/obj/structure/rack,
-/obj/item/gun/energy/gun/nuclear{
- pixel_x = -8;
- pixel_y = -8
- },
-/obj/item/gun/energy/gun/nuclear{
- pixel_x = -4;
- pixel_y = -4
- },
-/obj/item/gun/energy/gun/nuclear,
-/obj/item/gun/energy/gun/nuclear{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/gun/energy/gun/nuclear{
- pixel_x = 8;
- pixel_y = 8
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 3;
- pixel_y = -30
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"DX" = (
-/turf/simulated/floor/mech_bay_recharge_floor,
-/area/admin)
-"DY" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "sniperrifle";
- name = "Sniper rifle reinforced blast door"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Ec" = (
-/obj/structure/rack,
-/obj/item/gun/energy/ionrifle/carbine{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/gun/energy/ionrifle/carbine,
-/obj/item/gun/energy/ionrifle/carbine{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 3;
- pixel_y = -30
- },
-/obj/item/gun/energy/ionrifle,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Ee" = (
-/obj/machinery/computer/robotics,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Eg" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "gygax2ert";
- name = "ERT Gygax's"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Eh" = (
-/obj/machinery/door_control{
- id = "toilet_ert_unit_2";
- name = "Toilet door control";
- normaldoorcontrol = 1;
- pixel_y = 25;
- specialfunctions = 4
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/bathroom)
-"Ei" = (
-/obj/machinery/light/spot,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"Eq" = (
-/obj/structure/flora/ausbushes/palebush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/control)
-"Er" = (
-/obj/structure/table/reinforced,
-/obj/effect/landmark{
- name = "Commando_Manual"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Eu" = (
-/obj/machinery/vending/snack/free,
-/turf/unsimulated/floor{
- dir = 10;
- icon_state = "green"
- },
-/area/centcom/control)
-"Ev" = (
-/turf/simulated/floor/holofloor{
- dir = 10;
- icon_state = "green"
- },
-/area/holodeck/source_basketball)
-"Ew" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s5"
- },
-/area/shuttle/escape)
-"Ez" = (
-/obj/machinery/vending/cola/free,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "green"
- },
-/area/centcom/control)
-"EC" = (
-/obj/structure/flora/tree/palm{
- pixel_x = -10
- },
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"ED" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "PDWdoor";
- name = "explosive reinforced blast door"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"EF" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/shaker,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/evac)
-"EG" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s9";
- tag = "icon-swall_s9"
- },
-/area/centcom/evac)
-"EJ" = (
-/obj/structure/morgue,
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"EL" = (
-/obj/structure/morgue{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"EO" = (
-/obj/structure/flora/ausbushes/stalkybush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"EP" = (
-/obj/structure/toilet{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/bathroom)
-"EV" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s5";
- tag = "icon-swall_s5"
- },
-/area/centcom/evac)
-"EZ" = (
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/ferry)
-"Fc" = (
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "green"
- },
-/area/centcom/evac)
-"Fd" = (
-/obj/item/radio/intercom/syndicate{
- pixel_x = 28
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"Ff" = (
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "red"
- },
-/area/holodeck/source_basketball)
-"Fi" = (
-/obj/structure/rack,
-/obj/item/gun/projectile/automatic/m90{
- pixel_y = -4
- },
-/obj/item/gun/projectile/automatic/m90{
- pixel_y = 4
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Fj" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/flare{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/item/storage/box/flare{
- pixel_x = 6;
- pixel_y = 2
- },
-/obj/item/storage/box/flare{
- pixel_x = 6;
- pixel_y = -2
- },
-/obj/item/storage/box/bola{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/item/storage/box/bola{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/storage/box/bola{
- pixel_x = -2;
- pixel_y = -2
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Fl" = (
-/obj/structure/table,
-/obj/item/kitchen/knife/butcher,
-/obj/item/melee/baseball_bat,
-/obj/item/clothing/mask/muzzle{
- pixel_y = 8
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"Fp" = (
-/obj/structure/chair/office{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"Fr" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Ft" = (
-/obj/machinery/embedded_controller/radio/airlock/access_controller{
- frequency = 1441;
- id_tag = "syndicate_jail_airlock_control";
- name = "Syndicate Jail Access Controller";
- pixel_x = 0;
- pixel_y = 24;
- req_access_txt = "150";
- tag_exterior_door = "syndicate_jail_airlock_external";
- tag_interior_door = "syndicate_jail_airlock_internal"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Fv" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/gloves/boxing/hologlove{
- icon_state = "boxinggreen";
- item_state = "boxinggreen"
- },
-/turf/simulated/floor/holofloor{
- dir = 6;
- icon_state = "green"
- },
-/area/holodeck/source_boxingcourt)
-"Fx" = (
-/obj/machinery/door_control{
- id = "toilet_cc_unit_2";
- name = "Toilet door control";
- normaldoorcontrol = 1;
- pixel_y = 25;
- specialfunctions = 4
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"Fy" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/light/spot{
- dir = 8;
- icon_state = "tube1";
- tag = "icon-tube1 (WEST)"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/centcom/evac)
-"Fz" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"FH" = (
-/obj/machinery/door_control{
- id = "sniperrifle";
- name = "Sniper rifle remote door-control";
- pixel_y = 25;
- req_access_txt = "114"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"FJ" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 8;
- id_tag = "specopsoffice";
- name = "Privacy Shutters"
- },
-/turf/unsimulated/wall/fakeglass{
- dir = 1;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (WEST)"
- },
-/area/centcom/specops)
-"FL" = (
-/turf/simulated/wall/r_wall,
-/area/adminconstruction)
-"FM" = (
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/centcom/specops)
-"FP" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"FT" = (
-/obj/structure/reagent_dispensers/spacecleanertank{
- pixel_x = 32
- },
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = -4
- },
-/obj/item/reagent_containers/spray/cleaner,
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = 4
- },
-/obj/structure/table,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
- },
-/area/centcom/living)
-"FV" = (
-/obj/structure/flora/bush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"FW" = (
-/obj/machinery/vending/cigarette/free,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "green"
- },
-/area/centcom/control)
-"FZ" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- icon_state = "propulsion_r";
- tag = "icon-propulsion_r (NORTH)"
- },
-/turf/simulated/shuttle/plating,
-/area/centcom/evac)
-"Ga" = (
-/obj/machinery/photocopier,
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/centcom/specops)
-"Gk" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows3";
- tag = "icon-fakewindows (WEST)"
- },
-/area/syndicate_mothership/jail)
-"Gl" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall12";
- tag = "icon-swall12"
- },
-/area/centcom/evac)
-"Gm" = (
-/obj/machinery/door/airlock/external{
- id_tag = "specops_away";
- name = "Shuttle Hatch";
- req_access_txt = "109"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Gq" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Gr" = (
-/obj/machinery/door/airlock/centcom{
- name = "Telecommunications";
- opacity = 1;
- req_access_txt = "107"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Gt" = (
-/obj/machinery/door_control{
- id = "shower_cc_unit_1";
- name = "Shower door control";
- normaldoorcontrol = 1;
- pixel_y = 25;
- specialfunctions = 4
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"Gz" = (
-/obj/structure/filingcabinet/security,
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/centcom/specops)
-"GB" = (
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/unsimulated/beach/sand,
-/area/centcom/evac)
-"GE" = (
-/obj/structure/sink{
- pixel_y = 15
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/centcom/living)
-"GM" = (
-/obj/effect/decal/remains/human,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"GN" = (
-/obj/machinery/computer/sm_monitor,
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/centcom/specops)
-"GO" = (
-/turf/unsimulated/wall/fakeglass,
-/area/centcom/ferry)
-"GP" = (
-/turf/unsimulated/floor{
- icon_state = "gcircuit"
- },
-/area/admin)
-"GQ" = (
-/turf/simulated/shuttle/plating,
-/area/centcom/evac)
-"GR" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/evac)
-"GW" = (
-/turf/simulated/floor/holofloor{
- icon_state = "sand";
- name = "Soft sand"
- },
-/area/holodeck/source_beach)
-"Ha" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/head/helmet/thunderdome,
-/obj/item/clothing/suit/armor/tdome/green,
-/obj/item/clothing/under/color/green,
-/obj/item/holo/esword/green,
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "green"
- },
-/area/holodeck/source_thunderdomecourt)
-"Hb" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/unsimulated/floor{
- icon_state = "engine"
- },
-/area/admin)
-"Hc" = (
-/obj/machinery/computer/communications,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Hd" = (
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 9;
- height = 18;
- id = "admin_away";
- name = "centcom bay 1";
- timid = 1;
- width = 19
- },
-/turf/space,
-/area/space)
-"Hg" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/space_ninja,
-/turf/unsimulated/floor{
- icon_state = "engine"
- },
-/area/admin)
-"Hh" = (
-/turf/unsimulated/floor{
- icon_state = "engine"
- },
-/area/admin)
-"Hi" = (
-/obj/structure/rack,
-/obj/item/clothing/head/helmet/space/space_ninja,
-/turf/unsimulated/floor{
- icon_state = "engine"
- },
-/area/admin)
-"Hj" = (
-/obj/machinery/door/airlock/centcom{
- name = "Bridge";
- opacity = 1;
- req_access_txt = "113"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Hl" = (
-/obj/structure/holowindow,
-/turf/simulated/floor/holofloor,
-/area/holodeck/source_thunderdomecourt)
-"Hn" = (
-/obj/structure/mirror/magic{
- pixel_y = 28
- },
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "carpetside"
- },
-/area/wizard_station)
-"Hu" = (
-/obj/structure/rack,
-/obj/item/clothing/gloves/space_ninja,
-/turf/unsimulated/floor{
- icon_state = "engine"
- },
-/area/admin)
-"Hv" = (
-/obj/structure/rack,
-/obj/item/katana/energy,
-/obj/item/clothing/mask/gas/space_ninja,
-/turf/unsimulated/floor{
- icon_state = "engine"
- },
-/area/admin)
-"Hw" = (
-/obj/structure/rack,
-/obj/item/clothing/shoes/space_ninja,
-/turf/unsimulated/floor{
- icon_state = "engine"
- },
-/area/admin)
-"Hy" = (
-/obj/machinery/door/airlock/centcom{
- name = "Communications Office";
- opacity = 1;
- req_access_txt = "107"
- },
-/turf/unsimulated/floor{
- icon_state = "carpet1-0"
- },
-/area/centcom/control)
-"Hz" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/chimichanga,
-/obj/item/reagent_containers/food/snacks/clownstears,
-/obj/item/reagent_containers/food/snacks/lasagna,
-/obj/item/reagent_containers/food/snacks/sliceable/pizza/mushroompizza,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"HA" = (
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"HB" = (
-/obj/structure/holowindow,
-/turf/simulated/floor/holofloor{
- dir = 8;
- icon_state = "red"
- },
-/area/holodeck/source_thunderdomecourt)
-"HD" = (
-/obj/machinery/door/airlock/centcom{
- name = "Unit 2";
- opacity = 1
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"HN" = (
-/obj/machinery/sleeper{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/centcom/evac)
-"HR" = (
-/obj/structure/table/wood/poker,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"HS" = (
-/obj/structure/table/wood/poker,
-/obj/item/toy/cards/deck,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"HU" = (
-/obj/structure/table,
-/obj/item/radio/electropack{
- pixel_x = -5
- },
-/obj/item/assembly/signaler{
- code = 2;
- frequency = 1449;
- pixel_x = 8
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"HV" = (
-/obj/effect/decal/cleanable/blood,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "chapel"
- },
-/area/wizard_station)
-"HW" = (
-/turf/simulated/floor/holofloor{
- dir = 6;
- icon_state = "green"
- },
-/area/holodeck/source_basketball)
-"HX" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/toxin,
-/obj/item/storage/firstaid/regular,
-/obj/item/storage/firstaid/regular,
-/obj/item/storage/firstaid/adv,
-/obj/item/storage/firstaid/brute,
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/centcom/evac)
-"HY" = (
-/obj/structure/table/wood/poker,
-/obj/structure/table/wood/poker,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"HZ" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"Ia" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/gloves/boxing/hologlove{
- icon_state = "boxinggreen";
- item_state = "boxinggreen"
- },
-/turf/simulated/floor/holofloor{
- dir = 10;
- icon_state = "green"
- },
-/area/holodeck/source_boxingcourt)
-"Ib" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s5"
- },
-/area/shuttle/gamma/space)
-"Ic" = (
-/obj/structure/table/wood,
-/obj/machinery/door_control{
- id = "syndicate_jail_cell";
- name = "Bolt Cell Doors";
- normaldoorcontrol = 1;
- pixel_x = 6;
- pixel_y = 0;
- req_access_txt = "150";
- specialfunctions = 4
- },
-/obj/machinery/door_control{
- id = "syndicate_jail";
- name = "Bolt Jail Door";
- normaldoorcontrol = 1;
- pixel_x = -5;
- pixel_y = 0;
- req_access_txt = "150";
- specialfunctions = 4
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"Id" = (
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"Ih" = (
-/obj/machinery/door_control{
- id = "gygax2ert";
- name = "ERT gygax's sremote door-control";
- pixel_y = -25;
- req_access_txt = "114"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Ii" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s9"
- },
-/area/shuttle/gamma/space)
-"Ij" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/centcom/living)
-"Ik" = (
-/obj/structure/table/reinforced,
-/obj/item/ashtray/glass{
- icon_state = "ashtray_half_gl"
- },
-/obj/item/cigbutt/cigarbutt{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Im" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "shower_cc_unit_1";
- name = "Shower";
- opacity = 1;
- req_access_txt = "106"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Io" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 8;
- id_tag = "specopsoffice";
- name = "Privacy Shutters"
- },
-/turf/unsimulated/wall/fakeglass{
- dir = 1;
- icon_state = "fakewindows2";
- tag = "icon-fakewindows2 (NORTH)"
- },
-/area/centcom/specops)
-"Ip" = (
-/turf/unsimulated/floor{
- dir = 9;
- icon_state = "carpetside"
- },
-/area/centcom/specops)
-"Iq" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 5;
- icon_state = "fakewindows"
- },
-/area/centcom/ferry)
-"Ir" = (
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "carpetside"
- },
-/area/centcom/specops)
-"Is" = (
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "carpetside"
- },
-/area/centcom/specops)
-"Iw" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/centcom/specops)
-"Iy" = (
-/obj/item/storage/firstaid/brute,
-/obj/item/storage/firstaid/brute,
-/obj/item/storage/firstaid/doctor,
-/obj/item/storage/firstaid/doctor,
-/obj/item/storage/firstaid/fire,
-/obj/item/storage/firstaid/fire,
-/obj/item/storage/firstaid/o2,
-/obj/item/storage/firstaid/tactical,
-/obj/item/storage/firstaid/tactical,
-/obj/item/storage/firstaid/toxin,
-/obj/item/storage/firstaid/toxin,
-/obj/item/roller,
-/obj/item/roller,
-/obj/structure/closet/crate/freezer{
- desc = "A crate.";
- name = "Medical crate"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"IC" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"ID" = (
-/obj/item/beach_ball,
-/turf/simulated/floor/beach/sand,
-/area/holodeck/source_beach)
-"IF" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/palebush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/specops)
-"IH" = (
-/obj/structure/urinal{
- pixel_y = 28
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"II" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/control)
-"IJ" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 5;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (NORTHEAST)"
- },
-/area/syndicate_mothership/jail)
-"IL" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/leafybush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/specops)
-"IO" = (
-/obj/machinery/door/airlock/centcom{
- name = "Medical Treatment Post";
- opacity = 1;
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"IP" = (
-/obj/structure/table,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"IR" = (
-/obj/structure/flora/ausbushes/palebush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"IS" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/genericbush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/specops)
-"IT" = (
-/obj/machinery/door/airlock/centcom{
- name = "Bathroom";
- opacity = 1;
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"IU" = (
-/obj/machinery/door/airlock/centcom{
- name = "Rest Area";
- opacity = 1;
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"IY" = (
-/obj/machinery/computer/message_monitor,
-/obj/item/paper/monitorkey,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Jc" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 6;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (SOUTHEAST)"
- },
-/area/centcom/ferry)
-"Jj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10;
- initialize_directions = 10
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
- },
-/area/centcom/evac)
-"Jk" = (
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "green"
- },
-/area/centcom/evac)
-"Jm" = (
-/obj/machinery/door/airlock/hatch/syndicate{
- autoclose = 0;
- frequency = 1441;
- id_tag = "syndicate_jail_airlock_internal";
- locked = 1;
- name = "Syndicate Jail Internal Airlock"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"Jn" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "CentComPort";
- name = "Security Doors";
- opacity = 0
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "green"
- },
-/area/centcom/evac)
-"Jq" = (
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "green"
- },
-/area/holodeck/source_basketball)
-"Ju" = (
-/obj/machinery/door/airlock/centcom{
- name = "Medbay";
- opacity = 1;
- req_access_txt = "109"
- },
-/obj/machinery/door/poddoor/impassable{
- id_tag = "MedbayERT";
- name = "Medbay reinforced blast door"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/living)
-"Jw" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 1;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (WEST)"
- },
-/area/centcom/specops)
-"Jx" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Jz" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 1;
- icon_state = "fakewindows"
- },
-/area/syndicate_mothership/jail)
-"JC" = (
-/obj/structure/chair/stool,
-/obj/item/clothing/head/bandana{
- pixel_y = -10
- },
-/obj/item/clothing/glasses/sunglasses,
-/turf/unsimulated/beach/sand,
-/area/ninja/holding)
-"JD" = (
-/obj/structure/chair/stool,
-/turf/unsimulated/beach/sand,
-/area/ninja/holding)
-"JE" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "toilet_cc_unit_1";
- name = "Toilet";
- opacity = 1;
- req_access_txt = "106"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"JF" = (
-/obj/structure/closet/secure_closet/bar{
- req_access = null;
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/evac)
-"JG" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/centcom/evac)
-"JK" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"JM" = (
-/obj/structure/holohoop{
- dir = 1
- },
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "green"
- },
-/area/holodeck/source_basketball)
-"JO" = (
-/obj/structure/chair/stool,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"JS" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- dir = 10;
- icon_state = "9"
- },
-/turf/simulated/floor/plating,
-/area/centcom/evac)
-"JV" = (
-/obj/machinery/door/airlock/shuttle,
-/obj/docking_port/mobile/emergency/backup{
- dwidth = 9;
- roundstart_move = null
- },
-/obj/docking_port/stationary{
- dir = 4;
- dwidth = 3;
- height = 8;
- id = "backup_away";
- name = "Backup Shuttle Dock";
- width = 8
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/shuttle/escape)
-"JX" = (
-/obj/machinery/vending/boozeomat,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/evac)
-"JY" = (
-/obj/machinery/door_control{
- id = "CCes";
- name = "Special Exit control Button";
- pixel_x = 23;
- req_access_txt = "101"
- },
-/turf/unsimulated/floor{
- dir = 6;
- icon_state = "green"
- },
-/area/centcom/evac)
-"Kb" = (
-/obj/structure/flora/ausbushes/grassybush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"Kc" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"Kd" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"Ke" = (
-/obj/structure/chair/sofa/right,
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"Kf" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/chair/sofa/left,
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"Kg" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/chair/sofa/right,
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"Kh" = (
-/obj/structure/chair/sofa/left,
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"Ki" = (
-/obj/structure/chair/comfy/brown{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"Kk" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/wood,
-/area/secret/gaybar)
-"Kl" = (
-/obj/machinery/door_control{
- id = "advlaser";
- name = "Advanced gun remote door-control";
- pixel_y = -25;
- req_access_txt = "114"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Kn" = (
-/obj/structure/table/reinforced,
-/obj/structure/kitchenspike,
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "chapel"
- },
-/area/wizard_station)
-"Ko" = (
-/obj/structure/chair/comfy/purp{
- dir = 1
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"Kp" = (
-/obj/machinery/door_control{
- id = "PDWdoor";
- name = "Explosive remote door-control";
- pixel_y = -25;
- req_access_txt = "114"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Kq" = (
-/obj/structure/chair/comfy/red,
-/obj/effect/landmark{
- name = "voxstart"
- },
-/turf/unsimulated/floor/vox,
-/area/vox_station)
-"Kt" = (
-/obj/structure/table,
-/obj/item/hand_labeler,
-/obj/item/megaphone,
-/obj/item/paicard,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Kv" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark{
- name = "voxstart"
- },
-/turf/unsimulated/floor/vox,
-/area/vox_station)
-"Kw" = (
-/obj/machinery/atmospherics/unary/cryo_cell/upgraded,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/centcom/living)
-"Ky" = (
-/turf/unsimulated/floor{
- icon_state = "gcircuit"
- },
-/area/centcom/control)
-"KA" = (
-/mob/living/silicon/decoy{
- name = "A.L.I.C.E."
- },
-/turf/unsimulated/floor{
- icon_state = "gcircuit"
- },
-/area/centcom/control)
-"KC" = (
-/obj/machinery/door_control{
- id = "anitborgtrl";
- name = "Centcom remote door-control";
- pixel_x = 24;
- req_access_txt = "101"
- },
-/turf/unsimulated/floor{
- dir = 6;
- icon_state = "green"
- },
-/area/centcom/control)
-"KG" = (
-/obj/docking_port/stationary{
- dir = 4;
- dwidth = 11;
- height = 18;
- id = "emergency_away";
- name = "emergency centcom";
- width = 29
- },
-/turf/space,
-/area/space)
-"KI" = (
-/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- pixel_x = 5;
- tag = "icon-shower (EAST)"
- },
-/obj/structure/curtain/open/shower/centcom,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"KK" = (
-/obj/machinery/photocopier,
-/turf/unsimulated/floor{
- icon_state = "gcircuit"
- },
-/area/centcom/control)
-"KN" = (
-/obj/machinery/computer/card/centcom,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"KO" = (
-/obj/structure/chair,
-/obj/item/cardboard_cutout{
- desc = "He is sleeping. And don't want to hurry up.";
- icon_state = "cutout_ntsec";
- name = "Sleeping Officer"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"KP" = (
-/obj/machinery/computer/secure_data,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"KR" = (
-/obj/machinery/light/small,
-/obj/structure/chair/comfy/shuttle{
- dir = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/assault_pod)
-"KW" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/assault_pod)
-"KX" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/assault_pod)
-"KY" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/assault_pod)
-"La" = (
-/obj/machinery/vending/cigarette,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "green"
- },
-/area/centcom/evac)
-"Lc" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 1;
- icon_state = "fakewindows2"
- },
-/area/centcom/ferry)
-"Le" = (
-/obj/structure/toilet{
- dir = 1
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"Lk" = (
-/obj/structure/table,
-/obj/item/paper_bin/nanotrasen,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Ln" = (
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"Lq" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "ionrifle";
- name = "ionrifle reinforced blast door"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Ls" = (
-/turf/simulated/floor/beach/water{
- icon_state = "seadeep"
- },
-/area/centcom/control)
-"Lw" = (
-/obj/machinery/computer/station_alert,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Lz" = (
-/obj/structure/table/wood,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/ferry)
-"LB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/centcom/evac)
-"LC" = (
-/obj/structure/chair/stool,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"LE" = (
-/turf/unsimulated/floor{
- dir = 6;
- icon_state = "green"
- },
-/area/centcom/evac)
-"LH" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "sballistic";
- name = "Heavy ballistic reinforced blast door"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"LJ" = (
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/space)
-"LK" = (
-/obj/structure/bookcase{
- name = "Forbidden Knowledge"
- },
-/obj/effect/decal/cleanable/cobweb,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"LM" = (
-/obj/structure/bookcase{
- name = "bookcase (Tactics)"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"LN" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "ballistic";
- name = "ballistic weaponreinforced blast door"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"LS" = (
-/obj/structure/holowindow,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "red"
- },
-/area/holodeck/source_thunderdomecourt)
-"LT" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"LU" = (
-/obj/machinery/sleeper{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
- },
-/area/centcom/living)
-"LV" = (
-/obj/structure/table,
-/obj/item/hand_labeler,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"LW" = (
-/turf/unsimulated/wall{
- icon_state = "iron13";
- tag = "icon-iron13"
- },
-/area/space)
-"LX" = (
-/obj/machinery/vending/magivend,
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"LY" = (
-/obj/machinery/computer/card,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"LZ" = (
-/obj/machinery/computer/sm_monitor,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Mb" = (
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- pixel_x = -30;
- pixel_y = 0;
- req_access_txt = "0"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/centcom/evac)
-"Mc" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Mf" = (
-/obj/effect/spawner/window/reinforced,
-/turf/unsimulated/floor,
-/area/centcom/evac)
-"Mg" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 4;
- name = "Connector Port (Air Supply)"
- },
-/obj/machinery/portable_atmospherics/canister/oxygen{
- name = "Canister: \[O2] (CRYO)"
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHWEST)"
- },
-/area/centcom/living)
-"Mk" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s6"
- },
-/area/shuttle/escape)
-"Ml" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall12";
- tag = "icon-swall12"
- },
-/area/shuttle/escape)
-"Mm" = (
-/obj/structure/curtain/open/shower/centcom,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
- },
-/area/centcom/control)
-"Mn" = (
-/turf/unsimulated/wall/fakeglass,
-/area/wizard_station)
-"Mo" = (
-/obj/structure/statue/elwycco,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"Mq" = (
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/folder/blue{
- pixel_x = 7;
- pixel_y = -7
- },
-/obj/item/folder/blue{
- pixel_x = 4;
- pixel_y = 6
- },
-/obj/item/folder/blue{
- pixel_x = 5
- },
-/obj/item/folder/red{
- pixel_y = 3
- },
-/obj/item/folder/red{
- pixel_x = 7
- },
-/obj/item/folder/yellow{
- pixel_x = 7;
- pixel_y = 7
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Ms" = (
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Mv" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/chimichanga,
-/obj/item/reagent_containers/food/snacks/clownstears,
-/obj/item/reagent_containers/food/snacks/customizable,
-/obj/item/reagent_containers/food/snacks/sliceable/pizza/meatpizza,
-/obj/item/reagent_containers/food/snacks/sushi_Ebi,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"Mz" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle,
-/turf/simulated/floor/plating,
-/area/centcom/evac)
-"MC" = (
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/escape)
-"MF" = (
-/obj/structure/flora/rock,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"MI" = (
-/obj/structure/flora/tree/palm,
-/obj/item/beach_ball,
-/turf/unsimulated/beach/sand,
-/area/centcom/evac)
-"MK" = (
-/obj/machinery/door/airlock/centcom{
- name = "Restroom";
- opacity = 1;
- req_access_txt = "109"
- },
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"MM" = (
-/obj/machinery/computer/med_data,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"MN" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 0
- },
-/obj/item/storage/firstaid/regular{
- pixel_x = -2;
- pixel_y = 4
- },
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"MQ" = (
-/obj/structure/chair/comfy/black{
- dir = 4
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"MS" = (
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/evac)
-"MT" = (
-/obj/structure/chair/comfy/black{
- dir = 8
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"MW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/centcom/living)
-"MY" = (
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"Nc" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "CCTELE";
- name = "Specops Teleporter"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Ne" = (
-/turf/unsimulated/wall,
-/area/centcom/specops)
-"Ng" = (
-/turf/unsimulated/wall{
- icon_state = "iron9";
- tag = "icon-iron9"
- },
-/area/space)
-"Nh" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows2";
- tag = "icon-fakewindows2 (WEST)"
- },
-/area/wizard_station)
-"Nl" = (
-/obj/machinery/atmospherics/unary/cryo_cell,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
- },
-/area/centcom/evac)
-"Nm" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s10";
- tag = "icon-swall_s10"
- },
-/area/centcom/evac)
-"Nt" = (
-/obj/structure/chair/stool/holostool,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet10-0";
- tag = "icon-carpet10-0 (EAST)"
- },
-/area/holodeck/source_meetinghall)
-"Nw" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "toilet_ert_unit_2";
- name = "Bathroom";
- opacity = 1
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/bathroom)
-"Ny" = (
-/obj/structure/bookcase,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"Nz" = (
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0"
- },
-/obj/machinery/camera{
- c_tag = "CentComm Special Ops. Ready Room West";
- dir = 4;
- network = list("ERT","CentComm")
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"NC" = (
-/obj/machinery/tcomms/relay/cc,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"NF" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"NG" = (
-/obj/structure/table,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/evac)
-"NI" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 8;
- id_tag = "specopsoffice";
- name = "Privacy Shutters"
- },
-/turf/unsimulated/wall/fakeglass,
-/area/centcom/specops)
-"NJ" = (
-/obj/machinery/door_control{
- desc = "A remote control switch to block view of the singularity.";
- icon_state = "doorctrl0";
- id = "GRAVPULTS";
- name = "Gravity Catapults";
- pixel_x = -6;
- pixel_y = 6;
- req_access_txt = "114"
- },
-/obj/machinery/door_control{
- desc = "A remote control switch to block view of the singularity.";
- icon_state = "doorctrl0";
- id = "ASSAULT";
- name = "Mech Storage";
- pixel_x = 6;
- pixel_y = 6;
- req_access_txt = "114"
- },
-/obj/machinery/door_control{
- desc = "A remote control switch to block view of the singularity.";
- icon_state = "doorctrl0";
- id = "CCTELE";
- name = "Teleporter Access";
- pixel_x = -6;
- pixel_y = -6;
- req_access_txt = "114"
- },
-/obj/structure/table/wood,
-/obj/machinery/door_control{
- desc = "A remote control-switch for a Armory door.";
- id = "ERTBFG";
- name = "Armory Access";
- pixel_x = 6;
- pixel_y = -6;
- req_access_txt = "114"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "carpetside"
- },
-/area/centcom/specops)
-"NL" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the Special Ops.";
- name = "Special Ops. Monitor";
- network = list("ERT")
- },
-/obj/structure/table/wood,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpet"
- },
-/area/centcom/specops)
-"NU" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "ertgygax1";
- name = "ERT Gygax #1"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"NW" = (
-/obj/structure/sign/nosmoking_1{
- pixel_x = -32
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"NY" = (
-/obj/item/radio/intercom/specops,
-/obj/structure/table/wood,
-/obj/item/door_remote/centcomm,
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "carpetside"
- },
-/area/centcom/specops)
-"Oa" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
- },
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows"
- },
-/area/centcom/ferry)
-"Oc" = (
-/obj/structure/bookcase{
- name = "Forbidden Knowledge"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"Od" = (
-/obj/structure/showcase,
-/obj/structure/window/reinforced/clockwork{
- dir = 8
- },
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "chapel"
- },
-/area/wizard_station)
-"Of" = (
-/obj/docking_port/stationary{
- dir = 1;
- dwidth = 1;
- height = 4;
- id = "pod1_away";
- name = "recovery ship bay 1";
- width = 3
- },
-/turf/space,
-/area/space)
-"Oh" = (
-/obj/machinery/computer/shuttle/ert,
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/centcom/specops)
-"Oi" = (
-/obj/structure/table/reinforced,
-/obj/structure/kitchenspike,
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "chapel"
- },
-/area/wizard_station)
-"Oj" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "green"
- },
-/area/centcom/evac)
-"Om" = (
-/turf/simulated/floor/beach/water,
-/area/holodeck/source_beach)
-"On" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/ammo_box/shotgun/buck,
-/obj/item/ammo_box/shotgun/buck,
-/obj/item/ammo_box/shotgun/buck,
-/obj/item/gun/projectile/shotgun/automatic/combat,
-/obj/item/gun/projectile/shotgun/automatic/combat,
-/obj/item/gun/projectile/shotgun/automatic/combat,
-/obj/item/ammo_box/shotgun/stun,
-/obj/item/ammo_box/shotgun/stun,
-/obj/item/ammo_box/shotgun/stun,
-/obj/item/ammo_box/shotgun/buck,
-/obj/item/ammo_box/shotgun/buck,
-/obj/item/ammo_box/shotgun/buck,
-/obj/item/ammo_box/shotgun/tranquilizer,
-/obj/item/ammo_box/shotgun/tranquilizer,
-/obj/item/ammo_box/shotgun/tranquilizer,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Oo" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/stamp/granted,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/centcom/evac)
-"Oq" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin/nanotrasen,
-/obj/item/stamp/centcom,
-/obj/item/pen/multi/fountain,
-/obj/item/folder/blue{
- pixel_x = 7;
- pixel_y = -7
- },
-/obj/item/folder/red{
- pixel_x = 7
- },
-/obj/item/folder/yellow{
- pixel_x = 7;
- pixel_y = 7
- },
-/obj/item/door_remote/omni,
-/obj/item/megaphone,
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/centcom/specops)
-"Or" = (
-/obj/structure/filingcabinet,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Ox" = (
-/obj/structure/table,
-/obj/item/storage/box/handcuffs,
-/obj/item/flash,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/centcom/evac)
-"Oz" = (
-/obj/effect/landmark{
- name = "syndieprisonwarp"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"OB" = (
-/obj/mecha/combat/gygax/ert/loaded,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"OD" = (
-/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/structure/toilet{
- dir = 4
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"OE" = (
-/obj/machinery/sleeper,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHEAST)"
- },
-/area/centcom/evac)
-"OF" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/centcom/evac)
-"OG" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "ERTBFG";
- name = "ERT Armory"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "vault"
- },
-/area/centcom/specops)
-"OI" = (
-/obj/structure/flora/ausbushes/fernybush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"OK" = (
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/evac)
-"OL" = (
-/obj/structure/sign/greencross{
- pixel_y = -32
- },
-/turf/unsimulated/floor{
- icon_state = "green"
- },
-/area/centcom/evac)
-"OM" = (
-/obj/item/clothing/under/rainbow,
-/obj/item/clothing/glasses/sunglasses,
-/turf/simulated/floor/beach/sand,
-/area/holodeck/source_beach)
-"ON" = (
-/obj/machinery/door/airlock/centcom{
- name = "General Access";
- opacity = 1;
- req_access_txt = "101"
- },
-/obj/machinery/door/poddoor/impassable{
- id_tag = "anitborgtrl";
- name = "Centcom entering"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"OP" = (
-/obj/machinery/photocopier/faxmachine/longrange{
- department = "Central Command"
- },
-/obj/structure/table/reinforced,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"OQ" = (
-/obj/item/flag/nt,
-/turf/unsimulated/floor{
- dir = 10;
- icon_state = "green"
- },
-/area/centcom/control)
-"OS" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/centcom/evac)
-"OW" = (
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 2;
- height = 11;
- id = "specops_away";
- name = "centcom bay 3";
- width = 5
- },
-/turf/space,
-/area/space)
-"OY" = (
-/obj/machinery/door/poddoor{
- id_tag = "CCes";
- name = "Special exit"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"Pb" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "window4"
- },
-/turf/simulated/floor/plating,
-/area/centcom/evac)
-"Pc" = (
-/obj/docking_port/stationary{
- dir = 1;
- dwidth = 1;
- height = 4;
- id = "pod2_away";
- name = "recovery ship bay 2";
- width = 3
- },
-/turf/space,
-/area/space)
-"Pd" = (
-/obj/structure/table/holotable,
-/turf/simulated/floor/holofloor{
- dir = 10;
- icon_state = "green"
- },
-/area/holodeck/source_thunderdomecourt)
-"Pe" = (
-/turf/unsimulated/wall,
-/area/centcom/suppy)
-"Pg" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall1";
- tag = "icon-swall1"
- },
-/area/centcom/evac)
-"Pj" = (
-/obj/machinery/door/airlock/centcom{
- name = "Toilet";
- opacity = 1;
- req_access_txt = "106"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Pl" = (
-/obj/machinery/door/window/northright{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Security Desk";
- req_access_txt = "104"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/centcom/evac)
-"Pn" = (
-/obj/machinery/photocopier,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Pp" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"Pq" = (
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"Pr" = (
-/obj/machinery/computer/mecha,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Pt" = (
-/obj/structure/table/reinforced,
-/obj/item/radio/intercom/specops,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Pw" = (
-/obj/machinery/door/window/westleft,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"Py" = (
-/obj/structure/flora/ausbushes,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"PA" = (
-/obj/structure/flora/tree/dead,
-/turf/simulated/floor/holofloor{
- icon_state = "snow";
- tag = "icon-snow"
- },
-/area/holodeck/source_snowfield)
-"PC" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 1;
- icon_state = "fakewindows"
- },
-/area/centcom/ferry)
-"PE" = (
-/obj/machinery/vending/coffee,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"PJ" = (
-/obj/item/radio/intercom/specops{
- pixel_y = 25
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"PL" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"PO" = (
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "greencorner"
- },
-/area/centcom/evac)
-"PP" = (
-/obj/machinery/door/airlock/centcom{
- name = "Toilet";
- opacity = 1;
- req_access_txt = "109"
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/bathroom)
-"PR" = (
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "green"
- },
-/area/centcom/evac)
-"PY" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "toilet_ert_unit_1";
- name = "Bathroom";
- opacity = 1
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/bathroom)
-"PZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"Qa" = (
-/turf/simulated/floor/holofloor{
- dir = 2;
- icon_state = "green"
- },
-/area/holodeck/source_boxingcourt)
-"Qh" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "shotgunbd";
- name = "shotgun reinforced blast door"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Qj" = (
-/obj/machinery/computer/arcade,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"Qo" = (
-/obj/structure/table,
-/obj/machinery/door/window/southleft{
- name = "security checkpoint";
- req_access_txt = "104"
- },
-/obj/item/folder/red,
-/obj/item/pen/red,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"Qp" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"Qq" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/centcom/evac)
-"Qt" = (
-/obj/machinery/poolcontroller/invisible,
-/turf/unsimulated/beach/water,
-/area/ninja/holding)
-"Qy" = (
-/obj/machinery/computer/shuttle/ferry,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/ferry)
-"QB" = (
-/obj/structure/chair/stool/bar,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"QC" = (
-/obj/machinery/door/airlock/centcom{
- name = "Centcom Morgue";
- opacity = 1
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "stage_stairs"
- },
-/area/centcom/evac)
-"QE" = (
-/obj/structure/table/reinforced,
-/obj/structure/table/reinforced,
-/obj/item/folder/blue,
-/obj/item/folder/red{
- pixel_x = 7
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"QG" = (
-/obj/docking_port/stationary{
- dir = 4;
- dwidth = 1;
- height = 4;
- id = "pod3_away";
- name = "recovery ship bay 3";
- width = 3
- },
-/turf/space,
-/area/space)
-"QH" = (
-/turf/simulated/floor/holofloor{
- dir = 8;
- icon_state = "green"
- },
-/area/holodeck/source_thunderdomecourt)
-"QI" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/escape)
-"QK" = (
-/turf/unsimulated/wall,
-/area/centcom/evac)
-"QL" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 6;
- icon_state = "fakewindows";
- tag = "icon-fakewindows (SOUTHEAST)"
- },
-/area/syndicate_mothership/jail)
-"QQ" = (
-/obj/item/flag/nt,
-/turf/unsimulated/floor{
- dir = 6;
- icon_state = "green"
- },
-/area/centcom/control)
-"QS" = (
-/obj/machinery/door_control{
- id = "toilet_cc_unit_1";
- name = "Toilet door control";
- normaldoorcontrol = 1;
- pixel_y = 25;
- specialfunctions = 4
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"QU" = (
-/obj/structure/grille,
-/obj/structure/window/full/shuttle{
- icon_state = "15"
- },
-/turf/simulated/floor/plating,
-/area/centcom/evac)
-"QV" = (
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"QW" = (
-/turf/unsimulated/wall/fakeglass,
-/area/syndicate_mothership/jail)
-"Rc" = (
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 5;
- height = 7;
- id = "supply_away";
- name = "supply centcom";
- width = 12
- },
-/turf/space,
-/area/space)
-"Rd" = (
-/obj/machinery/vending/coffee/free,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "green"
- },
-/area/centcom/control)
-"Re" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1;
- name = "Connector Port (Air Supply)"
- },
-/obj/machinery/portable_atmospherics/canister/oxygen{
- name = "Canister: \[O2] (CRYO)"
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/centcom/evac)
-"Rf" = (
-/obj/structure/chair/sofa/right,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/escape)
-"Rg" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/flashbangs{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/item/storage/box/flashbangs{
- pixel_x = 6;
- pixel_y = 2
- },
-/obj/item/storage/box/flashbangs{
- pixel_x = 6;
- pixel_y = -2
- },
-/obj/item/storage/box/teargas{
- pixel_x = 2;
- pixel_y = 6
- },
-/obj/item/storage/box/teargas{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/storage/box/teargas{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/storage/box/barrier{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/item/storage/box/barrier{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/storage/box/barrier{
- pixel_x = -2;
- pixel_y = -2
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Rh" = (
-/obj/structure/rack,
-/obj/item/shield/riot{
- pixel_x = -6;
- pixel_y = -6
- },
-/obj/item/shield/riot{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/shield/riot,
-/obj/item/shield/riot{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/shield/riot{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/item/shield/riot/tele{
- pixel_x = -7
- },
-/obj/item/shield/riot/tele,
-/obj/item/shield/riot/tele{
- pixel_x = 7
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Rm" = (
-/obj/structure/table,
-/obj/machinery/door_control{
- desc = "A remote control switch for port-side blast doors.";
- id = "CentComPort";
- name = "Security Doors";
- pixel_y = -4;
- req_access_txt = "104"
- },
-/obj/machinery/door/window/southleft{
- dir = 1;
- name = "security checkpoint";
- req_access_txt = "104"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"Rp" = (
-/obj/machinery/computer{
- name = "EMERGENCY SHUTTLE COMPUTER"
- },
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"Rq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/evac)
-"Ru" = (
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/control)
-"Rv" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/donkpockets,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"RB" = (
-/turf/unsimulated/floor{
- icon_state = "green"
- },
-/area/centcom/evac)
-"RD" = (
-/obj/structure/chair/sofa/left,
-/turf/space,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/escape)
-"RF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
- },
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = -5
- },
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/obj/item/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 5
- },
-/obj/item/radio/intercom/specops{
- pixel_x = -28
- },
-/obj/item/reagent_containers/applicator/dual,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/centcom/living)
-"RL" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger{
- pixel_y = 0
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/centcom/evac)
-"RN" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/boiledrice,
-/obj/item/reagent_containers/food/snacks/fishburger,
-/obj/item/reagent_containers/food/snacks/loadedbakedpotato,
-/obj/item/reagent_containers/food/snacks/sushi_Ebi,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"RP" = (
-/obj/structure/chair/sofa/right,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"RQ" = (
-/obj/machinery/slot_machine,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/evac)
-"RY" = (
-/obj/structure/closet{
- icon_closed = "cabinet_closed";
- icon_opened = "cabinet_open";
- icon_state = "cabinet_closed"
- },
-/obj/item/clothing/under/color/lightpurple,
-/obj/item/clothing/under/color/purple,
-/obj/item/storage/backpack/satchel,
-/obj/item/storage/backpack/satchel,
-/obj/item/clothing/head/wizard/red,
-/obj/item/clothing/suit/wizrobe/red,
-/obj/item/clothing/head/wizard,
-/obj/item/clothing/suit/wizrobe,
-/obj/item/clothing/shoes/sandal,
-/obj/item/clothing/shoes/sandal,
-/turf/unsimulated/floor{
- dir = 9;
- icon_state = "carpetside"
- },
-/area/wizard_station)
-"Sa" = (
-/obj/structure/chair/sofa/left,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"Sd" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/landmark{
- name = "syndieprisonwarp"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"Se" = (
-/obj/structure/chair/stool/holostool,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet13-0";
- tag = "icon-carpet13-0 (EAST)"
- },
-/area/holodeck/source_meetinghall)
-"Sj" = (
-/turf/unsimulated/wall/fakeglass{
- dir = 8;
- icon_state = "fakewindows"
- },
-/area/syndicate_mothership/jail)
-"Sk" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/toxin{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/item/storage/firstaid/toxin,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"Sl" = (
-/obj/effect/decal/warning_stripes/northwest,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Sn" = (
-/obj/machinery/door/airlock/centcom{
- name = "Unit 3";
- opacity = 1
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"So" = (
-/obj/structure/chair/comfy/black{
- dir = 1
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"Sr" = (
-/obj/structure/table/wood,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"Ss" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 4;
- name = "Connector Port (Air Supply)"
- },
-/obj/machinery/portable_atmospherics/canister/oxygen{
- name = "Canister: \[O2] (CRYO)"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/centcom/living)
-"St" = (
-/obj/structure/sign/restroom{
- pixel_x = -32
- },
-/obj/item/flag/nt,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Su" = (
-/obj/machinery/door_control{
- id = "sballistic";
- name = "Heavy Ballistic remote door-control";
- pixel_y = 25;
- req_access_txt = "114"
- },
-/obj/machinery/camera{
- c_tag = "CentComm Special Ops. Armory 2";
- network = list("ERT","CentComm")
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Sy" = (
-/obj/machinery/shower{
- dir = 8
- },
-/obj/item/soap/nanotrasen,
-/obj/item/bikehorn/rubberducky,
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"SA" = (
-/obj/machinery/door/airlock/external{
- id_tag = "admin_away";
- name = "Administration Shuttle";
- opacity = 0;
- req_access_txt = "106"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/control)
-"SC" = (
-/obj/item/flag/nt,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"SF" = (
-/obj/structure/chair/stool/holostool,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet9-0";
- tag = "icon-carpet9-0 (EAST)"
- },
-/area/holodeck/source_meetinghall)
-"SK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"SN" = (
-/obj/structure/sink{
- dir = 1
- },
-/obj/structure/mirror{
- dir = 4;
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"SQ" = (
-/obj/structure/table,
-/obj/item/storage/lockbox{
- req_access = null;
- req_access_txt = "106"
- },
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"SR" = (
-/obj/machinery/door/airlock/centcom{
- name = "Auxillary Shuttles";
- opacity = 1;
- req_access_txt = "106"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"SS" = (
-/obj/machinery/door/airlock/centcom{
- name = "Rest Area";
- opacity = 1;
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/evac)
-"SU" = (
-/obj/structure/table,
-/obj/item/radio,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"SV" = (
-/obj/machinery/door_control{
- id = "gygax1";
- name = "Addition guns remote door-control";
- pixel_y = -25;
- req_access_txt = "114"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"SW" = (
-/obj/structure/rack,
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = -7;
- pixel_y = -7
- },
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = -4;
- pixel_y = -4
- },
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = -1;
- pixel_y = -1
- },
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 3;
- pixel_y = -30
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"SY" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"SZ" = (
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 2;
- height = 12;
- id = "ferry_away";
- name = "centcom bay 2";
- width = 5
- },
-/turf/space,
-/area/space)
-"Ta" = (
-/obj/structure/flora/tree/palm{
- pixel_x = 10
- },
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"Te" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -7;
- pixel_y = 32
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Tf" = (
-/obj/machinery/door_control{
- desc = "A remote control switch to connect the ready room to the rest of Centcom.";
- icon_state = "doorctrl0";
- id = "SPECOPS";
- name = "Ready Room";
- pixel_x = -6;
- pixel_y = 6;
- req_access_txt = "114"
- },
-/obj/machinery/door_control{
- desc = "A remote control switch to block view of the singularity.";
- icon_state = "doorctrl0";
- id = "specopsoffice";
- name = "Privacy Shutters";
- pixel_x = 6;
- pixel_y = -6;
- req_access_txt = "114"
- },
-/obj/machinery/door_control{
- desc = "A remote control switch to block view of the singularity.";
- icon_state = "doorctrl0";
- id = "CCGAMMA";
- name = "Gamma Lockdown";
- pixel_x = -6;
- pixel_y = -6;
- req_access_txt = "114"
- },
-/obj/structure/table/wood,
-/obj/machinery/door_control{
- desc = "A remote control-switch for a ERT medbay.";
- id = "MedbayERT";
- name = "ERT Medbay";
- pixel_x = 6;
- pixel_y = 6;
- req_access_txt = "114"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "carpetside"
- },
-/area/centcom/specops)
-"Tg" = (
-/obj/structure/chair/comfy/black{
- dir = 1
- },
-/obj/effect/landmark{
- name = "ERT Director"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpet"
- },
-/area/centcom/specops)
-"Th" = (
-/obj/structure/flora/rock,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/control)
-"Ti" = (
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "carpetside"
- },
-/area/centcom/specops)
-"Tl" = (
-/mob/living/simple_animal/pet/dog/fox/alisa,
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/centcom/specops)
-"Tm" = (
-/obj/machinery/door/airlock/centcom{
- name = "Fax Room";
- opacity = 1;
- req_access_txt = "113"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "vault"
- },
-/area/centcom/control)
-"To" = (
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/evac)
-"Tp" = (
-/obj/item/trash/chips,
-/obj/machinery/light/spot,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"Tt" = (
-/obj/structure/closet/crate,
-/obj/item/grenade/plastic/x4,
-/obj/item/grenade/plastic/x4,
-/obj/item/grenade/plastic/x4,
-/obj/item/grenade/plastic/x4,
-/obj/item/grenade/plastic/c4_shaped/flash,
-/obj/item/grenade/plastic/c4_shaped/flash,
-/obj/item/grenade/plastic/c4_shaped/flash,
-/obj/item/grenade/plastic/c4_shaped/flash,
-/obj/item/grenade/plastic/c4_shaped,
-/obj/item/grenade/plastic/c4_shaped,
-/obj/item/grenade/plastic/c4_shaped,
-/obj/item/grenade/plastic/c4_shaped,
-/obj/item/storage/lockbox/t4,
-/obj/item/storage/lockbox/t4,
-/obj/item/storage/lockbox/t4,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Ty" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1441;
- master_tag = "syndicate_jail_airlock_control";
- name = "Syndicate Jail Access Button";
- pixel_y = 24;
- req_access_txt = "150"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Tz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/evac)
-"TC" = (
-/obj/effect/decal/cleanable/blood,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"TE" = (
-/turf/simulated/floor/beach/coastline,
-/area/holodeck/source_beach)
-"TG" = (
-/obj/structure/chair/stool/holostool,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet14-0";
- tag = "icon-carpet14-0 (EAST)"
- },
-/area/holodeck/source_meetinghall)
-"TH" = (
-/obj/machinery/door/airlock/hatch{
- name = "Infirmary";
- req_access_txt = "0"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor2";
- tag = "icon-floor2"
- },
-/area/centcom/evac)
-"TI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/centcom/living)
-"TL" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin/nanotrasen,
-/obj/item/stamp/centcom,
-/obj/item/pen/multi/fountain,
-/obj/structure/table/reinforced,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"TN" = (
-/obj/machinery/door/window/westright{
- name = "security checkpoint";
- req_access_txt = "104"
- },
-/obj/structure/table,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"TO" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor2";
- tag = "icon-floor2"
- },
-/area/centcom/evac)
-"TU" = (
-/obj/machinery/optable,
-/obj/machinery/defibrillator_mount/loaded{
- pixel_x = 30
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
- },
-/area/centcom/living)
-"TV" = (
-/obj/machinery/door/poddoor{
- id_tag = "CentComPort";
- name = "Security Doors"
- },
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "green"
- },
-/area/centcom/evac)
-"TW" = (
-/obj/structure/urinal{
- pixel_y = 28
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"TX" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "ferrysh"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"TY" = (
-/obj/structure/window/reinforced,
-/obj/structure/shuttle/engine/heater{
- dir = 1;
- icon_state = "heater";
- tag = "icon-heater (NORTH)"
- },
-/turf/simulated/shuttle/plating,
-/area/centcom/evac)
-"TZ" = (
-/obj/machinery/door/airlock/external{
- aiControlDisabled = 1;
- frequency = 1379;
- hackProof = 1;
- icon_state = "door_locked";
- id_tag = "emergency_away";
- locked = 1;
- name = "Arrival Airlock";
- req_access = null;
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- name = "plating"
- },
-/area/centcom/evac)
-"Ua" = (
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "green"
- },
-/area/holodeck/source_thunderdomecourt)
-"Ub" = (
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- pixel_x = 30;
- pixel_y = 0;
- req_access_txt = "0"
- },
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"Uc" = (
-/obj/machinery/door/airlock/hatch/syndicate{
- autoclose = 0;
- frequency = 1441;
- id_tag = "syndicate_jail_airlock_external";
- locked = 1;
- name = "Syndicate Jail External Airlock"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership)
-"Ud" = (
-/obj/structure/piano,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"Uf" = (
-/obj/structure/table/reinforced,
-/obj/item/card/id/centcom{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/door_remote/centcomm,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Uh" = (
-/obj/structure/table/wood,
-/obj/machinery/kitchen_machine/microwave,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"Uj" = (
-/obj/machinery/vending/snack/free,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"Up" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/cheesyfries,
-/obj/item/reagent_containers/food/snacks/grilledcheese,
-/obj/item/reagent_containers/food/snacks/sliceable/turkey,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"Ur" = (
-/obj/machinery/door/poddoor/impassable{
- id_tag = "ertgygax2";
- name = "ERT gygax #2"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Us" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/centcom/living)
-"Uv" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/fire,
-/obj/item/storage/firstaid/fire{
- pixel_x = -2;
- pixel_y = 4
- },
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"Ux" = (
-/obj/item/trash/raisins,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"UB" = (
-/obj/machinery/door/airlock/shuttle,
-/turf/simulated/shuttle/plating,
-/area/centcom/evac)
-"UC" = (
-/obj/machinery/light/spot{
- dir = 8;
- icon_state = "tube1";
- tag = "icon-tube1 (WEST)"
- },
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1441;
- master_tag = "syndicate_jail_airlock_control";
- name = "Syndicate Jail Access Button";
- pixel_x = -24;
- pixel_y = -8;
- req_access_txt = "150"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"UD" = (
-/obj/machinery/disco{
- anchored = 1
- },
-/turf/unsimulated/floor{
- icon_state = "light_on"
- },
-/area/space)
-"UF" = (
-/obj/machinery/newscaster/security_unit{
- pixel_x = -32
- },
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/centcom/specops)
-"UG" = (
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- pixel_x = 30;
- pixel_y = 0;
- req_access_txt = "0"
- },
-/obj/machinery/vending/snack,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"UH" = (
-/turf/unsimulated/floor{
- dir = 10;
- icon_state = "carpetside"
- },
-/area/centcom/specops)
-"UJ" = (
-/obj/effect/decal/cleanable/cobweb2,
-/obj/structure/showcase,
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "chapel"
- },
-/area/wizard_station)
-"UN" = (
-/obj/machinery/computer/cloning,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/centcom/living)
-"UQ" = (
-/turf/unsimulated/wall,
-/area/centcom/ferry)
-"UR" = (
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "carpetside"
- },
-/area/centcom/specops)
-"UT" = (
-/obj/structure/chair/stool/holostool,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet5-0";
- tag = "icon-carpet5-0 (EAST)"
- },
-/area/holodeck/source_meetinghall)
-"UU" = (
-/turf/unsimulated/floor{
- dir = 6;
- icon_state = "carpetside"
- },
-/area/centcom/specops)
-"UV" = (
-/obj/structure/chair/office{
- dir = 8
- },
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_x = 32
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"Va" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s6";
- tag = "icon-swall_s6"
- },
-/area/centcom/evac)
-"Vb" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/centcom/evac)
-"Vd" = (
-/obj/docking_port/stationary{
- dir = 4;
- dwidth = 1;
- height = 4;
- id = "pod4_away";
- name = "recovery ship bay 4";
- width = 3
- },
-/turf/space,
-/area/space)
-"Ve" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/wizrobe/magusblue,
-/obj/item/clothing/head/wizard/magus,
-/obj/item/twohanded/staff,
-/obj/item/clothing/suit/wizrobe/magusred,
-/obj/item/clothing/head/wizard/magus,
-/obj/item/twohanded/staff,
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/wizard_station)
-"Vg" = (
-/obj/structure/table/reinforced,
-/obj/item/pen,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/centcom/evac)
-"Vh" = (
-/obj/machinery/door_control{
- id = "ionrifle";
- name = "Ion rifle remote door-control";
- pixel_x = 26;
- req_access_txt = "114"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Vi" = (
-/obj/machinery/light/spot{
- dir = 4;
- icon_state = "tube1";
- tag = "icon-tube1 (EAST)"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"Vj" = (
-/obj/structure/table/wood,
-/obj/structure/mirror{
- pixel_x = 32
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/ferry)
-"Vl" = (
-/obj/machinery/computer/operating,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
- },
-/area/centcom/living)
-"Vm" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"Vn" = (
-/obj/machinery/door/airlock/centcom{
- name = "Unit 4";
- opacity = 1;
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"Vq" = (
-/obj/machinery/door/airlock/centcom{
- name = "Unit 1";
- opacity = 1
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"Vt" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"Vv" = (
-/turf/unsimulated/wall/fakeglass,
-/area/centcom/specops)
-"Vx" = (
-/obj/structure/table,
-/obj/structure/table,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"VA" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/flora/ausbushes/brflowers,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/specops)
-"VB" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/specops)
-"VC" = (
-/obj/machinery/computer/security{
- network = list("SS13","Telecomms","Research Outpost","Mining Outpost","ERT","CentComm","Thunderdome")
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"VD" = (
-/obj/machinery/computer/crew,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"VE" = (
-/obj/structure/chair/office/dark,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"VJ" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall12";
- tag = "icon-swall12"
- },
-/area/shuttle/gamma/space)
-"VL" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/chinese/sweetsourchickenball,
-/obj/item/reagent_containers/food/snacks/fishburger,
-/obj/item/reagent_containers/food/snacks/sliceable/pizza/vegetablepizza,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/obj/item/reagent_containers/food/condiment/pack/ketchup,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"VN" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall3";
- tag = "icon-swall3"
- },
-/area/centcom/evac)
-"VR" = (
-/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"VS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/evac)
-"VT" = (
-/obj/machinery/computer/library/checkout,
-/obj/structure/table/wood,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"VW" = (
-/obj/machinery/bodyscanner,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (EAST)"
- },
-/area/centcom/evac)
-"VX" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1;
- name = "Connector Port (Air Supply)"
- },
-/obj/machinery/portable_atmospherics/canister/oxygen{
- name = "Canister: \[O2] (CRYO)"
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (SOUTHWEST)"
- },
-/area/centcom/evac)
-"Wa" = (
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "redyellowfull";
- tag = "icon-redyellowfull (NORTHEAST)"
- },
-/area/centcom/living)
-"Wd" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/ammo_casing/rocket,
-/obj/item/ammo_casing/rocket,
-/obj/item/ammo_casing/rocket,
-/obj/item/gun/rocketlauncher,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/gamma/space)
-"We" = (
-/obj/structure/table/reinforced,
-/obj/item/grenade/clusterbuster,
-/obj/item/grenade/chem_grenade/incendiary{
- name = "Incendiary Grenade"
- },
-/obj/item/kitchen/knife/combat,
-/obj/item/kitchen/knife/combat,
-/obj/item/kitchen/knife/combat,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/gamma/space)
-"Wf" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"Wh" = (
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/control)
-"Wi" = (
-/obj/structure/flora/grass/brown,
-/turf/simulated/floor/holofloor{
- icon_state = "snow";
- tag = "icon-snow"
- },
-/area/holodeck/source_snowfield)
-"Wk" = (
-/obj/structure/table/wood/fancy,
-/obj/item/storage/box/cups,
-/obj/item/storage/box/cups{
- pixel_x = 6;
- pixel_y = 6
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "wood"
- },
-/area/centcom/living)
-"Wl" = (
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = -32;
- req_access_txt = "0"
- },
-/obj/structure/table,
-/obj/item/storage/box/bodybags,
-/obj/item/roller,
-/obj/item/roller,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"Wm" = (
-/obj/structure/bed,
-/obj/item/bedsheet/yellow,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/ferry)
-"Wq" = (
-/obj/machinery/vending/coffee,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "green"
- },
-/area/centcom/control)
-"Ws" = (
-/obj/machinery/door_control{
- id = "shotgunbd";
- name = "Shotgun remote door-control";
- pixel_y = -25;
- req_access_txt = "114"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Wt" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"Wv" = (
-/obj/machinery/vending/snack,
-/turf/unsimulated/floor{
- dir = 6;
- icon_state = "green"
- },
-/area/centcom/evac)
-"Ww" = (
-/obj/structure/table,
-/obj/item/stamp/captain,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"Wy" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "shower_cc_unit_2";
- name = "Shower";
- opacity = 1;
- req_access_txt = "106"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Wz" = (
-/obj/machinery/door/airlock/hatch/syndicate{
- damage_deflection = 75;
- id_tag = "syndicate_jail";
- locked = 1;
- name = "Syndicate Jail"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"WA" = (
-/turf/unsimulated/floor{
- dir = 10;
- icon_state = "green"
- },
-/area/centcom/evac)
-"WC" = (
-/obj/structure/chair/office{
- dir = 1
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"WG" = (
-/obj/structure/sign/greencross{
- pixel_y = -32
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"WI" = (
-/obj/structure/table,
-/obj/item/crowbar/red{
- pixel_x = -3
- },
-/obj/item/crowbar/red{
- pixel_x = -1
- },
-/obj/item/crowbar/red{
- pixel_x = 1
- },
-/obj/item/crowbar/red{
- pixel_x = 3
- },
-/obj/item/storage/toolbox/mechanical,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"WK" = (
-/obj/structure/holowindow{
- dir = 1
- },
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "green"
- },
-/area/holodeck/source_thunderdomecourt)
-"WN" = (
-/turf/simulated/floor/holofloor{
- dir = 1;
- icon_state = "green"
- },
-/area/holodeck/source_basketball)
-"WP" = (
-/turf/unsimulated/floor{
- icon_state = "green"
- },
-/area/centcom/control)
-"WQ" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- icon_state = "propulsion";
- tag = "icon-propulsion (NORTH)"
- },
-/turf/simulated/shuttle/plating,
-/area/centcom/evac)
-"WR" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"WS" = (
-/obj/item/flag/nt,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"WU" = (
-/obj/machinery/computer/shuttle/ert,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"WV" = (
-/obj/item/storage/lockbox/t4{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/storage/lockbox/t4{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/structure/table/reinforced,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"WW" = (
-/obj/structure/table,
-/obj/item/megaphone,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"WX" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (NORTH)"
- },
-/turf/simulated/shuttle/plating,
-/area/centcom/evac)
-"WZ" = (
-/obj/machinery/atmospherics/unary/cold_sink/freezer/upgraded{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/centcom/living)
-"Xa" = (
-/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- pixel_x = -5;
- tag = "icon-shower (WEST)"
- },
-/obj/structure/curtain/open/shower/centcom,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"Xh" = (
-/obj/machinery/door/airlock/centcom{
- name = "Комната отдыха"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/ferry)
-"Xj" = (
-/obj/item/gun/projectile/automatic/pistol/m1911,
-/obj/item/ammo_box/magazine/m45,
-/obj/item/ammo_box/magazine/m45,
-/obj/item/ammo_box/magazine/m45,
-/obj/structure/closet{
- icon_closed = "cabinet_closed";
- icon_opened = "cabinet_open";
- icon_state = "cabinet_closed"
- },
-/obj/item/clothing/head/helmet/space/deathsquad/beret,
-/obj/item/clothing/shoes/combat,
-/obj/item/clothing/under/syndicate/combat,
-/obj/item/clothing/gloves/combat,
-/obj/item/clothing/suit/space/deathsquad/officer,
-/obj/item/clothing/under/rank/centcom/captain,
-/obj/item/storage/box/handcuffs,
-/obj/item/storage/box/flashbangs,
-/obj/item/clothing/mask/gas,
-/obj/item/tank/emergency_oxygen/double,
-/obj/item/radio/headset/ert{
- pixel_x = 6;
- pixel_y = -6
- },
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/centcom/specops)
-"Xl" = (
-/obj/structure/chair/office,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"Xm" = (
-/obj/machinery/recharge_station/upgraded,
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/centcom/specops)
-"Xn" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/centcom/living)
-"Xo" = (
-/obj/structure/table,
-/obj/item/camera/digital,
-/obj/item/door_remote/omni,
-/obj/item/taperecorder,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Xr" = (
-/turf/unsimulated/wall{
- icon = 'icons/obj/library.dmi';
- icon_state = "book-5";
- name = "bookcase (Tactics)"
- },
-/area/centcom/specops)
-"Xw" = (
-/obj/machinery/computer/crew,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"Xx" = (
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "warndark";
- tag = "icon-warndark (EAST)"
- },
-/area/centcom/ferry)
-"Xy" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/centcom/evac)
-"Xz" = (
-/obj/structure/morgue,
-/obj/structure/morgue,
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"XA" = (
-/obj/item/beach_ball/holoball,
-/turf/simulated/floor/holofloor,
-/area/holodeck/source_basketball)
-"XB" = (
-/turf/simulated/floor/holofloor{
- dir = 5;
- icon_state = "green"
- },
-/area/holodeck/source_basketball)
-"XF" = (
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
- },
-/area/centcom/evac)
-"XI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/centcom/living)
-"XL" = (
-/obj/structure/table/abductor,
-/obj/item/bonegel/alien,
-/obj/item/bonesetter/alien,
-/obj/item/FixOVein/alien,
-/obj/item/surgicaldrill/alien,
-/obj/item/circular_saw/alien,
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"XM" = (
-/obj/structure/bed/abductor,
-/turf/unsimulated/floor/abductor,
-/area/abductor_ship)
-"XN" = (
-/obj/structure/chair/office,
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_y = 32
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"XP" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall11";
- tag = "icon-swall11"
- },
-/area/centcom/evac)
-"XR" = (
-/obj/machinery/door_control{
- id = "toilet_ert_unit_1";
- name = "Toilet door control";
- normaldoorcontrol = 1;
- pixel_y = 25;
- specialfunctions = 4
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/bathroom)
-"XV" = (
-/obj/structure/kitchenspike,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"XY" = (
-/obj/structure/table/holotable,
-/obj/machinery/readybutton{
- pixel_y = 0
- },
-/turf/simulated/floor/holofloor{
- dir = 6;
- icon_state = "green"
- },
-/area/holodeck/source_thunderdomecourt)
-"XZ" = (
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"Ya" = (
-/obj/machinery/vending/cola,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"Ye" = (
-/obj/machinery/computer/account_database,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Yg" = (
-/obj/structure/table/reinforced,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/centcom/evac)
-"Yh" = (
-/obj/machinery/door/airlock/centcom{
- name = "Unit 5";
- opacity = 1
- },
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/centcom/evac)
-"Yj" = (
-/turf/unsimulated/wall{
- icon = 'icons/obj/library.dmi';
- icon_state = "book-5";
- name = "bookcase (Reports)"
- },
-/area/centcom/specops)
-"Yn" = (
-/obj/machinery/atmospherics/unary/cryo_cell,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/centcom/evac)
-"Yp" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/cans/cola,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/centcom/evac)
-"Yq" = (
-/obj/structure/bed,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"Yr" = (
-/obj/structure/chair/stool/holostool,
-/turf/simulated/floor/holofloor{
- dir = 4;
- icon_state = "carpet6-0";
- tag = "icon-carpet6-0 (EAST)"
- },
-/area/holodeck/source_meetinghall)
-"Yw" = (
-/obj/effect/decal/cleanable/molten_object,
-/turf/unsimulated/floor{
- dir = 2;
- icon_state = "freezerfloor"
- },
-/area/wizard_station)
-"Yy" = (
-/obj/structure/urinal{
- pixel_y = 32
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/bathroom)
-"Yz" = (
-/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated{
- dir = 1
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"YA" = (
-/obj/structure/flora/ausbushes/grassybush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/specops)
-"YJ" = (
-/obj/structure/flora/ausbushes/fernybush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/specops)
-"YK" = (
-/turf/simulated/floor/holofloor{
- dir = 9;
- icon_state = "green"
- },
-/area/holodeck/source_basketball)
-"YL" = (
-/obj/structure/sign/evac{
- pixel_x = 33
- },
-/obj/machinery/vending/coffee,
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "green"
- },
-/area/centcom/evac)
-"YM" = (
-/obj/machinery/computer/shuttle/admin,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"YO" = (
-/turf/simulated/floor/holofloor{
- dir = 6;
- icon_state = "red"
- },
-/area/holodeck/source_basketball)
-"YR" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- req_access_txt = "106"
- },
-/turf/simulated/shuttle/plating,
-/area/centcom/evac)
-"YS" = (
-/obj/structure/sink{
- dir = 1
- },
-/obj/structure/mirror{
- dir = 4;
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
-/area/centcom/bathroom)
-"YX" = (
-/obj/structure/flora/ausbushes/leafybush,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/specops)
-"Ze" = (
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/pen,
-/turf/simulated/shuttle/floor,
-/area/centcom/evac)
-"Zf" = (
-/obj/structure/bed,
-/obj/item/bedsheet/wiz,
-/turf/unsimulated/floor{
- dir = 5;
- icon_state = "carpetside"
- },
-/area/wizard_station)
-"Zh" = (
-/obj/machinery/door_control{
- id = "ballistic";
- name = "Ballistic remote door-control";
- pixel_y = 25;
- req_access_txt = "114"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Zj" = (
-/obj/structure/table/wood,
-/obj/item/dice/d20,
-/obj/item/dice,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "wood"
- },
-/area/wizard_station)
-"Zk" = (
-/turf/simulated/floor/holofloor{
- dir = 8;
- icon_state = "green"
- },
-/area/holodeck/source_basketball)
-"Zl" = (
-/obj/structure/toilet{
- dir = 8
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"Zn" = (
-/obj/machinery/door/airlock/external{
- id_tag = "specops_away";
- name = "Shuttle Hatch";
- req_access_txt = "109"
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"Zq" = (
-/turf/unsimulated/floor{
- dir = 4;
- icon_state = "greencorner"
- },
-/area/centcom/evac)
-"Zr" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/unsimulated/floor{
- icon_state = "grass1";
- name = "grass"
- },
-/area/centcom/evac)
-"Zt" = (
-/obj/item/ammo_box/magazine/laser,
-/obj/item/ammo_box/magazine/laser,
-/obj/item/ammo_box/magazine/laser,
-/obj/item/ammo_box/magazine/laser,
-/obj/item/ammo_box/magazine/laser,
-/obj/item/ammo_box/magazine/laser,
-/obj/item/ammo_box/magazine/laser,
-/obj/item/ammo_box/magazine/laser,
-/obj/structure/closet/secure_closet/guncabinet,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Zu" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/evac)
-"Zv" = (
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/magazine/m556,
-/obj/item/ammo_box/magazine/m556,
-/obj/structure/closet/crate,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ertarmory)
-"Zz" = (
-/obj/item/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 6
- },
-/obj/item/storage/firstaid/regular{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/structure/table/reinforced,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/centcom/evac)
-"ZD" = (
-/obj/structure/kitchenspike,
-/obj/effect/decal/cleanable/blood,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/syndicate_mothership/jail)
-"ZG" = (
-/turf/unsimulated/wall,
-/area/centcom/ertarmory)
-"ZI" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/specops)
-"ZL" = (
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/ferry)
-"ZN" = (
-/obj/machinery/door_control{
- id = "ferrysh";
- pixel_x = -24
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"ZO" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/unsimulated/floor{
- icon_state = "floor"
- },
-/area/centcom/control)
-"ZR" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/wizrobe/marisa,
-/obj/item/clothing/shoes/sandal/marisa,
-/obj/item/clothing/head/wizard/marisa,
-/obj/item/twohanded/staff/broom,
-/turf/unsimulated/floor{
- icon_state = "grimy"
- },
-/area/wizard_station)
-"ZS" = (
-/obj/machinery/atmospherics/unary/cryo_cell/upgraded,
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTHWEST)"
- },
-/area/centcom/living)
-"ZT" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall7";
- tag = "icon-swall7"
- },
-/area/centcom/evac)
-"ZV" = (
-/obj/machinery/door/airlock/external{
- id_tag = "ferry_away";
- name = "Ferry Airlock";
- req_access_txt = "0"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/ferry)
-"ZW" = (
-/obj/machinery/vending/chinese/free,
-/turf/unsimulated/floor{
- dir = 8;
- icon_state = "green"
- },
-/area/centcom/control)
-
-(1,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(2,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(3,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(4,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(5,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(6,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-be
-be
-be
-be
-be
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(7,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-be
-be
-be
-be
-be
-aN
-be
-lo
-lo
-lo
-lo
-lo
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(8,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-du
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rH
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-co
-co
-hk
-hk
-be
-be
-be
-lp
-lp
-lp
-lp
-lp
-be
-be
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(9,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-cH
-cH
-cH
-kY
-be
-lc
-lj
-lq
-lq
-lq
-lq
-lq
-lX
-lZ
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(10,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-cH
-cH
-cH
-kZ
-be
-lc
-lj
-lq
-lB
-lq
-lB
-lq
-lX
-lZ
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(11,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-hd
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-cH
-cH
-cH
-kZ
-be
-lc
-lj
-lq
-lq
-lH
-lq
-lq
-lX
-lZ
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(12,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-cH
-cH
-cH
-cH
-be
-lc
-lj
-lq
-lB
-lq
-lB
-lq
-lX
-lZ
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(13,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-cK
-cK
-kd
-cH
-be
-lc
-lj
-lq
-lq
-lq
-lq
-lq
-lX
-lZ
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(14,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-be
-be
-be
-la
-be
-be
-ja
-lr
-lr
-lr
-lr
-lr
-ja
-be
-be
-be
-be
-aN
-aN
-aN
-aN
-mn
-mn
-mn
-mn
-mn
-mn
-mn
-mn
-mn
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(15,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-rE
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-dI
-fF
-fF
-fF
-ld
-jb
-lt
-lt
-lt
-lt
-lt
-jb
-ld
-md
-md
-be
-aN
-aN
-aN
-aN
-mn
-mp
-mE
-mO
-mW
-mW
-mO
-mE
-mp
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(16,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-ei
-kW
-fF
-kW
-le
-jc
-jc
-jc
-jc
-jc
-jc
-jc
-le
-me
-md
-dH
-aN
-aN
-aN
-aN
-mn
-mq
-mF
-mP
-mW
-mW
-mP
-mF
-mq
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(17,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-hh
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-fe
-kW
-fF
-kW
-le
-jc
-jc
-jc
-jc
-jc
-jc
-jc
-le
-me
-md
-be
-aN
-aN
-aN
-aN
-mn
-mn
-mn
-mn
-mW
-ni
-mn
-mn
-mn
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(18,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-ei
-kW
-lb
-kW
-le
-jc
-jc
-jc
-jc
-jc
-jc
-jc
-le
-me
-mi
-be
-aN
-aN
-aN
-aN
-mn
-mp
-mE
-mO
-mW
-mW
-mO
-nz
-mp
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-wE
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(19,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-fl
-kW
-fF
-kW
-le
-jc
-jc
-jc
-jc
-jc
-jc
-jc
-le
-me
-md
-be
-aN
-aN
-aN
-aN
-mn
-ms
-mG
-mP
-mW
-mW
-mP
-mJ
-ms
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(20,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-fm
-kW
-fF
-kW
-le
-jc
-jc
-jc
-jc
-jc
-jc
-jc
-le
-me
-mj
-be
-be
-aN
-aN
-aN
-mn
-mn
-mn
-mn
-mX
-mW
-mn
-mn
-mn
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(21,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-fF
-fF
-fF
-fF
-le
-jc
-jc
-jc
-lI
-lI
-jc
-jc
-le
-mf
-mj
-mk
-be
-aN
-aN
-aN
-mn
-mp
-mE
-mO
-mW
-mW
-mO
-mE
-mp
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(22,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-dH
-fF
-fF
-fF
-fF
-le
-jc
-jc
-jc
-lJ
-lW
-jc
-jc
-le
-mg
-mj
-ml
-be
-aN
-aN
-aN
-mn
-mu
-mH
-mP
-mW
-mW
-mP
-mJ
-ms
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(23,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-dH
-fF
-fF
-fF
-fF
-le
-jc
-jc
-jc
-lI
-lI
-jc
-jc
-le
-mh
-mj
-mm
-be
-aN
-aN
-aN
-mn
-mn
-mn
-mn
-mX
-mW
-mn
-mn
-mn
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(24,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-fm
-kW
-fF
-kW
-le
-jc
-jc
-jc
-jc
-jc
-jc
-jc
-le
-me
-mj
-be
-be
-aN
-aN
-aN
-mn
-mw
-mE
-mO
-mW
-mW
-mO
-nA
-mp
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-rn
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(25,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-fl
-kW
-fF
-kW
-le
-jc
-jc
-jc
-jc
-jc
-jc
-jc
-le
-me
-md
-be
-aN
-aN
-aN
-aN
-mn
-mx
-mI
-mP
-mW
-mW
-mP
-mI
-od
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(26,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-fF
-kW
-lb
-kW
-le
-jc
-jc
-jc
-jc
-jc
-jc
-jc
-le
-me
-mi
-be
-aN
-aN
-aN
-aN
-mn
-mn
-mn
-mn
-mW
-mW
-mn
-mn
-mn
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(27,1,1) = {"
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-fl
-kW
-fF
-kW
-le
-jc
-jc
-jc
-jc
-jc
-jc
-jc
-le
-me
-md
-be
-aN
-aN
-aN
-aN
-mn
-mp
-mE
-mO
-mW
-mW
-mO
-mE
-mp
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(28,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-fF
-kW
-fF
-kW
-le
-jc
-jc
-jc
-jc
-jc
-jc
-jc
-le
-me
-md
-dH
-aN
-aN
-aN
-aN
-mn
-ms
-mJ
-mP
-mW
-mW
-mP
-mG
-oe
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(29,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-fV
-kX
-fF
-fF
-lf
-jb
-lv
-lv
-lv
-lv
-lv
-jb
-lf
-md
-md
-be
-aN
-aN
-aN
-aN
-mn
-mn
-mn
-mn
-mn
-mn
-mn
-mn
-mn
-mn
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-tQ
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-un
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(30,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-be
-be
-be
-be
-be
-ja
-lr
-lr
-lr
-lr
-lr
-ja
-be
-be
-be
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(31,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-lh
-lj
-lw
-lw
-lw
-lw
-lw
-lX
-mc
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-gt
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(32,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-lh
-lj
-lw
-lG
-lw
-lG
-lw
-lX
-mc
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(33,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-lh
-lj
-lw
-lw
-lK
-lw
-lw
-lX
-mc
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(34,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-lh
-lj
-lw
-lG
-lw
-lG
-lw
-lX
-mc
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(35,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-lh
-lj
-lw
-lw
-lw
-lw
-lw
-lX
-mc
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(36,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-be
-be
-lp
-lp
-lp
-lp
-lp
-be
-be
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(37,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-lx
-lx
-lx
-lx
-lx
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-"}
-(38,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-be
-be
-be
-be
-be
-be
-be
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(39,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(40,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-bL
-ap
-ap
-ap
-ap
-cN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(41,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(42,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(43,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(44,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(45,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(46,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(47,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ha
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(48,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-wk
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(49,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(50,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(51,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(52,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(53,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(54,1,1) = {"
-aN
-aN
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(55,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-bW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(56,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(57,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(58,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(59,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(60,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(61,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(62,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(63,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(64,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(65,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(66,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(67,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-wC
-wC
-wC
-wC
-wC
-wC
-wC
-wC
-wC
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(68,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-tz
-up
-vi
-AN
-Hz
-Mv
-RN
-Up
-VL
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(69,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-tA
-Wa
-Wa
-Wa
-Wa
-Wa
-Wa
-Wa
-Wa
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(70,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-tA
-Wa
-vL
-vL
-Wa
-Wa
-vL
-vL
-Wa
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(71,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-tB
-Wa
-vS
-we
-Wa
-Wa
-we
-vS
-Wa
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(72,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-cz
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-tC
-Wa
-we
-vS
-Wa
-Wa
-vS
-we
-VR
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(73,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-tD
-Wa
-vL
-vL
-Wa
-Wa
-vL
-vL
-Wa
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(74,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-tD
-Wa
-Wa
-Wa
-Wa
-Wa
-Wa
-Wa
-Wa
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(75,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-tF
-Wa
-vL
-vL
-Wa
-Wa
-vL
-vL
-Wa
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(76,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-tF
-Wa
-we
-vS
-Wa
-Wa
-vS
-we
-Wa
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(77,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-tG
-Wa
-vS
-we
-Wa
-Wa
-we
-vS
-Wa
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(78,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-tG
-Wa
-vL
-vL
-Wa
-Wa
-vL
-vL
-Wa
-cp
-cp
-cp
-cp
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(79,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-wC
-wC
-wC
-wC
-wC
-wC
-wC
-MK
-wC
-wC
-wC
-cp
-qZ
-CW
-cp
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(80,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-qx
-qS
-tJ
-uq
-wh
-yf
-yf
-yf
-yf
-yf
-qJ
-cp
-re
-re
-cp
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(81,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-rP
-sS
-sS
-yf
-wr
-yf
-wr
-yf
-RP
-RP
-yf
-cp
-rf
-rk
-cp
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(82,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-sa
-sS
-sS
-yf
-yf
-yf
-yf
-yf
-rP
-rP
-Wf
-cp
-rj
-cp
-cp
-cp
-cp
-cp
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(83,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-jA
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-yf
-yf
-yf
-yf
-sf
-yf
-sf
-yf
-Sa
-Sa
-yf
-wC
-cr
-cr
-Nw
-cr
-cr
-cp
-wC
-wC
-wC
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-jU
-kw
-kE
-kQ
-kU
-aN
-aN
-aN
-jU
-kw
-kE
-kQ
-kU
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(84,1,1) = {"
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-qJ
-yf
-yf
-yf
-yf
-yf
-yf
-yf
-yf
-yf
-qJ
-wC
-Yy
-cr
-cp
-Eh
-EP
-cp
-ru
-Ss
-Mg
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-jQ
-jW
-ky
-kG
-kR
-li
-ly
-aN
-jQ
-jW
-lR
-kG
-kR
-li
-ly
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(85,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-gZ
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-sb
-yf
-yf
-yf
-yf
-yf
-yf
-MQ
-yf
-yf
-yf
-wC
-Yy
-cr
-cp
-cp
-cp
-cp
-TI
-WR
-Ap
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-jP
-jV
-kx
-kF
-kx
-kV
-ln
-aN
-jP
-lL
-kx
-lT
-kx
-kV
-ln
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(86,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-sc
-yf
-Ud
-yf
-yf
-yf
-HR
-HR
-So
-yf
-yf
-wC
-Yy
-cr
-PY
-cr
-cr
-cp
-TI
-PZ
-WZ
-wC
-wC
-wC
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-jS
-jY
-kx
-kI
-kx
-XL
-lA
-aN
-jS
-lN
-kx
-kI
-kx
-XL
-lA
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(87,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-rl
-yf
-QB
-yf
-yf
-Bb
-HS
-HR
-So
-yf
-qC
-wC
-cr
-YS
-cp
-XR
-EP
-cp
-rr
-td
-rD
-rI
-rQ
-rU
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-jR
-jX
-kx
-kH
-kx
-XM
-lz
-aN
-jR
-lM
-kx
-lU
-kx
-XM
-lz
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(88,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-yf
-yf
-yf
-yf
-yf
-yf
-HY
-HR
-So
-yf
-Wk
-wC
-cr
-YS
-cp
-wC
-wC
-wC
-MW
-td
-Xn
-rJ
-rR
-rX
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-jT
-ka
-kA
-kN
-kA
-lm
-lF
-aN
-jT
-ka
-kA
-kN
-kA
-lm
-lF
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(89,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-wC
-qC
-qC
-tK
-ut
-yM
-Bc
-HZ
-MT
-yf
-yf
-st
-wC
-cr
-YS
-cp
-ZS
-Ij
-RF
-XI
-td
-td
-td
-td
-sd
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-jZ
-kz
-kM
-kS
-ll
-aN
-aN
-aN
-jZ
-kz
-kM
-kS
-ll
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(90,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yQ
-yQ
-yQ
-yQ
-yQ
-yQ
-yQ
-yQ
-yQ
-wC
-sr
-wC
-wC
-PP
-cp
-wC
-Kw
-PZ
-Vt
-SK
-td
-td
-td
-td
-sj
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(91,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yQ
-qD
-rx
-rx
-rx
-yW
-rx
-Ib
-yQ
-SC
-yH
-yH
-yH
-yH
-St
-wC
-Kw
-PZ
-SK
-td
-td
-td
-td
-td
-sm
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-jU
-kw
-kE
-kQ
-kU
-aN
-aN
-aN
-jU
-kw
-kE
-kQ
-kU
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(92,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-oQ
-aN
-oQ
-aN
-oQ
-aN
-oQ
-yQ
-VJ
-sT
-ry
-ry
-ry
-Bf
-VJ
-yQ
-yH
-yH
-yH
-yH
-yH
-WG
-wC
-GE
-td
-td
-rs
-rs
-rs
-rs
-Iy
-so
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-jQ
-jW
-kD
-kG
-kR
-li
-ly
-aN
-jQ
-jW
-lS
-kG
-kR
-li
-ly
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(93,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-xd
-Ne
-xd
-Ne
-xd
-Ne
-xd
-yQ
-VJ
-rp
-ry
-Wd
-ry
-Bi
-VJ
-yQ
-yH
-yH
-yH
-yH
-yH
-yH
-Ju
-Us
-td
-td
-rt
-Wt
-rF
-rM
-Wt
-sp
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-jP
-kt
-kx
-kO
-kx
-kV
-ln
-aN
-jP
-lO
-kx
-lV
-kx
-kV
-ln
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(94,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-xd
-Ne
-xd
-Ne
-xd
-Ne
-xd
-yQ
-VJ
-sU
-ry
-We
-ry
-Bj
-VJ
-yQ
-yH
-yH
-yH
-yH
-yH
-WG
-wC
-GE
-td
-td
-td
-td
-td
-td
-td
-ss
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-jS
-kv
-kx
-kI
-kx
-lk
-lA
-aN
-jS
-lQ
-kx
-kI
-kx
-XL
-lA
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(95,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-xd
-Ne
-xd
-Ne
-xd
-Ne
-xd
-yQ
-VJ
-rq
-tL
-ry
-yX
-Bk
-VJ
-yQ
-yH
-yH
-yH
-yH
-yH
-yH
-wC
-sJ
-td
-td
-tn
-td
-cJ
-tn
-td
-su
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-jR
-ku
-kx
-kP
-kx
-XM
-lz
-aN
-jR
-lP
-kx
-lY
-kx
-XM
-lz
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(96,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-xd
-Ne
-xd
-Ne
-xd
-Ne
-xd
-yQ
-sg
-rx
-rx
-uv
-rx
-rx
-Ii
-yQ
-yH
-yH
-yH
-yH
-yH
-yH
-wC
-UN
-td
-td
-jN
-td
-td
-jN
-td
-sm
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-jT
-ka
-kA
-kN
-kA
-lm
-lF
-aN
-jT
-ka
-kA
-kN
-kA
-lm
-lF
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(97,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-xd
-Ne
-xd
-Ne
-xd
-Ne
-xd
-yQ
-yQ
-yQ
-yQ
-uw
-yQ
-yQ
-yQ
-yQ
-yH
-yH
-yH
-sE
-sE
-sE
-wC
-pi
-tE
-FT
-LU
-TU
-Vl
-LU
-TU
-sw
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-jZ
-kz
-kM
-kS
-ll
-aN
-aN
-aN
-jZ
-kz
-kM
-kS
-ll
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(98,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-xd
-Ne
-xd
-Ne
-xd
-Ne
-xd
-yQ
-si
-sV
-tM
-uy
-yQ
-Ne
-Ne
-Ne
-yH
-yH
-yH
-Ne
-Ne
-Ne
-wC
-wC
-wC
-wC
-wC
-wC
-wC
-wC
-wC
-wC
-wC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(99,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-xd
-Ne
-xd
-Ne
-xd
-Ne
-xd
-yQ
-sl
-rw
-rC
-xZ
-yQ
-rV
-yH
-Ne
-yH
-yH
-yH
-Ne
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(100,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-sq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-oR
-Ne
-pJ
-Ne
-qe
-Ne
-qB
-yQ
-sn
-rC
-rC
-xZ
-yQ
-Bl
-yH
-Nc
-yH
-yH
-yH
-Ne
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(101,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ec
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-se
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-oS
-Ne
-oS
-Ne
-oS
-Ne
-oS
-yQ
-sv
-rC
-rC
-xZ
-yQ
-Bs
-yH
-Ne
-yH
-yH
-yH
-Ne
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(102,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-se
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-xd
-Ne
-xd
-Ne
-xd
-Ne
-xd
-yQ
-sy
-rC
-rC
-xZ
-yQ
-Ne
-Ne
-Ne
-Te
-yH
-Wl
-Ne
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(103,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-se
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-xd
-Ne
-xd
-Ne
-xd
-Ne
-xd
-yQ
-sC
-rC
-rC
-xZ
-yQ
-BR
-yH
-Nz
-yH
-yH
-WI
-Ne
-Jw
-Vv
-aN
-aN
-aN
-aN
-aN
-Ne
-aN
-UQ
-UQ
-UQ
-UQ
-UQ
-UQ
-UQ
-UQ
-UQ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(104,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-se
-aN
-aN
-aN
-aN
-se
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-xd
-Ne
-xd
-Ne
-xd
-Ne
-xd
-yQ
-sl
-rw
-rC
-xZ
-yQ
-Cl
-yH
-yH
-yH
-yH
-yH
-Gm
-Sl
-ZI
-aN
-aN
-aN
-aN
-aN
-Ne
-aN
-UQ
-EZ
-EZ
-LJ
-aN
-LJ
-EZ
-EZ
-UQ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-aN
-aN
-aN
-mr
-mr
-mr
-mr
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(105,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-Ne
-oR
-Ne
-pJ
-Ne
-qe
-Ne
-qB
-yQ
-sD
-rv
-tN
-uz
-yQ
-yr
-yH
-yH
-yH
-yH
-yH
-Gm
-Jx
-Gq
-aN
-aN
-aN
-aN
-aN
-Ne
-aN
-UQ
-EZ
-LJ
-aN
-aN
-aN
-LJ
-EZ
-UQ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-zn
-zn
-zF
-mr
-zZ
-Al
-Al
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(106,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-Ne
-pT
-Ne
-pL
-Ne
-qf
-Ne
-qI
-yQ
-yQ
-sW
-sW
-rG
-yQ
-CD
-yH
-yH
-yH
-yH
-WU
-Ne
-Jw
-Vv
-aN
-aN
-aN
-aN
-aN
-Ne
-aN
-UQ
-EZ
-aN
-aN
-aN
-aN
-aN
-EZ
-UQ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-fZ
-fZ
-gc
-mr
-Ab
-Al
-Av
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(107,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-oG
-nV
-pU
-nV
-pU
-nV
-pU
-qK
-Ne
-sF
-yH
-yH
-yH
-yH
-yH
-yH
-yH
-yH
-yH
-WW
-Ne
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-aN
-UQ
-EZ
-aN
-aN
-aN
-aN
-aN
-EZ
-UQ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-fL
-yF
-yF
-zP
-Aa
-Am
-mr
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(108,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-oH
-oT
-pU
-oT
-pU
-oT
-pU
-oT
-ra
-yH
-yH
-yH
-yH
-yH
-Dx
-yH
-yH
-yH
-yH
-yH
-Ne
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-aN
-UQ
-EZ
-aN
-aN
-aN
-aN
-aN
-EZ
-UQ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-yF
-yF
-yF
-mr
-mr
-mr
-mr
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(109,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-pU
-pU
-pU
-pU
-pU
-pU
-pU
-pU
-rb
-yH
-yH
-yH
-yH
-yY
-rW
-Er
-yH
-yH
-yH
-yH
-Ne
-aN
-aN
-aN
-aN
-OW
-aN
-aN
-Ne
-aN
-UQ
-EZ
-aN
-aN
-aN
-aN
-aN
-EZ
-UQ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-yF
-yF
-yF
-zS
-yF
-An
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(110,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-op
-pU
-pU
-pU
-pX
-pU
-pU
-qN
-Ne
-sG
-yH
-yH
-uF
-yZ
-Dy
-zh
-NF
-yH
-yH
-yH
-Ne
-Ne
-Ne
-Ne
-Ne
-Ne
-Ne
-Ne
-Ne
-aN
-UQ
-EZ
-aN
-aN
-aN
-aN
-aN
-EZ
-UQ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-yF
-yF
-yF
-yF
-yF
-Ao
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(111,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-hc
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-Ne
-oU
-Ne
-oU
-Ne
-oU
-Ne
-oU
-Ne
-sI
-yH
-yH
-uF
-zc
-DN
-Ik
-NF
-yH
-yH
-yH
-OG
-Ms
-Ms
-NW
-Ms
-Cp
-SW
-ZG
-aN
-aN
-UQ
-EZ
-aN
-aN
-aN
-aN
-aN
-EZ
-UQ
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-yF
-yF
-zu
-zu
-yF
-Ao
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(112,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-oI
-pU
-oI
-pU
-oI
-pU
-oI
-pU
-Ne
-sK
-yH
-yH
-yH
-zh
-Er
-zh
-yH
-yH
-yH
-yH
-OG
-Ms
-Ms
-Ms
-SV
-ZG
-ZG
-ZG
-Ne
-aN
-UQ
-EZ
-aN
-aN
-aN
-aN
-aN
-EZ
-UQ
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-aN
-aN
-aN
-aN
-fw
-aN
-aN
-aN
-aN
-mr
-yF
-zj
-zt
-zy
-zC
-Ao
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(113,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-oJ
-pU
-ph
-pU
-ph
-pU
-ph
-pU
-Ne
-yH
-yH
-yH
-yH
-yH
-Fr
-yH
-yH
-yH
-yH
-yH
-Ne
-ZG
-ZG
-ro
-Ms
-NU
-OB
-Yz
-Ne
-aN
-UQ
-EZ
-aN
-aN
-aN
-aN
-aN
-EZ
-UQ
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mr
-mr
-mr
-mr
-mr
-yD
-mr
-mr
-mr
-mr
-mr
-yF
-yF
-yF
-yF
-yF
-Ao
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(114,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-oK
-pU
-pU
-pU
-pU
-pU
-pU
-pU
-rc
-yH
-yH
-yH
-yH
-zk
-yH
-yH
-yH
-yH
-yH
-SC
-Ne
-WV
-rm
-Ms
-CS
-ZG
-ZG
-ZG
-Ne
-aN
-UQ
-EZ
-aN
-aN
-aN
-aN
-aN
-EZ
-UQ
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-xQ
-yh
-yx
-yI
-yO
-yF
-yF
-yF
-yF
-yF
-yF
-yF
-yF
-yF
-Ao
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(115,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-pU
-pU
-pU
-pU
-pU
-pU
-pU
-qN
-Ne
-Ne
-sY
-Ne
-uG
-Ne
-FJ
-Io
-NI
-Ne
-Ne
-Ne
-Ne
-Fj
-rm
-Ms
-Ms
-Ur
-OB
-Yz
-Ne
-aN
-UQ
-EZ
-LJ
-aN
-SZ
-aN
-LJ
-EZ
-UQ
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-xP
-ye
-yw
-yF
-yF
-yF
-mr
-mr
-mr
-mr
-mr
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-aN
-aN
-aN
-aN
-"}
-(116,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-se
-aN
-aN
-se
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Ne
-Ne
-Ne
-Ne
-Ne
-Ne
-Ne
-Ne
-Ne
-Ne
-sL
-sZ
-tO
-uO
-Ne
-FM
-FM
-FM
-FM
-UF
-Xj
-Ne
-Rg
-rm
-Ms
-Cy
-ZG
-ZG
-ZG
-Ne
-aN
-UQ
-EZ
-EZ
-Oa
-ZV
-Oa
-EZ
-EZ
-UQ
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(117,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-oL
-ov
-mo
-oL
-ov
-mo
-oL
-ov
-Ne
-sL
-sZ
-tP
-uO
-zr
-FM
-Ip
-NJ
-Tf
-UH
-qX
-Ne
-Rh
-rm
-Ms
-Ms
-Eg
-OB
-Yz
-Ne
-aN
-UQ
-PC
-Lc
-Jc
-Xx
-Iq
-Lc
-GO
-UQ
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aJ
-aK
-bh
-bh
-bh
-au
-au
-at
-bl
-bl
-bl
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(118,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-ov
-ov
-mo
-ov
-ov
-mo
-ov
-ov
-Ne
-sL
-sZ
-tP
-uO
-zx
-FM
-Ir
-NL
-Tg
-UR
-Xm
-Ne
-Zt
-rm
-Ms
-Ms
-Eg
-OB
-Yz
-Ne
-aN
-UQ
-ZL
-ZL
-ZL
-ZL
-ZL
-ZL
-ZL
-UQ
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-Rc
-aN
-aN
-aN
-aN
-aN
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aJ
-au
-au
-au
-au
-au
-au
-bk
-bl
-bl
-bl
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(119,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-mo
-oM
-oV
-mo
-oM
-oV
-mo
-oM
-oV
-Ne
-sL
-sZ
-tP
-uO
-zr
-FM
-Is
-NY
-Ti
-UU
-Xr
-Ne
-ZG
-ZG
-Zh
-Ih
-ZG
-ZG
-ZG
-Ne
-aN
-UQ
-ZL
-ZL
-ZL
-ZL
-ZL
-ZL
-Qy
-UQ
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-Pe
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aJ
-au
-au
-au
-au
-au
-aK
-at
-at
-at
-at
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(120,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-mo
-mo
-mo
-mo
-mo
-mo
-mo
-mo
-mo
-mo
-ou
-ov
-ov
-ov
-ov
-ov
-ov
-ov
-ov
-Ne
-sM
-sZ
-tP
-uO
-Ne
-Ga
-FM
-Oh
-Iw
-FM
-Yj
-Ne
-Fi
-LN
-Ms
-Ms
-Qh
-On
-ZG
-Ne
-UQ
-UQ
-UQ
-Xh
-UQ
-qg
-UQ
-UQ
-UQ
-UQ
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aK
-au
-au
-au
-au
-au
-aJ
-at
-aN
-aN
-at
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(121,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-gH
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-my
-mK
-mQ
-mY
-nk
-nm
-nk
-nk
-oh
-mo
-ou
-ov
-ov
-ov
-ov
-ov
-ov
-ov
-ov
-Ne
-sL
-sZ
-tP
-uO
-Ne
-Gz
-FM
-FM
-FM
-FM
-qY
-Ne
-Zv
-LN
-Ms
-Ws
-ZG
-ZG
-ZG
-Lz
-Lz
-Lz
-ZL
-ZL
-UQ
-qg
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-xR
-au
-au
-au
-au
-au
-au
-aJ
-at
-aN
-aN
-at
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(122,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-my
-mK
-mQ
-mZ
-nl
-nn
-nE
-nk
-oh
-mo
-ou
-ov
-ov
-ov
-ov
-ov
-ov
-ov
-ov
-Ne
-sN
-ta
-tS
-uO
-Ne
-GN
-Iw
-Oq
-Tl
-FM
-qX
-Ne
-ZG
-ZG
-Su
-Ms
-ED
-Tt
-ZG
-ZL
-ZL
-ZL
-ZL
-ZL
-UQ
-qg
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-xS
-au
-au
-au
-au
-au
-au
-aK
-at
-aN
-aN
-at
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(123,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-my
-my
-my
-na
-nk
-nk
-nk
-nk
-oh
-mo
-ov
-ov
-ov
-pj
-ov
-ov
-ov
-ov
-ov
-Ne
-Ne
-Ne
-Ne
-uP
-Ne
-Ne
-Ne
-Ne
-zx
-Ne
-Ne
-Ne
-Df
-LH
-Ms
-Kp
-ZG
-ZG
-ZG
-ZL
-ZL
-ZL
-ZL
-ZL
-UQ
-qg
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-xS
-au
-au
-au
-Kv
-au
-au
-au
-at
-aN
-aN
-at
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(124,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-dX
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-mz
-mL
-mR
-nc
-nk
-nk
-nk
-nk
-oh
-mo
-ow
-ow
-ow
-mo
-ov
-ov
-ov
-ov
-ov
-ov
-ov
-ov
-tT
-uO
-zH
-Ne
-IF
-Or
-yH
-VA
-YA
-Ne
-qt
-LH
-Ms
-Ms
-CM
-DS
-ZG
-ZL
-ZL
-ZL
-ZL
-ZL
-UQ
-qg
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-xS
-au
-au
-bi
-bi
-Kv
-au
-au
-at
-aN
-aN
-at
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(125,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-mA
-mM
-mS
-nd
-nk
-no
-nJ
-nk
-oh
-mo
-mo
-mo
-mo
-mo
-pM
-mo
-mo
-Ne
-Ne
-Ne
-Ne
-Ne
-Ne
-uO
-zO
-Ne
-IL
-OP
-yH
-VB
-YJ
-Ne
-ZG
-ZG
-FH
-Kl
-ZG
-ZG
-ZG
-ZL
-ZL
-ZL
-ZL
-ZL
-UQ
-qg
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-xS
-au
-Kq
-bi
-bi
-Kv
-au
-au
-at
-aN
-aN
-at
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(126,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-mB
-mM
-mT
-ne
-nk
-np
-nK
-nk
-nk
-oq
-nk
-nk
-nk
-nk
-nk
-oq
-qg
-Ne
-qO
-qO
-qO
-te
-Ne
-uO
-zQ
-Ne
-IS
-Pn
-yH
-VA
-YX
-Ne
-qi
-DY
-Ms
-Vh
-Lq
-Ec
-ZG
-ZL
-ZL
-ZL
-ZL
-ZL
-UQ
-qg
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-xS
-au
-au
-bi
-bi
-Kv
-au
-au
-at
-aN
-aN
-at
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(127,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-mC
-mM
-mU
-nf
-nk
-nu
-nN
-nk
-oh
-mo
-mo
-mo
-oW
-mo
-mo
-yy
-qg
-Ne
-qP
-yH
-yH
-yH
-tU
-uO
-Ne
-yy
-yy
-yy
-Tm
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-Ne
-Ne
-Ne
-Wm
-Vj
-Wm
-Vj
-Wm
-UQ
-qg
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-xS
-au
-au
-au
-Kv
-au
-au
-au
-at
-aN
-aN
-at
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(128,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-mD
-mN
-mV
-ng
-nk
-nk
-nk
-nk
-oh
-mo
-oy
-oN
-nk
-oN
-pN
-yy
-qg
-Ne
-qQ
-qQ
-qQ
-qQ
-Ne
-uP
-Ne
-qM
-tV
-tV
-tV
-Wq
-ZW
-Rd
-FW
-Ez
-Eu
-yy
-yy
-yy
-yy
-UQ
-UQ
-UQ
-UQ
-UQ
-UQ
-TX
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-xS
-au
-au
-au
-au
-au
-au
-au
-at
-aN
-aN
-at
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(129,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-my
-my
-my
-na
-nk
-nk
-nk
-nk
-oh
-mo
-oB
-nk
-nk
-nk
-pO
-yy
-qg
-yy
-yy
-yy
-yy
-yy
-yy
-tf
-tV
-uQ
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-WP
-SR
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-ZN
-qg
-SA
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-xT
-aK
-au
-au
-au
-au
-au
-au
-at
-aN
-aN
-at
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(130,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-my
-mK
-mQ
-nh
-nl
-nn
-nE
-nk
-oh
-mo
-oC
-nk
-nk
-nk
-pO
-yy
-qg
-qg
-qg
-qg
-sO
-tf
-tV
-uQ
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-WP
-SR
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-SA
-Hd
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-at
-at
-at
-at
-aK
-au
-au
-au
-au
-au
-au
-at
-aN
-aN
-at
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(131,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-my
-mK
-mQ
-mY
-nk
-nw
-nk
-nk
-oh
-mo
-nk
-nk
-oX
-nk
-nk
-yy
-qg
-qg
-qg
-qg
-yy
-tg
-qg
-qg
-qg
-pd
-pd
-pd
-Hj
-pd
-pd
-yy
-yy
-qg
-WP
-yy
-yy
-yy
-yy
-Vx
-Vx
-Lk
-Kt
-Mq
-Xo
-YM
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-au
-au
-au
-at
-aK
-au
-au
-au
-au
-au
-au
-at
-at
-at
-at
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(132,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-mo
-mo
-mo
-mo
-mo
-mo
-mo
-mo
-mo
-mo
-mo
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-qL
-tW
-uR
-qg
-pd
-IY
-Pt
-qg
-VC
-KP
-yy
-yy
-qg
-WP
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-au
-ay
-au
-aI
-au
-au
-au
-au
-au
-au
-au
-bk
-bl
-bl
-bl
-zT
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(133,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-ck
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-oY
-pk
-yy
-oY
-pk
-yy
-oY
-pk
-yy
-ti
-tX
-tg
-qg
-pd
-JK
-qg
-qg
-qg
-JK
-Ye
-pd
-qg
-WP
-yy
-TW
-Wh
-Wh
-SN
-yy
-OD
-pr
-yy
-CC
-pr
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-au
-au
-au
-at
-aJ
-aJ
-aJ
-aK
-au
-au
-au
-at
-bl
-bl
-bl
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(134,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-pa
-pl
-yy
-pa
-pl
-yy
-pa
-pl
-yy
-tj
-tY
-tg
-qg
-pd
-Ky
-PJ
-QE
-qg
-VE
-Lw
-pd
-qg
-WP
-yy
-TW
-Wh
-Wh
-SN
-yy
-QS
-Wh
-yy
-Fx
-Wh
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-aN
-aN
-aN
-aN
-"}
-(135,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-pc
-pl
-yy
-pc
-pl
-yy
-pc
-pl
-yy
-tk
-tZ
-tg
-qg
-pd
-KA
-PL
-TL
-LZ
-VE
-Hc
-pd
-qg
-WP
-yy
-TW
-Wh
-Wh
-SN
-yy
-yy
-JE
-yy
-yy
-ux
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-aN
-aN
-aN
-aN
-"}
-(136,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-yy
-pm
-yy
-yy
-qj
-yy
-yy
-pm
-yy
-tl
-ua
-tg
-qg
-pd
-KK
-qg
-Uf
-qg
-VE
-Ee
-pd
-qg
-WP
-Pj
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(137,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-pn
-pu
-pv
-pu
-pv
-pu
-pv
-yy
-tm
-ub
-tg
-qg
-pd
-KN
-qg
-qg
-qg
-ZO
-Pr
-pd
-qg
-WP
-yy
-TW
-Wh
-Wh
-Wh
-yy
-yy
-Im
-yy
-yy
-Wy
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(138,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-po
-pt
-pu
-pv
-pS
-pt
-pu
-yy
-tp
-ue
-tg
-qg
-pd
-LY
-Mc
-qg
-VD
-MM
-yy
-yy
-qg
-WP
-yy
-TW
-Wh
-Wh
-Wh
-yy
-Gt
-Wh
-yy
-CL
-Wh
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(139,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ff
-dP
-gO
-ff
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-pq
-pP
-pv
-pu
-qq
-pP
-pv
-yy
-tq
-uf
-tg
-qg
-pd
-pd
-pd
-Hj
-pd
-pd
-yy
-yy
-qg
-WP
-yy
-TW
-Wh
-Wh
-Wh
-yy
-Mm
-Mm
-yy
-Mm
-Mm
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(140,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ff
-dQ
-gP
-ff
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-yy
-yy
-yy
-yy
-yy
-ps
-pR
-pu
-pv
-ps
-qR
-pu
-yy
-tk
-ug
-tg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-WP
-yy
-TW
-Wh
-Wh
-Wh
-yy
-Sy
-Ls
-yy
-Sy
-Ls
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(141,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ff
-cV
-ff
-gA
-gQ
-ff
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-oi
-or
-oD
-oD
-yy
-pt
-pS
-pv
-pu
-pt
-pS
-pv
-yy
-tr
-uh
-tg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-WP
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-QK
-QK
-QK
-QK
-QK
-QK
-QK
-JX
-JF
-GR
-GR
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(142,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ff
-fu
-fu
-fu
-fu
-ff
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-oj
-oj
-oj
-oj
-pd
-pu
-pv
-pu
-pv
-pu
-pv
-rd
-yy
-ts
-ui
-tg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-WP
-yy
-qM
-tV
-OQ
-pd
-tk
-Eq
-yy
-aN
-aN
-QK
-Cw
-Cw
-Cw
-Cw
-Cw
-NG
-To
-To
-To
-To
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(143,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ff
-fv
-fu
-fu
-fu
-ff
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ih
-ih
-ih
-ih
-ih
-ih
-ih
-ih
-ih
-ih
-ih
-ih
-ih
-aN
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-oj
-os
-oE
-oj
-pe
-pv
-pu
-pv
-pu
-pv
-pu
-rg
-yy
-tr
-uk
-tg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-WP
-pd
-tg
-qg
-WP
-pd
-tj
-Ru
-yy
-aN
-aN
-QK
-Cw
-Cw
-Cw
-Cw
-Cw
-NG
-Yp
-DI
-EF
-To
-QK
-QK
-QK
-QK
-QK
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(144,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ff
-cW
-fu
-fu
-fu
-ff
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ih
-LK
-fo
-LM
-fo
-Ny
-fQ
-fW
-gl
-gL
-gD
-gL
-ih
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ae
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ac
-ab
-ab
-jB
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-oj
-oj
-oj
-oj
-pd
-pw
-pV
-pu
-pv
-pu
-pv
-rh
-yy
-tt
-ul
-tg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-WP
-Gr
-tg
-NC
-WP
-pd
-tq
-Th
-yy
-aN
-aN
-QK
-Cw
-Cw
-UD
-Cw
-Cw
-Dr
-Dr
-Dr
-Dr
-To
-QK
-KI
-SY
-SY
-KI
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(145,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ff
-ff
-ff
-ff
-ff
-ff
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ih
-Oc
-fo
-LM
-fo
-Ny
-fo
-fo
-Nh
-gC
-gC
-Yw
-ih
-aN
-nj
-ab
-ab
-ab
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ae
-ab
-ab
-ab
-ab
-ab
-ae
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-oi
-or
-oD
-oD
-yy
-pv
-pS
-pv
-pu
-pv
-pu
-pv
-yy
-qM
-tV
-uQ
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-WP
-pd
-tg
-qg
-WP
-pd
-Cu
-Ru
-yy
-aN
-aN
-QK
-Cw
-Cw
-Cw
-Cw
-Cw
-To
-To
-To
-To
-To
-QK
-SY
-SY
-SY
-SY
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(146,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-fg
-fg
-fg
-fg
-fg
-fg
-fg
-fg
-fg
-aN
-aN
-aN
-aN
-aN
-ih
-fo
-fo
-fo
-fo
-fo
-fo
-fo
-tI
-gE
-gE
-Mn
-ih
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ae
-ab
-ab
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-yy
-yy
-yy
-yy
-yy
-qH
-pv
-pu
-pv
-pu
-pv
-pu
-sR
-tg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-WP
-yy
-qL
-qg
-QQ
-pd
-Ds
-II
-yy
-aN
-aN
-QK
-Cw
-Cw
-Cw
-Cw
-Cw
-To
-To
-To
-To
-RQ
-QK
-Xa
-SY
-SY
-Xa
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(147,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-fg
-cX
-dw
-dR
-ed
-eo
-eo
-eO
-fg
-fg
-fg
-fg
-aN
-aN
-ih
-VT
-fo
-fo
-fo
-fR
-fR
-fo
-Ux
-fo
-fo
-fW
-ih
-aN
-nj
-ab
-ab
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-px
-pu
-pv
-pu
-pv
-pu
-pv
-yy
-th
-tW
-tW
-tW
-tW
-uR
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-WP
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-QK
-QK
-QK
-QK
-QK
-QK
-IU
-QK
-QK
-QK
-Mf
-SS
-Mf
-QK
-QK
-QK
-DM
-QK
-QK
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(148,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-cS
-cZ
-cZ
-cZ
-dy
-dy
-dy
-dy
-hC
-fb
-hF
-fg
-aN
-aN
-ih
-LX
-fo
-fo
-fB
-fJ
-fU
-Ko
-fo
-fo
-fo
-Tp
-ih
-aN
-nj
-ab
-ab
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ab
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-nO
-of
-ok
-ot
-oF
-oO
-yy
-yy
-pC
-pY
-qk
-pZ
-pD
-pZ
-yy
-yy
-yy
-yy
-yy
-yy
-tg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-WP
-yy
-CG
-Jn
-Oj
-WA
-TV
-CG
-Oj
-Oj
-Oj
-Oj
-Oj
-Oj
-Oj
-Oj
-Oj
-Oj
-Oj
-Oj
-Oj
-WA
-QK
-IH
-SY
-Yh
-Le
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(149,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-cR
-cY
-cZ
-dS
-ee
-dy
-dy
-dy
-eY
-hF
-hF
-fg
-aN
-aN
-ih
-Uj
-fo
-Fd
-fB
-Zj
-fS
-Ko
-fo
-fo
-fo
-fo
-ih
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ae
-ab
-ab
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-nQ
-nO
-nO
-nO
-nO
-nO
-yy
-py
-pD
-pD
-pD
-pD
-pD
-ri
-yy
-tu
-um
-uW
-zR
-yy
-tg
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-WP
-yy
-PO
-Mf
-TN
-Bq
-Bq
-PR
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-RB
-QK
-IH
-SY
-QK
-QK
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(150,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-cR
-da
-cZ
-dU
-ee
-dy
-dy
-dy
-eY
-hF
-hF
-fg
-aN
-aN
-ih
-ih
-fo
-ih
-ih
-ih
-ih
-ih
-Od
-gw
-gG
-gN
-ih
-aN
-nj
-ab
-ac
-ab
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ag
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-nQ
-nO
-nO
-nO
-nO
-nQ
-yy
-pB
-pD
-pD
-pD
-pD
-pD
-ri
-yy
-tw
-pl
-pl
-zW
-Hy
-th
-tW
-tW
-tW
-tW
-tW
-tW
-tW
-KC
-ON
-MY
-Rm
-MY
-KO
-Qo
-PR
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-RB
-QK
-IH
-SY
-Vn
-Le
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(151,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-cT
-da
-cZ
-dT
-ee
-dy
-dy
-dy
-hC
-hF
-hF
-fg
-aN
-aN
-ih
-RY
-fr
-fx
-ih
-ZR
-jE
-ih
-Kn
-gv
-lu
-gM
-ih
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ae
-ab
-ac
-ab
-ae
-ag
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-nR
-nO
-ol
-nO
-nO
-nQ
-yy
-pC
-pD
-pZ
-pZ
-qu
-pD
-rz
-yy
-tw
-pl
-va
-zX
-yy
-yy
-yy
-yy
-yy
-Zn
-yy
-yy
-yy
-yy
-yy
-Zq
-Mf
-zq
-Bq
-Bq
-PR
-MY
-MY
-MY
-WS
-Fp
-Fp
-UV
-Fp
-Fp
-WS
-MY
-MY
-MY
-RB
-QK
-QK
-SY
-QK
-QK
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(152,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-fg
-dc
-cZ
-dW
-ee
-dy
-dy
-dz
-fg
-fg
-fg
-fg
-aN
-aN
-ih
-Hn
-ft
-fz
-je
-je
-Dk
-ih
-Oi
-gz
-gG
-HV
-ih
-aN
-nj
-ab
-ab
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-hj
-hj
-hj
-hj
-ag
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-nT
-nO
-om
-nO
-nO
-nO
-pf
-pD
-pD
-pZ
-ql
-qy
-pD
-rA
-yy
-tx
-uo
-vd
-Aw
-yy
-rZ
-aN
-aN
-yy
-qg
-yy
-aN
-aN
-aN
-yy
-Fc
-Jk
-Zq
-RB
-QK
-PR
-MY
-MY
-WS
-Bq
-Bq
-Bq
-Bq
-Bq
-Bq
-Bq
-WS
-MY
-MY
-RB
-QK
-Di
-SY
-Sn
-Le
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(153,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-fg
-db
-dx
-dV
-ee
-dy
-eu
-eP
-fg
-aN
-aN
-aN
-aN
-aN
-ih
-Zf
-fs
-fy
-ih
-Ve
-gd
-ih
-UJ
-gM
-lu
-Cj
-ih
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-hj
-hj
-hq
-nj
-nj
-nj
-nj
-hE
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-oc
-nO
-on
-nO
-nO
-nQ
-yy
-pE
-pD
-pD
-pD
-pD
-pD
-rB
-yy
-yy
-yy
-pd
-pd
-yy
-aN
-aN
-aN
-yy
-Zn
-yy
-aN
-aN
-aN
-yy
-QK
-QK
-Fc
-JY
-OY
-PR
-MY
-MY
-WC
-Bq
-QV
-EO
-Py
-Zr
-BP
-Bq
-Xl
-MY
-MY
-RB
-QK
-Di
-SY
-QK
-QK
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(154,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-fg
-df
-dy
-dy
-dy
-dy
-dy
-eR
-fg
-aN
-aN
-aN
-aN
-aN
-ih
-ih
-ih
-ih
-ih
-ih
-ih
-ih
-ih
-ih
-ih
-ih
-ih
-aN
-nj
-ab
-ab
-ab
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-ho
-hr
-nj
-hB
-hn
-hu
-hE
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-nQ
-nO
-nO
-nO
-nO
-nQ
-yy
-pG
-pD
-pD
-pD
-pD
-qT
-yy
-rZ
-ty
-yy
-ve
-AM
-yy
-Mk
-yT
-yT
-yT
-JV
-yT
-yT
-yT
-Ew
-aN
-aN
-QK
-QK
-QK
-QK
-PR
-MY
-MY
-WC
-Bq
-BP
-LT
-Ta
-LT
-Pp
-Bq
-Xl
-MY
-MY
-RB
-QK
-Di
-SY
-HD
-Le
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(155,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-fg
-de
-dy
-dy
-dy
-dy
-dy
-dz
-fg
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-hl
-hn
-hn
-hl
-hn
-hn
-hz
-hE
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-nQ
-nO
-nO
-nO
-nO
-nO
-yy
-pH
-pD
-pD
-pD
-pD
-pD
-yy
-aN
-aN
-yy
-rN
-rS
-yy
-Ml
-QI
-QI
-QI
-QI
-QI
-QI
-QI
-Ml
-aN
-aN
-aN
-aN
-aN
-QK
-PR
-MY
-MY
-jH
-Bq
-Kb
-FP
-Mo
-FP
-QV
-Bq
-XN
-MY
-MY
-RB
-IT
-SY
-SY
-QK
-QK
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(156,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-fg
-dh
-dy
-dy
-dy
-dy
-eu
-eP
-fg
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-ho
-hr
-nj
-hn
-hn
-hz
-hE
-ab
-ab
-ab
-ab
-ab
-ip
-iK
-iR
-pF
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-nO
-nQ
-oo
-nQ
-nQ
-oP
-yy
-pI
-pW
-qb
-qm
-qA
-qU
-yy
-aN
-aN
-yy
-rN
-rS
-yy
-Ml
-Rf
-QI
-QI
-QI
-QI
-QI
-QI
-Ml
-aN
-aN
-aN
-aN
-aN
-QK
-PR
-MY
-MY
-WC
-Bq
-FV
-LT
-EC
-LT
-EO
-Bq
-Xl
-MY
-MY
-RB
-QK
-Di
-SY
-Vq
-Le
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(157,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-fg
-dg
-dz
-dy
-dy
-dy
-dy
-dz
-fg
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-hi
-hl
-hn
-hn
-hl
-hn
-hn
-hz
-hI
-ab
-ab
-ab
-ab
-ab
-ag
-hz
-pz
-iZ
-Cd
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-yy
-qo
-yy
-yy
-yy
-aN
-aN
-yy
-rN
-rS
-yy
-Ml
-sk
-QI
-QI
-QI
-QI
-QI
-QI
-Ml
-aN
-aN
-aN
-aN
-aN
-QK
-PR
-MY
-MY
-WC
-Bq
-OI
-MF
-Kb
-Zr
-IR
-Bq
-Xl
-MY
-MY
-RB
-QK
-QK
-QK
-QK
-QK
-QK
-QK
-QK
-QK
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(158,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-fg
-fH
-fH
-fH
-fH
-ep
-ew
-eS
-fg
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-ho
-hr
-nj
-hB
-hn
-hz
-hI
-ac
-ae
-ab
-ab
-ab
-ag
-hz
-pA
-jd
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-qc
-qm
-qm
-qV
-yy
-aN
-aN
-yy
-rN
-rS
-yy
-Ml
-sk
-QI
-QI
-QI
-QI
-QI
-MC
-Ml
-aN
-aN
-aN
-aN
-aN
-QK
-PR
-MY
-MY
-WS
-Bq
-Bq
-Bq
-Bq
-Bq
-Bq
-Bq
-WS
-MY
-MY
-RB
-QK
-Nl
-LB
-LB
-VX
-QK
-EJ
-Xz
-EJ
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(159,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-fg
-fI
-fH
-fH
-fH
-fH
-he
-hv
-fg
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-hm
-hm
-hs
-hu
-hn
-hn
-hz
-hI
-ab
-ab
-ab
-ae
-ab
-ag
-hz
-pz
-hz
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-qd
-qm
-qm
-qW
-yy
-aN
-aN
-yy
-rN
-rS
-yy
-Ml
-sk
-QI
-QI
-QI
-QI
-QI
-QI
-Ml
-aN
-aN
-aN
-aN
-aN
-QK
-PR
-MY
-MY
-MY
-WS
-Vm
-Vm
-qh
-Vm
-Vm
-WS
-MY
-MY
-MY
-RB
-QK
-Yn
-Rq
-Tz
-Re
-QK
-HA
-HA
-HA
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(160,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-fg
-fH
-fH
-JC
-fH
-fH
-he
-hv
-fg
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ag
-hz
-hn
-hn
-hz
-hI
-ab
-ab
-ab
-ab
-ab
-ag
-hz
-pz
-hz
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-qc
-qm
-qm
-qW
-yy
-aN
-aN
-yy
-rL
-rS
-yy
-Ml
-RD
-QI
-QI
-QI
-QI
-QI
-QI
-Ml
-aN
-aN
-aN
-aN
-aN
-QK
-PR
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-RB
-IO
-Xy
-MS
-VS
-XF
-QC
-HA
-HA
-HA
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(161,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-cU
-fH
-gf
-fH
-gS
-fH
-he
-hv
-fg
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-hj
-hj
-hq
-hy
-hn
-hn
-hz
-hI
-ae
-ab
-ab
-ad
-ab
-iH
-hz
-pz
-hz
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-qc
-qm
-qm
-qW
-yy
-aN
-aN
-yy
-rN
-rS
-yy
-Ml
-QI
-QI
-QI
-QI
-QI
-QI
-QI
-Ml
-aN
-aN
-aN
-aN
-aN
-QK
-PR
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-MY
-OL
-QK
-Xy
-MS
-VS
-HX
-QK
-HA
-HA
-HA
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(162,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-fg
-di
-fH
-JD
-fH
-fH
-hf
-hw
-fg
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-ho
-hr
-nj
-hB
-hn
-hz
-hI
-ab
-ac
-hj
-hj
-hP
-hq
-hy
-pz
-hy
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ad
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-yy
-yy
-yy
-yy
-yy
-aN
-aN
-yy
-rN
-rS
-rY
-sh
-yT
-yT
-yT
-yT
-yT
-yT
-yT
-zV
-aN
-aN
-aN
-aN
-aN
-QK
-Fc
-WS
-Zu
-WS
-Zu
-WS
-La
-YL
-Wv
-WS
-Zu
-WS
-Zu
-WS
-LE
-QK
-OE
-VW
-Jj
-DP
-QK
-EL
-EL
-EL
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(163,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-fg
-fK
-fH
-fI
-fH
-fH
-he
-Qt
-fg
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-hl
-hn
-hn
-hl
-hn
-hn
-hz
-hI
-ab
-hq
-nj
-nj
-nj
-nj
-nj
-iU
-nj
-nj
-nj
-nj
-ab
-ab
-ab
-ab
-ab
-ae
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-rN
-rS
-rY
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-QK
-QK
-Bq
-TZ
-Bq
-TZ
-QK
-Bq
-Bq
-Bq
-QK
-TZ
-Bq
-TZ
-Bq
-QK
-QK
-QK
-QK
-QK
-QK
-QK
-QK
-QK
-QK
-QK
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(164,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-fg
-fg
-fg
-fg
-fg
-fg
-fg
-fg
-fg
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-ho
-hr
-nj
-hn
-hn
-hz
-hI
-ag
-nj
-nj
-ii
-iq
-iB
-iL
-hn
-jg
-jm
-ez
-nj
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ae
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yy
-vf
-rT
-yy
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Bq
-OK
-Bq
-OK
-Bq
-GB
-CR
-zG
-Bq
-OK
-Bq
-OK
-Bq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(165,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-hl
-hn
-hn
-hl
-hn
-hn
-hz
-hI
-ag
-nj
-hQ
-hn
-hn
-en
-en
-iY
-jf
-jk
-ey
-fd
-nj
-hI
-ac
-ad
-hj
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ty
-rO
-rO
-rZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Bq
-OK
-Bq
-OK
-Bq
-zG
-MI
-GB
-Bq
-OK
-Bq
-OK
-Bq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(166,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-ho
-hr
-nj
-hB
-hn
-hy
-hK
-hq
-hM
-ie
-hn
-en
-iD
-iN
-hn
-jf
-jn
-fa
-fi
-nj
-hI
-ab
-nX
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Bq
-TZ
-Bq
-TZ
-QK
-Bq
-Bq
-Bq
-QK
-TZ
-Bq
-TZ
-Bq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(167,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-hm
-hm
-ht
-nj
-hn
-hn
-nj
-nj
-nj
-nj
-hX
-hn
-en
-iC
-iM
-hn
-jf
-jk
-ey
-fh
-nj
-ko
-ab
-nY
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-KG
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(168,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ag
-nj
-hn
-hn
-hD
-hn
-hn
-Bn
-hn
-hn
-is
-en
-en
-hn
-iL
-jo
-jM
-jO
-nj
-hK
-hj
-hq
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(169,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ag
-nj
-hn
-hn
-nj
-nj
-nj
-nj
-nj
-ij
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-nj
-nj
-nj
-hM
-nj
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(170,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-hn
-hn
-nj
-aN
-aN
-aN
-nj
-il
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-kb
-kj
-ks
-kq
-kJ
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(171,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-hn
-hn
-nj
-aN
-aN
-aN
-nj
-ik
-hn
-eq
-iL
-ex
-hn
-hn
-hn
-hn
-kj
-kq
-kq
-kJ
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-se
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(172,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ae
-nj
-hn
-hn
-nj
-aN
-aN
-aN
-nj
-nj
-iz
-nj
-nj
-nj
-jd
-iW
-jd
-nj
-BQ
-kq
-kq
-kJ
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-se
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(173,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-hn
-hn
-nj
-aN
-aN
-aN
-nj
-im
-iy
-iy
-nj
-nj
-hz
-iV
-hz
-nj
-qF
-kq
-kq
-kJ
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(174,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ab
-ab
-nj
-hn
-hn
-nj
-aN
-aN
-aN
-nj
-io
-iy
-iF
-nj
-nj
-hz
-iV
-hz
-nj
-qG
-kq
-kq
-kJ
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-se
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(175,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-hn
-hn
-nj
-aN
-aN
-aN
-nj
-in
-iA
-nj
-nj
-nj
-hz
-iX
-hz
-nj
-kl
-kq
-kC
-kL
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(176,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ef
-it
-it
-it
-it
-it
-it
-it
-it
-it
-it
-it
-ge
-ab
-nj
-nj
-nj
-eU
-iR
-hr
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-Cc
-Cc
-nj
-aN
-aN
-aN
-nj
-nj
-nj
-nj
-nj
-nj
-hz
-iV
-hz
-nj
-nj
-nj
-nj
-nj
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(177,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-it
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-it
-hM
-nj
-kn
-kT
-mt
-mt
-mt
-nt
-mt
-AY
-Bd
-gY
-gI
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-nj
-iJ
-gj
-gj
-hz
-iV
-hz
-gj
-gj
-jz
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(178,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-it
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-it
-kr
-nj
-kp
-kr
-kr
-kr
-kr
-kr
-kr
-kr
-kr
-kr
-mv
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-nj
-gj
-gi
-iI
-hz
-iW
-hz
-iI
-jv
-gj
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(179,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-it
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-it
-kr
-hA
-kr
-kr
-kr
-nq
-nq
-kr
-kr
-kr
-kr
-kr
-kr
-BM
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-nj
-gi
-iu
-iO
-iv
-iP
-iv
-kc
-ju
-jv
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(180,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-it
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-it
-mv
-nj
-kK
-kr
-kr
-nq
-ob
-kr
-kr
-kr
-kr
-kr
-mv
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-nj
-gx
-iO
-iv
-KX
-iS
-KX
-iv
-kc
-jJ
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(181,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-it
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eV
-eA
-eA
-eA
-it
-kr
-nj
-hO
-kr
-kr
-gb
-ai
-lg
-kr
-AZ
-Be
-Bh
-Bm
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-nj
-gx
-iv
-KX
-iS
-jt
-iS
-KX
-iv
-jJ
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(182,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-eg
-it
-it
-it
-it
-it
-it
-it
-ej
-it
-it
-it
-gh
-kr
-nj
-nj
-oA
-AX
-oA
-nj
-nj
-BD
-nj
-nj
-nj
-nj
-nj
-gg
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-nj
-hg
-iP
-iS
-KR
-jj
-KW
-iS
-km
-jK
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(183,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-hm
-hs
-nj
-hN
-ji
-kr
-ga
-kr
-kr
-nj
-nF
-oz
-kr
-Br
-By
-nj
-gg
-kr
-BT
-BV
-BX
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-nj
-gx
-iv
-KY
-iS
-jw
-iS
-KY
-iv
-jJ
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-xL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(184,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ae
-ab
-ag
-nj
-jh
-kr
-kr
-ai
-kr
-kr
-nj
-nI
-kr
-kr
-kr
-Bz
-nj
-BS
-BZ
-BU
-BW
-BY
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-nj
-gx
-iQ
-iv
-KY
-iS
-iS
-iv
-kh
-jJ
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-FL
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(185,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-nj
-eU
-iR
-hr
-nj
-nj
-jC
-nj
-gg
-kr
-kr
-kr
-mv
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-nj
-hx
-iG
-iQ
-iv
-iP
-iv
-kh
-jx
-jy
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(186,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-hs
-nj
-nW
-Ca
-nB
-kr
-kr
-Bo
-Bu
-kr
-nj
-zL
-kr
-ga
-kr
-kr
-kr
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-nj
-hG
-hx
-iT
-iT
-iT
-iT
-iT
-jy
-jz
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(187,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ae
-ab
-ab
-ab
-ae
-ab
-nj
-eT
-kr
-nx
-kr
-kr
-Bg
-Bt
-kr
-nx
-kr
-kr
-kr
-kr
-kr
-kr
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(188,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-hq
-nj
-BO
-Cb
-nB
-kr
-kr
-Bp
-Bv
-kr
-nj
-zL
-kr
-gb
-kr
-kr
-kr
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(189,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ac
-ab
-ab
-nj
-eU
-iR
-hr
-nj
-nj
-kk
-nj
-pK
-kr
-kr
-kr
-mv
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(190,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ac
-ab
-ab
-ab
-ag
-nj
-hN
-kr
-kr
-nr
-kr
-kr
-nj
-nM
-kr
-kr
-kr
-BB
-nj
-BE
-BH
-BI
-BJ
-BK
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(191,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-hq
-nj
-jh
-ns
-kr
-gb
-kr
-kr
-nj
-nL
-oz
-kr
-kr
-BA
-nj
-gg
-gb
-kr
-kr
-kr
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(192,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ef
-it
-it
-it
-it
-it
-it
-it
-eZ
-it
-it
-it
-gm
-kr
-nj
-nj
-zN
-nx
-zN
-nj
-nj
-BF
-nj
-nj
-nj
-nj
-nj
-gg
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(193,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-it
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-fc
-eA
-eA
-eA
-it
-kr
-nj
-zL
-kr
-kr
-ga
-nr
-kr
-kr
-Ba
-Bd
-gY
-gI
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(194,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-it
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-it
-mv
-nj
-gg
-kr
-kr
-kr
-Bx
-Bx
-Bx
-kr
-kr
-kr
-mv
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(195,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-it
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-it
-kr
-hA
-kr
-kr
-kr
-kr
-Bw
-js
-Bw
-kr
-kr
-kr
-kr
-BN
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(196,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-it
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-it
-kr
-nj
-gg
-kr
-kr
-kr
-Bx
-Bx
-Bx
-kr
-kr
-kr
-jG
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(197,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-it
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-eA
-it
-hM
-nj
-ix
-ix
-iE
-jq
-iE
-kr
-iE
-jq
-iE
-jD
-jF
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(198,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-eg
-it
-it
-it
-it
-it
-it
-it
-it
-it
-it
-it
-gB
-ab
-nj
-nj
-nj
-nj
-nj
-nj
-BC
-nj
-nj
-nj
-nj
-nj
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(199,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ab
-nj
-nv
-kr
-kr
-ga
-kr
-kr
-kr
-ga
-kr
-kr
-BL
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(200,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-eh
-ab
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-eh
-ab
-nj
-nS
-kr
-nS
-kr
-nS
-kr
-BG
-kr
-BG
-kr
-BG
-nj
-Ty
-mv
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(201,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ab
-ab
-nj
-nP
-kr
-nP
-kr
-nP
-kr
-nP
-kr
-nP
-kr
-nP
-nj
-Uc
-Uc
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(202,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-nj
-kr
-kr
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(203,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-nj
-Ft
-mv
-nj
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(204,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-tc
-tc
-Jm
-Jm
-tc
-tc
-tc
-tc
-tc
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(205,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-Pq
-UC
-Pq
-Pq
-vt
-tc
-nb
-Fl
-HU
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(206,1,1) = {"
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-Pq
-Pq
-Pq
-Pq
-Pq
-tc
-Pq
-TC
-Pq
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(207,1,1) = {"
-aa
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-fA
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-Sr
-Pw
-Sr
-Sr
-Pq
-vv
-Pq
-Pq
-CK
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ur
-aN
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(208,1,1) = {"
-af
-as
-dj
-dj
-dj
-bI
-ce
-ar
-ar
-ar
-dd
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-Rv
-Pq
-bU
-Sr
-Pq
-tc
-GM
-Pq
-TC
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ur
-uE
-Ar
-uE
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(209,1,1) = {"
-af
-aH
-bd
-bd
-bd
-bK
-bP
-bd
-bd
-bd
-dn
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-Uh
-Pq
-Vi
-Ic
-Pq
-tc
-ZD
-XV
-Yq
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-us
-uE
-wb
-uE
-vP
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ur
-uS
-uX
-vq
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-ur
-uA
-Ac
-xh
-Ay
-uA
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(210,1,1) = {"
-af
-aH
-bd
-bd
-bd
-bK
-bP
-bd
-bd
-bd
-dn
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-tc
-tc
-tc
-tc
-Wz
-tc
-tc
-tc
-tc
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Dv
-ur
-aN
-aN
-aN
-aN
-vC
-aN
-aN
-uA
-uT
-uA
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ur
-uE
-yj
-uT
-yJ
-uE
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-uA
-Ae
-xh
-AA
-uA
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(211,1,1) = {"
-af
-aH
-bd
-bd
-bd
-bK
-bP
-bd
-bd
-bd
-dn
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-Yq
-Oz
-Dj
-Pq
-Pq
-Pq
-Dj
-Oz
-Yq
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Va
-VN
-VN
-VN
-EV
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ur
-uE
-uS
-uX
-uX
-vq
-uE
-uE
-uE
-uA
-wc
-uA
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-uA
-xM
-yi
-yz
-uT
-wm
-uA
-aN
-aN
-aN
-aN
-aN
-aN
-uA
-Ad
-xh
-Az
-uA
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(212,1,1) = {"
-af
-cl
-cA
-cA
-cA
-bb
-bT
-bt
-bt
-bt
-dC
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-Zl
-TC
-Sj
-Pq
-Pq
-Pq
-Sj
-Pq
-Zl
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FZ
-TY
-GQ
-GQ
-GQ
-EV
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ur
-uA
-uI
-uU
-uY
-vj
-vr
-vD
-vJ
-uA
-vU
-uT
-uA
-uE
-wF
-uE
-wF
-uE
-wF
-uE
-uA
-xV
-uT
-uT
-uT
-yR
-uA
-aN
-aN
-aN
-aN
-aN
-ur
-uA
-uE
-As
-uE
-uA
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(213,1,1) = {"
-ah
-an
-an
-an
-an
-an
-an
-an
-an
-an
-an
-bZ
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-fA
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-tc
-Jz
-QL
-XZ
-Pq
-Ei
-IJ
-QW
-tc
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-WQ
-TY
-GQ
-GQ
-GQ
-Gl
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-uu
-uH
-uT
-uT
-uT
-uT
-uT
-vI
-uA
-uT
-uT
-uA
-ws
-uT
-wI
-uT
-xa
-xo
-xx
-uA
-xU
-uT
-uT
-uT
-yP
-uA
-aN
-aN
-aN
-aN
-ur
-uE
-uE
-Af
-xh
-zD
-zK
-uE
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(214,1,1) = {"
-af
-dA
-dA
-dA
-dA
-br
-dA
-cd
-cd
-cd
-em
-bm
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-Yq
-Oz
-Dj
-Pq
-Pq
-Pq
-Dj
-Sd
-Yq
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-WX
-TY
-GQ
-Pg
-YR
-XP
-VN
-VN
-VN
-ZT
-VN
-Mz
-VN
-VN
-VN
-EV
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-uB
-uK
-uT
-vb
-uT
-vy
-uT
-uT
-vh
-uT
-uT
-uA
-wu
-uT
-wL
-uT
-xc
-uT
-xA
-uA
-xX
-yk
-uT
-yK
-yU
-uA
-aN
-aN
-aN
-aN
-uA
-zJ
-zY
-xh
-xh
-xh
-AF
-zJ
-uA
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(215,1,1) = {"
-af
-dA
-aY
-aF
-dA
-dA
-br
-aY
-dA
-cP
-dA
-fC
-fT
-fT
-dM
-dM
-dM
-dM
-fT
-fT
-fT
-fT
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-Zl
-Pq
-Sj
-Pq
-Pq
-Pq
-Sj
-Pq
-Zl
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Nm
-ZT
-Id
-Ct
-Id
-qp
-DQ
-Fy
-Ox
-Gl
-Qq
-OF
-HN
-Mb
-HN
-CN
-EV
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-uB
-uJ
-uT
-uZ
-uT
-vx
-uT
-uT
-vN
-uT
-uT
-vh
-wt
-uT
-wJ
-uT
-xb
-uT
-xy
-uA
-xW
-uT
-uT
-uT
-yS
-uA
-aN
-aN
-aN
-aN
-uA
-zI
-zU
-xh
-xh
-xh
-AE
-AG
-uA
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(216,1,1) = {"
-af
-aj
-dA
-dA
-aX
-dA
-dA
-cs
-dA
-dA
-es
-bm
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-tc
-Jz
-QL
-XZ
-Pq
-Ei
-IJ
-QW
-tc
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Gl
-Qp
-Id
-TO
-RL
-OS
-Vb
-Vb
-Gl
-Qq
-OF
-OF
-OF
-OF
-CN
-XP
-VN
-VN
-EV
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-uB
-uM
-uT
-vc
-uT
-vz
-uT
-uT
-vh
-uT
-uT
-wl
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uA
-ya
-uT
-uT
-uT
-za
-uA
-aN
-aN
-aN
-aN
-us
-zK
-uE
-Ag
-xh
-zE
-uE
-uE
-vP
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(217,1,1) = {"
-af
-dA
-dA
-dA
-aZ
-dA
-dA
-cd
-br
-dA
-dA
-bm
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-Yq
-Oz
-Dj
-TC
-Pq
-Pq
-Dj
-Oz
-Yq
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Of
-UB
-TO
-TO
-TO
-Vg
-JG
-Vb
-Vb
-Gl
-Zz
-OF
-OF
-OF
-OF
-Gl
-Xw
-IP
-SQ
-Pb
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-uC
-uL
-uT
-uT
-uT
-uT
-uT
-vI
-uA
-uT
-uT
-vh
-uT
-uT
-uT
-wT
-xe
-xp
-xB
-uA
-xY
-uT
-uT
-uT
-yV
-uA
-aN
-aN
-aN
-aN
-aN
-us
-uA
-uE
-At
-uE
-uA
-vP
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(218,1,1) = {"
-af
-dA
-av
-dA
-dA
-dA
-bQ
-aX
-dA
-br
-aY
-fC
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-fT
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-Zl
-Pq
-Gk
-Pq
-JO
-Pq
-Gk
-Pq
-Zl
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Gl
-Sk
-Id
-TO
-Yg
-Oo
-Yg
-Pl
-XP
-zi
-QU
-TH
-zi
-QU
-Gl
-IC
-Id
-Ww
-JS
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-us
-uA
-uN
-uV
-vg
-vk
-vA
-vE
-vK
-uA
-uT
-uT
-uA
-ww
-uT
-uT
-wU
-uE
-uE
-uE
-uA
-yb
-uT
-uT
-uT
-zb
-uA
-aN
-ur
-uS
-vq
-wq
-aN
-uA
-Ai
-xh
-AC
-uA
-aN
-ur
-uS
-vq
-wq
-aN
-aN
-aN
-aN
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(219,1,1) = {"
-ah
-an
-an
-an
-an
-an
-an
-ct
-ct
-ct
-ct
-fD
-an
-an
-an
-an
-an
-an
-an
-an
-an
-an
-LW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-tc
-tc
-tc
-tc
-tc
-tc
-tc
-tc
-tc
-tc
-tc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Gl
-Uv
-LC
-TO
-TO
-TO
-TO
-TO
-TO
-TO
-TO
-TO
-TO
-TO
-CY
-TO
-Ln
-Rp
-JS
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-uD
-uE
-uE
-uE
-uE
-uE
-uE
-uE
-uA
-uT
-uT
-uA
-wv
-uT
-wM
-uA
-xf
-xq
-xC
-uA
-xN
-uT
-uT
-uT
-wU
-uA
-aN
-uA
-uT
-uT
-uu
-aN
-uA
-Ah
-xh
-AB
-uA
-aN
-uu
-uT
-uT
-uA
-uE
-uS
-uX
-vq
-uA
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(220,1,1) = {"
-af
-al
-bf
-cD
-cu
-bx
-bY
-cu
-aP
-bf
-al
-fC
-eW
-eW
-eW
-eW
-eW
-eW
-eW
-Wi
-eW
-eW
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-bZ
-bZ
-bZ
-bZ
-bZ
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Gl
-MN
-Id
-TO
-IC
-IC
-IC
-Id
-IC
-IC
-IC
-TO
-Id
-IP
-Gl
-Fz
-Id
-Ze
-JS
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Dv
-us
-uA
-vl
-uT
-vF
-uT
-uA
-uT
-uT
-uA
-wy
-uT
-wM
-uA
-xh
-xh
-xh
-uA
-uE
-yl
-yl
-yl
-uE
-uA
-aN
-uA
-uT
-uT
-uB
-aN
-uA
-Aj
-xh
-AD
-uA
-aN
-uB
-uT
-uT
-uA
-AJ
-uT
-AO
-AQ
-AT
-uA
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(221,1,1) = {"
-af
-cm
-aw
-aT
-cu
-by
-by
-cu
-cE
-aw
-cm
-fC
-eW
-dt
-eW
-eW
-eW
-PA
-eW
-eW
-dq
-eW
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-jl
-jl
-jl
-jl
-jl
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Pc
-UB
-TO
-TO
-TO
-Fz
-Fz
-Fz
-Id
-Fz
-Fz
-Fz
-TO
-Id
-LV
-Gl
-Cs
-SU
-zg
-Dh
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-vh
-uT
-uT
-uT
-uT
-uA
-uT
-uT
-uA
-wx
-uT
-wM
-uA
-xg
-xh
-xD
-uA
-xM
-uT
-uT
-uT
-wm
-uA
-aN
-uA
-uT
-uT
-uB
-aN
-us
-Ag
-xh
-zE
-vP
-aN
-uB
-uT
-uT
-vh
-uT
-uT
-uT
-uT
-AS
-uu
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(222,1,1) = {"
-af
-al
-bf
-cD
-cu
-bB
-bB
-cu
-aP
-bf
-al
-fC
-eW
-eW
-eW
-eW
-eW
-eW
-eW
-eW
-eW
-eW
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-bZ
-bZ
-fM
-fM
-fM
-fM
-fM
-bZ
-bZ
-bZ
-aN
-bZ
-bZ
-bZ
-bZ
-bZ
-bZ
-bZ
-bZ
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Gl
-Qp
-Id
-TO
-TO
-TO
-TO
-TO
-TO
-TO
-TO
-TO
-Id
-UG
-CN
-ZT
-VN
-VN
-EG
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-uA
-vm
-uT
-vG
-uT
-vh
-uT
-uT
-uA
-vV
-uT
-uT
-uA
-xi
-xh
-xE
-uA
-uT
-uT
-uT
-uT
-uT
-uA
-Dv
-uA
-uT
-uT
-uC
-aN
-aN
-uA
-At
-uA
-aN
-aN
-uC
-uT
-uT
-AI
-uT
-uT
-uT
-uT
-AV
-uB
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(223,1,1) = {"
-af
-cm
-aw
-aT
-cu
-by
-by
-cu
-cE
-aw
-cm
-fC
-eW
-eW
-CZ
-eW
-dq
-eW
-eW
-eW
-PA
-eW
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-dE
-fG
-bZ
-bZ
-bZ
-bZ
-bZ
-gJ
-gR
-bZ
-aN
-bZ
-aB
-aB
-pb
-aB
-aB
-pQ
-cj
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Va
-XP
-Id
-Ub
-Id
-Qj
-Qp
-Id
-TO
-Ya
-PE
-Id
-TO
-Ub
-Qp
-CN
-EG
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-vh
-uT
-uT
-uT
-uT
-vO
-uT
-uT
-wm
-uE
-wF
-wl
-uE
-uE
-xr
-uE
-xM
-uT
-ym
-ym
-ym
-uT
-wm
-uE
-xM
-uT
-uT
-wm
-uS
-vq
-xM
-uT
-wm
-uS
-vq
-xM
-uT
-uT
-vh
-uT
-uT
-uT
-uT
-AU
-uC
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(224,1,1) = {"
-af
-al
-bf
-cD
-cu
-bD
-cb
-cu
-aP
-bf
-al
-fC
-eW
-eW
-eW
-eW
-eW
-eW
-dt
-eW
-eW
-Wi
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-dE
-fG
-bZ
-bZ
-bZ
-bZ
-bZ
-gJ
-gR
-bZ
-aN
-bZ
-aB
-aB
-aB
-aB
-cj
-cj
-cj
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-FZ
-TY
-GQ
-Pg
-YR
-ZT
-VN
-VN
-UB
-VN
-VN
-VN
-UB
-VN
-VN
-EG
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-uA
-vo
-uT
-vH
-uT
-vh
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-ym
-ym
-ym
-uT
-uT
-ze
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uA
-AK
-AL
-AP
-AR
-AW
-uA
-vP
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(225,1,1) = {"
-ah
-an
-an
-an
-an
-an
-an
-an
-an
-an
-an
-bZ
-an
-an
-an
-an
-an
-an
-an
-an
-an
-an
-LW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-dE
-fG
-bZ
-bZ
-bZ
-bZ
-bZ
-gJ
-gR
-bZ
-aN
-bZ
-cj
-cj
-aB
-aB
-aB
-qr
-qE
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-WQ
-TY
-GQ
-GQ
-GQ
-Gl
-aN
-aN
-QG
-aN
-aN
-aN
-Vd
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-vh
-vn
-uT
-vn
-uT
-uA
-vV
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-ym
-ym
-ym
-uT
-uT
-ze
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-uT
-wU
-uA
-uE
-uS
-uX
-vq
-uA
-vP
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(226,1,1) = {"
-af
-am
-dD
-dD
-et
-bE
-bE
-cy
-cO
-cO
-eK
-fC
-gK
-gK
-gK
-gK
-gK
-gK
-gK
-gK
-gK
-gK
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-dE
-fG
-bZ
-bZ
-bZ
-bZ
-bZ
-gJ
-gR
-bZ
-aN
-bZ
-ma
-aB
-aB
-aB
-cj
-cj
-cj
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-WX
-TY
-GQ
-GQ
-GQ
-EG
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-uA
-DX
-uT
-DX
-uT
-uA
-uE
-uE
-uE
-uE
-uE
-uE
-uE
-uE
-uE
-uE
-xN
-uT
-ym
-ym
-ym
-uT
-wU
-uE
-uE
-uE
-uE
-uE
-uE
-uE
-uE
-uE
-uE
-uE
-uE
-uE
-uE
-uE
-vP
-aN
-aN
-aN
-aN
-vP
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(227,1,1) = {"
-af
-ao
-dD
-dD
-et
-bF
-cg
-cg
-cg
-cg
-eX
-fC
-gK
-cq
-dY
-gK
-Yr
-dr
-dr
-dr
-UT
-gK
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-dE
-fG
-bZ
-bZ
-bZ
-bZ
-bZ
-gJ
-gR
-bZ
-aN
-bZ
-ny
-aB
-aB
-aB
-aB
-qr
-qE
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Nm
-VN
-VN
-VN
-EG
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Dv
-uA
-vp
-vB
-vp
-vM
-uA
-vP
-aN
-aN
-uD
-uA
-wO
-vY
-xj
-xs
-xF
-uA
-uT
-uT
-uT
-uT
-uT
-uA
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-vP
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(228,1,1) = {"
-af
-ao
-dD
-dD
-et
-bG
-ch
-ch
-ch
-ch
-fj
-fC
-gK
-dJ
-dY
-gK
-TG
-eB
-eB
-eB
-Se
-gK
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-bZ
-ja
-fO
-fO
-fO
-fO
-fO
-lC
-bZ
-bZ
-aN
-bZ
-nC
-aB
-aB
-aB
-cj
-cj
-cj
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-us
-uE
-uS
-vq
-uE
-vP
-aN
-aN
-aN
-aN
-wG
-vY
-vY
-vY
-vY
-xG
-uA
-xN
-uT
-uT
-uT
-wU
-uA
-uE
-uE
-uE
-uE
-uE
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(229,1,1) = {"
-af
-ao
-dD
-dD
-Cr
-bJ
-ci
-ci
-ci
-ci
-fk
-fC
-gK
-dG
-dY
-gK
-Nt
-el
-el
-el
-SF
-gK
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-jb
-fN
-fN
-fN
-fN
-fN
-lD
-bZ
-aN
-aN
-bZ
-nD
-aB
-aB
-aB
-aB
-qr
-qE
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-Dv
-aN
-aN
-Dv
-aN
-Dv
-aN
-aN
-ur
-uA
-vY
-wV
-vY
-vY
-vY
-uA
-uA
-uT
-uT
-uT
-uA
-uA
-xh
-zl
-zv
-zz
-zD
-uA
-wq
-aN
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(230,1,1) = {"
-af
-ao
-dD
-dD
-ba
-bE
-bE
-cy
-cO
-cO
-eK
-fC
-gK
-gK
-gK
-gK
-gK
-gK
-gK
-gK
-gK
-gK
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-jc
-jp
-jp
-jp
-jp
-jp
-jp
-bZ
-aN
-aN
-bZ
-nG
-aB
-aB
-aB
-aB
-qr
-qE
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ur
-uA
-wf
-wo
-uE
-uA
-wP
-wW
-xk
-xt
-vY
-uA
-uA
-uT
-uT
-uT
-uA
-uA
-zf
-xh
-GP
-xh
-xh
-nZ
-uA
-Ak
-uA
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(231,1,1) = {"
-ah
-an
-an
-an
-an
-an
-an
-an
-an
-an
-an
-bZ
-an
-an
-an
-an
-an
-an
-an
-an
-an
-an
-LW
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-jc
-jp
-jp
-jp
-jp
-jp
-jp
-bZ
-aN
-aN
-bZ
-cj
-cj
-aB
-aB
-cj
-cj
-cj
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-uA
-vW
-wd
-wn
-wz
-uA
-uE
-uE
-uE
-uE
-xH
-uA
-uA
-uT
-uT
-uT
-wm
-uA
-xh
-xh
-xh
-xh
-xh
-Hb
-Hg
-Hu
-uA
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(232,1,1) = {"
-af
-ax
-ax
-ax
-ax
-ax
-ax
-ax
-ax
-ax
-ax
-cI
-fX
-eE
-eE
-eE
-eC
-YK
-Zk
-Zk
-Zk
-Ev
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-jc
-jp
-jp
-jp
-jp
-jp
-jp
-bZ
-aN
-aN
-bZ
-nH
-aB
-aB
-aB
-aB
-qs
-cj
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-vR
-vY
-wi
-vY
-vY
-wH
-uT
-uT
-uT
-uT
-uT
-uA
-uA
-uT
-uT
-uT
-uT
-zd
-xh
-GP
-xh
-GP
-xh
-zM
-Hh
-Hv
-Au
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(233,1,1) = {"
-af
-ax
-ev
-ax
-ax
-ax
-ax
-ax
-ax
-ev
-ax
-cI
-fX
-eE
-aQ
-aA
-Ff
-WN
-aA
-Jq
-Zk
-Ev
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-jc
-jp
-jp
-jp
-jp
-jp
-jp
-bZ
-aN
-aN
-bZ
-nU
-aB
-aB
-aB
-cj
-cj
-cj
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-vQ
-vX
-vY
-vY
-wA
-uA
-uE
-uE
-uE
-uT
-uT
-uA
-uA
-uT
-uT
-uT
-wU
-uA
-xh
-xh
-xh
-xh
-xh
-Hb
-Hi
-Hw
-uA
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(234,1,1) = {"
-af
-ax
-ax
-ax
-ax
-ev
-ev
-ax
-ax
-ax
-ax
-cI
-fY
-aA
-aQ
-aA
-Ff
-WN
-XA
-Jq
-aA
-JM
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-jc
-jp
-jp
-jp
-jp
-jp
-jp
-bZ
-aN
-aN
-bZ
-cj
-cj
-aB
-aB
-aB
-qv
-cj
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-vQ
-vZ
-vY
-vY
-wB
-uA
-wR
-wY
-xm
-uT
-uT
-uA
-xM
-uT
-uT
-uT
-uA
-uA
-zf
-xh
-GP
-xh
-xh
-oa
-uA
-Ak
-uA
-vP
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(235,1,1) = {"
-af
-ax
-ev
-ax
-ax
-ax
-ax
-ax
-ax
-ev
-ax
-cI
-go
-gX
-aQ
-aA
-Ff
-WN
-aA
-Jq
-De
-HW
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-jc
-jp
-jp
-kB
-kB
-jp
-jp
-bZ
-aN
-aN
-bZ
-og
-aB
-aB
-aB
-cj
-cj
-cj
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-vT
-vY
-vY
-vY
-vY
-wH
-wQ
-wX
-xl
-uT
-uT
-xO
-uT
-uT
-uT
-uT
-uA
-uA
-xh
-zm
-zw
-zA
-zE
-uA
-vP
-aN
-vP
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(236,1,1) = {"
-af
-ax
-ax
-ax
-ax
-ax
-ax
-ax
-ax
-ax
-ax
-cI
-go
-gX
-gX
-gX
-YO
-XB
-De
-De
-De
-HW
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-bZ
-jc
-jp
-jp
-gk
-gn
-jp
-lE
-bZ
-aN
-aN
-bZ
-ox
-aB
-aB
-aB
-aB
-qw
-cj
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-uA
-wa
-wj
-wp
-wD
-uA
-wS
-wZ
-xn
-uT
-uT
-uA
-xN
-uT
-uT
-wU
-uA
-uE
-uE
-uE
-uE
-uE
-uE
-vP
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(237,1,1) = {"
-ah
-an
-an
-an
-an
-an
-an
-an
-an
-an
-an
-bZ
-an
-an
-an
-an
-an
-an
-an
-an
-an
-an
-LW
-aN
-bZ
-ak
-ak
-ak
-ak
-bZ
-aN
-aN
-bZ
-jc
-jp
-jp
-kB
-kB
-jp
-jp
-bZ
-aN
-aN
-bZ
-cj
-cj
-aB
-aB
-cj
-cj
-cj
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-us
-uA
-wf
-wo
-uE
-uE
-uE
-uS
-uX
-vq
-uE
-uE
-uA
-yn
-yn
-uA
-uE
-uE
-uE
-uE
-uE
-uE
-vP
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(238,1,1) = {"
-af
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-cI
-gq
-gq
-gq
-gq
-gq
-gq
-gq
-GW
-TE
-Om
-cc
-aN
-af
-hH
-ia
-ia
-ib
-cc
-aN
-aN
-bZ
-jc
-jp
-jp
-jp
-jp
-jp
-jp
-bZ
-aN
-aN
-bZ
-oZ
-aB
-aB
-aB
-aB
-qz
-cj
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-jI
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-us
-uA
-xJ
-xJ
-uA
-vP
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(239,1,1) = {"
-af
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-cI
-gq
-iw
-gq
-gq
-OM
-gq
-gq
-GW
-TE
-Om
-cc
-aN
-af
-Kc
-ia
-ia
-ic
-cc
-aN
-aN
-bZ
-jc
-jp
-jp
-jp
-jp
-jp
-jp
-bZ
-aN
-aN
-bZ
-bZ
-bZ
-bZ
-bZ
-bZ
-bZ
-bZ
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-yc
-xJ
-xJ
-yc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(240,1,1) = {"
-af
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-cI
-gq
-gq
-gq
-gq
-gq
-gq
-gq
-GW
-TE
-Om
-cc
-aN
-af
-hJ
-Ki
-ia
-ia
-cc
-aN
-aN
-bZ
-jc
-jp
-jp
-jp
-jp
-jp
-jp
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ur
-uA
-xJ
-xJ
-uA
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(241,1,1) = {"
-af
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-cI
-gq
-ke
-gq
-gq
-gq
-ID
-gq
-GW
-TE
-Om
-cc
-aN
-af
-Kd
-ia
-ia
-ic
-cc
-aN
-aN
-bZ
-jc
-jp
-jp
-jp
-jp
-jp
-jp
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ur
-uA
-xI
-xJ
-xJ
-yL
-uA
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(242,1,1) = {"
-af
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-cI
-gq
-gq
-gq
-gq
-gq
-gq
-gq
-GW
-TE
-Om
-cc
-aN
-af
-hL
-ia
-ia
-ib
-cc
-aN
-aN
-bZ
-jc
-jp
-jp
-jp
-jp
-jp
-jp
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-ur
-uA
-xI
-xJ
-xJ
-xJ
-xJ
-yL
-uA
-wq
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(243,1,1) = {"
-ah
-an
-an
-an
-an
-an
-an
-an
-an
-an
-an
-bZ
-an
-an
-an
-an
-an
-an
-an
-an
-an
-an
-LW
-aN
-bZ
-an
-an
-an
-an
-bZ
-aN
-aN
-bZ
-jb
-fP
-fP
-fP
-fP
-fP
-lD
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-uA
-xI
-xJ
-xJ
-xJ
-yA
-xJ
-xJ
-yL
-uA
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(244,1,1) = {"
-af
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-cI
-gr
-kf
-kf
-kf
-HB
-xz
-QH
-QH
-QH
-Pd
-cc
-aN
-af
-Ke
-ia
-ia
-ia
-cc
-aN
-bZ
-bZ
-ja
-fO
-fO
-fO
-fO
-fO
-lC
-bZ
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-xv
-xJ
-xJ
-xJ
-yp
-yB
-yA
-xJ
-xJ
-xv
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(245,1,1) = {"
-af
-eN
-bp
-eN
-eN
-eN
-eN
-eN
-eN
-bp
-eN
-cI
-gs
-cL
-cL
-cL
-Hl
-eL
-cL
-cL
-cL
-Ha
-cc
-aN
-af
-Kf
-hZ
-hZ
-id
-cc
-aN
-bZ
-dF
-fG
-bZ
-bZ
-bZ
-bZ
-bZ
-gJ
-gT
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-xu
-xJ
-xJ
-yd
-yo
-yp
-yA
-xJ
-xJ
-xu
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(246,1,1) = {"
-af
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-cI
-gs
-cL
-cL
-cL
-Hl
-eL
-cL
-cL
-cL
-Ha
-cc
-aN
-af
-ia
-hZ
-hZ
-hZ
-cc
-aN
-bZ
-dF
-fG
-bZ
-bZ
-bZ
-bZ
-bZ
-gJ
-gT
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-xw
-xJ
-xJ
-xJ
-ys
-yp
-yA
-xJ
-xJ
-xw
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(247,1,1) = {"
-af
-eN
-bp
-eN
-eN
-eN
-eN
-eN
-eN
-bp
-eN
-cI
-gs
-cL
-cL
-cL
-Hl
-eL
-cL
-cL
-cL
-Ha
-cc
-aN
-af
-Kg
-hZ
-hZ
-id
-cc
-aN
-bZ
-dF
-fG
-bZ
-bZ
-bZ
-bZ
-bZ
-gJ
-gT
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-uA
-xK
-xJ
-xJ
-xJ
-yA
-xJ
-xJ
-yN
-uA
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(248,1,1) = {"
-af
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-cI
-gu
-mb
-mb
-mb
-LS
-WK
-Ua
-Ua
-Ua
-XY
-cc
-aN
-af
-Kh
-ia
-ia
-ia
-cc
-aN
-bZ
-dF
-fG
-bZ
-bZ
-bZ
-bZ
-bZ
-gJ
-gT
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-us
-uA
-xK
-xJ
-xJ
-xJ
-xJ
-yN
-uA
-vP
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(249,1,1) = {"
-ah
-an
-an
-an
-an
-an
-an
-an
-an
-an
-an
-bZ
-an
-an
-an
-an
-an
-an
-an
-an
-an
-an
-LW
-aN
-bZ
-an
-an
-an
-an
-bZ
-aN
-bZ
-dF
-fG
-bZ
-bZ
-bZ
-bZ
-bZ
-gJ
-gT
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-us
-uE
-xK
-xJ
-xJ
-yN
-uE
-vP
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(250,1,1) = {"
-af
-aV
-bR
-bR
-bR
-bR
-cv
-cv
-cv
-cv
-fn
-cI
-gU
-dv
-dv
-dv
-dv
-eH
-eH
-eH
-eH
-Ia
-cc
-aN
-af
-hR
-ia
-ia
-Kk
-cc
-aN
-bZ
-bZ
-bZ
-fM
-fM
-fM
-fM
-fM
-bZ
-bZ
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-us
-uE
-yu
-yC
-uE
-vP
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(251,1,1) = {"
-af
-aU
-bM
-bM
-bM
-bM
-bM
-bM
-bM
-bM
-fp
-cI
-gV
-eQ
-eQ
-eQ
-eQ
-eQ
-eQ
-eQ
-eQ
-Qa
-cc
-aN
-af
-hS
-ia
-ia
-if
-cc
-aN
-aN
-aN
-bZ
-jr
-jr
-jr
-jr
-jr
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(252,1,1) = {"
-af
-aU
-bM
-bM
-bM
-bM
-bM
-bM
-bM
-bM
-fp
-cI
-gV
-eQ
-eQ
-eQ
-eQ
-eQ
-eQ
-eQ
-eQ
-Qa
-cc
-aN
-af
-hT
-ia
-ia
-ia
-cc
-aN
-aN
-aN
-bZ
-bZ
-bZ
-bZ
-bZ
-bZ
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(253,1,1) = {"
-af
-aU
-bM
-bM
-bM
-bM
-bM
-bM
-bM
-bM
-fp
-cI
-gV
-eQ
-eQ
-eQ
-eQ
-eQ
-eQ
-eQ
-eQ
-Qa
-cc
-aN
-af
-hU
-ia
-ia
-ig
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(254,1,1) = {"
-af
-aW
-bS
-bS
-bS
-bS
-bC
-bC
-bC
-bC
-fq
-cI
-gW
-dO
-dO
-dO
-dO
-eM
-eM
-eM
-eM
-Fv
-cc
-aN
-af
-hV
-ia
-ia
-Kk
-cc
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
-(255,1,1) = {"
-cf
-aE
-aE
-aE
-aE
-aE
-aE
-aE
-aE
-aE
-aE
-fE
-aE
-aE
-aE
-aE
-aE
-aE
-aE
-aE
-aE
-aE
-Ng
-aN
-bZ
-aE
-aE
-aE
-aE
-bZ
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-aN
-"}
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aad" = (
+/obj/docking_port/stationary/transit{
+ dir = 4;
+ dwidth = 1;
+ height = 4;
+ id = "pod3_transit";
+ name = "pod 3 in transit";
+ width = 3
+ },
+/turf/space/transit/east{
+ dir = 8
+ },
+/area/space)
+"aal" = (
+/obj/docking_port/stationary{
+ dheight = 2;
+ dir = 4;
+ dwidth = 7;
+ height = 9;
+ id = "backup_transit";
+ name = "backup in transit";
+ width = 9
+ },
+/turf/space/transit,
+/area/space)
+"aaN" = (
+/turf/unsimulated/floor{
+ icon_state = "stairs-r"
+ },
+/area/syndicate_mothership)
+"abo" = (
+/obj/structure/table/wood,
+/obj/item/syndicatedetonator,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"aby" = (
+/obj/effect/spawner/window/reinforced,
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/ninja/holding)
+"abH" = (
+/obj/docking_port/stationary/transit{
+ dir = 8;
+ dwidth = 5;
+ height = 7;
+ id = "supply_transit";
+ name = "supply in transit";
+ width = 12
+ },
+/turf/space/transit,
+/area/space)
+"aci" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 5;
+ tag = "icon-fakewindows (EAST)"
+ },
+/area/syndicate_mothership)
+"adO" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ name = "Shuttle Dock"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"adR" = (
+/obj/docking_port/stationary/transit{
+ dir = 4;
+ dwidth = 1;
+ height = 4;
+ id = "pod4_transit";
+ name = "pod 4 in transit";
+ width = 3
+ },
+/turf/space/transit/east{
+ dir = 8
+ },
+/area/space)
+"aeh" = (
+/turf/unsimulated/wall{
+ dir = 1;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "swall0";
+ layer = 5;
+ tag = "icon-wall3 (NORTH)"
+ },
+/area/ussp_ship)
+"afn" = (
+/obj/effect/decal/remains/human,
+/obj/structure/kitchenspike,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"afr" = (
+/obj/effect/landmark/shuttle_import,
+/turf/space,
+/area/space)
+"ahI" = (
+/obj/docking_port/stationary/transit{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 22;
+ id = "syndicate_transit";
+ name = "syndicate in transit";
+ width = 18
+ },
+/turf/space/transit,
+/area/space)
+"ahL" = (
+/turf/unsimulated/wall{
+ dir = 1;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "diagonalWall3"
+ },
+/area/space)
+"ajj" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/holywater,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"ajr" = (
+/obj/machinery/vending/toyliberationstation,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"ajG" = (
+/obj/structure/flora/ausbushes/pointybush,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"ajR" = (
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkgreynavybluecorner"
+ },
+/area/centcom/specops)
+"akM" = (
+/obj/structure/sign/poster/contraband/communist_state{
+ pixel_x = -32
+ },
+/obj/machinery/vending/cigarette/free{
+ slogan_list = list("Just remember! No capitalist.","Best enjoyed with Vodka!.","Smoke!","Nine out of ten USSP scientists agree, smoking reduces stress!","There's no cigarette like a Russian cigarette!","Cigarettes! Now with 100% less capitalism.")
+ },
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 8;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"alv" = (
+/obj/structure/decorative_structures/metal/statue/metal_angel,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"alW" = (
+/obj/structure/table/wood,
+/obj/item/storage/pill_bottle/dice,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"amx" = (
+/obj/structure/urinal{
+ pixel_y = 28
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"amT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"anU" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"aoG" = (
+/obj/structure/chair/comfy/teal{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"aoU" = (
+/obj/structure/window/reinforced{
+ layer = 2.9
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"apV" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lantern,
+/obj/item/flashlight/lantern,
+/obj/item/flashlight/lantern,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"aqc" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"aqE" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"aqH" = (
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 2.9;
+ name = "Pulse ANNIHILATOR";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/item/gun/energy/pulse/destroyer/annihilator,
+/obj/item/gun/energy/pulse/destroyer/annihilator,
+/obj/item/gun/energy/pulse/destroyer/annihilator,
+/obj/item/gun/energy/pulse/destroyer/annihilator,
+/obj/item/gun/energy/pulse/destroyer/annihilator,
+/obj/item/gun/energy/pulse/destroyer/annihilator,
+/obj/item/gun/energy/pulse/destroyer/annihilator,
+/obj/item/gun/energy/pulse/destroyer/annihilator,
+/obj/item/gun/energy/pulse/destroyer/annihilator,
+/obj/item/gun/energy/pulse/destroyer/annihilator,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"arb" = (
+/obj/docking_port/stationary/transit{
+ dir = 8;
+ dwidth = 2;
+ height = 11;
+ id = "trade_sol_transit";
+ name = "trade_sol in transit";
+ turf_type = /turf/space/transit/horizontal;
+ width = 5
+ },
+/turf/space/transit/horizontal,
+/area/space)
+"ard" = (
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"arf" = (
+/turf/unsimulated/wall/fakeglass{
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom)
+"arh" = (
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/event_zone)
+"arz" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"asG" = (
+/obj/machinery/computer/operating,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"auz" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"avw" = (
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"avK" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/bush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"avN" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"avP" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/item/trash/candle,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"avY" = (
+/obj/structure/holowindow,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/holodeck/source_thunderdomecourt)
+"awl" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/item/candle/eternal,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"awo" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"axm" = (
+/obj/effect/landmark/start,
+/turf/unsimulated/floor,
+/area/start)
+"axw" = (
+/obj/machinery/door/window/northleft{
+ name = "Out";
+ req_access_txt = "150"
+ },
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (EAST)"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"axN" = (
+/turf/simulated/floor/holofloor{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/holodeck/source_thunderdomecourt)
+"ayN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet06"
+ },
+/area/centcom/evac)
+"ayZ" = (
+/obj/machinery/light/spot,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"aAA" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"aBv" = (
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"aDk" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet8-0";
+ tag = "icon-carpet8-0 (EAST)"
+ },
+/area/holodeck/source_meetinghall)
+"aDo" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"aDu" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"aDO" = (
+/obj/machinery/door/poddoor/impassable{
+ id_tag = "nukeop_base"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"aEe" = (
+/obj/structure/bed,
+/obj/item/bedsheet/black,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/event_zone)
+"aEO" = (
+/obj/structure/table/wood,
+/obj/item/paper/form/NT_COM_05,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"aFj" = (
+/obj/effect/landmark/abductor/agent{
+ team = 4
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"aGp" = (
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"aGy" = (
+/obj/docking_port/stationary/transit{
+ dwidth = 1;
+ height = 4;
+ id = "pod1_transit";
+ name = "pod 1 in transit";
+ width = 3
+ },
+/turf/space/transit,
+/area/space)
+"aHg" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/storage/box/flashbangs{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/flashbangs{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/flashbangs{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 33;
+ pixel_y = -7
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/specops)
+"aHs" = (
+/obj/docking_port/stationary/transit{
+ dwidth = 1;
+ height = 4;
+ id = "pod2_transit";
+ name = "pod 2 in transit";
+ width = 3
+ },
+/turf/space/transit,
+/area/space)
+"aHF" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"aHX" = (
+/turf/unsimulated/floor{
+ dir = 10;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/zone1)
+"aIN" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkgreen"
+ },
+/area/centcom/zone1)
+"aJn" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/laser,
+/obj/item/gun/energy/laser/awaymission_aeg,
+/obj/item/gun/energy/laser/cyborg,
+/obj/item/gun/energy/laser/practice,
+/obj/item/gun/energy/laser/practice/sc_laser,
+/obj/item/gun/energy/laser/scatter,
+/obj/item/gun/energy/laser/tag,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"aKp" = (
+/obj/structure/mirror{
+ pixel_x = 30
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"aKL" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/bush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"aKY" = (
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"aMo" = (
+/obj/structure/chair/sofa/right{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"aMD" = (
+/obj/item/flag/syndi,
+/obj/machinery/light{
+ brightness_range = 5;
+ dir = 1;
+ light_range = 5;
+ nightshift_light_range = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"aMO" = (
+/obj/structure/table/abductor{
+ name = "table"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/event_zone)
+"aNa" = (
+/obj/machinery/computer/communications,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"aNh" = (
+/turf/simulated/floor/holofloor{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/holodeck/source_boxingcourt)
+"aND" = (
+/turf/unsimulated/wall{
+ icon_state = "iron6"
+ },
+/area/syndicate_mothership)
+"aOd" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkred"
+ },
+/area/centcom/zone1)
+"aOB" = (
+/obj/structure/rack/holorack,
+/obj/item/autoimplanter,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"aOV" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkredfull"
+ },
+/area/centcom/zone1)
+"aOX" = (
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ layer = 2.9;
+ name = "IK-60 Laser Carbine";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/item/gun/projectile/automatic/lasercarbine,
+/obj/item/gun/projectile/automatic/lasercarbine,
+/obj/item/gun/projectile/automatic/lasercarbine,
+/obj/item/gun/projectile/automatic/lasercarbine,
+/obj/item/gun/projectile/automatic/lasercarbine,
+/obj/item/gun/projectile/automatic/lasercarbine,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"aPa" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/holotable,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"aPu" = (
+/obj/structure/table,
+/obj/item/storage/box/beakers,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"aPM" = (
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"aQI" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien21"
+ },
+/area/abductor_ship)
+"aQT" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/machinery/vending/coffee/free,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"aQX" = (
+/turf/unsimulated/wall{
+ desc = "The door appears to be locked tightly.";
+ icon = 'icons/obj/doors/airlocks/hatch/centcom.dmi';
+ icon_state = "closed";
+ name = "Locked Door"
+ },
+/area/ninja/holding)
+"aRB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"aRC" = (
+/obj/machinery/portable_atmospherics/canister/toxins{
+ maximum_pressure = 50000
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"aRK" = (
+/obj/structure/table/wood,
+/obj/item/candle/eternal,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"aRV" = (
+/obj/effect/landmark{
+ name = "Holocarp Spawn"
+ },
+/turf/simulated/floor/holofloor{
+ icon_state = "engine";
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/source_wildlife)
+"aSD" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/table/wood,
+/obj/item/circuitboard/aiupload,
+/obj/item/circuitboard/circuit_imprinter,
+/obj/item/circuitboard/communications,
+/obj/item/circuitboard/destructive_analyzer,
+/obj/item/circuitboard/ore_redemption,
+/obj/item/circuitboard/mining_shuttle,
+/obj/item/circuitboard/mining_shuttle,
+/obj/item/circuitboard/mining_shuttle,
+/obj/item/circuitboard/protolathe,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"aSN" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/specops)
+"aSW" = (
+/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated,
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/specops)
+"aTA" = (
+/obj/structure/table/wood,
+/obj/item/storage/bible,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"aUH" = (
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"aVe" = (
+/obj/machinery/chem_master,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"aVj" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/holotable,
+/obj/item/storage/toolbox,
+/obj/item/storage/toolbox/electrical,
+/obj/item/storage/toolbox/drone,
+/obj/item/storage/toolbox/green,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"aVF" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "SOL"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"aVK" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "grimy";
+ tag = "icon-grimy"
+ },
+/area/holodeck/source_meetinghall)
+"aWd" = (
+/turf/unsimulated/floor{
+ dir = 9;
+ icon_state = "darkgreen"
+ },
+/area/centcom/zone1)
+"aXk" = (
+/obj/structure/closet/thunderdome/tdred,
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/event_zone)
+"aXF" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"aXG" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ damage_deflection = 75;
+ id_tag = "slaughterhouse_door";
+ locked = 1;
+ name = "Slaughterhouse"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"aYx" = (
+/obj/structure/chair/comfy/beige,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"aYR" = (
+/obj/docking_port/stationary{
+ dwidth = 1;
+ height = 4;
+ id = "pod3_away";
+ name = "recovery ship bay 3";
+ width = 3
+ },
+/turf/space,
+/area/space)
+"aYS" = (
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "rampbottom"
+ },
+/area/centcom/zone1)
+"aZe" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"aZF" = (
+/obj/machinery/vending/chinese/free,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"aZO" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/spiders{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"aZR" = (
+/obj/structure/holowindow,
+/turf/simulated/floor/holofloor{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/holodeck/source_knightarena)
+"bag" = (
+/obj/structure/table/reinforced,
+/obj/item/kitchen/utensil/fork,
+/obj/item/kitchen/utensil/spoon,
+/obj/item/kitchen/knife{
+ pixel_x = 10
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "stage_bleft"
+ },
+/area/syndicate_mothership)
+"bah" = (
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/blops)
+"bai" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"baI" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkpurplecorners"
+ },
+/area/centcom/specops)
+"bbV" = (
+/obj/effect/landmark{
+ name = "Holding Facility"
+ },
+/turf/unsimulated/floor{
+ icon_state = "engine"
+ },
+/area/ninja/holding)
+"bbX" = (
+/obj/machinery/vending/sustenance,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"bcF" = (
+/turf/unsimulated/floor{
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"bdk" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder{
+ pixel_x = -1;
+ pixel_y = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"bdA" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/holotable,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"ben" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/pen,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"beF" = (
+/obj/structure/flora/tree/dead,
+/turf/simulated/floor/holofloor{
+ icon_state = "snow";
+ tag = "icon-snow"
+ },
+/area/holodeck/source_snowfield)
+"bgo" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id_tag = "ERT_turret_shutters";
+ layer = 5;
+ locked = 1;
+ name = "ERT Turret"
+ },
+/obj/structure/window/full/reinforced{
+ armor = list("melee" = 80, "bullet" = 80, "laser" = 0, "energy" = 0, "bomb" = 80, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 100);
+ layer = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"bie" = (
+/obj/structure/table,
+/obj/item/storage/box/beakers,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"big" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/wood,
+/obj/item/trash/candle,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"bip" = (
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"biT" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ damage_deflection = 75;
+ id_tag = "syndicate_jail_cell";
+ locked = 1;
+ name = "Syndicate Jail Cell"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"biX" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"bjs" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"bjW" = (
+/obj/item/gun/magic/staff,
+/obj/item/gun/magic/staff/chaos,
+/obj/item/gun/magic/staff/door,
+/obj/item/gun/magic/staff/animate,
+/obj/item/gun/magic/staff/change,
+/obj/item/gun/magic/staff/chaos,
+/obj/item/gun/magic/staff/door,
+/obj/item/gun/magic/staff/focus,
+/obj/item/gun/magic/staff/healing,
+/obj/item/gun/magic/staff/focus,
+/obj/item/gun/magic/staff/slipping,
+/obj/item/gun/magic/staff/slipping/honkmother,
+/obj/item/gun/magic/staff/spellblade,
+/obj/item/gun/magic/tentacle,
+/obj/item/gun/magic/wand,
+/obj/item/gun/magic/wand/door,
+/obj/item/gun/magic/wand/fireball,
+/obj/item/gun/magic/wand/polymorph,
+/obj/item/gun/magic/wand/resurrection,
+/obj/item/gun/magic/wand/teleport,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"bko" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/item/trash/candle,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"bky" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"bkF" = (
+/turf/unsimulated/floor{
+ icon_state = "carpet5-1"
+ },
+/area/centcom/zone1)
+"bln" = (
+/obj/machinery/door/airlock/hatch/syndicate/command,
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id_tag = "commandcenter";
+ name = "Privacy Shutters"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"bmp" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"bmv" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_r";
+ tag = "icon-propulsion_r (NORTH)"
+ },
+/turf/space,
+/area/space)
+"bmO" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ name = "What?"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"bmW" = (
+/obj/machinery/door_control{
+ id = "SOL_Shutters";
+ name = "Shutters";
+ pixel_y = -25;
+ req_access_txt = "110"
+ },
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen/multi/gold,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"bne" = (
+/obj/structure/bed,
+/obj/item/bedsheet/black,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"bnq" = (
+/turf/unsimulated/floor{
+ icon_state = "carpet9-4"
+ },
+/area/centcom/zone1)
+"bnI" = (
+/obj/machinery/light/small{
+ brightness_range = 2;
+ light_range = 2;
+ nightshift_light_range = 2;
+ tag = "icon-bulb1 (WEST)";
+ throw_range = 2
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"bnM" = (
+/turf/unsimulated/wall{
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "diagonalWall3"
+ },
+/area/space)
+"bpg" = (
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"bpt" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 25
+ },
+/turf/unsimulated/floor{
+ dir = 6;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"bpL" = (
+/obj/vehicle/snowmobile/blue/key,
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"bpZ" = (
+/obj/effect/decal/cleanable/molten_object,
+/turf/unsimulated/floor{
+ icon_state = "hierophant1"
+ },
+/area/wizard_station)
+"bqa" = (
+/obj/machinery/vending/cigarette,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"bqe" = (
+/obj/structure/urinal{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"bqf" = (
+/turf/space,
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/centcom/specops)
+"brx" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 4;
+ height = 11;
+ id = "trade_sol_base";
+ name = "docking bay 2 at Jupiter Station";
+ width = 9
+ },
+/turf/space,
+/area/space)
+"bsn" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluecorners"
+ },
+/area/centcom/specops)
+"bsp" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 2 Office";
+ dir = 1;
+ network = list("CentComm")
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"bst" = (
+/obj/structure/window/reinforced{
+ color = "red"
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 1;
+ layer = 2.9
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"bsB" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"bsQ" = (
+/obj/machinery/photocopier,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"bsY" = (
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"btS" = (
+/obj/structure/toilet,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"bue" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/revolver/grenadelauncher,
+/obj/item/gun/projectile/revolver/grenadelauncher/multi,
+/obj/item/gun/projectile/revolver/grenadelauncher/multi/cyborg,
+/obj/item/gun/grenadelauncher,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"buo" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"buC" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "trade_sol_base";
+ name = "Docking Port"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/trader_station/sol)
+"buD" = (
+/obj/structure/closet/thunderdome/tdgreen,
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/event_zone)
+"bvP" = (
+/obj/structure/flora/grass/both,
+/turf/simulated/floor/holofloor{
+ icon_state = "snow";
+ tag = "icon-snow"
+ },
+/area/holodeck/source_snowfield)
+"bvW" = (
+/obj/machinery/chem_dispenser/beer/upgraded,
+/obj/structure/table/wood/poker,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"bvY" = (
+/obj/machinery/hydroponics/constructable,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"bwi" = (
+/turf/unsimulated/floor{
+ icon_state = "darkbrown"
+ },
+/area/centcom/ferry)
+"bwj" = (
+/mob/living/simple_animal/cow,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"bxc" = (
+/obj/item/toy/syndicateballoon,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcircuit"
+ },
+/area/syndicate_mothership)
+"bym" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"byK" = (
+/obj/structure/lattice,
+/turf/unsimulated/wall,
+/area/centcom/evac)
+"bzH" = (
+/obj/structure/sign/poster/official/twelve_gauge,
+/turf/unsimulated/wall,
+/area/centcom)
+"bAl" = (
+/obj/structure/holohoop{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"bAy" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkgreen"
+ },
+/area/centcom/zone1)
+"bAQ" = (
+/obj/docking_port/stationary{
+ dwidth = 5;
+ height = 7;
+ id = "supply_away";
+ name = "supply centcom";
+ width = 12
+ },
+/turf/space,
+/area/space)
+"bBg" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/zone1)
+"bBn" = (
+/obj/machinery/r_n_d/server/centcom,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"bBX" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/gun/advtaser/mounted,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"bDt" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/centcom/zone1)
+"bDQ" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"bED" = (
+/mob/living/simple_animal/pig,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"bEL" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/trader_station/sol)
+"bGJ" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "asteroid2";
+ tag = "icon-asteroid2 (EAST)"
+ },
+/area/holodeck/source_desert)
+"bHZ" = (
+/obj/machinery/door/airlock{
+ name = "Туалет"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"bIV" = (
+/obj/effect/landmark{
+ name = "Holding Facility"
+ },
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/turf/unsimulated/floor{
+ icon_state = "engine"
+ },
+/area/ninja/holding)
+"bJv" = (
+/obj/structure/holohoop{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"bJA" = (
+/turf/unsimulated/wall/abductor,
+/area/abductor_ship)
+"bJB" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Jail 3";
+ dir = 10;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"bJJ" = (
+/obj/structure/table/reinforced,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,
+/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/specops)
+"bJR" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"bKE" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/shotgun/riot,
+/obj/item/gun/projectile/shotgun/riot/buckshot,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"bKF" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/surgery,
+/obj/item/stack/nanopaste,
+/obj/item/mmi,
+/obj/item/clothing/gloves/color/latex/nitrile,
+/obj/item/stack/nanopaste,
+/turf/unsimulated/floor{
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"bLJ" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "wood_siding2";
+ tag = "icon-wood_siding2 (EAST)"
+ },
+/area/holodeck/source_picnicarea)
+"bMT" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = 27
+ },
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 6;
+ pixel_y = 27
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "rampbottom"
+ },
+/area/centcom/zone1)
+"bMW" = (
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"bNp" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Bathroom";
+ opacity = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"bNs" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/holodeck/source_basketball)
+"bNx" = (
+/obj/item/ammo_box/magazine/laser,
+/obj/item/ammo_box/magazine/laser,
+/obj/item/ammo_box/magazine/laser,
+/obj/item/ammo_box/magazine/laser,
+/obj/item/ammo_box/magazine/laser,
+/obj/item/ammo_box/magazine/laser,
+/obj/item/ammo_box/magazine/laser,
+/obj/item/ammo_box/magazine/laser,
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ layer = 2.9;
+ name = "IK-60 magazine";
+ req_access = null
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/item/ammo_box/magazine/laser,
+/obj/item/ammo_box/magazine/laser,
+/obj/item/ammo_box/magazine/laser,
+/obj/item/ammo_box/magazine/laser,
+/obj/item/ammo_box/magazine/laser,
+/obj/item/ammo_box/magazine/laser,
+/obj/item/ammo_box/magazine/laser,
+/obj/item/ammo_box/magazine/laser,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"bOp" = (
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/court)
+"bOD" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/mob/living/simple_animal/cow,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"bOP" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/evac{
+ pixel_y = 33
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"bOR" = (
+/turf/unsimulated/wall{
+ icon_state = "iron6";
+ tag = "icon-iron6"
+ },
+/area/space)
+"bPo" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/medical_cloning,
+/obj/item/pen/fancy,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"bQG" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/holodeck/source_thunderdomecourt)
+"bQR" = (
+/obj/structure/chair/stool,
+/obj/structure/chair/stool,
+/obj/structure/chair/stool,
+/obj/structure/chair/stool,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"bRh" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"bSc" = (
+/obj/item/gun/energy/dominator,
+/obj/structure/table/wood,
+/obj/item/gun/energy/dominator/no_sibyl,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"bSk" = (
+/obj/docking_port/stationary/transit{
+ dir = 8;
+ dwidth = 2;
+ height = 5;
+ id = "laborcamp_transit";
+ name = "labor in transit";
+ width = 9
+ },
+/turf/space/transit,
+/area/space)
+"bUG" = (
+/obj/structure/filingcabinet/security,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"bVa" = (
+/obj/effect/landmark/abductor/agent,
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"bWl" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/adminconstruction)
+"bWt" = (
+/obj/item/gun/projectile/automatic/pistol/m1911,
+/obj/item/ammo_box/magazine/m45,
+/obj/item/ammo_box/magazine/m45,
+/obj/item/ammo_box/magazine/m45,
+/obj/structure/closet{
+ icon_closed = "cabinet_closed";
+ icon_opened = "cabinet_open";
+ icon_state = "cabinet_closed";
+ req_access_txt = "114"
+ },
+/obj/item/clothing/head/helmet/space/deathsquad/beret,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/under/syndicate/combat,
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/suit/space/deathsquad/officer,
+/obj/item/storage/box/handcuffs,
+/obj/item/storage/box/flashbangs,
+/obj/item/clothing/mask/gas,
+/obj/item/tank/emergency_oxygen/double,
+/obj/item/radio/headset/ert{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/storage/box/centcomofficer,
+/obj/item/clothing/head/beret/centcom/officer,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"bXt" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/event_zone)
+"bXC" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Bathroom";
+ opacity = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"bXF" = (
+/obj/structure/table/wood,
+/obj/machinery/photocopier/faxmachine/longrange/syndie{
+ department = "Syndicate"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"bXY" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/radio/intercom/specops,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"bYr" = (
+/obj/effect/decal/cleanable/molten_object,
+/obj/machinery/light/small{
+ brightness_range = 6;
+ dir = 1;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "hierophant1"
+ },
+/area/wizard_station)
+"bZo" = (
+/obj/machinery/computer/scan_consolenew,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"bZG" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"bZL" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"bZZ" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/pulse/pistol/m1911,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"cah" = (
+/obj/structure/curtain/open/shower/security,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"cbm" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/beakers/bluespace,
+/obj/item/storage/box/beakers/bluespace,
+/obj/item/storage/box/beakers/bluespace,
+/obj/item/reagent_scanner/adv,
+/turf/unsimulated/floor{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"cbF" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 1;
+ id_tag = "ERT_armory_lvl1";
+ layer = 5;
+ locked = 1;
+ name = "Armory level 1";
+ opacity = 0
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"ccm" = (
+/obj/machinery/power/solar_control{
+ id = "portsolar";
+ name = "Aft Port Solar Control"
+ },
+/obj/structure/cable,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"cct" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"ccC" = (
+/obj/machinery/computer/shuttle/sst,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"ccE" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/sign/evac{
+ pixel_y = 33
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"ccG" = (
+/obj/machinery/computer/supplycomp{
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"cdf" = (
+/obj/item/radio/intercom{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"cdB" = (
+/obj/machinery/computer/communications,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/srtops)
+"ceq" = (
+/obj/structure/table,
+/obj/item/circular_saw,
+/obj/item/surgicaldrill{
+ pixel_y = 5
+ },
+/obj/item/kitchen/utensil/fork,
+/obj/item/kitchen/utensil/spoon,
+/obj/item/reagent_containers/spray/pepper{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"ceM" = (
+/obj/structure/flora/grass/brown,
+/turf/simulated/floor/holofloor{
+ icon_state = "snow";
+ tag = "icon-snow"
+ },
+/area/holodeck/source_snowfield)
+"cfZ" = (
+/obj/machinery/sleeper/upgraded{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "grimy"
+ },
+/area/ninja/holding)
+"cgH" = (
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"chH" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkgreynavybluecorner"
+ },
+/area/centcom/specops)
+"chW" = (
+/obj/machinery/door/window{
+ panel_open = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"civ" = (
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"cjZ" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"ckg" = (
+/turf/unsimulated/floor{
+ dir = 10;
+ icon_state = "darkgreen"
+ },
+/area/centcom/zone1)
+"ckB" = (
+/obj/machinery/vending/sovietsoda,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"clg" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "ERT_armory_lvl4";
+ layer = 5;
+ locked = 1;
+ name = "Armory level 4"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkbrown"
+ },
+/area/centcom/specops)
+"clq" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Medical Block";
+ opacity = 1;
+ req_access_txt = "109"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"clr" = (
+/obj/structure/sign/kiddieplaque{
+ desc = "Интересная картина на табличке, с человеком который бежит сразу от паука, блобернаута, демона и другого человека с мечом. \n Сама же картина подписана как x20.";
+ name = "x20";
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/evac)
+"clx" = (
+/turf/unsimulated/floor{
+ dir = 6;
+ icon_state = "darkred"
+ },
+/area/centcom/zone1)
+"clX" = (
+/obj/structure/table/wood/poker,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"cmf" = (
+/obj/structure/table/reinforced,
+/obj/item/nullrod/salt,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"cmK" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"cmZ" = (
+/obj/machinery/door/window{
+ dir = 8;
+ panel_open = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"cnh" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 1 Gamming Room";
+ dir = 1;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "rampbottom"
+ },
+/area/centcom/zone1)
+"cnx" = (
+/obj/machinery/vending/liberationstation,
+/turf/unsimulated/floor{
+ icon_state = "dark";
+ tag = "icon-dark"
+ },
+/area/admin)
+"cnM" = (
+/obj/structure/table/wood/poker,
+/obj/item/dice/d20,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"coa" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"cok" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"cos" = (
+/obj/structure/table/holotable,
+/obj/item/beach_ball/holoball/baseball,
+/obj/item/melee/baseball_bat,
+/obj/item/melee/baseball_bat,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"coD" = (
+/obj/machinery/bodyscanner,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"cpC" = (
+/obj/structure/table/wood,
+/obj/item/grenade/smokebomb,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"cpE" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ name = "Syndicate Base"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"cpK" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"cri" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/documents/syndicate/blue,
+/obj/item/documents/syndicate/mining,
+/obj/item/documents/syndicate/red,
+/obj/item/documents/syndicate/yellow,
+/obj/item/documents/syndicate/yellow/trapped,
+/obj/item/documents/syndicate,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"crq" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 1 Gamming Room 2";
+ dir = 1;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkgreen"
+ },
+/area/centcom/zone1)
+"crS" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 9;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/ussp_ship)
+"cst" = (
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"cth" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien22"
+ },
+/area/abductor_ship)
+"ctn" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/holodeck/source_emptycourt)
+"ctJ" = (
+/obj/structure/table/wood,
+/obj/item/dice/d20,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"ctN" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkred"
+ },
+/area/centcom/zone1)
+"ctP" = (
+/turf/unsimulated/floor{
+ icon_state = "gcircuit"
+ },
+/area/event_zone)
+"ctX" = (
+/obj/structure/chair/sofa/right{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"cue" = (
+/obj/structure/table/wood,
+/obj/item/paper/deltainfo,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"cvw" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/stack/spacecash,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"cxi" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 13
+ },
+/obj/structure/mirror{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/jail)
+"cxA" = (
+/obj/structure/table/holotable,
+/obj/item/beach_ball,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/obj/item/beach_ball/holoball,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"cxQ" = (
+/turf/space/transit,
+/area/space)
+"czl" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove,
+/obj/item/clothing/gloves/boxing/hologlove,
+/obj/item/clothing/gloves/boxing/hologlove,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"cBc" = (
+/obj/machinery/computer/arcade,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"cBz" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 1-2";
+ network = list("CentComm")
+ },
+/obj/structure/chair,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"cBM" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/obj/machinery/vending/coffee,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"cCd" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 6;
+ tag = "icon-fakewindows (NORTHEAST)"
+ },
+/area/wizard_station)
+"cCw" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"cCy" = (
+/obj/effect/landmark/abductor/scientist{
+ team = 4
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"cCA" = (
+/obj/effect/landmark{
+ name = "ninjastart"
+ },
+/turf/unsimulated/floor{
+ icon_state = "grimy"
+ },
+/area/ninja/holding)
+"cCP" = (
+/obj/structure/table/reinforced,
+/obj/item/wirecutters{
+ pixel_y = 18
+ },
+/obj/item/flashlight{
+ pixel_y = 4
+ },
+/obj/item/instrument/bikehorn{
+ pixel_y = -2
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"cCR" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1;
+ layer = 5;
+ pixel_y = -2
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"cCY" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 33;
+ pixel_y = -7
+ },
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/specops)
+"cDm" = (
+/obj/item/tank/nitrogen,
+/obj/structure/table/wood,
+/obj/item/tank/nitrogen,
+/obj/item/clothing/mask/breath/vox,
+/obj/item/clothing/mask/breath/vox,
+/obj/item/clothing/mask/breath/vox,
+/obj/item/tank/nitrogen,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"cDn" = (
+/obj/machinery/vending/engineering,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/srtops)
+"cEa" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/computer/cryopod/robot{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/blops)
+"cEj" = (
+/obj/structure/table/reinforced,
+/obj/effect/landmark{
+ name = "Commando_Manual"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/blops)
+"cEG" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"cEI" = (
+/obj/machinery/door_control{
+ id = "sst_ready";
+ name = "SST Base Access";
+ pixel_x = -6;
+ pixel_y = 6;
+ req_access_txt = "153"
+ },
+/obj/machinery/door_control{
+ id = "sst_tele";
+ name = "SST Teleporter Access";
+ pixel_x = 6;
+ pixel_y = 6;
+ req_access_txt = "153"
+ },
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"cEK" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/space)
+"cFi" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/centcom/bridge)
+"cFt" = (
+/obj/structure/bookcase,
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/jail)
+"cGp" = (
+/obj/machinery/abductor/console{
+ team = 4
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"cHq" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Weapons";
+ req_access = null
+ },
+/obj/item/ammo_box/magazine/sniper_rounds/penetrator,
+/obj/item/ammo_box/magazine/sniper_rounds/penetrator,
+/obj/item/ammo_box/magazine/sniper_rounds/penetrator,
+/obj/item/ammo_box/magazine/sniper_rounds/penetrator,
+/obj/item/ammo_box/magazine/sniper_rounds/penetrator,
+/obj/item/ammo_box/magazine/sniper_rounds/penetrator,
+/obj/item/ammo_box/magazine/sniper_rounds/penetrator,
+/obj/item/ammo_box/magazine/sniper_rounds/penetrator,
+/obj/item/ammo_box/magazine/sniper_rounds/penetrator,
+/obj/item/ammo_box/magazine/sniper_rounds/penetrator,
+/obj/item/ammo_box/magazine/sniper_rounds/penetrator,
+/obj/item/ammo_box/magazine/sniper_rounds/penetrator,
+/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/item/gun/projectile/automatic/sniper_rifle{
+ name = "ASVK"
+ },
+/obj/item/gun/projectile/automatic/sniper_rifle{
+ name = "ASVK"
+ },
+/obj/item/gun/projectile/automatic/sniper_rifle{
+ name = "ASVK"
+ },
+/obj/item/gun/projectile/automatic/sniper_rifle{
+ name = "ASVK"
+ },
+/obj/item/gun/projectile/automatic/sniper_rifle{
+ name = "ASVK"
+ },
+/obj/item/gun/projectile/automatic/sniper_rifle{
+ name = "ASVK"
+ },
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 1;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/ussp_ship)
+"cHw" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/item/cultivator,
+/obj/item/cultivator,
+/obj/item/cultivator,
+/obj/item/cultivator,
+/obj/item/shovel/spade,
+/obj/item/shovel/spade,
+/obj/item/shovel/spade,
+/obj/item/shovel/spade,
+/obj/item/hatchet,
+/obj/item/hatchet,
+/obj/item/hatchet,
+/obj/item/hatchet,
+/obj/item/seeds/gatfruit,
+/obj/item/seeds/cherry/bomb,
+/obj/item/seeds/ambrosia/gaia,
+/obj/item/seeds/ambrosia/gaia,
+/obj/item/seeds/ambrosia/gaia,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"cHF" = (
+/turf/unsimulated/floor{
+ icon_state = "rcircuit"
+ },
+/area/event_zone)
+"cHZ" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/wall{
+ icon_state = "iron12";
+ tag = "icon-iron12"
+ },
+/area/space)
+"cIb" = (
+/obj/structure/bed,
+/obj/item/bedsheet/syndie,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"cId" = (
+/obj/machinery/computer/library/checkout,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"cIq" = (
+/obj/machinery/gameboard,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/jail)
+"cIF" = (
+/obj/structure/table,
+/obj/item/kitchen/knife/butcher,
+/obj/item/melee/baseball_bat,
+/obj/item/clothing/mask/muzzle{
+ pixel_y = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"cJh" = (
+/obj/structure/filingcabinet/security,
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"cJn" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = -27
+ },
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 6;
+ pixel_y = -27
+ },
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"cKr" = (
+/obj/structure/table/abductor{
+ name = "table"
+ },
+/turf/unsimulated/floor{
+ icon_state = "rcircuit"
+ },
+/area/event_zone)
+"cKw" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/beer/upgraded,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"cLn" = (
+/obj/structure/chair/sofa/right{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"cLr" = (
+/obj/structure/table/reinforced,
+/obj/item/assembly/infra,
+/obj/item/assembly/infra,
+/obj/item/assembly/infra,
+/obj/item/assembly/infra,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/item/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"cLu" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/obj/structure/chair/sofa{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"cLA" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"cLD" = (
+/obj/structure/table/abductor{
+ name = "table"
+ },
+/turf/unsimulated/floor{
+ icon_state = "bcircuit"
+ },
+/area/event_zone)
+"cMS" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"cNh" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/obj/structure/chair/sofa/left{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"cNr" = (
+/obj/machinery/door/poddoor/impassable{
+ density = 0;
+ id_tag = "nukeop_base";
+ opacity = 0
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"cNR" = (
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder{
+ pixel_y = 5
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 10;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"cNX" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/snacks/baguette = 10, /obj/item/reagent_containers/food/snacks/applepie = 10, /obj/item/reagent_containers/food/snacks/applepie = 10, /obj/item/reagent_containers/food/snacks/soup/bloodsoup = 10, /obj/item/reagent_containers/food/snacks/boiledrice = 10, /obj/item/reagent_containers/food/snacks/carrotfries = 10, /obj/item/reagent_containers/food/drinks/cans/cola = 10, "" = 70);
+ name = "Food CC Spawner #1"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"cOg" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/electrical,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/admin)
+"cOC" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"cOD" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"cPc" = (
+/obj/machinery/computer/shuttle/trade/sol,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/trader_station/sol)
+"cPp" = (
+/obj/structure/chair/comfy/red{
+ color = "#FFFFFF";
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"cPv" = (
+/obj/machinery/light{
+ dir = 1;
+ switchcount = 50
+ },
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/evac)
+"cPV" = (
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/evac)
+"cPX" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/mashed_potatoes,
+/obj/item/reagent_containers/food/snacks/mashed_potatoes,
+/obj/item/reagent_containers/food/snacks/mashed_potatoes,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"cQL" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/rock,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"cQQ" = (
+/obj/structure/table/wood/poker,
+/obj/machinery/door_control{
+ id = "eventroom";
+ name = "Ready room";
+ pixel_x = -6;
+ pixel_y = 6;
+ req_access_txt = "150"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/event_zone)
+"cRR" = (
+/obj/structure/table/wood/poker,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"cRS" = (
+/obj/machinery/prize_counter,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"cTd" = (
+/obj/structure/table/reinforced,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg,
+/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy,
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkredfull"
+ },
+/area/centcom/specops)
+"cTS" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ninja/holding)
+"cTT" = (
+/obj/structure/chair/stool,
+/obj/machinery/computer/security/telescreen{
+ desc = "Damn, they better have /tg/thechannel on these things.";
+ icon_state = "entertainment";
+ name = "Entertainment monitor";
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"cVo" = (
+/turf/unsimulated/floor{
+ icon_state = "bcircuit"
+ },
+/area/event_zone)
+"cVG" = (
+/obj/structure/table/wood/poker,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"cVV" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"cWI" = (
+/obj/structure/table/reinforced,
+/obj/item/stock_parts/cell/high/plus{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/item/stock_parts/cell/high/plus{
+ pixel_y = 8
+ },
+/obj/item/stock_parts/cell/high/plus{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/item/aicard{
+ layer = 2.9
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"cWL" = (
+/obj/structure/table/wood/poker,
+/obj/item/pizzabox,
+/obj/item/pizzabox,
+/obj/item/kitchen/knife,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"cXT" = (
+/turf/unsimulated/wall{
+ icon_state = "sandstone6"
+ },
+/area/wizard_station)
+"cYu" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Special Ops. Armory 3";
+ dir = 4;
+ network = list("CentComm")
+ },
+/obj/machinery/vending/security,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"cYJ" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/mindflayer,
+/obj/item/gun/energy/xray,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"cYU" = (
+/obj/item/gun/throw/piecannon,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"cZd" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"dau" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ layer = 5;
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"daG" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/centcom/bridge)
+"daV" = (
+/obj/structure/table/reinforced,
+/obj/item/radio/beacon/syndicate/bomb{
+ pixel_y = 8
+ },
+/obj/item/radio/beacon/syndicate/bomb{
+ pixel_y = 4
+ },
+/obj/item/radio/beacon/syndicate/bomb,
+/obj/item/grenade/syndieminibomb{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/grenade/syndieminibomb{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/grenade/syndieminibomb{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"dbc" = (
+/obj/structure/table/wood/poker,
+/obj/item/toy/cards/deck,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"dbl" = (
+/obj/structure/chair/sofa/right,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"dcD" = (
+/turf/unsimulated/floor{
+ icon_state = "darkblue"
+ },
+/area/centcom/bridge)
+"des" = (
+/turf/space,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3";
+ tag = "icon-swall3"
+ },
+/area/shuttle/gamma/space)
+"dfd" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcircuit"
+ },
+/area/syndicate_mothership)
+"dgj" = (
+/obj/structure/table,
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"dgy" = (
+/obj/machinery/smartfridge,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"dgY" = (
+/obj/effect/landmark/abductor/scientist{
+ team = 2
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"dhe" = (
+/turf/unsimulated/wall{
+ icon_state = "iron0"
+ },
+/area/syndicate_mothership)
+"dhN" = (
+/obj/machinery/vending/hydroseeds{
+ contraband = list();
+ emagged = 1;
+ products = list(/obj/item/seeds/aloe = 3, /obj/item/seeds/ambrosia = 3, /obj/item/seeds/apple = 3, /obj/item/seeds/banana = 3, /obj/item/seeds/berry = 3, /obj/item/seeds/cabbage = 3, /obj/item/seeds/carrot = 3, /obj/item/seeds/cherry = 3, /obj/item/seeds/chanter = 3, /obj/item/seeds/chili = 3, /obj/item/seeds/cocoapod = 3, /obj/item/seeds/coffee = 3, /obj/item/seeds/comfrey = 3, /obj/item/seeds/corn = 3, /obj/item/seeds/cotton = 3, /obj/item/seeds/nymph = 3, /obj/item/seeds/eggplant = 3, /obj/item/seeds/garlic = 3, /obj/item/seeds/grape = 3, /obj/item/seeds/grass = 3, /obj/item/seeds/lemon = 3, /obj/item/seeds/lime = 3, /obj/item/seeds/onion = 3, /obj/item/seeds/orange = 3, /obj/item/seeds/peanuts = 3, /obj/item/seeds/pineapple = 3, /obj/item/seeds/poppy = 3, /obj/item/seeds/potato = 3, /obj/item/seeds/pumpkin = 3, /obj/item/seeds/replicapod = 3, /obj/item/seeds/wheat/rice = 3, /obj/item/seeds/soya = 3, /obj/item/seeds/sugarcane = 3, /obj/item/seeds/sunflower = 3, /obj/item/seeds/tea = 3, /obj/item/seeds/tobacco = 3, /obj/item/seeds/tomato = 3, /obj/item/seeds/tower = 3, /obj/item/seeds/watermelon = 3, /obj/item/seeds/wheat = 3, /obj/item/seeds/whitebeet = 3, /obj/item/seeds/cannabis = 3, /obj/item/seeds/amanita = 2, /obj/item/seeds/fungus = 3, /obj/item/seeds/glowshroom = 2, /obj/item/seeds/liberty = 2, /obj/item/seeds/nettle = 2, /obj/item/seeds/plump = 2, /obj/item/seeds/reishi = 2, /obj/item/seeds/starthistle = 2, /obj/item/seeds/random = 2)
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"dil" = (
+/obj/machinery/light{
+ dir = 8;
+ light_range = 5
+ },
+/obj/machinery/door_control{
+ id = "nukeop_ready";
+ name = "Shuttle Dock Door";
+ pixel_x = -25;
+ req_access_txt = "151";
+ specialfunctions = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"din" = (
+/obj/machinery/vending/hydronutrients{
+ contraband = list();
+ emagged = 1;
+ products = list(/obj/item/reagent_containers/glass/bottle/nutrient/ez = 20, /obj/item/reagent_containers/glass/bottle/nutrient/l4z = 13, /obj/item/reagent_containers/glass/bottle/nutrient/rh = 6, /obj/item/reagent_containers/spray/pestspray = 20, /obj/item/reagent_containers/syringe = 5, /obj/item/storage/bag/plants = 5, /obj/item/cultivator = 3, /obj/item/shovel/spade = 3, /obj/item/plant_analyzer = 4, /obj/item/reagent_containers/glass/bottle/ammonia = 10, /obj/item/reagent_containers/glass/bottle/diethylamine = 5)
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"dio" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/storage/box/disks_plantgene,
+/obj/item/storage/box/disks_plantgene,
+/obj/item/storage/box/disks_plantgene,
+/obj/item/storage/box/disks_plantgene,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"dip" = (
+/obj/structure/table/holotable,
+/obj/machinery/readybutton,
+/turf/simulated/floor/holofloor{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/holodeck/source_thunderdomecourt)
+"diO" = (
+/mob/living/simple_animal/chicken,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"dje" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/barrier{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/barrier{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/storage/box/barrier{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/storage/box/barrier{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/barrier{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/barrier{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 33;
+ pixel_y = -7
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/specops)
+"djn" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "sand";
+ name = "Soft sand"
+ },
+/area/holodeck/source_beach)
+"djx" = (
+/obj/effect/decal/remains/human,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"djG" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"dkg" = (
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"dkl" = (
+/obj/machinery/light,
+/obj/machinery/cryopod/right,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/trader_station/sol)
+"dks" = (
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"dkV" = (
+/obj/structure/table/wood/fancy/black,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Central Command"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"dli" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/smartfridge/disks,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"dlm" = (
+/turf/unsimulated/floor{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"dlx" = (
+/obj/structure/chair/sofa/right{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"dlU" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window{
+ dir = 1;
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/gun/energy/pulse/pistol/m1911,
+/obj/item/gun/energy/pulse/pistol/m1911,
+/obj/item/gun/energy/pulse/pistol/m1911,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"dmb" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"dnh" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 3;
+ pixel_y = -30
+ },
+/obj/item/multitool,
+/obj/item/melee/baseball_bat{
+ desc = "No horny";
+ embedded_pain_chance = 100;
+ hitsound = 'sound/effects/hit_kick.ogg';
+ name = "No horny special bat";
+ tool_volume = 80
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"dnq" = (
+/obj/item/radio/intercom/syndicate{
+ pixel_y = 5
+ },
+/obj/structure/table/wood,
+/obj/machinery/door_control{
+ id = "commandcenter";
+ name = "Privacy Shutters";
+ pixel_x = -7;
+ pixel_y = -3;
+ req_access_txt = "153"
+ },
+/obj/machinery/door_control{
+ id = "syndicate_bridge";
+ name = "Bridge Blastdoor";
+ pixel_x = 7;
+ pixel_y = -3;
+ req_access_txt = "153"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"dnA" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/mob/living/simple_animal/turkey,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"dnT" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_r";
+ tag = "icon-propulsion_r (NORTH)"
+ },
+/turf/space,
+/turf/space,
+/area/space)
+"doe" = (
+/obj/structure/table/wood,
+/obj/machinery/kitchen_machine/microwave/upgraded{
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"dog" = (
+/obj/item/radio/intercom{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "stairs-m"
+ },
+/area/centcom/evac)
+"dol" = (
+/obj/machinery/computer/teleporter{
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"dqw" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 1;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom)
+"drJ" = (
+/turf/unsimulated/floor{
+ icon_state = "stairs-m"
+ },
+/area/centcom/evac)
+"drU" = (
+/obj/structure/chair/sofa/left{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"dsW" = (
+/obj/structure/flora/tree/palm,
+/obj/item/beach_ball,
+/turf/unsimulated/beach/sand,
+/area/centcom/evac)
+"dts" = (
+/turf/simulated/floor/holofloor{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/holodeck/source_basketball)
+"duF" = (
+/obj/item/storage/secure/safe{
+ pixel_y = 30
+ },
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/structure/mirror{
+ pixel_x = -32
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"duM" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ tag = "icon-fakewindows (EAST)"
+ },
+/area/syndicate_mothership)
+"duQ" = (
+/obj/machinery/door/window{
+ color = null;
+ dir = 2;
+ opacity = 1;
+ panel_open = 1
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"dvF" = (
+/obj/structure/closet/secure_closet/contractor,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"dwX" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/chem_master,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"dxr" = (
+/obj/machinery/conveyor{
+ id = "SOL"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"dxC" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"dxF" = (
+/turf/unsimulated/wall{
+ icon_state = "sandstone9"
+ },
+/area/wizard_station)
+"dxO" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ name = "Vault";
+ req_access_txt = "153"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"dyv" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/speargun,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"dyC" = (
+/obj/structure/chair/comfy/purp{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpetnoconnect"
+ },
+/area/wizard_station)
+"dzo" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/kinetic_accelerator,
+/obj/item/gun/energy/kinetic_accelerator/cyborg,
+/obj/item/gun/energy/kinetic_accelerator/experimental,
+/obj/item/gun/energy/kinetic_accelerator/minebot,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"dzB" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/surgery{
+ pixel_y = -6
+ },
+/obj/item/storage/toolbox/syndicate{
+ pixel_y = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"dzC" = (
+/turf/unsimulated/wall{
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_end";
+ tag = "icon-wall3 (NORTH)"
+ },
+/area/space)
+"dzV" = (
+/obj/machinery/door/window{
+ color = null;
+ dir = 8;
+ opacity = 1;
+ panel_open = 1
+ },
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"dAi" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/mob/living/simple_animal/chicken,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"dAs" = (
+/obj/structure/table/reinforced/brass,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"dAx" = (
+/obj/structure/table/wood/poker,
+/obj/item/toy/plushie/coffee_fox{
+ desc = "Что делает такая прекрасная лиса в таком ужасном месте? Возможно она кого то символизирует, но скорее всего это лишь ваши фантазии. \n Вы замечаете небольшую заметку на бирке игрушки, однако все что удается вам разглядеть это Sl-end-er.";
+ name = "Лиса?"
+ },
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"dAK" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/hardsuit/syndi,
+/obj/item/clothing/suit/space/hardsuit/syndi/elite{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"dAR" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"dBu" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Bathroom";
+ opacity = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"dBz" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien18"
+ },
+/area/abductor_ship)
+"dBD" = (
+/obj/structure/flora/tree/pine,
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"dCf" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/weightmachine/weightlifter,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"dCl" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/beer,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"dCo" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ req_access_txt = "109"
+ },
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"dCZ" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"dDe" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/vending/medical,
+/obj/machinery/light{
+ dir = 1;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet01"
+ },
+/area/centcom/evac)
+"dEc" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkyellowcorners"
+ },
+/area/centcom/specops)
+"dEh" = (
+/obj/structure/ninjatele{
+ pixel_y = 25
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ninja/holding)
+"dEq" = (
+/obj/machinery/door/airlock{
+ name = "Toilet"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/trader_station/sol)
+"dEy" = (
+/turf/unsimulated/wall,
+/area/centcom/evac)
+"dFy" = (
+/obj/structure/table,
+/obj/item/reagent_containers/applicator/dual,
+/obj/item/reagent_containers/applicator/dual,
+/obj/item/healthanalyzer/advanced,
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet02"
+ },
+/area/centcom/evac)
+"dFP" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "stage_bleft"
+ },
+/area/syndicate_mothership)
+"dFZ" = (
+/obj/structure/closet,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/head/panzer{
+ desc = "An oldschool military softcap.";
+ name = "old military cap"
+ },
+/obj/item/clothing/head/panzer{
+ desc = "An oldschool military softcap.";
+ name = "old military cap"
+ },
+/obj/item/clothing/under/soviet,
+/obj/item/clothing/under/soviet,
+/obj/item/clothing/under/soviet,
+/obj/item/clothing/under/soviet,
+/obj/item/clothing/under/soviet,
+/obj/item/clothing/under/soviet,
+/obj/item/clothing/head/ushanka,
+/obj/item/clothing/head/ushanka,
+/obj/item/clothing/head/ushanka,
+/obj/item/clothing/head/ushanka,
+/obj/item/clothing/head/ushanka,
+/obj/item/clothing/head/ushanka,
+/obj/item/clothing/head/panzer{
+ desc = "An oldschool military softcap.";
+ name = "old military cap"
+ },
+/obj/item/clothing/head/panzer{
+ desc = "An oldschool military softcap.";
+ name = "old military cap"
+ },
+/obj/item/clothing/head/panzer{
+ desc = "An oldschool military softcap.";
+ name = "old military cap"
+ },
+/obj/item/clothing/head/panzer{
+ desc = "An oldschool military softcap.";
+ name = "old military cap"
+ },
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 1;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"dGv" = (
+/obj/structure/mineral_door/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/trader_station/sol)
+"dGD" = (
+/turf/unsimulated/floor{
+ icon_state = "grimy"
+ },
+/area/ninja/holding)
+"dGH" = (
+/obj/structure/urinal{
+ pixel_y = 28
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/trader_station/sol)
+"dGO" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/donkpockets,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"dHz" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"dHJ" = (
+/obj/structure/reagent_dispensers/spacecleanertank{
+ pixel_y = 30
+ },
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = -4
+ },
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 4
+ },
+/obj/structure/table,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet02"
+ },
+/area/centcom/evac)
+"dJg" = (
+/turf/unsimulated/floor{
+ icon_state = "darkred"
+ },
+/area/adminconstruction)
+"dJi" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Jail 7";
+ dir = 10;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"dJo" = (
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"dJV" = (
+/obj/item/flag/wiz,
+/obj/machinery/light/small{
+ brightness_range = 6;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet09"
+ },
+/area/wizard_station)
+"dKc" = (
+/obj/machinery/vending/medical,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet02"
+ },
+/area/centcom/evac)
+"dKv" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Auxillary Shuttles";
+ opacity = 1;
+ req_access_txt = "106"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/ferry)
+"dKN" = (
+/obj/structure/bed,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"dLs" = (
+/obj/structure/closet/crate/freezer{
+ desc = "A crate.";
+ name = "Medical crate"
+ },
+/obj/item/reagent_containers/iv_bag/salglu,
+/obj/item/reagent_containers/iv_bag/blood/OPlus,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/blood/BPlus,
+/obj/item/reagent_containers/iv_bag/blood/BMinus,
+/obj/item/reagent_containers/iv_bag/blood/APlus,
+/obj/item/reagent_containers/iv_bag/blood/AMinus,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet02"
+ },
+/area/centcom/evac)
+"dMS" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkbluecorners"
+ },
+/area/centcom/jail)
+"dNa" = (
+/obj/machinery/portable_atmospherics/canister/oxygen{
+ name = "Canister: \[O2] (CRYO)"
+ },
+/obj/machinery/atmospherics/unary/portables_connector{
+ name = "Connector Port (Air Supply)"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet02"
+ },
+/area/centcom/evac)
+"dNX" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone3)
+"dOJ" = (
+/turf/simulated/floor/holofloor{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/holodeck/source_basketball)
+"dOV" = (
+/obj/machinery/atmospherics/unary/cold_sink/freezer,
+/obj/machinery/light{
+ dir = 1;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet02"
+ },
+/area/centcom/evac)
+"dPP" = (
+/obj/structure/sink{
+ pixel_y = 25
+ },
+/obj/structure/mirror{
+ layer = 5;
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"dRt" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/fans/tiny,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "rampbottom"
+ },
+/area/ussp_ship)
+"dRv" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/toxin,
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/adv,
+/obj/item/storage/firstaid/brute,
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet02"
+ },
+/area/centcom/evac)
+"dRK" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet02"
+ },
+/area/centcom/evac)
+"dRR" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/light,
+/area/secret/gaybar)
+"dSe" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/clothing/suit/armor/tdome/green,
+/obj/item/clothing/under/color/green,
+/obj/item/holo/esword/green,
+/turf/simulated/floor/holofloor{
+ icon_state = "green"
+ },
+/area/holodeck/source_thunderdomecourt)
+"dSL" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"dSX" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood-broken4"
+ },
+/area/wizard_station)
+"dTj" = (
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/jail)
+"dUz" = (
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"dUB" = (
+/obj/structure/table/wood,
+/obj/machinery/light/small{
+ brightness_range = 2;
+ dir = 8;
+ light_range = 2;
+ nightshift_light_range = 2;
+ tag = "icon-bulb1 (WEST)";
+ throw_range = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/evac)
+"dUX" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien5"
+ },
+/area/abductor_ship)
+"dUZ" = (
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave/upgraded,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja/holding)
+"dVb" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/obj/structure/closet/crate/can,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"dVm" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Restroom";
+ opacity = 1;
+ req_access_txt = "150"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"dVK" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 4;
+ tag = "icon-shower (EAST)"
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"dVO" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/ninja/holding)
+"dWu" = (
+/obj/structure/table/wood,
+/obj/item/toy/cards/deck,
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 1 Droom";
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"dWz" = (
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"dWH" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -4
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"dWZ" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"dYk" = (
+/obj/structure/dresser,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"dYF" = (
+/turf/simulated/floor/holofloor,
+/area/holodeck/source_emptycourt)
+"dYH" = (
+/obj/structure/table/holotable,
+/turf/simulated/floor/holofloor{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/holodeck/source_knightarena)
+"dYI" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "ERT_turret_shutters";
+ layer = 5;
+ locked = 1;
+ name = "ERT Turret"
+ },
+/obj/structure/window/full/reinforced{
+ armor = list("melee" = 80, "bullet" = 80, "laser" = 0, "energy" = 0, "bomb" = 80, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 100);
+ layer = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"dZk" = (
+/obj/machinery/porta_turret/syndicate/pod,
+/turf/simulated/shuttle/wall{
+ icon_state = "diagonalWall3";
+ tag = "icon-diagonalWall3"
+ },
+/area/shuttle/assault_pod)
+"dZz" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"dZO" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/pistol/deagle,
+/obj/item/gun/projectile/automatic/pistol/deagle/camo,
+/obj/item/gun/projectile/automatic/pistol/deagle/gold,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"dZP" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/snacks/donut,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"dZY" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/seed_extractor,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"eab" = (
+/obj/machinery/door/airlock/hatch/syndicate/command,
+/obj/machinery/door/poddoor/impassable{
+ id_tag = "syndicate_bridge";
+ layer = 2.8;
+ name = "Bridge"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"eac" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Medical Block 2";
+ dir = 4;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"eak" = (
+/obj/structure/sign/restroom{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"ebg" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ layer = 2.9
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"ebh" = (
+/obj/structure/table/holotable,
+/obj/item/chair,
+/obj/item/chair,
+/obj/item/chair,
+/obj/item/chair,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"ebR" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/space,
+/area/ussp_ship)
+"ecl" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/assault_pod)
+"ecm" = (
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/jail)
+"edY" = (
+/obj/machinery/vending/cigarette,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"eed" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"eeC" = (
+/obj/effect/decal/cleanable/molten_object,
+/obj/machinery/light/small{
+ brightness_range = 6;
+ dir = 8;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "hierophant1"
+ },
+/area/wizard_station)
+"eeN" = (
+/obj/structure/mopbucket,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/soap,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/trader_station/sol)
+"efo" = (
+/obj/structure/closet/walllocker/emerglocker/north{
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/evac)
+"efz" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/item/storage/box/deathimp,
+/obj/item/storage/box/deathimp,
+/obj/item/storage/box/deathimp,
+/obj/item/storage/box/chef_rare_ingredients_kit,
+/obj/item/storage/box/bartender_rare_ingredients_kit,
+/obj/item/storage/box/fingerprints,
+/obj/item/storage/box/fingerprints,
+/obj/item/storage/box/swabs,
+/obj/item/storage/box/swabs,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"efG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/evac)
+"egi" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/evac)
+"egj" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/mashed_potatoes,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"egq" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Prison Cell";
+ opacity = 1
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/poddoor/shutters{
+ id_tag = "CC_space_jail_cell";
+ layer = 5;
+ locked = 1;
+ name = "Central Command Jail"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"egx" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "asteroid1";
+ tag = "icon-asteroid1 (EAST)"
+ },
+/area/holodeck/source_desert)
+"egZ" = (
+/obj/structure/bookcase/manuals,
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"ehc" = (
+/obj/machinery/light/spot,
+/obj/item/flag/syndi,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"ehx" = (
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"ehY" = (
+/obj/mecha/combat/durand/old{
+ color = "#77895C";
+ desc = "Improved Armored Heavy Mech with USSP Symbol";
+ name = "TU-802"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/ussp_ship)
+"ejr" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"eka" = (
+/obj/structure/toilet,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/jail)
+"ekQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/evac)
+"elp" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove{
+ icon_state = "boxinggreen";
+ item_state = "boxinggreen"
+ },
+/obj/item/clothing/gloves/boxing/hologlove{
+ icon_state = "boxinggreen";
+ item_state = "boxinggreen"
+ },
+/obj/item/clothing/gloves/boxing/hologlove{
+ icon_state = "boxinggreen";
+ item_state = "boxinggreen"
+ },
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"elZ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = 5
+ },
+/obj/item/storage/lockbox/t4{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/item/storage/lockbox/t4{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/item/storage/lockbox/t4{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/item/storage/lockbox/t4{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/item/storage/lockbox/t4{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/item/storage/lockbox/t4{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = 10
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = 10
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = 10
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = 10
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = 10
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = 10
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = 10
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkredfull"
+ },
+/area/centcom/specops)
+"emj" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"emV" = (
+/obj/structure/closet/crate/can,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"ene" = (
+/turf/unsimulated/wall{
+ dir = 1;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_end";
+ tag = "icon-wall3 (NORTH)"
+ },
+/area/space)
+"enf" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ name = "SST Ready Room"
+ },
+/obj/machinery/door/poddoor/impassable{
+ id_tag = "sst_ready";
+ layer = 2.8
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"eod" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"eoB" = (
+/obj/machinery/chem_dispenser/mutagensaltpeter,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"eoM" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet4-0";
+ tag = "icon-carpet4-0 (EAST)"
+ },
+/area/holodeck/source_meetinghall)
+"epr" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/event_zone)
+"eqh" = (
+/obj/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"eqF" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 4;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/ninja/holding)
+"erc" = (
+/obj/machinery/chem_dispenser/supgraded,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"erl" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"esx" = (
+/obj/machinery/bodyscanner,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"esE" = (
+/turf/unsimulated/wall{
+ icon_state = "sandstone1"
+ },
+/area/wizard_station)
+"etk" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/pistol/enforcer,
+/obj/item/gun/projectile/automatic/pistol/enforcer/lethal,
+/obj/item/gun/projectile/automatic/pistol/enforcer/security,
+/obj/item/gun/projectile/automatic/toy/pistol/enforcer,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"ets" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/event_zone)
+"evr" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/reagent_containers/food/snacks/candy/cotton/blue,
+/turf/unsimulated/floor{
+ icon_state = "carpet5-1"
+ },
+/area/wizard_station)
+"evU" = (
+/turf/unsimulated/floor{
+ icon_state = "carpet7-3"
+ },
+/area/centcom/zone1)
+"ewg" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/space,
+/area/ussp_ship)
+"ewl" = (
+/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated,
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100)
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkredfull"
+ },
+/area/centcom/specops)
+"ewu" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/sign/evac{
+ pixel_y = 33
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"ewA" = (
+/obj/structure/table/wood,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 4;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"ewW" = (
+/obj/item/radio/intercom/syndicate{
+ pixel_x = 32
+ },
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (WEST)"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"ewX" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/biogenerator,
+/obj/item/reagent_containers/glass/bucket,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"exo" = (
+/obj/structure/curtain/open/shower/centcom,
+/obj/machinery/shower,
+/turf/simulated/floor/beach/water{
+ icon_state = "seadeep"
+ },
+/area/syndicate_mothership)
+"eyW" = (
+/obj/structure/closet/secure_closet/syndicate_officer,
+/obj/item/suppressor,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"ezi" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/holodeck/source_boxingcourt)
+"ezp" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/mob/living/simple_animal/turkey,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"ezs" = (
+/obj/structure/sign/restroom{
+ pixel_y = 30
+ },
+/turf/unsimulated/wall,
+/area/centcom)
+"ezt" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 6;
+ pixel_y = -27
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = -27
+ },
+/obj/structure/sink{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/evac)
+"ezv" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/mech_bay_recharge_port/upgraded,
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/gamma/space)
+"ezB" = (
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"ezE" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"eAm" = (
+/obj/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/mecha/combat/marauder/seraph/loaded{
+ armor = list("melee" = 80, "bullet" = 80, "laser" = 80, "energy" = 80, "bomb" = 80, "bio" = 80, "rad" = 80, "fire" = 100, "acid" = 100);
+ name = "D2";
+ operation_req_access = list(109)
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"eAI" = (
+/obj/mecha/combat/gygax/ert,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/specops)
+"eBL" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "rampbottom"
+ },
+/area/centcom/zone1)
+"eCq" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 1 Droom 2";
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"eCs" = (
+/obj/structure/table/holotable,
+/turf/simulated/floor/holofloor{
+ dir = 10;
+ icon_state = "blue"
+ },
+/area/holodeck/source_knightarena)
+"eDg" = (
+/obj/item/mop,
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/trader_station/sol)
+"eDV" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "rampbottom"
+ },
+/area/centcom/zone1)
+"eEL" = (
+/turf/unsimulated/wall{
+ dir = 1;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_mid";
+ tag = "icon-wall3 (NORTH)"
+ },
+/area/space)
+"eFa" = (
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Medical Block";
+ dir = 8;
+ network = list("CentComm")
+ },
+/obj/structure/closet/wardrobe/chemistry_white,
+/obj/item/storage/bag/chemistry,
+/obj/item/storage/bag/chemistry,
+/obj/item/clothing/glasses/science{
+ pixel_y = 3
+ },
+/obj/item/clothing/glasses/science{
+ pixel_y = 3
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"eFy" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/flora/ausbushes/pointybush,
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone2)
+"eFT" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 1;
+ tag = "icon-fakewindows (EAST)"
+ },
+/area/syndicate_mothership)
+"eGQ" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/gun/blueshield,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"eGS" = (
+/obj/structure/closet/crate/freezer{
+ desc = "Холодильник с напитками. Ничего необычного."
+ },
+/obj/item/reagent_containers/food/drinks/cans/iced_tea,
+/obj/item/reagent_containers/food/drinks/cans/iced_tea,
+/obj/item/reagent_containers/food/drinks/cans/iced_tea,
+/obj/item/reagent_containers/food/drinks/cans/iced_tea,
+/obj/item/reagent_containers/food/drinks/cans/iced_tea,
+/obj/item/reagent_containers/food/drinks/cans/iced_tea,
+/obj/item/reagent_containers/food/drinks/cans/iced_tea,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"eHe" = (
+/obj/structure/flora/rock,
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Hallway";
+ dir = 4;
+ network = list("CentComm")
+ },
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"eHk" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Armory Level 1";
+ dir = 1;
+ network = list("CentComm")
+ },
+/obj/machinery/status_display{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"eHx" = (
+/obj/structure/bed,
+/obj/item/bedsheet/black,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"eId" = (
+/obj/structure/rack,
+/obj/item/clothing/head/that{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/clothing/under/suit_jacket,
+/obj/item/clothing/suit/wcoat,
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"eIt" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/trader_station/sol)
+"eIW" = (
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"eJh" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 6;
+ pixel_y = 27
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = 27
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"eJk" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkbluecorners"
+ },
+/area/centcom/specops)
+"eJo" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/wall{
+ icon_state = "iron3";
+ tag = "icon-iron3"
+ },
+/area/space)
+"eJM" = (
+/turf/unsimulated/wall{
+ icon_state = "sandstone10"
+ },
+/area/wizard_station)
+"eJQ" = (
+/obj/structure/rack,
+/obj/item/camera,
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"eJU" = (
+/obj/structure/table/reinforced,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg,
+/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy,
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkredfull"
+ },
+/area/centcom/specops)
+"eKf" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"eKo" = (
+/obj/machinery/door/poddoor/impassable{
+ id_tag = "mauler_garage";
+ name = "Mech Bay"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"eKE" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"eLi" = (
+/obj/machinery/cooker/deepfryer/upgraded,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"eLm" = (
+/obj/machinery/cryopod/right,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"eMu" = (
+/obj/structure/rack,
+/obj/item/toy/sword,
+/obj/item/gun/projectile/revolver/capgun,
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"eMv" = (
+/obj/structure/chair/comfy/red{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"eMx" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = 5
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = -5
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"eMF" = (
+/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"eMI" = (
+/obj/docking_port/stationary{
+ allow_spin = 0;
+ dir = 2;
+ dwidth = 2;
+ height = 11;
+ id = "specops_away";
+ name = "centcom bay 3";
+ no_spin = 1;
+ top_left_corner = 8;
+ top_right_corner = 1;
+ width = 5
+ },
+/turf/space,
+/turf/space,
+/area/space)
+"eMQ" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/evac)
+"eMY" = (
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ layer = 2.9;
+ name = "Enforcer magazine";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"eNw" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/trader_station/sol)
+"eOr" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/space,
+/turf/space,
+/area/ussp_ship)
+"eOL" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/evac)
+"ePf" = (
+/obj/machinery/bodyscanner{
+ layer = 3.5
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"ePM" = (
+/obj/machinery/bodyscanner{
+ dir = 4;
+ layer = 3.5
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"eQm" = (
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Ready Room 2";
+ dir = 6;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"eQF" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/obj/machinery/light{
+ dir = 1;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"eRB" = (
+/obj/structure/chair/stool/holostool,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet15-15";
+ tag = "icon-carpet15-15 (EAST)"
+ },
+/area/holodeck/source_theatre)
+"eRH" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 30
+ },
+/obj/item/twohanded/fireaxe/energized,
+/obj/item/twohanded/fireaxe,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"eRL" = (
+/obj/machinery/light{
+ dir = 1;
+ light_range = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"eSj" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/proto,
+/obj/item/gun/projectile/automatic/toy,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"eSq" = (
+/obj/machinery/door/airlock/hatch{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ desc = "For all your shady business needs";
+ name = "Special Shuttle";
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"eSX" = (
+/obj/structure/sign/goldenplaque{
+ desc = "Лучший сотрудник века";
+ name = "Это Толя Раммфан";
+ pixel_x = 30
+ },
+/obj/structure/table/wood/poker,
+/obj/item/radio/intercom/specops,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"eTZ" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"eUh" = (
+/obj/structure/chair/stool/bar,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"eUA" = (
+/turf/unsimulated/wall{
+ icon_state = "iron15"
+ },
+/area/syndicate_mothership)
+"eUO" = (
+/obj/structure/closet/l3closet/security,
+/obj/item/clothing/mask/gas,
+/obj/item/tank/emergency_oxygen/double/full,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/watertank/janitor{
+ max_integrity = 1500;
+ volume = 1500
+ },
+/turf/unsimulated/floor{
+ dir = 6;
+ icon_state = "darkpurple"
+ },
+/area/centcom/specops)
+"eVl" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"eWu" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Prison";
+ opacity = 1;
+ req_access_txt = "104"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"eWw" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/trader_station/sol)
+"eWY" = (
+/obj/structure/sign/poster/official/safety_internals{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"eXh" = (
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/trader_station/sol)
+"eYN" = (
+/obj/structure/table/abductor,
+/obj/machinery/chem_dispenser/soda/upgraded{
+ emagged = 1
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"eZg" = (
+/obj/structure/table/wood,
+/obj/item/decorations/sticky_decorations/flammable/snowman,
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"eZj" = (
+/obj/structure/bookcase,
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/jail)
+"eZl" = (
+/obj/machinery/vending/cola/free,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"eZu" = (
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/specops)
+"eZS" = (
+/obj/structure/mirror{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"fas" = (
+/obj/item/radio/intercom/syndicate{
+ pixel_y = 30
+ },
+/obj/machinery/light/small{
+ brightness_range = 6;
+ dir = 1;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet6-2"
+ },
+/area/wizard_station)
+"faG" = (
+/obj/structure/table/abductor,
+/obj/machinery/chem_dispenser/beer/upgraded{
+ emagged = 1
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"fbe" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark{
+ name = "voxstart"
+ },
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"fbq" = (
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"fbu" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/fish/shark{
+ desc = "Совсем не навязчивая акула. От слова совсем.";
+ name = "Акула?"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"fbv" = (
+/obj/machinery/vending/boozeomat,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"fbA" = (
+/obj/structure/table/abductor,
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"fbH" = (
+/obj/structure/table/abductor,
+/obj/machinery/bottler,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"fbQ" = (
+/obj/mecha/combat/gygax/dark/loaded,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"fcz" = (
+/obj/machinery/vending/dinnerware,
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 8;
+ layer = 5
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 1;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"fcB" = (
+/obj/structure/bed/dogbed/ian{
+ name = "Lounger"
+ },
+/obj/machinery/door_control{
+ color = "#ffcccc";
+ id = "ERT_turret_shutters";
+ name = "ERT Turret Shutters";
+ pixel_x = -4;
+ pixel_y = 33;
+ req_access_txt = "114"
+ },
+/mob/living/simple_animal/pet/dog/fox/alisa,
+/obj/machinery/turretid/lethal{
+ ailock = 1;
+ control_area = "\improper Centcom Emergency Shuttle";
+ name = "ERT Turret Control";
+ pixel_y = 25;
+ req_access = null;
+ req_access_txt = "109"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"fcL" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/ionrifle,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"fcS" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/jail)
+"fdk" = (
+/obj/machinery/computer/card/centcom{
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"fdm" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/gun/hos,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"fdn" = (
+/obj/machinery/abductor/pad{
+ team = 3
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"fdp" = (
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/obj/item/reagent_containers/food/condiment/flour,
+/obj/item/reagent_containers/food/condiment/flour,
+/obj/item/reagent_containers/food/condiment/flour,
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 1;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"fdz" = (
+/obj/machinery/chem_dispenser/supgraded,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"fdP" = (
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/obj/item/reagent_containers/food/condiment/flour,
+/obj/item/reagent_containers/food/condiment/flour,
+/obj/item/reagent_containers/food/condiment/flour,
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 1;
+ layer = 5
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 4;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"feD" = (
+/obj/machinery/door/poddoor/impassable{
+ id_tag = "dark_gygax_garage";
+ name = "Mech Bay"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"ffo" = (
+/obj/effect/decal/warning_stripes/blue{
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkgrey"
+ },
+/area/centcom/specops)
+"ffr" = (
+/obj/item/cardboard_cutout{
+ anchored = 1;
+ desc = "Обычная статуя офицера, что она здесь делает? На табличке красуется надпись - Pizdyach Rodnenkiy";
+ icon_state = "cutout_ntsec";
+ name = "Officer"
+ },
+/obj/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"ffI" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"fgs" = (
+/obj/machinery/optable,
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"fgt" = (
+/obj/machinery/sleeper/upgraded,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"fgC" = (
+/obj/structure/mineral_door/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/event_zone)
+"fgO" = (
+/obj/machinery/sleeper/upgraded{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"fhS" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/flashlight/lamp/green,
+/turf/unsimulated/floor{
+ icon_state = "carpet14-10"
+ },
+/area/wizard_station)
+"fiK" = (
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/trader_station/sol)
+"fiR" = (
+/obj/machinery/door_control{
+ id = "CC_space_jail";
+ name = "Central Command Jail";
+ pixel_y = 25;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"fjf" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"fjA" = (
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/trader_station/sol)
+"fjB" = (
+/mob/living/simple_animal/turkey,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"fjI" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"fjS" = (
+/obj/structure/kitchenspike,
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 4;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"fjV" = (
+/obj/machinery/door/poddoor{
+ id_tag = "thunderdome";
+ name = "Thunderdome Blast Door"
+ },
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/tdome/arena)
+"fkt" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/surgery,
+/obj/item/radio/intercom{
+ pixel_x = -30
+ },
+/obj/item/clothing/gloves/color/latex/nitrile,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"fku" = (
+/obj/structure/table/wood,
+/obj/item/tank/emergency_oxygen/vox,
+/obj/item/clothing/mask/breath/vox,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet02"
+ },
+/area/wizard_station)
+"flj" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = 5
+ },
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/specops)
+"flI" = (
+/obj/machinery/door_control{
+ id = "sit_ready";
+ name = "SIT Base Access";
+ pixel_x = -6;
+ pixel_y = 6;
+ req_access_txt = "153"
+ },
+/obj/machinery/door_control{
+ id = "sit_tele";
+ name = "SIT Teleporter Access";
+ pixel_x = 6;
+ pixel_y = 6;
+ req_access_txt = "153"
+ },
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"flR" = (
+/obj/machinery/teleport/hub/upgraded{
+ admin_usage = 1
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/chrono_ship)
+"flT" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/surgery,
+/obj/item/clothing/gloves/color/latex/nitrile,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"fnq" = (
+/obj/structure/chair/sofa/right{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"fnz" = (
+/obj/machinery/dna_scannernew,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"fnD" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet3-0";
+ tag = "icon-carpet3-0 (EAST)"
+ },
+/area/holodeck/source_theatre)
+"foi" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = 5
+ },
+/obj/item/ammo_box/shotgun/beanbag,
+/obj/item/ammo_box/shotgun/beanbag,
+/obj/item/ammo_box/shotgun/beanbag,
+/obj/item/ammo_box/shotgun/beanbag,
+/obj/item/ammo_box/shotgun/beanbag,
+/obj/item/storage/box/beanbag,
+/obj/item/storage/box/beanbag,
+/obj/item/storage/box/beanbag,
+/obj/item/storage/box/beanbag,
+/obj/item/storage/box/beanbag,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/specops)
+"foD" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 6;
+ tag = "icon-fakewindows (NORTHEAST)"
+ },
+/area/centcom)
+"foN" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/immolator,
+/obj/item/gun/energy/immolator/multi,
+/obj/item/gun/energy/immolator/multi/cyborg,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"foX" = (
+/obj/machinery/computer/cloning,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"fpk" = (
+/obj/machinery/conveyor{
+ id = "SOL"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/trader_station/sol)
+"fpr" = (
+/obj/machinery/optable,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"fpD" = (
+/obj/machinery/clonepod/biomass,
+/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,
+/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,
+/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,
+/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,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"fpT" = (
+/obj/item/storage/box/syringes,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/grenade/chem_grenade/large,
+/obj/item/grenade/chem_grenade/large,
+/obj/item/grenade/chem_grenade/large,
+/obj/item/grenade/chem_grenade/large,
+/obj/item/gun/syringe/rapidsyringe,
+/obj/structure/closet,
+/obj/item/gun/projectile/shotgun/sc_pump,
+/obj/item/ammo_casing/shotgun/dart,
+/obj/item/ammo_casing/shotgun/dart,
+/obj/item/ammo_casing/shotgun/dart,
+/obj/item/ammo_casing/shotgun/dart,
+/obj/item/ammo_casing/shotgun/dart,
+/obj/item/ammo_casing/shotgun/dart,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"fqe" = (
+/obj/structure/table/wood/poker,
+/obj/item/radio/intercom/syndicate,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/event_zone)
+"fqr" = (
+/obj/structure/curtain/open/shower/security,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"fsa" = (
+/obj/structure/table/wood/fancy,
+/obj/machinery/photocopier/faxmachine/longrange/syndie{
+ department = "Syndicate"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"fsd" = (
+/obj/structure/table/wood,
+/obj/item/clothing/accessory/waistcoat,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"fso" = (
+/obj/machinery/door_control{
+ id = "syndicate_elite";
+ name = "Shuttle Blast Doors";
+ pixel_x = 26;
+ pixel_y = -2;
+ req_access_txt = "150"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"fsp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = 5
+ },
+/obj/item/gun/projectile/automatic/pistol/enforcer{
+ icon_state = "enforcer_black";
+ pixel_x = 2
+ },
+/obj/item/gun/projectile/automatic/pistol/enforcer{
+ icon_state = "enforcer_black";
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/gun/projectile/automatic/pistol/enforcer{
+ icon_state = "enforcer_black";
+ pixel_x = 2
+ },
+/obj/item/gun/projectile/automatic/pistol/enforcer{
+ icon_state = "enforcer_black";
+ pixel_x = 2
+ },
+/obj/item/gun/projectile/automatic/pistol/enforcer{
+ icon_state = "enforcer_black";
+ pixel_x = 2
+ },
+/obj/item/gun/projectile/automatic/pistol/enforcer{
+ icon_state = "enforcer_black";
+ pixel_x = 2
+ },
+/obj/item/gun/projectile/automatic/pistol/enforcer{
+ icon_state = "enforcer_black";
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/gun/projectile/automatic/pistol/enforcer{
+ icon_state = "enforcer_black";
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/gun/projectile/automatic/pistol/enforcer{
+ icon_state = "enforcer_black";
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/gun/projectile/automatic/pistol/enforcer{
+ icon_state = "enforcer_black";
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/specops)
+"fsI" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"fsT" = (
+/obj/structure/closet/crate/freezer{
+ desc = "A crate.";
+ name = "Medical crate"
+ },
+/obj/item/reagent_containers/iv_bag/salglu,
+/obj/item/reagent_containers/iv_bag/blood/AMinus,
+/obj/item/reagent_containers/iv_bag/blood/APlus,
+/obj/item/reagent_containers/iv_bag/blood/BMinus,
+/obj/item/reagent_containers/iv_bag/blood/BPlus,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/blood/OPlus,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"fuj" = (
+/turf/unsimulated/wall{
+ icon_state = "iron5";
+ tag = "icon-iron5"
+ },
+/area/space)
+"fuo" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/clothing/gloves/ring/gold{
+ pixel_x = 7;
+ pixel_y = 10
+ },
+/obj/item/clothing/gloves/ring/gold,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"fuq" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/ar,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"fuE" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 1 Medbay";
+ network = list("CentComm")
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"fuP" = (
+/turf/unsimulated/wall,
+/area/centcom/specops)
+"fva" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/event_zone)
+"fvf" = (
+/obj/structure/table/reinforced,
+/obj/machinery/kitchen_machine/microwave/upgraded,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"fvZ" = (
+/obj/structure/chair/sofa/right{
+ dir = 1
+ },
+/obj/structure/chair/sofa/right{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"fwg" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/wizard_station)
+"fwA" = (
+/obj/structure/chair/sofa/left{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"fwD" = (
+/obj/structure/table/abductor,
+/obj/item/storage/fancy/cigarettes/cigpack_random,
+/obj/item/storage/fancy/cigarettes/cigpack_random,
+/obj/item/storage/fancy/cigarettes/cigpack_random,
+/obj/item/storage/box/matches,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"fxa" = (
+/obj/machinery/sleeper/syndie,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"fxw" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"fxF" = (
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"fxK" = (
+/turf/unsimulated/wall{
+ dir = 1;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "wall3";
+ tag = "icon-wall3 (NORTH)"
+ },
+/area/space)
+"fya" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"fyH" = (
+/obj/machinery/door/window/southleft{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ name = "security checkpoint"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"fyP" = (
+/obj/structure/closet/crate/freezer{
+ desc = "A crate.";
+ name = "Medical crate"
+ },
+/obj/item/reagent_containers/iv_bag/blood/AMinus,
+/obj/item/reagent_containers/iv_bag/blood/APlus,
+/obj/item/reagent_containers/iv_bag/blood/BMinus,
+/obj/item/reagent_containers/iv_bag/blood/BPlus,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/blood/OPlus,
+/obj/item/reagent_containers/iv_bag/salglu,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"fzc" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/reagent_containers/food/drinks/mugwort,
+/turf/unsimulated/floor{
+ icon_state = "carpetside"
+ },
+/area/wizard_station)
+"fzD" = (
+/obj/machinery/vending/sovietsoda,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"fAh" = (
+/obj/structure/flora/grass/brown,
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"fAu" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s6"
+ },
+/area/shuttle/escape)
+"fAR" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"fAZ" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"fBc" = (
+/turf/unsimulated/wall{
+ dir = 4;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "swall_f6"
+ },
+/area/ussp_ship)
+"fBM" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"fBO" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/shotgun/bulldog,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"fBQ" = (
+/obj/structure/table/wood,
+/obj/structure/mirror{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/trader_station/sol)
+"fCj" = (
+/obj/structure/table,
+/obj/item/storage/box/masks,
+/obj/item/storage/box/gloves,
+/obj/structure/sink{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"fCu" = (
+/obj/machinery/cryopod/right,
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/chrono_ship)
+"fDh" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"fDu" = (
+/obj/structure/chair/sofa{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"fEa" = (
+/obj/structure/mopbucket,
+/obj/item/mop,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"fEn" = (
+/obj/machinery/sleeper/upgraded{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"fEu" = (
+/turf/unsimulated/wall,
+/area/admin)
+"fEx" = (
+/obj/item/flag/species/vox,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"fFH" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/wall{
+ icon_state = "iron3";
+ tag = "icon-iron3"
+ },
+/area/space)
+"fFT" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien3"
+ },
+/area/abductor_ship)
+"fGA" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 10
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"fGG" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/toxin,
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/adv,
+/obj/item/storage/firstaid/brute,
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/healthanalyzer/advanced,
+/obj/item/reagent_containers/applicator/dual,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"fGT" = (
+/obj/structure/table/reinforced/brass,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"fGU" = (
+/obj/machinery/vending/snack,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/trader_station/sol)
+"fHb" = (
+/obj/machinery/vending/boozeomat,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"fHd" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2
+ },
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"fHN" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"fJi" = (
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"fJr" = (
+/obj/machinery/door/poddoor{
+ id_tag = "ASSAULT3";
+ name = "Launch Bay #3"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/obj/smooth_structures/catwalk.dmi';
+ icon_state = "catwalk";
+ name = "plating"
+ },
+/area/centcom/specops)
+"fJO" = (
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 2;
+ id_tag = "ERT_director_office_shutters";
+ layer = 5;
+ locked = 1;
+ name = "ERT Director office"
+ },
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/centcom)
+"fKp" = (
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 7;
+ height = 5;
+ id = "sst_away";
+ name = "Syndicate Base";
+ width = 11
+ },
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/syndicate_mothership)
+"fKK" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2
+ },
+/obj/structure/flora/ausbushes/brflowers,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"fLf" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove,
+/turf/simulated/floor/holofloor{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/holodeck/source_boxingcourt)
+"fLE" = (
+/obj/machinery/abductor/console{
+ team = 2
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"fLG" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"fMQ" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"fNO" = (
+/obj/structure/mineral_door/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"fOf" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Toilet";
+ opacity = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/trader_station/sol)
+"fOy" = (
+/obj/machinery/light/small{
+ light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"fPu" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 25
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 40
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"fPy" = (
+/obj/structure/chair/sofa/right{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"fRk" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ name = "Shooting range"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"fRT" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/wood,
+/obj/item/gavelhammer,
+/obj/item/gavelblock,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"fRZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/vault{
+ name = "Оружейная"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"fTl" = (
+/turf/unsimulated/beach/water,
+/area/ninja/holding)
+"fTE" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"fTJ" = (
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/structure/table,
+/obj/item/taperecorder,
+/obj/item/camera/digital,
+/obj/item/storage/box/bodybags,
+/obj/item/healthanalyzer/advanced,
+/obj/machinery/crema_switch{
+ pixel_y = 25
+ },
+/obj/item/robotanalyzer,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"fUi" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin/nanotrasen,
+/obj/item/pen/multi/fountain,
+/obj/item/assembly/signaler{
+ code = 6;
+ frequency = 1445
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 3;
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"fUw" = (
+/obj/machinery/porta_turret/syndicate/pod,
+/turf/simulated/shuttle/wall{
+ dir = 1;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/assault_pod)
+"fUB" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "asteroid7";
+ tag = "icon-asteroid7"
+ },
+/area/holodeck/source_desert)
+"fVo" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Weapons";
+ req_access = null
+ },
+/obj/item/gun/rocketlauncher,
+/obj/item/gun/rocketlauncher,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ussp_ship)
+"fVG" = (
+/obj/structure/mirror/magic{
+ desc = null;
+ name = "mirror";
+ pixel_y = -30
+ },
+/obj/machinery/light/small{
+ dir = 4;
+ tag = "icon-bulb1 (EAST)"
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"fWB" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/trader_station/sol)
+"fXa" = (
+/obj/machinery/gibber,
+/obj/structure/window/reinforced{
+ color = "black";
+ layer = 5
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 8;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"fXw" = (
+/obj/machinery/porta_turret/centcom/pulse{
+ armor = list("melee" = 90, "bullet" = 90, "laser" = 95, "energy" = 95, "bomb" = 80, "bio" =100, "rad" = 100, "fire" = 100, "acid" = 100);
+ color = "#666666";
+ damtype = "burn";
+ health = 1250;
+ region_max = 12;
+ scan_range = 12;
+ shot_delay = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"fXF" = (
+/obj/structure/table/wood,
+/obj/item/twohanded/chainsaw,
+/obj/item/twohanded/required/chainsaw,
+/obj/item/twohanded/required/chainsaw/doomslayer,
+/obj/item/twohanded/toy/chainsaw,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"fYa" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/mech_bay_recharge_port/upgraded{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"fYA" = (
+/obj/structure/chair/comfy/red{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "Syndicate-Spawn"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"fZP" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/obj/structure/window/reinforced{
+ color = "black";
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"gag" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 4;
+ tag = "icon-fakewindows (EAST)"
+ },
+/area/tdome)
+"gaV" = (
+/obj/machinery/computer/operating,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"gbp" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/laser/mounted,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"gbP" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/obj/structure/window/reinforced{
+ color = "black";
+ layer = 5
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 4;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"gbV" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/sleeper/upgraded{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet07"
+ },
+/area/centcom/evac)
+"gcv" = (
+/obj/machinery/computer/operating,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"gcS" = (
+/obj/machinery/computer/teleporter,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gcT" = (
+/obj/structure/window/reinforced,
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet08"
+ },
+/area/centcom/evac)
+"gcU" = (
+/obj/structure/window/reinforced,
+/obj/machinery/light{
+ pixel_y = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet08"
+ },
+/area/centcom/evac)
+"gcY" = (
+/obj/structure/chair/stool/holostool,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet5-1";
+ tag = "icon-carpet5-1 (EAST)"
+ },
+/area/holodeck/source_theatre)
+"geL" = (
+/obj/structure/table,
+/obj/item/storage/box/beakers,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/reagent_containers/glass/beaker/bluespace,
+/obj/item/storage/box/autoinjectors,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"geV" = (
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"gfs" = (
+/obj/structure/window/reinforced,
+/obj/machinery/sleeper/upgraded,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet09"
+ },
+/area/centcom/evac)
+"ggH" = (
+/obj/machinery/portable_atmospherics/canister/oxygen{
+ maximum_pressure = 50000
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"ggK" = (
+/obj/structure/chair/stool/holostool,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet15-0";
+ tag = "icon-carpet15-0 (EAST)"
+ },
+/area/holodeck/source_meetinghall)
+"ghC" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"ghO" = (
+/obj/machinery/slot_machine,
+/obj/item/radio/intercom{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"ghW" = (
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"gii" = (
+/obj/structure/closet/crate/freezer{
+ desc = "A crate.";
+ name = "Medical crate"
+ },
+/obj/item/reagent_containers/iv_bag/blood/OPlus,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/blood/BPlus,
+/obj/item/reagent_containers/iv_bag/blood/BMinus,
+/obj/item/reagent_containers/iv_bag/blood/APlus,
+/obj/item/reagent_containers/iv_bag/blood/AMinus,
+/obj/item/reagent_containers/iv_bag/salglu,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"gir" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/holofloor{
+ icon_state = "wood_siding1";
+ tag = "icon-wood_siding1"
+ },
+/area/holodeck/source_picnicarea)
+"giz" = (
+/obj/machinery/light/spot,
+/obj/structure/table,
+/obj/item/clothing/suit/straight_jacket,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"giA" = (
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"giR" = (
+/obj/structure/rack,
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
+/obj/item/gun/projectile/automatic/shotgun/bulldog,
+/obj/item/gun/projectile/automatic/shotgun/bulldog,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"giY" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Garden room";
+ opacity = 1;
+ req_access_txt = "113"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"gjx" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Freezer & Garden room";
+ opacity = 1;
+ req_access_txt = "113"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"gkb" = (
+/obj/effect/overlay/coconut,
+/turf/unsimulated/beach/sand,
+/area/centcom/evac)
+"gkl" = (
+/turf/unsimulated/wall{
+ dir = 4;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "swall_f5"
+ },
+/area/ussp_ship)
+"glr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Генераторная"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"gly" = (
+/obj/structure/decorative_structures/metal/statue/golden_disk,
+/obj/structure/sign/poster/secret/yug0{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"glP" = (
+/obj/structure/closet,
+/obj/item/clothing/under/retro/engineering,
+/obj/item/clothing/under/retro/engineering,
+/obj/item/clothing/under/retro/engineering,
+/obj/item/clothing/under/retro/engineering,
+/obj/item/clothing/under/retro/medical,
+/obj/item/clothing/under/retro/medical,
+/obj/item/clothing/under/retro/science,
+/obj/item/clothing/under/retro/science,
+/obj/item/clothing/under/retro/science,
+/obj/item/clothing/under/retro/security,
+/obj/item/clothing/under/retro/security,
+/obj/item/clothing/under/retro/security,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"gms" = (
+/obj/machinery/computer/shuttle/syndicate/recall,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"gmw" = (
+/obj/machinery/door/window{
+ dir = 2;
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"gmR" = (
+/obj/item/bedsheet/black,
+/obj/structure/bed,
+/obj/effect/landmark{
+ name = "traderstart_sol"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/trader_station/sol)
+"gnk" = (
+/obj/structure/table,
+/obj/machinery/door_control{
+ desc = "A remote control switch for port-side blast doors.";
+ id = "thunderdomegen";
+ name = "General Equiptment";
+ pixel_y = 5;
+ req_access_txt = "104"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor"
+ },
+/area/tdome/tdomeadmin)
+"gnE" = (
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 8;
+ opacity = 1
+ },
+/obj/machinery/vending/dinnerware,
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 1;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"goI" = (
+/obj/machinery/kitchen_machine/candy_maker/upgraded,
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 1;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"goP" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"gqp" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/beer,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"gqE" = (
+/obj/structure/closet/crate/can,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"gqH" = (
+/obj/machinery/icemachine,
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 1;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"gqU" = (
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave/upgraded,
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 1;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"gri" = (
+/obj/structure/table/reinforced,
+/obj/item/assembly/voice{
+ pixel_y = 3
+ },
+/obj/item/stock_parts/cell/high,
+/obj/item/stock_parts/cell/high,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"gry" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/weightmachine/stacklifter,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"gsF" = (
+/obj/structure/chair/stool,
+/turf/unsimulated/beach/sand,
+/area/ninja/holding)
+"gsH" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/weightmachine/stacklifter,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"gsP" = (
+/obj/structure/table/wood,
+/obj/item/trash/candle,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"gtq" = (
+/obj/structure/weightmachine/stacklifter,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"gty" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/reedbush,
+/obj/item/flag/nt,
+/obj/machinery/light{
+ dir = 1;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"gtE" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/closet/crate/can,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"gur" = (
+/obj/structure/table/abductor,
+/obj/item/surgicaldrill/alien,
+/obj/item/circular_saw/alien,
+/obj/item/FixOVein/alien,
+/obj/item/bonesetter/alien,
+/obj/item/bonegel/alien,
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"guC" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/chair/sofa/right,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"guG" = (
+/obj/structure/table/wood,
+/obj/item/pizzabox/vegetable,
+/obj/item/pizzabox/vegetable,
+/obj/item/pizzabox/vegetable,
+/obj/item/pizzabox/vegetable,
+/obj/item/kitchen/knife,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"gva" = (
+/obj/structure/dresser,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/trader_station/sol)
+"gvr" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/chair/sofa,
+/obj/item/radio/intercom{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"gvu" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/space)
+"gvF" = (
+/turf/space,
+/turf/unsimulated/wall{
+ dir = 1;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "swall0";
+ tag = "icon-wall3 (NORTH)"
+ },
+/area/ussp_ship)
+"gwm" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"gwT" = (
+/obj/machinery/door/poddoor{
+ id_tag = "CC_arrivals_blastdoor";
+ name = "Arrivals Blastdoor"
+ },
+/turf/unsimulated/floor{
+ icon_state = "whitedelivery"
+ },
+/area/centcom/evac)
+"gxA" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 4;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom/evac)
+"gyc" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark{
+ name = "Syndicate-Commando";
+ tag = "Commando"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"gyA" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/chair/sofa/left,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"gzj" = (
+/obj/effect/decal/warning_stripes/blue,
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/chrono_ship)
+"gzz" = (
+/obj/machinery/vending/cigarette,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"gzA" = (
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"gAt" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault";
+ name = "Operative position"
+ },
+/area/centcom/specops)
+"gAu" = (
+/obj/machinery/door_control{
+ id = "syndicate_sit_1";
+ name = "Shuttle Blast Doors";
+ pixel_x = -26;
+ pixel_y = -2;
+ req_access_txt = "150"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"gAP" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/genericbush,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone2)
+"gBR" = (
+/obj/machinery/vending/snack,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"gCq" = (
+/obj/machinery/computer/syndicate_depot/teleporter{
+ name = "teleporter console";
+ req_access = null;
+ use_power = 0
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/syndicate_depot/core)
+"gCW" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ layer = 2.9;
+ name = "TX-20a Assault Rifle";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/item/gun/projectile/automatic/wt550{
+ desc = "An outdated personal defense weapon utilized by law enforcement. The TX-20a Automatic Rifle fires 4.6x30mm rounds.";
+ name = "TX-20a"
+ },
+/obj/item/gun/projectile/automatic/wt550{
+ desc = "An outdated personal defense weapon utilized by law enforcement. The TX-20a Automatic Rifle fires 4.6x30mm rounds.";
+ name = "TX-20a"
+ },
+/obj/item/gun/projectile/automatic/wt550{
+ desc = "An outdated personal defense weapon utilized by law enforcement. The TX-20a Automatic Rifle fires 4.6x30mm rounds.";
+ name = "TX-20a"
+ },
+/obj/item/gun/projectile/automatic/wt550{
+ desc = "An outdated personal defense weapon utilized by law enforcement. The TX-20a Automatic Rifle fires 4.6x30mm rounds.";
+ name = "TX-20a"
+ },
+/obj/item/gun/projectile/automatic/wt550{
+ desc = "An outdated personal defense weapon utilized by law enforcement. The TX-20a Automatic Rifle fires 4.6x30mm rounds.";
+ name = "TX-20a"
+ },
+/obj/item/gun/projectile/automatic/wt550{
+ desc = "An outdated personal defense weapon utilized by law enforcement. The TX-20a Automatic Rifle fires 4.6x30mm rounds.";
+ name = "TX-20a"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gDq" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "asteroid7";
+ tag = "icon-asteroid7"
+ },
+/area/holodeck/source_knightarena)
+"gDE" = (
+/obj/machinery/vending/coffee,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/obj/machinery/camera{
+ c_tag = "CentComm Arrivals 3";
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"gEE" = (
+/obj/structure/table/wood,
+/obj/item/deck/cards,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"gEV" = (
+/turf/simulated/floor/beach/water,
+/area/holodeck/source_beach)
+"gFx" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/snacks/sliceable/pizza/hawaiianpizza,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"gFy" = (
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ layer = 2.9;
+ name = "M-90gl 40mm grenade";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/item/ammo_box/a40mm,
+/obj/item/ammo_box/a40mm,
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gFR" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/soda,
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"gGT" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 1 Droom 5";
+ dir = 8;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"gGV" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Medical Block";
+ opacity = 1;
+ req_access_txt = "102"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"gHf" = (
+/obj/item/radio/intercom{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"gHj" = (
+/obj/structure/chair/comfy/beige{
+ dir = 8;
+ layer = 5;
+ pixel_y = -2
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"gHs" = (
+/obj/structure/sink/kitchen{
+ dir = 4;
+ pixel_x = -13
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"gHR" = (
+/obj/structure/table,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"gIn" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/chair/sofa/left{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"gIz" = (
+/obj/structure/chair/sofa/right{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"gIN" = (
+/obj/item/gun/syringe/syndicate,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"gIP" = (
+/obj/structure/chair/sofa/right{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 4;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"gJe" = (
+/turf/simulated/floor/holofloor{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/holodeck/source_emptycourt)
+"gJm" = (
+/obj/structure/chair/sofa/left{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 8;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"gJD" = (
+/obj/structure/table,
+/obj/item/kitchen/knife,
+/obj/item/kitchen/knife/butcher,
+/obj/item/kitchen/knife/butcher/meatcleaver,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"gKf" = (
+/obj/machinery/kitchen_machine/grill/upgraded,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"gKq" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/chair/sofa/right{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"gKB" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"gKV" = (
+/obj/structure/closet/crate/freezer{
+ desc = "A crate.";
+ name = "Medical crate"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/reagent_containers/iv_bag/blood/AMinus,
+/obj/item/reagent_containers/iv_bag/blood/APlus,
+/obj/item/reagent_containers/iv_bag/blood/BMinus,
+/obj/item/reagent_containers/iv_bag/blood/BPlus,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/blood/OPlus,
+/obj/item/reagent_containers/iv_bag/salglu,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"gLu" = (
+/obj/structure/table/wood/fancy/black,
+/obj/machinery/light/small{
+ brightness_range = 6;
+ dir = 8;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/obj/item/dice/d20,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"gLF" = (
+/obj/machinery/door/poddoor{
+ id_tag = "thunderdomegen";
+ name = "General Supply"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome/arena)
+"gMc" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
+ dir = 4;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "whitecorner"
+ },
+/area/centcom/evac)
+"gMh" = (
+/obj/structure/window/reinforced{
+ color = "red";
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/grille{
+ layer = 2.8
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/door/poddoor/shutters{
+ id_tag = "commandcenter";
+ name = "Privacy Shutters"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"gMu" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/unsimulated/beach/sand,
+/area/centcom/evac)
+"gMB" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "rampbottom"
+ },
+/area/centcom/zone1)
+"gNc" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/structure/curtain/open/shower,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"gNo" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 5;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/ussp_ship)
+"gNF" = (
+/obj/item/flag/wiz,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"gOu" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove,
+/turf/simulated/floor/holofloor{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/holodeck/source_boxingcourt)
+"gPt" = (
+/obj/mecha/combat/marauder/loaded,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbrownfull"
+ },
+/area/centcom/specops)
+"gQd" = (
+/obj/structure/window/reinforced,
+/mob/living/simple_animal/pig,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"gQZ" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 5
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/structure/curtain/open/shower,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"gRh" = (
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"gRt" = (
+/obj/machinery/chem_master,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"gRG" = (
+/obj/machinery/teleport/station,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"gTh" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/surgery,
+/obj/item/stack/nanopaste,
+/obj/item/mmi,
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"gTr" = (
+/obj/structure/table,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/item/assembly/infra,
+/obj/item/assembly/infra,
+/obj/item/assembly/infra,
+/obj/item/assembly/infra,
+/obj/item/assembly/infra,
+/obj/item/assembly/prox_sensor,
+/obj/item/assembly/prox_sensor,
+/obj/item/assembly/prox_sensor,
+/obj/item/assembly/prox_sensor,
+/obj/item/assembly/prox_sensor,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"gTB" = (
+/obj/machinery/chem_dispenser/soda/upgraded,
+/obj/structure/table/wood/poker,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"gTE" = (
+/turf/simulated/floor/holofloor/space,
+/area/holodeck/source_space)
+"gUw" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 5
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/structure/curtain/open/shower,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"gVd" = (
+/obj/item/gun/energy/sniperrifle,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"gVi" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2
+ },
+/obj/structure/flora/ausbushes/brflowers,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"gWM" = (
+/obj/structure/chair/sofa/left{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"gXj" = (
+/turf/unsimulated/wall{
+ icon = 'icons/turf/walls/wood_wall.dmi';
+ icon_state = "wood"
+ },
+/area/trader_station/sol)
+"gYA" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/jail)
+"gZh" = (
+/obj/mecha/combat/marauder/loaded{
+ operation_req_access = list(114)
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"gZG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"hak" = (
+/obj/structure/table/wood,
+/obj/item/candle/eternal,
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"has" = (
+/obj/machinery/processor,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"hbO" = (
+/obj/docking_port/stationary/transit{
+ dir = 8;
+ dwidth = 3;
+ height = 5;
+ id = "mining_transit";
+ name = "mining in transit";
+ width = 7
+ },
+/turf/space/transit,
+/area/space)
+"hcI" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/drinkingglasses,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"hdm" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Armory Level 2";
+ dir = 1;
+ network = list("CentComm")
+ },
+/obj/machinery/status_display{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hdG" = (
+/obj/structure/table/reinforced,
+/obj/item/robot_parts/l_arm{
+ pixel_x = -10;
+ pixel_y = 8
+ },
+/obj/item/robot_parts/l_arm{
+ pixel_x = -10;
+ pixel_y = 8
+ },
+/obj/item/robot_parts/l_arm{
+ pixel_x = -10;
+ pixel_y = 8
+ },
+/obj/item/robot_parts/l_arm{
+ pixel_x = -10;
+ pixel_y = 8
+ },
+/obj/item/robot_parts/l_arm{
+ pixel_x = -10;
+ pixel_y = 8
+ },
+/obj/item/robot_parts/l_leg{
+ pixel_x = -10;
+ pixel_y = -5
+ },
+/obj/item/robot_parts/l_leg{
+ pixel_x = -10;
+ pixel_y = -5
+ },
+/obj/item/robot_parts/l_leg{
+ pixel_x = -10;
+ pixel_y = -5
+ },
+/obj/item/robot_parts/l_leg{
+ pixel_x = -10;
+ pixel_y = -5
+ },
+/obj/item/robot_parts/l_leg{
+ pixel_x = -10;
+ pixel_y = -5
+ },
+/obj/item/robot_parts/r_arm{
+ pixel_x = 10;
+ pixel_y = 8
+ },
+/obj/item/robot_parts/r_arm{
+ pixel_x = 10;
+ pixel_y = 8
+ },
+/obj/item/robot_parts/r_arm{
+ pixel_x = 10;
+ pixel_y = 8
+ },
+/obj/item/robot_parts/r_arm{
+ pixel_x = 10;
+ pixel_y = 8
+ },
+/obj/item/robot_parts/r_arm{
+ pixel_x = 10;
+ pixel_y = 8
+ },
+/obj/item/robot_parts/r_leg{
+ pixel_x = 10;
+ pixel_y = -5
+ },
+/obj/item/robot_parts/r_leg{
+ pixel_x = 10;
+ pixel_y = -5
+ },
+/obj/item/robot_parts/r_leg{
+ pixel_x = 10;
+ pixel_y = -5
+ },
+/obj/item/robot_parts/r_leg{
+ pixel_x = 10;
+ pixel_y = -5
+ },
+/obj/item/robot_parts/r_leg{
+ pixel_x = 10;
+ pixel_y = -5
+ },
+/obj/item/robot_parts/robot_component/actuator,
+/obj/item/robot_parts/robot_component/actuator,
+/obj/item/robot_parts/robot_component/armour,
+/obj/item/robot_parts/robot_component/armour,
+/obj/item/robot_parts/robot_component/binary_communication_device,
+/obj/item/robot_parts/robot_component/binary_communication_device,
+/obj/item/robot_parts/robot_component/camera,
+/obj/item/robot_parts/robot_component/camera,
+/obj/item/robot_parts/robot_component/diagnosis_unit,
+/obj/item/robot_parts/robot_component/diagnosis_unit,
+/obj/item/robot_parts/robot_component/radio,
+/obj/item/robot_parts/robot_component/radio,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hdH" = (
+/turf/unsimulated/wall{
+ icon_state = "iron2"
+ },
+/area/syndicate_mothership)
+"hen" = (
+/obj/item/gun/magic/hook,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"hez" = (
+/obj/structure/holowindow,
+/turf/simulated/floor/holofloor{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/holodeck/source_thunderdomecourt)
+"hfk" = (
+/obj/structure/closet/crate/can,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"hfz" = (
+/obj/structure/table/wood/fancy/black,
+/turf/unsimulated/floor{
+ icon_state = "carpet14-10"
+ },
+/area/wizard_station)
+"hfF" = (
+/obj/structure/chair/comfy/purp,
+/turf/unsimulated/floor{
+ icon_state = "carpetnoconnect"
+ },
+/area/wizard_station)
+"hfR" = (
+/obj/machinery/vending/cola,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"hge" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"hgF" = (
+/obj/machinery/computer/account_database,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"hgY" = (
+/obj/structure/window/reinforced{
+ layer = 5
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/structure/curtain/open/shower,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"hhh" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja/holding)
+"hhr" = (
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/zone3)
+"hhB" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/hydroponics/constructable,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"hic" = (
+/turf/unsimulated/wall{
+ icon_state = "sandstone3"
+ },
+/area/wizard_station)
+"hiy" = (
+/obj/structure/window/reinforced{
+ layer = 5
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 5
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/structure/curtain/open/shower,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"hjl" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"hjp" = (
+/obj/structure/chair/sofa/right{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"hjA" = (
+/obj/structure/chair/sofa{
+ dir = 6
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 1;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"hjB" = (
+/turf/unsimulated/wall{
+ icon_state = "iron14";
+ tag = "icon-iron14"
+ },
+/area/space)
+"hkd" = (
+/obj/structure/statue/sandstone/venus{
+ layer = 5;
+ pixel_y = 24
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"hkl" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"hko" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Weapons";
+ req_access = null
+ },
+/obj/machinery/light/small{
+ brightness_range = 10;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/obj/item/gun/projectile/revolver,
+/obj/item/gun/projectile/revolver,
+/obj/item/gun/projectile/revolver,
+/obj/item/gun/projectile/revolver,
+/obj/item/gun/projectile/revolver,
+/obj/item/gun/projectile/revolver,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ussp_ship)
+"hkC" = (
+/obj/structure/table/reinforced,
+/obj/item/trash/plate,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"hld" = (
+/obj/structure/closet/secure_closet/security{
+ req_access = null;
+ req_access_txt = "101"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"hlr" = (
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 11;
+ height = 18;
+ id = "emergency_away";
+ name = "emergency centcom";
+ width = 29
+ },
+/turf/space,
+/area/space)
+"hmw" = (
+/obj/structure/chair/sofa/left{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"hmY" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/item/radio/intercom/specops{
+ pixel_y = -25
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"hnf" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ tag = "icon-fakewindows (EAST)"
+ },
+/area/centcom)
+"hnB" = (
+/obj/machinery/kitchen_machine/oven/upgraded,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"hnI" = (
+/obj/structure/rack,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/gun/rocketlauncher,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"hnN" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ color = "black";
+ opacity = 1
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 4;
+ opacity = 1
+ },
+/obj/machinery/kitchen_machine/microwave/upgraded{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"hnU" = (
+/obj/machinery/door/airlock/hatch{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ desc = "For all your shady business needs";
+ name = "Special Shuttle";
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/admin)
+"hon" = (
+/obj/structure/bookcase,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"hoH" = (
+/obj/machinery/computer/teleporter{
+ req_access = null
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/chrono_ship)
+"hql" = (
+/obj/effect/overlay/palmtree_r,
+/obj/effect/overlay/coconut,
+/turf/unsimulated/beach/sand,
+/area/ninja/holding)
+"hqV" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Kitchen room";
+ opacity = 1;
+ req_access_txt = "113"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"hrp" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/radio/intercom/syndicate{
+ pixel_y = 25
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"hsb" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 10;
+ tag = "icon-fakewindows (NORTHEAST)"
+ },
+/area/centcom)
+"hsH" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/statue/hooker,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"htO" = (
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/obj/structure/cable,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
+ },
+/area/ussp_ship)
+"htZ" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/pistol,
+/obj/item/gun/projectile/automatic/toy/pistol,
+/obj/item/gun/projectile/automatic/toy/pistol/riot,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"hue" = (
+/obj/structure/chair/stool/holostool,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet13-0";
+ tag = "icon-carpet13-0 (EAST)"
+ },
+/area/holodeck/source_meetinghall)
+"huf" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"huo" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/computer/cryopod/robot{
+ pixel_y = -28
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hup" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = 5
+ },
+/obj/item/ammo_box/shotgun/tranquilizer,
+/obj/item/ammo_box/shotgun/tranquilizer,
+/obj/item/ammo_box/shotgun/tranquilizer,
+/obj/item/ammo_box/shotgun/tranquilizer,
+/obj/item/ammo_box/shotgun/tranquilizer,
+/obj/item/ammo_box/shotgun/tranquilizer,
+/obj/item/storage/box/tranquilizer,
+/obj/item/storage/box/tranquilizer,
+/obj/item/storage/box/tranquilizer,
+/obj/item/storage/box/tranquilizer,
+/obj/item/storage/box/tranquilizer,
+/obj/item/storage/box/tranquilizer,
+/obj/item/storage/box/tranquilizer,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/specops)
+"huv" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "whitecorner"
+ },
+/area/centcom/evac)
+"hvs" = (
+/obj/machinery/camera{
+ c_tag = "CentComm ERT GYM";
+ dir = 8;
+ network = list("CentComm")
+ },
+/obj/structure/weightmachine/weightlifter,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"hvA" = (
+/obj/docking_port/stationary/transit{
+ dir = 8;
+ dwidth = 7;
+ height = 5;
+ id = "sit_transit";
+ name = "sit in transit";
+ width = 11
+ },
+/turf/space/transit,
+/area/space)
+"hwQ" = (
+/obj/structure/table/wood,
+/obj/item/clothing/glasses/hud/hydroponic,
+/obj/item/clothing/glasses/hud/hydroponic,
+/obj/item/clothing/gloves/botanic_leather,
+/obj/item/clothing/gloves/botanic_leather,
+/obj/item/watertank,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"hwV" = (
+/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100)
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkredfull"
+ },
+/area/centcom/specops)
+"hxr" = (
+/obj/docking_port/stationary/transit{
+ dir = 4;
+ dwidth = 7;
+ height = 5;
+ id = "sst_transit";
+ name = "sst in transit";
+ width = 11
+ },
+/turf/space/transit,
+/area/space)
+"hxL" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.8
+ },
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"hyA" = (
+/obj/structure/chair/sofa/left{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"hyI" = (
+/obj/effect/landmark{
+ name = "Atmospheric Test Start"
+ },
+/turf/simulated/floor/holofloor{
+ icon_state = "engine";
+ name = "Burn-Mix Floor";
+ nitrogen = 0;
+ oxygen = 2500;
+ temperature = 370;
+ toxins = 5000
+ },
+/area/holodeck/source_burntest)
+"hyN" = (
+/obj/structure/rack,
+/obj/item/storage/fancy/crayons,
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"hzJ" = (
+/obj/structure/window/reinforced{
+ color = "red";
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/grille{
+ layer = 2.8
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id_tag = "commandcenter";
+ name = "Privacy Shutters"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"hAD" = (
+/obj/structure/table,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = -4
+ },
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"hAZ" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/gun/turret,
+/obj/item/gun/energy/pulse/turret,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"hBC" = (
+/obj/machinery/computer/message_monitor,
+/obj/item/paper/monitorkey,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"hCD" = (
+/obj/item/radio/intercom{
+ pixel_x = -30
+ },
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/srtops)
+"hCF" = (
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/event_zone)
+"hCQ" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/computer/operating,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"hCT" = (
+/obj/structure/table,
+/obj/random/tool,
+/obj/random/bomb_supply,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"hDk" = (
+/obj/machinery/computer/operating,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"hDv" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"hFH" = (
+/obj/machinery/computer/camera_advanced/abductor{
+ team = 4
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"hGI" = (
+/obj/machinery/bodyscanner,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"hGZ" = (
+/turf/unsimulated/wall/fakeglass{
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/centcom/evac)
+"hHg" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id_tag = "ERT_turret_shutters";
+ layer = 5;
+ locked = 1;
+ name = "ERT Turret"
+ },
+/obj/structure/window/full/reinforced{
+ armor = list("melee" = 80, "bullet" = 80, "laser" = 0, "energy" = 0, "bomb" = 80, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 100);
+ layer = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hHF" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 6;
+ pixel_y = -27
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = -27
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"hHP" = (
+/obj/structure/mineral_door/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"hIe" = (
+/obj/structure/sign/restroom{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"hIF" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Kitchen room";
+ opacity = 1;
+ req_access_txt = "113"
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"hIL" = (
+/obj/machinery/vending/crittercare{
+ prices = list()
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"hJc" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/statue/thaumicnik,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"hJf" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ name = "SIT Jail"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"hJy" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "specops_away";
+ name = "Shuttle Hatch";
+ req_access_txt = "109"
+ },
+/obj/machinery/shower{
+ dir = 1;
+ tag = "icon-shower (WEST)"
+ },
+/obj/structure/fans/tiny,
+/turf/unsimulated/floor{
+ icon_state = "darkgrey"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hJA" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/bush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"hKD" = (
+/obj/structure/chair/sofa{
+ dir = 10
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 1;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"hLt" = (
+/obj/structure/table/reinforced,
+/obj/item/shield/riot/tele{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/shield/riot/tele{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/shield/riot/tele{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/shield/riot/tele{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/shield/riot/tele{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/shield/riot/tele{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 33;
+ pixel_y = -7
+ },
+/obj/item/grenade/plastic/c4_shaped/flash{
+ pixel_x = 3;
+ pixel_y = -6
+ },
+/obj/item/grenade/plastic/c4_shaped/flash{
+ pixel_x = 3;
+ pixel_y = -6
+ },
+/obj/item/grenade/plastic/c4_shaped/flash{
+ pixel_x = 3;
+ pixel_y = -6
+ },
+/obj/item/grenade/plastic/c4_shaped/flash{
+ pixel_x = 3;
+ pixel_y = -6
+ },
+/obj/item/grenade/plastic/c4_shaped/flash{
+ pixel_x = 3;
+ pixel_y = -6
+ },
+/obj/item/grenade/plastic/c4_shaped/flash{
+ pixel_x = 3;
+ pixel_y = -6
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/specops)
+"hLK" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/light{
+ dir = 4;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"hLL" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"hLQ" = (
+/obj/machinery/teleport/station,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"hMK" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkbluecorners"
+ },
+/area/centcom/zone2)
+"hNx" = (
+/turf/simulated/floor/holofloor{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/holodeck/source_basketball)
+"hOj" = (
+/obj/structure/weightmachine/stacklifter,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/jail)
+"hOT" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/optable,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"hOV" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/shaker,
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"hPK" = (
+/obj/machinery/optable,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"hPT" = (
+/obj/machinery/sleeper,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"hQm" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/shoes/brown,
+/obj/item/grenade/smokebomb,
+/obj/item/restraints/legcuffs/beartrap,
+/obj/item/sleeping_carp_scroll,
+/obj/item/twohanded/bostaff,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome/arena)
+"hQn" = (
+/obj/machinery/door/airlock/shuttle,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"hQs" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/gun/blueshield/pdw9,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"hQw" = (
+/obj/structure/table/wood,
+/obj/effect/landmark{
+ name = "Teleport-Scroll"
+ },
+/obj/item/radio/intercom/syndicate{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet08"
+ },
+/area/wizard_station)
+"hQK" = (
+/obj/machinery/fishtank/wall,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"hQT" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/statue/elwycco,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"hQV" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 25
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 40
+ },
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hRV" = (
+/obj/structure/table/wood,
+/obj/item/folder/white,
+/obj/item/pen/fancy,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"hRW" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/c20r,
+/obj/item/gun/projectile/automatic/c20r/toy/riot,
+/obj/item/gun/projectile/automatic/c20r/toy,
+/obj/item/gun/projectile/automatic/c20r/sc_c20r,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"hRY" = (
+/obj/structure/sign/evac{
+ pixel_x = 33
+ },
+/obj/machinery/vending/coffee,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"hSw" = (
+/obj/structure/flora/grass/green,
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"hSy" = (
+/obj/effect/decal/cleanable/blood,
+/obj/structure/kitchenspike,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"hSC" = (
+/turf/unsimulated/wall/fakeglass{
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/centcom)
+"hSQ" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/jail)
+"hTb" = (
+/obj/item/clothing/glasses/sunglasses/yeah,
+/turf/unsimulated/beach/sand,
+/area/centcom/evac)
+"hTe" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/surgery,
+/obj/item/storage/box/gloves,
+/obj/item/storage/box/masks,
+/obj/item/clothing/gloves/color/latex/nitrile,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"hTB" = (
+/obj/structure/table/wood,
+/obj/item/grenade/chem_grenade/holywater,
+/obj/item/grenade/chem_grenade/holywater,
+/obj/item/grenade/chem_grenade/holywater,
+/obj/item/grenade/chem_grenade/holywater,
+/obj/item/grenade/chem_grenade/holywater,
+/obj/item/grenade/chem_grenade/holywater,
+/obj/item/grenade/chem_grenade/holywater,
+/obj/item/grenade/chem_grenade/holywater,
+/obj/item/grenade/chem_grenade/holywater,
+/obj/item/grenade/chem_grenade/holywater,
+/obj/item/grenade/clusterbuster/holy,
+/obj/item/grenade/clusterbuster/holy,
+/obj/item/grenade/clusterbuster/holy,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"hTW" = (
+/obj/machinery/washing_machine,
+/obj/machinery/light{
+ dir = 1;
+ light_range = 5
+ },
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"hTY" = (
+/obj/structure/table/wood,
+/obj/structure/mirror/magic{
+ pixel_y = -30
+ },
+/obj/machinery/light/small{
+ brightness_range = 6;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/obj/item/flashlight/slime,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet07"
+ },
+/area/wizard_station)
+"hUH" = (
+/obj/structure/bookcase,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"hXg" = (
+/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/specops)
+"hXo" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 32
+ },
+/obj/structure/weightmachine/stacklifter,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"hXB" = (
+/obj/structure/chair/stool/holostool,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet9-0";
+ tag = "icon-carpet9-0 (EAST)"
+ },
+/area/holodeck/source_meetinghall)
+"hYv" = (
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"hYy" = (
+/obj/machinery/vending/coffee,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"hYX" = (
+/obj/machinery/vending/cigarette,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"hZx" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "darkred"
+ },
+/area/centcom/specops)
+"hZZ" = (
+/turf/simulated/floor/holofloor{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/holodeck/source_boxingcourt)
+"ibA" = (
+/obj/machinery/door/poddoor/impassable{
+ id_tag = "sst_tele"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"ibN" = (
+/obj/machinery/door/airlock/hatch/syndicate/command{
+ req_access_txt = "150"
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "commandcenter";
+ name = "Privacy Shutters"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"ibP" = (
+/obj/structure/table,
+/obj/machinery/door_control{
+ desc = "A remote control switch for port-side blast doors.";
+ id = "thunderdomeaxe";
+ name = "Specialist Supply";
+ pixel_y = 5;
+ req_access_txt = "104"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor"
+ },
+/area/tdome/tdomeadmin)
+"ieG" = (
+/obj/structure/chair/comfy/brown,
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 8;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"ifq" = (
+/obj/structure/chair/sofa{
+ dir = 6
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 1;
+ layer = 5
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 8;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"igG" = (
+/turf/unsimulated/floor{
+ color = "#CCCCCC";
+ dir = 8;
+ icon_state = "vault";
+ name = "Officer position"
+ },
+/area/centcom/jail)
+"igW" = (
+/obj/machinery/door/airlock/centcom{
+ opacity = 1;
+ req_access_txt = "152"
+ },
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"iic" = (
+/obj/structure/table/wood/poker,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"iid" = (
+/obj/mecha/combat/phazon{
+ operation_req_access = list(114)
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"iie" = (
+/obj/structure/chair/sofa/left,
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 1;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"iij" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"iiz" = (
+/obj/effect/landmark{
+ name = "syndieprisonwarp"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"ijb" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkbrown"
+ },
+/area/centcom/specops)
+"ijg" = (
+/obj/structure/holowindow,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/holodeck/source_knightarena)
+"ijy" = (
+/obj/machinery/abductor/experiment{
+ team = 2
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"ijL" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 6;
+ pixel_y = 27
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = 27
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/trader_station/sol)
+"ijP" = (
+/obj/structure/chair/sofa{
+ dir = 10
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 1;
+ layer = 5
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 4;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"ijS" = (
+/obj/structure/chair/stool/bar,
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"iky" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet6-2";
+ tag = "icon-carpet6-2 (EAST)"
+ },
+/area/holodeck/source_theatre)
+"ikJ" = (
+/obj/machinery/computer/teleporter{
+ req_access = list(150)
+ },
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 1;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"ikP" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"ila" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkredfull"
+ },
+/area/centcom/specops)
+"ilE" = (
+/obj/structure/table/wood,
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"inp" = (
+/obj/structure/table/wood,
+/obj/item/dnainjector/antiblind,
+/obj/item/dnainjector/anticlumsy,
+/obj/item/dnainjector/anticomic,
+/obj/item/dnainjector/anticough,
+/obj/item/dnainjector/antideaf,
+/obj/item/dnainjector/antiepi,
+/obj/item/dnainjector/antifire,
+/obj/item/dnainjector/antiglasses,
+/obj/item/dnainjector/antihallucination,
+/obj/item/dnainjector/antihulk,
+/obj/item/dnainjector/antiinsulation,
+/obj/item/dnainjector/antimidgit,
+/obj/item/dnainjector/antimorph,
+/obj/item/dnainjector/antinobreath,
+/obj/item/dnainjector/antinoprints,
+/obj/item/dnainjector/antiregenerate,
+/obj/item/dnainjector/antiremoteview,
+/obj/item/dnainjector/antirunfast,
+/obj/item/dnainjector/antistutt,
+/obj/item/dnainjector/antitele,
+/obj/item/dnainjector/antitour,
+/obj/item/dnainjector/antixray,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"inB" = (
+/obj/structure/table/glass,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"inR" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Weapons";
+ req_access = null
+ },
+/obj/item/gun/projectile/shotgun/boltaction,
+/obj/item/gun/projectile/shotgun/boltaction,
+/obj/item/gun/projectile/shotgun/boltaction,
+/obj/item/gun/projectile/shotgun/boltaction,
+/obj/item/gun/projectile/shotgun/boltaction,
+/obj/item/ammo_box/a762,
+/obj/item/ammo_box/a762,
+/obj/item/ammo_box/a762,
+/obj/item/ammo_box/a762,
+/obj/item/ammo_box/a762,
+/obj/item/ammo_box/a762,
+/obj/item/ammo_box/a762,
+/obj/item/ammo_box/a762,
+/obj/item/ammo_box/a762,
+/obj/item/ammo_box/a762,
+/obj/item/gun/projectile/shotgun/boltaction,
+/obj/item/ammo_box/a762,
+/obj/item/ammo_box/a762,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ussp_ship)
+"ioe" = (
+/obj/machinery/door/poddoor{
+ id_tag = "nukeop_ready";
+ name = "Shuttle Dock Door"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"ioL" = (
+/obj/machinery/light/small{
+ brightness_range = 6;
+ dir = 8;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"ioN" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"ioO" = (
+/obj/structure/closet/chefcloset,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"ipp" = (
+/obj/machinery/vending/dinnerware,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"ipv" = (
+/turf/simulated/floor/holofloor{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/holodeck/source_boxingcourt)
+"ipG" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/green,
+/obj/item/clothing/shoes/brown,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/head/helmet/swat,
+/obj/item/gun/energy/laser,
+/obj/item/shield/energy,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 3;
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome/arena)
+"iqq" = (
+/obj/machinery/teleport/station,
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/chrono_ship)
+"iqu" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien4"
+ },
+/area/abductor_ship)
+"iqV" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 33;
+ pixel_y = -7
+ },
+/obj/item/gun/energy/sniperrifle{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/item/gun/energy/sniperrifle{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/gun/energy/sniperrifle{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkredfull"
+ },
+/area/centcom/specops)
+"irj" = (
+/obj/item/gun/energy/temperature,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"iru" = (
+/obj/structure/table/wood,
+/obj/item/abductor_baton,
+/obj/item/abductor/silencer,
+/obj/item/abductor/mind_device,
+/obj/item/abductor/gizmo,
+/obj/structure/ninjatele{
+ pixel_x = -28
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"irI" = (
+/obj/structure/foodcart,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"irU" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/chair/sofa{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"irV" = (
+/obj/machinery/computer/syndicate_depot/teleporter{
+ use_power = 0
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_depot/core)
+"ist" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien9"
+ },
+/area/abductor_ship)
+"isK" = (
+/obj/structure/table/wood,
+/obj/item/dnainjector/blindmut,
+/obj/item/dnainjector/clumsymut,
+/obj/item/dnainjector/comic,
+/obj/item/dnainjector/coughmut,
+/obj/item/dnainjector/deafmut,
+/obj/item/dnainjector/epimut,
+/obj/item/dnainjector/firemut,
+/obj/item/dnainjector/glassesmut,
+/obj/item/dnainjector/h2m,
+/obj/item/dnainjector/hallucination,
+/obj/item/dnainjector/hulkmut,
+/obj/item/dnainjector/insulation,
+/obj/item/dnainjector/m2h,
+/obj/item/dnainjector/midgit,
+/obj/item/dnainjector/morph,
+/obj/item/dnainjector/nobreath,
+/obj/item/dnainjector/noprints,
+/obj/item/dnainjector/regenerate,
+/obj/item/dnainjector/remoteview,
+/obj/item/dnainjector/runfast,
+/obj/item/dnainjector/stuttmut,
+/obj/item/dnainjector/telemut,
+/obj/item/dnainjector/tourmut,
+/obj/item/dnainjector/xraymut,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"isN" = (
+/obj/machinery/camera{
+ c_tag = "Centaral Command Supreme Court";
+ dir = 1;
+ network = list("SS13","CentComm");
+ pixel_x = 12;
+ pixel_y = -6
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/court)
+"isW" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/chair/sofa/left{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"isY" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"itg" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/ammo_box/magazine/tommygunm45,
+/obj/item/ammo_box/magazine/tommygunm45,
+/obj/item/ammo_box/magazine/tommygunm45,
+/obj/item/ammo_box/magazine/tommygunm45,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"iuh" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Armory Level 3";
+ network = list("CentComm")
+ },
+/obj/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"iuU" = (
+/turf/unsimulated/wall{
+ dir = 1;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "swall0";
+ tag = "icon-wall3 (NORTH)"
+ },
+/area/ussp_ship)
+"iuV" = (
+/obj/machinery/vending/snack,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"ivN" = (
+/obj/mecha/combat/durand{
+ armor = list("melee" = 60, "bullet" = 50, "laser" = 20, "energy" = 25, "bomb" = 50, "bio" = 0, "rad" = 50, "fire" = 80, "acid" = 80);
+ color = "#CCCCFF";
+ desc = "A heavyweight exosuit, painted in a gray scheme. This model appears to have some modifications for ERT.";
+ name = "Nanotrasen Special Durand Mk. II";
+ operation_req_access = list(109)
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkredfull"
+ },
+/area/centcom/specops)
+"ivP" = (
+/obj/item/gun/projectile/automatic/ar,
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ layer = 2.9;
+ name = "ARG";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/obj/item/gun/projectile/automatic/ar,
+/obj/item/gun/projectile/automatic/ar,
+/obj/item/gun/projectile/automatic/ar,
+/obj/item/gun/projectile/automatic/ar,
+/obj/item/gun/projectile/automatic/ar,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"iwc" = (
+/obj/machinery/vending/wallmed/syndicate{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"iwj" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "asteroid3";
+ tag = "icon-asteroid3 (EAST)"
+ },
+/area/holodeck/source_desert)
+"iwu" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"ixk" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = 5
+ },
+/obj/item/ammo_box/shotgun,
+/obj/item/ammo_box/shotgun,
+/obj/item/ammo_box/shotgun,
+/obj/item/ammo_box/shotgun,
+/obj/item/ammo_box/shotgun,
+/obj/item/storage/box/slug,
+/obj/item/storage/box/slug,
+/obj/item/storage/box/slug,
+/obj/item/storage/box/slug,
+/obj/item/storage/box/slug,
+/obj/item/storage/box/slug,
+/obj/item/storage/box/slug,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkredfull"
+ },
+/area/centcom/specops)
+"ixm" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/chrono_ship)
+"ixp" = (
+/obj/structure/table/glass,
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 8;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"ixH" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/clothing/suit/armor/tdome/red,
+/obj/item/clothing/under/color/red,
+/obj/item/holo/esword/red,
+/turf/simulated/floor/holofloor{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/holodeck/source_thunderdomecourt)
+"iyW" = (
+/obj/structure/table/holotable,
+/obj/machinery/readybutton,
+/turf/simulated/floor/holofloor{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/holodeck/source_thunderdomecourt)
+"izb" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/shotgun,
+/obj/item/gun/projectile/shotgun/automatic,
+/obj/item/gun/projectile/shotgun/lethal,
+/obj/item/gun/projectile/shotgun/pump,
+/obj/item/gun/projectile/shotgun/sc_pump,
+/obj/item/gun/projectile/shotgun/toy,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"izA" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/space,
+/area/ussp_ship)
+"iAK" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"iBB" = (
+/turf/space,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12";
+ tag = "icon-swall12"
+ },
+/area/shuttle/gamma/space)
+"iBH" = (
+/turf/unsimulated/wall/splashscreen,
+/area/start)
+"iBQ" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/clown,
+/obj/item/gun/energy/disabler,
+/obj/item/gun/energy/disabler/cyborg,
+/obj/item/gun/energy/mimicgun,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"iCh" = (
+/obj/item/flag/syndi,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"iCr" = (
+/obj/machinery/light/small{
+ brightness_range = 6;
+ dir = 4;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"iCK" = (
+/obj/structure/chair/sofa{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 4;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"iDd" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "whitecorner"
+ },
+/area/centcom/evac)
+"iDt" = (
+/turf/simulated/floor/holofloor{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/holodeck/source_basketball)
+"iDS" = (
+/obj/structure/closet/syndicate/personal,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"iDU" = (
+/obj/structure/sink{
+ dir = 1
+ },
+/obj/item/radio/intercom/syndicate{
+ pixel_y = -25
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"iEl" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chem_dispenser/beer/upgraded,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "stage_bleft"
+ },
+/area/syndicate_mothership)
+"iEI" = (
+/obj/docking_port/stationary/transit{
+ dwidth = 3;
+ height = 7;
+ id = "steel_rain_transit";
+ name = "steel_rain in transit";
+ width = 7
+ },
+/turf/space/transit/horizontal,
+/area/space)
+"iEK" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/snacks/baguette = 10, /obj/item/reagent_containers/food/snacks/applepie = 10, /obj/item/reagent_containers/food/snacks/applepie = 10, /obj/item/reagent_containers/food/snacks/soup/bloodsoup = 10, /obj/item/reagent_containers/food/snacks/boiledrice = 10, /obj/item/reagent_containers/food/snacks/carrotfries = 10, /obj/item/reagent_containers/food/drinks/cans/cola = 10, "" = 70);
+ name = "Food CC Spawner #1"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/zone3)
+"iEW" = (
+/obj/docking_port/stationary{
+ dwidth = 1;
+ height = 4;
+ id = "pod2_away";
+ name = "recovery ship bay 2";
+ width = 3
+ },
+/turf/space,
+/area/space)
+"iFb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"iFw" = (
+/obj/structure/closet/crate/can,
+/turf/unsimulated/floor{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"iFT" = (
+/obj/item/target,
+/obj/machinery/light/small{
+ brightness_range = 6;
+ dir = 4;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood-broken5"
+ },
+/area/wizard_station)
+"iFV" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 10;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/ussp_ship)
+"iGd" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"iGg" = (
+/obj/machinery/door/window/brigdoor{
+ req_access_txt = "109"
+ },
+/obj/machinery/vending/dinnerware{
+ req_access_txt = "102"
+ },
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"iGV" = (
+/obj/machinery/computer/mecha,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"iIJ" = (
+/obj/machinery/computer/robotics,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"iIT" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"iIV" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"iJd" = (
+/obj/structure/table/wood,
+/obj/item/clothing/suit/browntrenchcoat,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"iJh" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/specops)
+"iKj" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "bcircuit"
+ },
+/area/centcom/zone2)
+"iLv" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/weightmachine/weightlifter,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"iLw" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/space,
+/area/ussp_ship)
+"iLB" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien20"
+ },
+/area/abductor_ship)
+"iLQ" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"iLU" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/obj/structure/chair,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"iLZ" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 1-3";
+ network = list("CentComm")
+ },
+/obj/structure/chair,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"iMg" = (
+/obj/structure/chair,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"iMk" = (
+/turf/unsimulated/wall{
+ icon_state = "iron13"
+ },
+/area/syndicate_mothership)
+"iMt" = (
+/obj/structure/chair/sofa/right{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 8;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"iMC" = (
+/obj/machinery/conveyor{
+ id = "SOL"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"iMD" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12";
+ tag = "icon-swall12"
+ },
+/area/shuttle/escape)
+"iOb" = (
+/obj/item/radio/intercom/syndicate{
+ pixel_x = -3;
+ pixel_y = -30
+ },
+/obj/machinery/light/small{
+ brightness_range = 6;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -26
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet5-1"
+ },
+/area/wizard_station)
+"iOe" = (
+/obj/structure/table,
+/obj/random/tool,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/pinpointer/advpinpointer,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"iOl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ color = "red"
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_mothership)
+"iOE" = (
+/obj/structure/closet/abductor,
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"iOS" = (
+/obj/machinery/light{
+ dir = 8;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/evac)
+"iPw" = (
+/obj/machinery/computer/station_alert,
+/turf/space,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"iPX" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/gun/projectile/automatic/pistol/deagle/gold{
+ pixel_y = 5
+ },
+/obj/item/gun/projectile/automatic/pistol/deagle/gold,
+/obj/item/ammo_box/magazine/m50,
+/obj/item/ammo_box/magazine/m50,
+/obj/item/ammo_box/magazine/m50,
+/obj/item/ammo_box/magazine/m50,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"iQi" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/bush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"iQV" = (
+/obj/structure/table/wood/poker,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"iRo" = (
+/obj/structure/table/abductor,
+/obj/item/retractor/alien,
+/obj/item/hemostat/alien,
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"iSr" = (
+/obj/machinery/porta_turret/centcom/pulse{
+ armor = list("melee" = 90, "bullet" = 90, "laser" = 95, "energy" = 95, "bomb" = 80, "bio" =100, "rad" = 100, "fire" = 100, "acid" = 100);
+ color = "#666666";
+ damtype = "burn";
+ health = 1250;
+ region_max = 12;
+ scan_range = 10;
+ shot_delay = 0.5
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"iSU" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ id_tag = "ASPS_blastdoor";
+ layer = 5;
+ name = "Automatic Station Protection System";
+ opacity = 0
+ },
+/obj/structure/window/full/reinforced{
+ layer = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "rcircuitanim"
+ },
+/area/centcom/zone1)
+"iSV" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ name = "Kitchen & Medbay"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"iTG" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "warnwhitered"
+ },
+/area/centcom/zone1)
+"iTN" = (
+/obj/structure/table/wood,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"iUp" = (
+/obj/structure/bookcase,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"iUr" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin/syndicate,
+/obj/item/pen/multi/gold{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/folder/red{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/item/stamp/chameleon,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"iUG" = (
+/mob/living/simple_animal/hostile/creature{
+ name = "Experiment 35b"
+ },
+/turf/unsimulated/floor{
+ icon_state = "plasma"
+ },
+/area/wizard_station)
+"iVp" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien24"
+ },
+/area/abductor_ship)
+"iVq" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"iVD" = (
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ id_tag = "ERT_director_office_shutters";
+ layer = 5;
+ locked = 1;
+ name = "ERT Director office"
+ },
+/turf/unsimulated/wall/fakeglass{
+ dir = 1;
+ icon_state = "fakewindows2"
+ },
+/area/centcom)
+"iWh" = (
+/obj/effect/clockwork/overlay/floor/bloodcult,
+/obj/effect/decal/cleanable/blood/gibs,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"iXv" = (
+/obj/machinery/door/poddoor/impassable{
+ id_tag = "sit_tele"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"iXG" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 1 Check point";
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"iXH" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"jaa" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"jat" = (
+/turf/simulated/floor/holofloor{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/holodeck/source_basketball)
+"jaQ" = (
+/obj/structure/foodcart,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "whitecorner"
+ },
+/area/centcom/evac)
+"jaU" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet03"
+ },
+/area/centcom/evac)
+"jcb" = (
+/obj/machinery/vending/tool,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/srtops)
+"jcl" = (
+/obj/structure/window/reinforced{
+ color = "red";
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/grille{
+ layer = 2.8
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id_tag = "commandcenter";
+ name = "Privacy Shutters"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"jcn" = (
+/turf/unsimulated/wall{
+ icon_state = "sandstone0"
+ },
+/area/wizard_station)
+"jcp" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"jcG" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Equipment Room";
+ req_access_txt = "150"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"jcI" = (
+/obj/structure/chair,
+/obj/machinery/light{
+ dir = 1;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "whitecorner"
+ },
+/area/centcom/evac)
+"jej" = (
+/obj/structure/chair,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"jes" = (
+/obj/machinery/vending/coffee,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"jeA" = (
+/obj/structure/table/wood,
+/obj/item/clothing/under/solgov/rep{
+ name = "uniform"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"jeT" = (
+/obj/structure/toilet{
+ dir = 1;
+ layer = 4
+ },
+/obj/machinery/light{
+ layer = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"jfD" = (
+/obj/structure/closet/crate/can,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"jfH" = (
+/obj/structure/table,
+/obj/item/storage/pill_bottle/random_drug_bottle,
+/obj/item/reagent_containers/glass/bottle/adminordrazine,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"jfX" = (
+/obj/structure/chair,
+/obj/machinery/light{
+ dir = 1;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "whitecorner"
+ },
+/area/centcom/evac)
+"jga" = (
+/turf/unsimulated/wall{
+ icon_state = "iron12"
+ },
+/area/syndicate_mothership)
+"jgy" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien23"
+ },
+/area/abductor_ship)
+"jgZ" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien7"
+ },
+/area/abductor_ship)
+"jhh" = (
+/obj/machinery/abductor/experiment{
+ team = 1
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"jhp" = (
+/obj/structure/table/wood,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Central Command"
+ },
+/turf/unsimulated/floor{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"jix" = (
+/turf/unsimulated/floor{
+ icon_state = "carpet11-12"
+ },
+/area/centcom/zone1)
+"jiX" = (
+/obj/machinery/chem_master,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"jjm" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 1
+ },
+/area/centcom/evac)
+"jjA" = (
+/obj/structure/table/wood/poker,
+/obj/item/storage/box/ids,
+/obj/item/storage/box/ids,
+/obj/item/storage/box/PDAs{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/PDAs{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"jjP" = (
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_y = -32
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkgrey"
+ },
+/area/centcom/specops)
+"jkr" = (
+/obj/machinery/computer/operating,
+/turf/unsimulated/floor{
+ dir = 10;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"jkB" = (
+/obj/structure/table/reinforced,
+/obj/item/shield/riot{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/shield/riot{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/shield/riot{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/shield/riot{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/shield/riot{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/shield/riot{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = 5
+ },
+/obj/item/shield/riot{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/shield/riot{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/shield/riot{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/shield/riot{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/specops)
+"jly" = (
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ layer = 2.9;
+ name = "ARG magazine";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/item/ammo_box/magazine/m556,
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"jmq" = (
+/turf/unsimulated/floor{
+ icon_state = "carpet14-10"
+ },
+/area/wizard_station)
+"jmK" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/m90,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"jmT" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/pizzabox,
+/obj/item/pizzabox,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"jnD" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/trophy/gold_cup,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"jnQ" = (
+/obj/item/radio/intercom/specops{
+ pixel_x = -25
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"joi" = (
+/obj/structure/chair/comfy/red,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluecorners"
+ },
+/area/centcom/zone2)
+"jop" = (
+/obj/structure/filingcabinet/security,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"joR" = (
+/mob/living/silicon/decoy{
+ name = "A.L.I.C.E."
+ },
+/turf/unsimulated/floor{
+ icon_state = "bcircuit"
+ },
+/area/centcom/zone2)
+"jpb" = (
+/obj/structure/bookcase,
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/machinery/camera{
+ c_tag = "CentComm Jail 8";
+ dir = 8;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/jail)
+"jpc" = (
+/obj/structure/window/full/reinforced{
+ layer = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/evac)
+"jpl" = (
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 95, "bullet" = 95, "laser" = 95, "energy" = 95, "bomb" = 95, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 80);
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "ERT_turret_shutters";
+ locked = 1;
+ name = "ERT Lockdown";
+ opacity = 0
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkgrey"
+ },
+/area/centcom/specops)
+"jpm" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"jqt" = (
+/obj/structure/window/full/reinforced{
+ layer = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "rcircuitanim"
+ },
+/area/centcom/zone1)
+"jqZ" = (
+/turf/unsimulated/floor{
+ icon_state = "whitegreencorner"
+ },
+/area/centcom/zone1)
+"jrw" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window{
+ closingLayer = 2.9;
+ dir = 2;
+ layer = 2.9;
+ panel_open = 1
+ },
+/obj/machinery/door/poddoor/shutters{
+ active_power_usage = 1;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "SOL_Shutters";
+ locked = 1;
+ name = "Privacy Shutters"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"jrZ" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/paicard{
+ pixel_x = -5
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"jsp" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "whitegreen"
+ },
+/area/centcom/zone1)
+"jtt" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"jty" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkgreycamo"
+ },
+/area/centcom/specops)
+"jtK" = (
+/obj/structure/table/wood,
+/obj/item/clothing/head/beret/centcom/officer/navy{
+ pixel_x = 5;
+ pixel_y = -2
+ },
+/obj/item/stamp/centcom{
+ pixel_x = -6;
+ pixel_y = -3
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"juf" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/nuclear,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"juj" = (
+/obj/structure/table/reinforced,
+/obj/item/ammo_box/magazine/enforcer,
+/obj/item/ammo_box/magazine/enforcer,
+/obj/item/ammo_box/magazine/enforcer,
+/obj/item/ammo_box/magazine/enforcer,
+/obj/item/ammo_box/magazine/enforcer,
+/obj/item/ammo_box/magazine/enforcer,
+/obj/item/ammo_box/magazine/enforcer,
+/obj/item/ammo_box/magazine/enforcer,
+/obj/item/ammo_box/magazine/enforcer,
+/obj/item/ammo_box/magazine/enforcer,
+/obj/item/ammo_box/magazine/enforcer,
+/obj/item/ammo_box/magazine/enforcer,
+/obj/item/ammo_box/magazine/enforcer,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/specops)
+"juo" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "bcircuit"
+ },
+/area/centcom/zone2)
+"juC" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"juL" = (
+/obj/structure/table/wood,
+/obj/machinery/syndicatebomb/emp,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"jvg" = (
+/turf/unsimulated/wall{
+ icon_state = "iron9";
+ tag = "icon-iron9"
+ },
+/area/space)
+"jvr" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ name = "Torture Room"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"jvy" = (
+/obj/machinery/vending/snack/free,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"jvL" = (
+/obj/structure/table/wood,
+/obj/machinery/photocopier/faxmachine,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"jwy" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_scanner/adv,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"jwT" = (
+/obj/machinery/vending/coffee,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"jxb" = (
+/obj/machinery/light/small{
+ brightness_range = 6;
+ dir = 1;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet10-8"
+ },
+/area/wizard_station)
+"jxJ" = (
+/turf/unsimulated/floor{
+ icon_state = "darkblue"
+ },
+/area/adminconstruction)
+"jym" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/filingcabinet/security,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"jyt" = (
+/obj/machinery/porta_turret/centcom/pulse{
+ armor = list("melee" = 90, "bullet" = 90, "laser" = 95, "energy" = 95, "bomb" = 80, "bio" =100, "rad" = 100, "fire" = 100, "acid" = 100);
+ color = "#666666";
+ damtype = "burn";
+ health = 1250;
+ region_max = 12;
+ scan_range = 12;
+ shot_delay = 8
+ },
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"jyA" = (
+/turf/simulated/floor/holofloor{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/holodeck/source_basketball)
+"jyD" = (
+/turf/space,
+/area/space)
+"jyE" = (
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_x = 30
+ },
+/obj/structure/dispenser/oxygen,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"jzk" = (
+/obj/structure/window/full/reinforced{
+ layer = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"jzu" = (
+/turf/unsimulated/wall{
+ dir = 4;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "swall_f10"
+ },
+/area/ussp_ship)
+"jAi" = (
+/obj/machinery/door/window{
+ dir = 2;
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"jAr" = (
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_x = -32
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/gamma/space)
+"jAX" = (
+/obj/structure/window/reinforced,
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"jBn" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id_tag = "ERT_armory_lvl2";
+ layer = 5;
+ locked = 1;
+ name = "Armory level 2"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"jDd" = (
+/obj/machinery/porta_turret/centcom/pulse{
+ armor = list("melee" = 90, "bullet" = 90, "laser" = 95, "energy" = 95, "bomb" = 80, "bio" =100, "rad" = 100, "fire" = 100, "acid" = 100);
+ color = "#666666";
+ damtype = "burn";
+ health = 1250;
+ inertia_move_delay = 6;
+ region_max = 12;
+ scan_range = 11;
+ shot_delay = 0.5
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"jEz" = (
+/turf/unsimulated/wall{
+ icon_state = "iron3"
+ },
+/area/syndicate_mothership)
+"jEO" = (
+/obj/docking_port/stationary/transit{
+ dir = 8;
+ dwidth = 8;
+ height = 20;
+ id = "freegolem_transit";
+ name = "free golem in transit";
+ width = 16
+ },
+/turf/space/transit/horizontal{
+ dir = 4
+ },
+/area/space)
+"jEV" = (
+/obj/docking_port/stationary{
+ area_type = /area/syndicate_mothership;
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 22;
+ id = "syndicate_away";
+ name = "syndicate base";
+ turf_type = /turf/unsimulated/floor/snow;
+ width = 18
+ },
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"jFl" = (
+/obj/structure/chair/comfy/red{
+ color = "#FFFFFF";
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"jFy" = (
+/obj/machinery/recharge_station/upgraded,
+/turf/unsimulated/floor{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"jFD" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Prison Cell";
+ opacity = 1
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "CC_space_jail_cell";
+ layer = 5;
+ locked = 1;
+ name = "Central Command Jail"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"jFI" = (
+/obj/effect/landmark/abductor/agent{
+ team = 3
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"jFM" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/door_control{
+ id = "slaughterhouse_door";
+ name = "Slaughterhouse door";
+ normaldoorcontrol = 1;
+ pixel_y = 25;
+ req_access_txt = "150";
+ specialfunctions = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"jFZ" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 35
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"jGo" = (
+/obj/structure/chair/stool,
+/obj/item/clothing/head/bandana{
+ pixel_y = -10
+ },
+/obj/item/clothing/glasses/sunglasses,
+/turf/unsimulated/beach/sand,
+/area/ninja/holding)
+"jGI" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Special Ops. Armory 1";
+ dir = 1;
+ network = list("CentComm")
+ },
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 95, "bullet" = 95, "laser" = 95, "energy" = 95, "bomb" = 95, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 80);
+ density = 0;
+ icon_state = "open";
+ id_tag = "ERT_turret_shutters";
+ locked = 1;
+ name = "ERT Lockdown";
+ opacity = 0
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"jGQ" = (
+/obj/item/radio/intercom{
+ pixel_y = 35
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"jGS" = (
+/obj/structure/chair/sofa/left{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/evac)
+"jHb" = (
+/turf/unsimulated/wall{
+ icon_state = "iron10"
+ },
+/area/syndicate_mothership)
+"jHp" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"jHs" = (
+/obj/machinery/door/window{
+ dir = 2;
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon_state = "bcircuit"
+ },
+/area/centcom/zone2)
+"jIe" = (
+/obj/machinery/vending/tool,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"jIg" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/stack/sheet/mineral/gold{
+ pixel_x = 10;
+ pixel_y = 10
+ },
+/obj/item/stack/sheet/mineral/gold{
+ pixel_x = -10;
+ pixel_y = 7
+ },
+/obj/item/stack/sheet/mineral/gold,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"jIJ" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/jail)
+"jIS" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/grown/potato/wedges,
+/obj/item/reagent_containers/food/snacks/grown/potato/wedges{
+ pixel_y = 12
+ },
+/obj/item/reagent_containers/food/snacks/grown/potato/wedges,
+/obj/item/reagent_containers/food/snacks/grown/potato/wedges,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"jJB" = (
+/turf/simulated/floor/holofloor{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/holodeck/source_emptycourt)
+"jKH" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 30
+ },
+/obj/structure/bed/dogbed/ian,
+/mob/living/simple_animal/pet/dog/fox/Syndifox,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"jKJ" = (
+/turf/unsimulated/wall{
+ desc = "The door appears to be locked tightly.";
+ icon = 'icons/obj/doors/airlocks/hatch/centcom.dmi';
+ icon_state = "closed";
+ name = "Locked Door"
+ },
+/area/space)
+"jKW" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/space,
+/area/ussp_ship)
+"jMf" = (
+/obj/machinery/tcomms/relay/cc,
+/turf/unsimulated/floor{
+ icon_state = "bcircuit"
+ },
+/area/centcom/zone2)
+"jMl" = (
+/obj/structure/window/reinforced{
+ color = "red";
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/grille{
+ layer = 2.8
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id_tag = "commandcenter";
+ name = "Privacy Shutters"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"jNo" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/stack/spacecash/c1000000{
+ desc = "Баксоны максона. Возможно кто-то приобретет пропуск.";
+ name = "100.000 �������� �������"
+ },
+/obj/item/stack/telecrystal/fifty{
+ amount = 115;
+ desc = null
+ },
+/obj/item/stack/telecrystal/fifty{
+ amount = 115;
+ desc = null
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"jNu" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/syndicate{
+ pixel_x = 5
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -9;
+ pixel_y = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"jOT" = (
+/turf/simulated/floor/holofloor,
+/area/holodeck/source_thunderdomecourt)
+"jPu" = (
+/obj/structure/bookcase/manuals,
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"jPz" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/syndicate{
+ pixel_x = 5
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -9;
+ pixel_y = 10
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"jPQ" = (
+/obj/machinery/light/small{
+ dir = 4;
+ tag = "icon-bulb1 (EAST)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/assault_pod)
+"jQJ" = (
+/obj/structure/closet/secure_closet/bar{
+ req_access_txt = "25"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja/holding)
+"jQL" = (
+/obj/structure/table/wood,
+/obj/item/paper/form/NT_HR_00,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"jRu" = (
+/obj/machinery/chem_heater,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"jRw" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"jSz" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/holodeck/source_basketball)
+"jSE" = (
+/obj/item/radio/intercom/specops{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"jSH" = (
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Teleport Room";
+ dir = 4;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ dir = 10;
+ icon_state = "darkyellow"
+ },
+/area/centcom/specops)
+"jUg" = (
+/obj/item/radio/intercom/specops{
+ pixel_x = -25
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"jUn" = (
+/obj/machinery/door/window{
+ dir = 8;
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"jUw" = (
+/obj/mecha/combat/durand/loaded{
+ operation_req_access = list(1)
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/mech,
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/gamma/space)
+"jUX" = (
+/obj/machinery/dna_scannernew,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"jVm" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkbluecorners"
+ },
+/area/centcom/specops)
+"jVp" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/kinetic_accelerator/crossbow/large,
+/obj/item/gun/energy/kinetic_accelerator/crossbow/large,
+/obj/item/gun/energy/kinetic_accelerator/crossbow/large/cyborg,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"jVT" = (
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/nitrogen{
+ maximum_pressure = 50000
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"jWb" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/suit/armor/riot/knight/red,
+/obj/item/clothing/head/helmet/riot/knight/red,
+/obj/item/holo/claymore/red,
+/turf/simulated/floor/holofloor{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/holodeck/source_knightarena)
+"jWC" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "robotics_solar_outer";
+ name = "Project 28u"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"jXk" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/genericbush,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"jYo" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Jail 4";
+ dir = 10;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"jYJ" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"jYQ" = (
+/obj/structure/table/wood,
+/obj/item/kitchen/utensil/spoon,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"jYX" = (
+/obj/machinery/door/poddoor{
+ id_tag = "thunderdomeaxe";
+ name = "Axe Supply"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome/arena)
+"jZk" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"jZW" = (
+/obj/structure/chair/sofa/right{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"kaJ" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ name = "Syndicate Base"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"kbg" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"kbA" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
+ dir = 4;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ icon_state = "whitecorner"
+ },
+/area/centcom/evac)
+"kbD" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "bcircuit"
+ },
+/area/centcom/zone2)
+"kbU" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/pizzabox,
+/obj/item/pizzabox,
+/obj/item/kitchen/knife,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"kbZ" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id_tag = "ERT_armory_lvl2";
+ layer = 5;
+ locked = 1;
+ name = "Armory level 2"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"kch" = (
+/obj/item/clothing/head/collectable/paper,
+/turf/unsimulated/beach/coastline,
+/area/ninja/holding)
+"kdb" = (
+/turf/unsimulated/wall{
+ dir = 8;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_end";
+ tag = "icon-wall3 (NORTH)"
+ },
+/area/space)
+"kds" = (
+/turf/unsimulated/wall/fakeglass,
+/area/wizard_station)
+"kdD" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s10"
+ },
+/area/shuttle/escape)
+"kdE" = (
+/obj/structure/table/wood,
+/obj/machinery/photocopier/faxmachine,
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 2 Office 7";
+ dir = 4;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kdH" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/cans/beer,
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"kdY" = (
+/obj/machinery/computer/mech_bay_power_console,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"kec" = (
+/obj/machinery/computer/camera_advanced/abductor{
+ team = 2
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"kei" = (
+/obj/structure/chair/office/light,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kez" = (
+/obj/structure/closet,
+/obj/item/clothing/head/hopcap{
+ name = "cap"
+ },
+/obj/item/clothing/head/hopcap{
+ name = "cap"
+ },
+/obj/item/clothing/head/hopcap{
+ icon_state = "hgpiratecap";
+ name = "cap"
+ },
+/obj/item/clothing/head/hopcap{
+ icon_state = "hgpiratecap";
+ name = "cap"
+ },
+/obj/item/clothing/head/hopcap{
+ icon_state = "hgpiratecap";
+ name = "cap"
+ },
+/obj/item/clothing/suit/captunic{
+ name = "parade tunic"
+ },
+/obj/item/clothing/suit/captunic{
+ name = "parade tunic"
+ },
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/shoes/combat,
+/obj/machinery/light/small{
+ dir = 8;
+ light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"keA" = (
+/obj/item/radio/intercom/specops{
+ pixel_y = 25
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kgi" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "sit_away";
+ req_access_txt = "150"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"kgD" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Toilet";
+ opacity = 1;
+ req_access_txt = "109"
+ },
+/turf/unsimulated/floor{
+ icon_state = "tranquillite"
+ },
+/area/centcom/specops)
+"kgG" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/ionrifle/carbine,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"khP" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien11"
+ },
+/area/abductor_ship)
+"kia" = (
+/obj/structure/table/wood/poker,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"kiB" = (
+/obj/structure/window/reinforced,
+/obj/machinery/smartfridge/medbay,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"kjq" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/folder/red{
+ pixel_x = 7
+ },
+/obj/item/pen/fancy,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kjt" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/folder/blue,
+/obj/item/pen/fancy,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kjw" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/engineering_construction,
+/obj/item/paper/crumpled/bloody/ruins/lavaland/clown_planet,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kjB" = (
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"kjC" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/item/radio/intercom/syndicate{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"kjL" = (
+/obj/structure/mineral_door/wood,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"kkR" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kld" = (
+/obj/machinery/door_control{
+ id = "CC_zone2_blastdoor";
+ name = "Zone 2 Blastdoor Control";
+ pixel_x = -36;
+ pixel_y = -4;
+ req_access_txt = "110"
+ },
+/obj/machinery/door_control{
+ id = "CC_zone2_checkpoint_lockdown";
+ name = "Zone 2 Checkpoint Lockdown";
+ pixel_x = -36;
+ pixel_y = 7;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kmt" = (
+/obj/item/flag/nt,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom)
+"kmG" = (
+/obj/machinery/door_control{
+ id = "nukeop_base";
+ name = "Nuclear Base Access";
+ pixel_y = -25;
+ req_access_txt = "153"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"knf" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"knq" = (
+/obj/structure/table/wood,
+/obj/item/encryptionkey/headset_cargo,
+/obj/item/encryptionkey/headset_com,
+/obj/item/encryptionkey/headset_eng,
+/obj/item/encryptionkey/headset_iaa,
+/obj/item/encryptionkey/headset_med,
+/obj/item/encryptionkey/headset_medsci,
+/obj/item/encryptionkey/headset_rob,
+/obj/item/encryptionkey/headset_sci,
+/obj/item/encryptionkey/headset_sec,
+/obj/item/encryptionkey/headset_service,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"knx" = (
+/obj/machinery/door/window{
+ dir = 1;
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"koO" = (
+/obj/structure/cable,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"kph" = (
+/obj/structure/bed,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kps" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/sign/poster/contraband/communist_state{
+ pixel_x = -32
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"kpJ" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/evac)
+"kpU" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/space,
+/area/ussp_ship)
+"kqa" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"kqn" = (
+/obj/machinery/optable,
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"kqr" = (
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 4;
+ name = "Connector Port (Air Supply)"
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen{
+ name = "Canister: \[O2] (CRYO)"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"kqD" = (
+/obj/structure/table/wood,
+/obj/item/clothing/head/naziofficer{
+ name = "Officer Cap"
+ },
+/obj/item/clothing/under/officeruniform{
+ icon_state = "nazi";
+ name = "Officer's Uniform"
+ },
+/obj/item/clothing/suit/blacktrenchcoat{
+ icon_state = "nazi"
+ },
+/obj/item/clothing/shoes/black,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"krt" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"krY" = (
+/obj/machinery/computer/security{
+ network = list("SS13","Telecomms","Research Outpost","Mining Outpost","ERT","CentComm","Thunderdome")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"ksl" = (
+/obj/structure/chair/stool/holostool,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet11-0";
+ tag = "icon-carpet11-0 (EAST)"
+ },
+/area/holodeck/source_meetinghall)
+"ksJ" = (
+/turf/unsimulated/wall{
+ dir = 4;
+ icon_state = "iron7";
+ tag = "icon-iron11"
+ },
+/area/space)
+"kty" = (
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"kuc" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "asteroid";
+ tag = "icon-asteroid"
+ },
+/area/holodeck/source_desert)
+"kuo" = (
+/turf/unsimulated/wall,
+/area/tdome/arena)
+"kuU" = (
+/obj/structure/flora/rock,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"kvb" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "whitegreen"
+ },
+/area/centcom/zone1)
+"kvK" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "whitegreencorner"
+ },
+/area/centcom/zone1)
+"kvS" = (
+/obj/machinery/newscaster{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "warnwhiteorange"
+ },
+/area/centcom/evac)
+"kvU" = (
+/obj/item/gun/energy/telegun,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"kvV" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/space,
+/area/ussp_ship)
+"kwf" = (
+/obj/structure/noticeboard{
+ pixel_y = -30
+ },
+/obj/item/paper/syndimemo{
+ info = "https://www.youtube.com/watch?v=PD8LdxRSueA"
+ },
+/turf/unsimulated/floor{
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"kwI" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"kwX" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "whitecorner"
+ },
+/area/centcom/evac)
+"kxa" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ icon_state = "whitecorner"
+ },
+/area/centcom/evac)
+"kxj" = (
+/obj/machinery/abductor/pad{
+ team = 1
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"kxr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/light/small{
+ light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"kxA" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"kyj" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_r";
+ tag = "icon-propulsion_r (NORTH)"
+ },
+/turf/space,
+/area/ussp_ship)
+"kyn" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "ERT_armory_lvl4";
+ layer = 5;
+ locked = 1;
+ name = "Armory level 4"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"kyC" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"kyR" = (
+/obj/machinery/vending/chinese/free,
+/turf/unsimulated/floor{
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"kyU" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/camera{
+ c_tag = "CentComm Arrivals 2";
+ dir = 1;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"kyW" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Garden room";
+ opacity = 1;
+ req_access_txt = "113"
+ },
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"kzj" = (
+/obj/item/flag/syndi,
+/obj/machinery/light{
+ brightness_range = 5;
+ light_range = 5;
+ nightshift_light_range = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"kzG" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "green"
+ },
+/area/holodeck/source_boxingcourt)
+"kzK" = (
+/obj/machinery/pdapainter,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"kAr" = (
+/obj/machinery/vending/cola/free,
+/turf/unsimulated/floor{
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"kAP" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "whitecorner"
+ },
+/area/centcom/evac)
+"kBc" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"kBB" = (
+/obj/structure/flora/grass/green,
+/turf/simulated/floor/holofloor{
+ icon_state = "snow";
+ tag = "icon-snow"
+ },
+/area/holodeck/source_snowfield)
+"kBV" = (
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ id_tag = "ERT_director_office_shutters";
+ layer = 5;
+ locked = 1;
+ name = "ERT Director office"
+ },
+/turf/space,
+/turf/unsimulated/wall/fakeglass{
+ dir = 6;
+ tag = "icon-fakewindows (NORTHEAST)"
+ },
+/area/centcom)
+"kCK" = (
+/obj/structure/table/wood,
+/obj/item/gun/rocketlauncher,
+/obj/item/gun/rocketlauncher,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"kDo" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"kDp" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/wt550,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"kDF" = (
+/obj/machinery/chem_dispenser{
+ desc = "It appears Fox is doing more fruit chemistry today!";
+ hackedcheck = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"kEe" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/zone2)
+"kEs" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/chem_heater,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"kEO" = (
+/obj/structure/table/wood,
+/obj/item/folder/red{
+ pixel_x = 7
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kEQ" = (
+/obj/structure/table/wood,
+/obj/item/pen/fancy,
+/obj/item/paper/form/NT_HR_00,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kFU" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/jail)
+"kGa" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = -25
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -40
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kHx" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window{
+ dir = 8;
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/pen/multi/fountain,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kHZ" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"kIf" = (
+/obj/structure/chair/sofa{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"kIg" = (
+/turf/unsimulated/floor{
+ icon_state = "carpet7-3"
+ },
+/area/wizard_station)
+"kIj" = (
+/obj/structure/table/reinforced/brass,
+/obj/item/clothing/suit/space/vox/medic,
+/obj/item/clothing/suit/space/vox/medic,
+/obj/item/clothing/head/helmet/space/vox/medic,
+/obj/item/clothing/head/helmet/space/vox/medic,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"kID" = (
+/turf/unsimulated/wall{
+ icon_state = "rwall0"
+ },
+/area/vox_station)
+"kJk" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 1-4";
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"kKc" = (
+/obj/structure/table/wood,
+/obj/item/clothing/under/color/black{
+ icon_state = "officerblueclothes";
+ name = "white jumpsuit"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"kKv" = (
+/obj/structure/flora/rock,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"kKH" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/pointybush,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"kLa" = (
+/obj/structure/window/full/reinforced{
+ layer = 2
+ },
+/obj/machinery/door/poddoor/shutters{
+ active_power_usage = 1;
+ dir = 1;
+ icon_state = "open";
+ id_tag = "ASPS_blastdoor";
+ locked = 1;
+ name = "Privacy Shutters"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"kLW" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/energy/gun/nuclear{
+ pixel_y = 8
+ },
+/obj/item/gun/energy/gun/nuclear{
+ pixel_y = -2
+ },
+/obj/item/gun/energy/gun/nuclear{
+ pixel_y = -2
+ },
+/obj/item/gun/energy/gun/nuclear{
+ pixel_y = -2
+ },
+/obj/item/gun/energy/gun/nuclear{
+ pixel_y = 8
+ },
+/obj/item/gun/energy/gun/nuclear{
+ pixel_y = 8
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 33;
+ pixel_y = -7
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkredfull"
+ },
+/area/centcom/specops)
+"kMR" = (
+/obj/machinery/door/airlock/public{
+ frequency = 1559;
+ id_tag = "check_point_1_airlock_internal";
+ locked = 1;
+ name = "Check Point 1 Internal Airlock";
+ req_access_txt = "110"
+ },
+/obj/machinery/door/poddoor/shutters{
+ active_power_usage = 1;
+ dir = 1;
+ icon_state = "open";
+ id_tag = "ASPS_blastdoor";
+ locked = 1;
+ name = "Privacy Shutters"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"kNk" = (
+/obj/structure/table/wood,
+/obj/machinery/syndicatebomb/badmin,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"kNm" = (
+/obj/machinery/door/airlock/public{
+ frequency = 1560;
+ id_tag = "check_point_2_airlock_internal";
+ locked = 1;
+ name = "Check Point 2 Internal Airlock";
+ req_access_txt = "110"
+ },
+/obj/machinery/door/poddoor/shutters{
+ active_power_usage = 1;
+ dir = 1;
+ icon_state = "open";
+ id_tag = "ASPS_blastdoor";
+ locked = 1;
+ name = "Privacy Shutters"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"kNv" = (
+/obj/structure/closet/l3closet/security,
+/obj/item/clothing/mask/gas,
+/obj/item/tank/emergency_oxygen/double/full,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/watertank/janitor{
+ max_integrity = 1500;
+ volume = 1500
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkpurple"
+ },
+/area/centcom/specops)
+"kNw" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = -25
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -40
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/evac)
+"kPw" = (
+/obj/machinery/kitchen_machine/grill/upgraded,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"kPB" = (
+/turf/simulated/floor/holofloor{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/holodeck/source_thunderdomecourt)
+"kPT" = (
+/obj/mecha/combat/gygax/dark/loaded{
+ operation_req_access = list(114)
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"kQd" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "engine";
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/source_wildlife)
+"kQB" = (
+/obj/machinery/light/small{
+ brightness_range = 6;
+ dir = 1;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"kQP" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 25
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 40
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/evac)
+"kQS" = (
+/obj/machinery/computer/camera_advanced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"kQX" = (
+/obj/machinery/igniter/on,
+/turf/simulated/floor/plasteel,
+/area/tdome/arena)
+"kRi" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"kRS" = (
+/obj/mecha/combat/marauder/seraph/loaded,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"kSA" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Master of Synthetics";
+ opacity = 1;
+ req_access_txt = "113"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kSQ" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 2 Office 8";
+ dir = 8;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"kST" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id_tag = "commandcenter";
+ name = "Privacy Shutters"
+ },
+/obj/machinery/door/airlock/hatch/syndicate/command{
+ req_access_txt = "150"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"kSW" = (
+/obj/machinery/door/airlock/shuttle,
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/gamma/space)
+"kTJ" = (
+/obj/structure/table,
+/obj/machinery/door_control{
+ desc = "A remote control switch for port-side blast doors.";
+ id = "thunderdome";
+ name = "Main Blast Doors";
+ pixel_x = -3;
+ req_access_txt = "104"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor"
+ },
+/area/tdome/tdomeadmin)
+"kTX" = (
+/obj/item/flag/species/human,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 1;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"kUg" = (
+/obj/item/beach_ball/holoball,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"kVg" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/shoes/brown,
+/obj/item/clothing/suit/armor/tdome/red,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/melee/energy/sword/saber/red,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome/arena)
+"kVm" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Checkpoint zone 2";
+ opacity = 1;
+ req_access_txt = "113"
+ },
+/obj/machinery/door/poddoor/shutters{
+ active_power_usage = 1;
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "CC_zone2_checkpoint_lockdown";
+ locked = 1;
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kVI" = (
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"kVV" = (
+/obj/machinery/door/window{
+ closingLayer = 2.9;
+ dir = 2;
+ layer = 2.9;
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ active_power_usage = 1;
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "CC_zone2_checkpoint_lockdown";
+ locked = 1;
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kVW" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/statue/artchair,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"kWm" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/robotics_cyborgs,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"kWQ" = (
+/obj/machinery/door_control{
+ id = "SST_classified_gear_room";
+ name = "Classified gear";
+ pixel_x = 8;
+ pixel_y = -25;
+ req_access_txt = "153"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"kXa" = (
+/obj/machinery/door/poddoor{
+ id_tag = "thunderdomehea";
+ name = "Heavy Supply"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome/arena)
+"kXq" = (
+/obj/item/paper_bin/nanotrasen,
+/obj/structure/table/wood/poker,
+/obj/item/pen/multi/gold,
+/obj/item/stamp/chameleon,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"kXs" = (
+/obj/structure/sign/securearea,
+/turf/unsimulated/wall,
+/area/centcom)
+"kXw" = (
+/obj/machinery/sleeper/upgraded,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet06"
+ },
+/area/centcom/evac)
+"kXV" = (
+/obj/structure/table/reinforced,
+/obj/item/deck/cards,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/jail)
+"kYw" = (
+/obj/structure/chair/sofa/left{
+ dir = 4;
+ pixel_x = 7
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"kYG" = (
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"kYO" = (
+/obj/structure/table/holotable,
+/obj/machinery/readybutton,
+/turf/simulated/floor/holofloor{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/holodeck/source_knightarena)
+"kYQ" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen{
+ maximum_pressure = 50000
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"kZq" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/mob/living/simple_animal/pig,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"kZP" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/projectile/shotgun/automatic/combat{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/item/gun/projectile/shotgun/automatic/combat{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/gun/projectile/shotgun/automatic/combat{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/item/gun/projectile/shotgun/automatic/combat{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/item/gun/projectile/shotgun/automatic/combat{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/gun/projectile/shotgun/automatic/combat{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkredfull"
+ },
+/area/centcom/specops)
+"kZR" = (
+/obj/structure/chair/sofa/right{
+ dir = 8;
+ pixel_x = -7
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"lae" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"laO" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id_tag = "CC_space_jail_rest";
+ layer = 5;
+ locked = 1;
+ name = "Central Command Jail"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"laZ" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 1;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom/evac)
+"lbz" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"lbQ" = (
+/obj/structure/table/wood,
+/obj/item/adminfu_scroll,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"lce" = (
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"lcX" = (
+/turf/unsimulated/wall,
+/area/syndicate_mothership)
+"ldc" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"ldk" = (
+/obj/machinery/computer/med_data,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"ldq" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/obj/machinery/computer/card,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"ldu" = (
+/obj/structure/table/wood/fancy/black,
+/turf/unsimulated/floor{
+ icon_state = "carpet9-4"
+ },
+/area/wizard_station)
+"ldx" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = 27
+ },
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 6;
+ pixel_y = 27
+ },
+/obj/structure/filingcabinet/security,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"ldM" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "tranquillite"
+ },
+/area/centcom/specops)
+"ldQ" = (
+/obj/structure/closet/l3closet/security,
+/obj/item/clothing/mask/gas,
+/obj/item/tank/emergency_oxygen/double/full,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/watertank/janitor{
+ max_integrity = 1500;
+ volume = 1500
+ },
+/turf/unsimulated/floor{
+ dir = 10;
+ icon_state = "darkpurple"
+ },
+/area/centcom/specops)
+"leJ" = (
+/turf/unsimulated/floor{
+ icon_state = "bcircuit"
+ },
+/area/chrono_ship)
+"lfc" = (
+/obj/structure/bookcase,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"lfj" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/tdome/arena)
+"lfu" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/tdome/arena)
+"lfA" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/door_control{
+ id = "CC_arrivals_blastdoor";
+ name = "Arrivals Blastdoor";
+ pixel_x = -25;
+ pixel_y = -4;
+ req_access_txt = "110"
+ },
+/obj/machinery/door_control{
+ id = "ASPS_blastdoor";
+ name = "Automatic Station Protection System";
+ pixel_x = -25;
+ pixel_y = 5;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"lfY" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window{
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"lgJ" = (
+/obj/effect/landmark{
+ name = "Syndicate-Infiltrator-Leader";
+ tag = "Commando"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"lgX" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/green,
+/obj/item/clothing/shoes/brown,
+/obj/item/clothing/suit/armor/tdome/green,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/melee/energy/sword/saber/green,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome/arena)
+"lhm" = (
+/obj/structure/window/full/reinforced{
+ layer = 2
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"lhq" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkpurple"
+ },
+/area/centcom/specops)
+"lhB" = (
+/obj/machinery/light/small{
+ brightness_range = 10;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "rampbottom"
+ },
+/area/ussp_ship)
+"lhG" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja/holding)
+"lhP" = (
+/obj/structure/table/holotable,
+/turf/simulated/floor/holofloor{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/holodeck/source_thunderdomecourt)
+"lia" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien2"
+ },
+/area/abductor_ship)
+"liA" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "asteroid5";
+ tag = "icon-asteroid5"
+ },
+/area/holodeck/source_desert)
+"lju" = (
+/obj/machinery/portable_atmospherics/canister/sleeping_agent{
+ maximum_pressure = 50000
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"lks" = (
+/obj/machinery/light/small{
+ dir = 8;
+ light_range = 10;
+ throw_range = 6
+ },
+/obj/structure/sign/poster/contraband/communist_state{
+ pixel_x = -32
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"lkC" = (
+/obj/item/flag/nt,
+/obj/item/radio/intercom{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"lkJ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window{
+ dir = 8;
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"llk" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "red"
+ },
+/area/holodeck/source_basketball)
+"lmc" = (
+/obj/item/flag/syndi,
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"lmi" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/snacks/baguette = 10, /obj/item/reagent_containers/food/snacks/applepie = 10, /obj/item/reagent_containers/food/snacks/applepie = 10, /obj/item/reagent_containers/food/snacks/soup/bloodsoup = 10, /obj/item/reagent_containers/food/snacks/boiledrice = 10, /obj/item/reagent_containers/food/snacks/carrotfries = 10, /obj/item/reagent_containers/food/drinks/cans/cola = 10, "" = 70);
+ name = "Food CC Spawner #1"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"lmp" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/centcom/specops)
+"lmq" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/door_control{
+ id = "CC_arrivals_blastdoor";
+ name = "Arrivals Blastdoor";
+ pixel_x = 25;
+ pixel_y = -4;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"lmC" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/tommygun,
+/obj/item/gun/projectile/shotgun/toy/tommygun,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"lnj" = (
+/obj/structure/table/wood,
+/obj/item/clothing/under/color/black{
+ icon_state = "mafiatan";
+ name = "brown jumpsuit"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"lnF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ req_access_txt = "109"
+ },
+/obj/machinery/kitchen_machine/microwave/upgraded,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"lnV" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 6
+ },
+/area/centcom)
+"lnX" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"lof" = (
+/obj/item/gun/medbeam,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"lov" = (
+/obj/structure/chair/stool/bar,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"loD" = (
+/obj/machinery/vending/chinese/free,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"lpj" = (
+/obj/structure/chair/sofa{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"lqe" = (
+/obj/mecha/combat/marauder/mauler/loaded{
+ operation_req_access = list(114)
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"lqg" = (
+/obj/structure/chair/sofa,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"lqu" = (
+/obj/structure/chair/sofa/left,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"lqz" = (
+/obj/structure/table/abductor{
+ name = "table"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/chrono_ship)
+"lqD" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/court)
+"lqJ" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/trader_station/sol)
+"lrE" = (
+/obj/structure/table/wood/poker,
+/obj/item/toy/cards/deck/syndicate{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"lrI" = (
+/obj/structure/table,
+/obj/structure/sink{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"lrM" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"lth" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3";
+ tag = "icon-swall3"
+ },
+/area/shuttle/escape)
+"lto" = (
+/obj/structure/flora/bush,
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"ltv" = (
+/obj/structure/table,
+/obj/item/clothing/head/that{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja/holding)
+"ltZ" = (
+/obj/structure/sign/poster/contraband/syndicate_pistol{
+ pixel_x = -32
+ },
+/obj/structure/chair/stool/bar,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"lub" = (
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 95, "bullet" = 95, "laser" = 95, "energy" = 95, "bomb" = 95, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 80);
+ density = 0;
+ icon_state = "open";
+ id_tag = "ERT_turret_shutters";
+ locked = 1;
+ name = "ERT Lockdown";
+ opacity = 0
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"lun" = (
+/obj/structure/table/wood,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/snacks/lasagna = 10, /obj/item/reagent_containers/food/snacks/sliceable/pizza/hawaiianpizza = 10, /obj/item/reagent_containers/food/snacks/sushi_TobikoEgg = 10, /obj/item/reagent_containers/food/snacks/bigbiteburger = 10, /obj/item/reagent_containers/food/snacks/sushi_SmokedSalmon = 10, "" = 70);
+ name = "Food CC Spawner #2"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"lup" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Armory";
+ pixel_y = -25
+ },
+/obj/machinery/power/terminal,
+/obj/structure/cable,
+/obj/item/flag/species/human,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"luP" = (
+/obj/structure/table,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja/holding)
+"lvs" = (
+/obj/machinery/clonepod/biomass,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"lwB" = (
+/obj/machinery/bsa/full/admin/east{
+ layer = 1
+ },
+/turf/space,
+/area/ussp_ship)
+"lwT" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/condiment/saltshaker{
+ pixel_x = 5
+ },
+/obj/item/reagent_containers/food/condiment/peppermill{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "stage_bleft"
+ },
+/area/syndicate_mothership)
+"lxj" = (
+/obj/mecha/combat/honker/loaded{
+ operation_req_access = list(114)
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"lxn" = (
+/obj/structure/table/wood,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/snacks/baguette = 10, /obj/item/reagent_containers/food/snacks/applepie = 10, /obj/item/reagent_containers/food/snacks/applepie = 10, /obj/item/reagent_containers/food/snacks/soup/bloodsoup = 10, /obj/item/reagent_containers/food/snacks/boiledrice = 10, /obj/item/reagent_containers/food/snacks/carrotfries = 10, /obj/item/reagent_containers/food/drinks/cans/cola = 10, "" = 70);
+ name = "Food CC Spawner #1"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"lxo" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien8"
+ },
+/area/abductor_ship)
+"lxH" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/snacks/warmdonkpocket,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"lxW" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/turf/unsimulated/beach/sand,
+/area/ninja/holding)
+"lyv" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"lyZ" = (
+/obj/item/flag/nt,
+/obj/structure/sign/poster/official/ue_no{
+ pixel_y = 30
+ },
+/obj/machinery/camera{
+ c_tag = "CentComm Arrivals Bar 2";
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"lzH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"lAl" = (
+/obj/structure/closet/crate/can,
+/obj/machinery/light{
+ dir = 1;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"lAC" = (
+/turf/space/transit/horizontal,
+/area/space)
+"lBl" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"lBX" = (
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 2.9;
+ name = "Automatic Shotgun";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ desc = "A compact, mag-fed semi-automatic shotgun for combat in narrow corridors, nicknamed 'Pancor Jackhammer' by NanoTrasen corp. Compatible only with specialized 8-round drum magazines.";
+ name = "Pancor Jackhammer"
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ desc = "A compact, mag-fed semi-automatic shotgun for combat in narrow corridors, nicknamed 'Pancor Jackhammer' by NanoTrasen corp. Compatible only with specialized 8-round drum magazines.";
+ name = "Pancor Jackhammer"
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ desc = "A compact, mag-fed semi-automatic shotgun for combat in narrow corridors, nicknamed 'Pancor Jackhammer' by NanoTrasen corp. Compatible only with specialized 8-round drum magazines.";
+ name = "Pancor Jackhammer"
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ desc = "A compact, mag-fed semi-automatic shotgun for combat in narrow corridors, nicknamed 'Pancor Jackhammer' by NanoTrasen corp. Compatible only with specialized 8-round drum magazines.";
+ name = "Pancor Jackhammer"
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ desc = "A compact, mag-fed semi-automatic shotgun for combat in narrow corridors, nicknamed 'Pancor Jackhammer' by NanoTrasen corp. Compatible only with specialized 8-round drum magazines.";
+ name = "Pancor Jackhammer"
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ desc = "A compact, mag-fed semi-automatic shotgun for combat in narrow corridors, nicknamed 'Pancor Jackhammer' by NanoTrasen corp. Compatible only with specialized 8-round drum magazines.";
+ name = "Pancor Jackhammer"
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ desc = "A compact, mag-fed semi-automatic shotgun for combat in narrow corridors, nicknamed 'Pancor Jackhammer' by NanoTrasen corp. Compatible only with specialized 8-round drum magazines.";
+ name = "Pancor Jackhammer"
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ desc = "A compact, mag-fed semi-automatic shotgun for combat in narrow corridors, nicknamed 'Pancor Jackhammer' by NanoTrasen corp. Compatible only with specialized 8-round drum magazines.";
+ name = "Pancor Jackhammer"
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ desc = "A compact, mag-fed semi-automatic shotgun for combat in narrow corridors, nicknamed 'Pancor Jackhammer' by NanoTrasen corp. Compatible only with specialized 8-round drum magazines.";
+ name = "Pancor Jackhammer"
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ desc = "A compact, mag-fed semi-automatic shotgun for combat in narrow corridors, nicknamed 'Pancor Jackhammer' by NanoTrasen corp. Compatible only with specialized 8-round drum magazines.";
+ name = "Pancor Jackhammer"
+ },
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun{
+ desc = "A large duffelbag, packed to the brim with Pancor Jackhammer shotgun ammo.";
+ name = "12g duffelbag"
+ },
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun{
+ desc = "A large duffelbag, packed to the brim with Pancor Jackhammer shotgun ammo.";
+ name = "12g duffelbag"
+ },
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun{
+ desc = "A large duffelbag, packed to the brim with Pancor Jackhammer shotgun ammo.";
+ name = "12g duffelbag"
+ },
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun{
+ desc = "A large duffelbag, packed to the brim with Pancor Jackhammer shotgun ammo.";
+ name = "12g duffelbag"
+ },
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun{
+ desc = "A large duffelbag, packed to the brim with Pancor Jackhammer shotgun ammo.";
+ name = "12g duffelbag"
+ },
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun{
+ desc = "A large duffelbag, packed to the brim with Pancor Jackhammer shotgun ammo.";
+ name = "12g duffelbag"
+ },
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun{
+ desc = "A large duffelbag, packed to the brim with Pancor Jackhammer shotgun ammo.";
+ name = "12g duffelbag"
+ },
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun{
+ desc = "A large duffelbag, packed to the brim with Pancor Jackhammer shotgun ammo.";
+ name = "12g duffelbag"
+ },
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun{
+ desc = "A large duffelbag, packed to the brim with Pancor Jackhammer shotgun ammo.";
+ name = "12g duffelbag"
+ },
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun{
+ desc = "A large duffelbag, packed to the brim with Pancor Jackhammer shotgun ammo.";
+ name = "12g duffelbag"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"lBZ" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Prison Cell";
+ opacity = 1
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id_tag = "CC_space_jail_cell";
+ layer = 5;
+ locked = 1;
+ name = "Central Command Jail"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"lCb" = (
+/obj/structure/table/wood,
+/obj/item/radio/headset,
+/obj/item/radio/headset/abductor,
+/obj/item/radio/headset/alt,
+/obj/item/radio/headset/binary{
+ name = "binary radio headset"
+ },
+/obj/item/radio/headset/bot{
+ name = "bot radio headset"
+ },
+/obj/item/radio/headset/centcom,
+/obj/item/radio/headset/chameleon{
+ name = "chamelon radio headset"
+ },
+/obj/item/radio/headset/ert,
+/obj/item/radio/headset/ert/alt/commander,
+/obj/item/radio/headset/heads{
+ name = "heads radio headset"
+ },
+/obj/item/radio/headset/heads/ai_integrated,
+/obj/item/radio/headset/heads/blueshield/alt,
+/obj/item/radio/headset/heads/captain/alt,
+/obj/item/radio/headset/heads/ce,
+/obj/item/radio/headset/heads/cmo,
+/obj/item/radio/headset/heads/hop,
+/obj/item/radio/headset/heads/hos,
+/obj/item/radio/headset/heads/magistrate/alt,
+/obj/item/radio/headset/heads/ntrep,
+/obj/item/radio/headset/heads/rd,
+/obj/item/radio/headset/headset_cargo,
+/obj/item/radio/headset/headset_cargo/mining,
+/obj/item/radio/headset/headset_com,
+/obj/item/radio/headset/headset_eng,
+/obj/item/radio/headset/headset_iaa,
+/obj/item/radio/headset/headset_med,
+/obj/item/radio/headset/headset_medsci,
+/obj/item/radio/headset/headset_rob,
+/obj/item/radio/headset/headset_sci,
+/obj/item/radio/headset/headset_sec,
+/obj/item/radio/headset/headset_sec/alt,
+/obj/item/radio/headset/headset_service,
+/obj/item/radio/headset/syndicate{
+ name = "syndicate radio headset"
+ },
+/obj/item/radio/headset/syndicate/alt,
+/obj/item/radio/headset/syndicate/alt/lavaland,
+/obj/item/radio/headset/syndicate/alt/syndteam{
+ name = "syndicate team headset"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"lCE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"lCZ" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"lDs" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/bridge)
+"lDH" = (
+/turf/simulated/floor/holofloor{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/holodeck/source_emptycourt)
+"lDU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"lDX" = (
+/obj/machinery/computer/cryopod{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/blops)
+"lEu" = (
+/obj/machinery/door/airlock/hatch/syndicate/command{
+ name = "Officer Room"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"lEF" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/revolver/russian,
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"lES" = (
+/obj/structure/noticeboard{
+ pixel_x = -32
+ },
+/obj/item/paper/syndimemo{
+ info = "ПОЛУЧИТЕ ЭТОТ ЕБУЧИЙ ДИСК!"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"lFi" = (
+/obj/machinery/slot_machine,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"lGr" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "snow";
+ tag = "icon-snow"
+ },
+/area/holodeck/source_snowfield)
+"lGZ" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Medical and Rest room";
+ opacity = 1;
+ req_access_txt = "109"
+ },
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 95, "bullet" = 95, "laser" = 95, "energy" = 95, "bomb" = 95, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 80);
+ density = 0;
+ dir = 1;
+ icon_state = "open";
+ id_tag = "ERT_turret_shutters";
+ locked = 1;
+ name = "ERT Lockdown";
+ opacity = 0
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"lHa" = (
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/escape)
+"lHq" = (
+/turf/unsimulated/wall{
+ dir = 4;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_mid";
+ tag = "icon-wall3 (NORTH)"
+ },
+/area/space)
+"lHA" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien6"
+ },
+/area/abductor_ship)
+"lIE" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/trader_station/sol)
+"lIO" = (
+/obj/machinery/door/window{
+ dir = 1;
+ panel_open = 1;
+ req_access_txt = "152"
+ },
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"lKj" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"lKO" = (
+/obj/structure/table/wood,
+/obj/structure/mirror/magic{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"lKT" = (
+/obj/machinery/recharge_station/upgraded,
+/turf/unsimulated/floor{
+ dir = 10;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"lLK" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkgreen"
+ },
+/area/centcom/zone2)
+"lLT" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkbrown"
+ },
+/area/centcom/specops)
+"lNy" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy,
+/obj/item/gun/energy/captain,
+/obj/item/gun/energy/e_gun,
+/obj/item/gun/energy/gun,
+/obj/item/gun/energy/gun/cyborg,
+/obj/item/gun/energy/nuclear,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"lNE" = (
+/obj/item/radio/intercom/specops{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"lPh" = (
+/obj/machinery/door_control{
+ id = "CC_zone2_checkpoint_lockdown";
+ name = "Zone 2 Checkpoint Lockdown";
+ pixel_y = 25;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"lPi" = (
+/obj/structure/table/glass,
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 4;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"lPk" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbrownfull"
+ },
+/area/centcom/specops)
+"lPx" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 2 Check point";
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"lQx" = (
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 1;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"lSb" = (
+/turf/unsimulated/floor{
+ icon_state = "darkgrey"
+ },
+/area/centcom/specops)
+"lSd" = (
+/obj/machinery/abductor/console{
+ team = 1
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"lSp" = (
+/obj/machinery/door/poddoor{
+ id_tag = "CC_zone2_blastdoor";
+ name = "Zone 2 Blastboor"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"lTt" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/holywater,
+/obj/item/reagent_containers/food/drinks/bottle/holywater,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"lTx" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"lUs" = (
+/obj/machinery/computer/account_database{
+ name = "Admin Accounts Database"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"lUG" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"lUP" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"lUT" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"lVz" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 3;
+ height = 5;
+ id = "sit_away";
+ name = "Syndicate Base";
+ width = 11
+ },
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/syndicate_mothership)
+"lVF" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/space,
+/turf/space,
+/area/ussp_ship)
+"lVR" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"lWo" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 4;
+ tag = "icon-fakewindows (EAST)"
+ },
+/area/centcom)
+"lWK" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"lWN" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/obj/structure/chair/sofa{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"lXf" = (
+/obj/machinery/computer/communications,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"lXh" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"lXr" = (
+/obj/structure/chair/sofa{
+ dir = 4;
+ pixel_x = 7
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"lYn" = (
+/obj/structure/chair/sofa{
+ dir = 8;
+ pixel_x = -7
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"lYG" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 10;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom)
+"lZe" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"lZo" = (
+/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"lZt" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/tree/pine{
+ color = "#336633"
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"lZH" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 13
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"lZI" = (
+/obj/machinery/door/airlock/external{
+ req_access_txt = "150"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"lZK" = (
+/obj/structure/sign/evac{
+ pixel_x = 33
+ },
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"maC" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/zone3)
+"maH" = (
+/obj/machinery/light/small{
+ brightness_range = 10;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"mbp" = (
+/obj/effect/landmark/abductor/scientist{
+ team = 3
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"mbt" = (
+/obj/structure/chair/office/dark,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"mbF" = (
+/obj/machinery/computer/crew,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"mcd" = (
+/obj/machinery/turretid/lethal{
+ ailock = 1;
+ control_area = "\improper Centcom Emergency Shuttle";
+ name = "Emergency Shuttle Turret Control Panel";
+ pixel_x = -30;
+ req_access = "0";
+ req_access_txt = "110"
+ },
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 1 Check point 2";
+ dir = 4;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"mcv" = (
+/obj/structure/chair/sofa{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 8;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"mde" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ frequency = 1559;
+ id_tag = "check_point_1_airlock_control";
+ layer = 5;
+ name = "Check point 1 Controller";
+ pixel_x = 4;
+ pixel_y = 10;
+ req_access_txt = "110";
+ tag_exterior_door = "check_point_1_airlock_external";
+ tag_interior_door = "check_point_1_airlock_internal"
+ },
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = -8;
+ pixel_y = 12
+ },
+/obj/item/pen/multi/fountain,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"mef" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 1;
+ icon_state = "fakewindows2"
+ },
+/area/centcom/evac)
+"mew" = (
+/obj/machinery/porta_turret/syndicate/pod,
+/turf/simulated/shuttle/wall{
+ dir = 8;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/assault_pod)
+"meL" = (
+/obj/structure/table/reinforced,
+/obj/item/syndicatedetonator,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"meT" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ frequency = 1560;
+ id_tag = "syndicate_jail_airlock_control";
+ layer = 5;
+ name = "Check point 2 Controller";
+ pixel_x = -5;
+ pixel_y = 10;
+ req_access_txt = "110";
+ tag_exterior_door = "check_point_2_airlock_external";
+ tag_interior_door = "check_point_2_airlock_internal"
+ },
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/pen/multi/fountain,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"meY" = (
+/obj/machinery/recharge_station/ert,
+/obj/machinery/light{
+ dir = 1;
+ light_range = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"mfo" = (
+/obj/structure/table/glass,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/snacks/baguette = 10, /obj/item/reagent_containers/food/snacks/applepie = 10, /obj/item/reagent_containers/food/snacks/applepie = 10, /obj/item/reagent_containers/food/snacks/soup/bloodsoup = 10, /obj/item/reagent_containers/food/snacks/boiledrice = 10, /obj/item/reagent_containers/food/snacks/carrotfries = 10, /obj/item/reagent_containers/food/drinks/cans/cola = 10, "" = 70);
+ name = "Food CC Spawner #1"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"mfp" = (
+/obj/structure/table/wood,
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"mfy" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/court)
+"mfF" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"mgj" = (
+/obj/machinery/cooker/cerealmaker,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"mgy" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"mgI" = (
+/obj/item/kitchen/utensil/spoon,
+/obj/structure/chair/sofa{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"mgR" = (
+/obj/machinery/vox_win_button,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"mgY" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"mhm" = (
+/obj/effect/overlay/palmtree_l,
+/turf/unsimulated/beach/sand,
+/area/ninja/holding)
+"mho" = (
+/obj/item/storage/firstaid/brute,
+/obj/item/storage/firstaid/brute,
+/obj/item/storage/firstaid/doctor,
+/obj/item/storage/firstaid/doctor,
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/firstaid/o2,
+/obj/item/storage/firstaid/tactical,
+/obj/item/storage/firstaid/tactical,
+/obj/item/storage/firstaid/toxin,
+/obj/item/storage/firstaid/toxin,
+/obj/item/roller,
+/obj/item/roller,
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/applicator/dual,
+/obj/item/reagent_containers/applicator/dual,
+/obj/item/reagent_containers/applicator/dual,
+/obj/item/storage/toolbox/syndicate,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"mhA" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 6;
+ pixel_y = 27
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = 27
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"mhF" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/snacks/lasagna = 10, /obj/item/reagent_containers/food/snacks/sliceable/pizza/hawaiianpizza = 10, /obj/item/reagent_containers/food/snacks/sushi_TobikoEgg = 10, /obj/item/reagent_containers/food/snacks/bigbiteburger = 10, /obj/item/reagent_containers/food/snacks/sushi_SmokedSalmon = 10, "" = 70);
+ name = "Food CC Spawner #2"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"mhI" = (
+/obj/structure/bookcase/manuals,
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"miK" = (
+/obj/machinery/light/small{
+ dir = 1;
+ light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"miX" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"mjd" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"mje" = (
+/obj/structure/chair/stool/bar,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"mjS" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/jail)
+"mkc" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"mkf" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"mkS" = (
+/obj/structure/holohoop,
+/turf/simulated/floor/holofloor{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/holodeck/source_basketball)
+"mlt" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"mly" = (
+/obj/machinery/vending/syndicigs,
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"mmx" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"mmI" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil,
+/obj/item/stack/rods,
+/obj/item/pen,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"mnf" = (
+/obj/structure/table,
+/obj/item/mop,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"mnk" = (
+/obj/machinery/sleeper,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"mnu" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/sign/chinese,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"mnV" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/ripley_build_and_repair,
+/obj/item/book/manual/robotics_cyborgs,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"moX" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/space/nearstation)
+"mph" = (
+/obj/structure/flora/ausbushes/genericbush,
+/obj/structure/flora/ausbushes/palebush,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"mpA" = (
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/flora/tree/pine{
+ color = "#336633"
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"mpC" = (
+/turf/unsimulated/wall/fakeglass{
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/syndicate_mothership)
+"mpD" = (
+/obj/item/bedsheet/black,
+/obj/structure/bed,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/event_zone)
+"mpH" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"mpW" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"mqj" = (
+/obj/machinery/kitchen_machine/oven/upgraded,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"mqX" = (
+/obj/machinery/vending/magivend,
+/obj/machinery/light/small{
+ brightness_range = 6;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"mrA" = (
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 1;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"mrJ" = (
+/obj/structure/chair/sofa/right{
+ dir = 4;
+ pixel_x = 7
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"mrK" = (
+/obj/structure/chair/sofa/left{
+ dir = 8;
+ pixel_x = -7
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"msb" = (
+/obj/structure/sign/poster/official/space_cops{
+ pixel_y = 30
+ },
+/obj/structure/weightmachine/weightlifter,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"msd" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/storage/briefcase,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"msj" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/pen/multi/fountain,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"msU" = (
+/obj/machinery/door/window{
+ name = "Uplink Management Control";
+ req_access_txt = "151"
+ },
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"msY" = (
+/obj/structure/displaycase/stechkin{
+ start_showpiece_type = /obj/item/gun/projectile/automatic/tommygun
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"mtJ" = (
+/obj/structure/rack,
+/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/item/ammo_box/magazine/sniper_rounds/penetrator,
+/obj/item/ammo_box/magazine/sniper_rounds/haemorrhage,
+/obj/item/gun/projectile/automatic/sniper_rifle/syndicate,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"muE" = (
+/obj/machinery/door/window{
+ dir = 2;
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"mvA" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"mvV" = (
+/obj/machinery/door/window{
+ dir = 2;
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"mwa" = (
+/obj/structure/table/wood,
+/obj/item/pizza_bomb,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"mwG" = (
+/obj/structure/table/wood/poker,
+/obj/item/radio/intercom/syndicate,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"mxk" = (
+/obj/structure/window/reinforced{
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"mxE" = (
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "bcircuit"
+ },
+/area/centcom/zone2)
+"mzK" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/holofloor{
+ icon_state = "wood_siding5";
+ tag = "icon-wood_siding5"
+ },
+/area/holodeck/source_picnicarea)
+"mzS" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom/specops)
+"mAt" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/filingcabinet/security,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"mAx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 1;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"mAQ" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien19"
+ },
+/area/abductor_ship)
+"mBa" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/evaguide,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"mBi" = (
+/obj/machinery/door/airlock/public{
+ frequency = 1559;
+ id_tag = "check_point_1_airlock_external";
+ name = "Check Point 1 External Airlock";
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"mBp" = (
+/obj/machinery/door/airlock/public{
+ frequency = 1560;
+ id_tag = "check_point_2_airlock_external";
+ name = "Check Point 2 External Airlock";
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"mCp" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/filingcabinet/security,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"mCJ" = (
+/obj/structure/chair/stool/holostool,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet7-3";
+ tag = "icon-carpet7-3 (EAST)"
+ },
+/area/holodeck/source_theatre)
+"mCU" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Central Command"
+ },
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Director Office";
+ dir = 8;
+ network = list("CentComm")
+ },
+/obj/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"mDm" = (
+/obj/machinery/door/window{
+ dir = 2;
+ frequency = 1560;
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"mDD" = (
+/obj/structure/kitchenspike,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"mDX" = (
+/obj/structure/chair/sofa/right{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"mEE" = (
+/obj/machinery/shuttle_manipulator,
+/turf/unsimulated/floor{
+ icon_state = "bcircuit"
+ },
+/area/chrono_ship)
+"mEW" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"mFh" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"mFM" = (
+/obj/docking_port/stationary{
+ dwidth = 1;
+ height = 4;
+ id = "pod4_away";
+ name = "recovery ship bay 4";
+ width = 3
+ },
+/turf/space,
+/area/space)
+"mGf" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 2 Office 6";
+ dir = 4;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"mGg" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/beach/sand,
+/area/holodeck/source_beach)
+"mGi" = (
+/obj/machinery/light{
+ pixel_y = -6
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/evac)
+"mGp" = (
+/obj/machinery/door_control{
+ id = "CC_space_jail";
+ name = "Central Command Jail";
+ pixel_y = -25;
+ req_access_txt = "110"
+ },
+/obj/machinery/camera{
+ c_tag = "CentComm Jail Entrance";
+ dir = 10;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone3)
+"mGI" = (
+/obj/machinery/power/apc{
+ name = "Gamma Armory APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/sign/securearea{
+ pixel_x = -32
+ },
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/item/gun/rocketlauncher,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/kitchen/knife/combat,
+/obj/item/kitchen/knife/combat,
+/obj/item/kitchen/knife/combat,
+/obj/item/grenade/chem_grenade/incendiary{
+ name = "Incendiary Grenade"
+ },
+/obj/item/grenade/clusterbuster,
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/gamma/space)
+"mGJ" = (
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 4;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"mGN" = (
+/obj/structure/chair/sofa/left,
+/obj/machinery/light{
+ dir = 1;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"mGQ" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"mHq" = (
+/obj/machinery/door_control{
+ id = "CC_zone2_blastdoor";
+ name = "Zone 2 Blastdoor Control";
+ pixel_x = 25;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkgreen"
+ },
+/area/centcom/zone2)
+"mHZ" = (
+/obj/structure/chair/stool/holostool,
+/obj/effect/landmark{
+ name = "Syndicate-Infiltrator";
+ tag = "Commando"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"mIb" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "asteroid11";
+ tag = "icon-asteroid11 (EAST)"
+ },
+/area/holodeck/source_desert)
+"mIk" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"mIq" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"mIO" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/decorations/sticky_decorations/flammable/pot_of_gold,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"mJm" = (
+/obj/machinery/door_control{
+ id = "CC_zone2_blastdoor";
+ name = "Zone 2 Blastdoor Control";
+ pixel_x = -25;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"mJv" = (
+/obj/structure/table/wood,
+/obj/item/suppressor{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/suppressor{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/suppressor{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/suppressor{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"mJI" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ autoclose = 0;
+ frequency = 1441;
+ id_tag = "syndicate_jail_airlock_external";
+ locked = 1;
+ name = "Syndicate Jail External Airlock"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"mJR" = (
+/obj/structure/mineral_door/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"mKI" = (
+/turf/unsimulated/wall{
+ icon_state = "iron14"
+ },
+/area/syndicate_mothership)
+"mKQ" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/item/toy/cards/deck/syndicate/black,
+/turf/unsimulated/floor{
+ icon_state = "dark";
+ tag = "icon-dark"
+ },
+/area/admin)
+"mMq" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"mMP" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/flora/ausbushes/grassybush,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"mNz" = (
+/obj/structure/table/wood,
+/obj/item/stamp/captain,
+/obj/item/stamp/ce,
+/obj/item/stamp/clown,
+/obj/item/stamp/cmo,
+/obj/item/stamp/hop,
+/obj/item/stamp/hos,
+/obj/item/stamp/law,
+/obj/item/stamp/magistrate,
+/obj/item/stamp/qm,
+/obj/item/stamp/rd,
+/obj/item/stamp/rep,
+/obj/item/stamp/warden,
+/obj/item/radio/headset/headset_iaa,
+/obj/item/radio/headset/headset_iaa,
+/obj/item/radio/headset/headset_iaa,
+/obj/item/radio/headset/heads/magistrate/alt,
+/obj/item/radio/headset/heads/ntrep,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"mNE" = (
+/obj/structure/chair/sofa/right,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"mNM" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/plasmacutter,
+/obj/item/gun/energy/plasmacutter/adv,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"mOF" = (
+/obj/structure/chair/sofa,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"mOM" = (
+/turf/simulated/floor/holofloor{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/holodeck/source_basketball)
+"mPw" = (
+/obj/machinery/teleport/hub/upgraded{
+ admin_usage = 1
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"mPL" = (
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"mQT" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/energy/gun/advtaser{
+ pixel_y = 7
+ },
+/obj/item/gun/energy/gun/advtaser{
+ pixel_y = -2
+ },
+/obj/item/gun/energy/gun/advtaser{
+ pixel_y = 7
+ },
+/obj/item/gun/energy/gun/advtaser{
+ pixel_y = 7
+ },
+/obj/item/gun/energy/gun/advtaser{
+ pixel_y = -2
+ },
+/obj/item/gun/energy/gun/advtaser{
+ pixel_y = -2
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/specops)
+"mRa" = (
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"mRu" = (
+/obj/structure/chair/sofa/left,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"mSo" = (
+/obj/machinery/door_control{
+ id = "CC_supply_space";
+ name = "Supply Blastdoor";
+ pixel_x = 4;
+ pixel_y = -30;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"mSB" = (
+/turf/unsimulated/floor{
+ icon_state = "stairs-r"
+ },
+/area/centcom/zone1)
+"mSR" = (
+/obj/structure/closet/crate/can,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"mSW" = (
+/obj/machinery/light/spot,
+/turf/unsimulated/beach/water,
+/area/ninja/holding)
+"mTN" = (
+/obj/machinery/door/airlock{
+ name = "Комната отдыха"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"mTV" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 1";
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"mUB" = (
+/obj/item/gun/energy/toxgun,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"mUD" = (
+/turf/unsimulated/beach/coastline,
+/area/ninja/holding)
+"mVb" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"mVq" = (
+/obj/machinery/door_control{
+ id = "CC_space_jail_sec";
+ name = "Central Command Jail Security Room";
+ pixel_x = -40;
+ req_access_txt = "110"
+ },
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/door_control{
+ id = "CC_space_jail_rest";
+ name = "Central Command Jail Rest Room";
+ pixel_x = -25;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"mVv" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluecorners"
+ },
+/area/centcom/zone2)
+"mVD" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "rampbottom"
+ },
+/area/ussp_ship)
+"mVN" = (
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 1;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"mVQ" = (
+/obj/machinery/computer/operating{
+ layer = 3.5
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"mWs" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ id_tag = "CC_zone3_blastdoor";
+ name = "Zone 3 Blastboor";
+ opacity = 0
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone3)
+"mWK" = (
+/obj/item/storage/box/syringes,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/grenade/chem_grenade/large,
+/obj/item/grenade/chem_grenade/large,
+/obj/item/grenade/chem_grenade/large,
+/obj/item/grenade/chem_grenade/large,
+/obj/item/gun/syringe/rapidsyringe,
+/obj/item/reagent_containers/spray/chemsprayer,
+/obj/structure/closet,
+/obj/item/gun/projectile/shotgun/sc_pump,
+/obj/item/ammo_casing/shotgun/dart,
+/obj/item/ammo_casing/shotgun/dart,
+/obj/item/ammo_casing/shotgun/dart,
+/obj/item/ammo_casing/shotgun/dart,
+/obj/item/ammo_casing/shotgun/dart,
+/obj/item/ammo_casing/shotgun/dart,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"mXM" = (
+/obj/structure/table/wood/fancy/black,
+/turf/unsimulated/floor{
+ icon_state = "carpet6-2"
+ },
+/area/wizard_station)
+"mYZ" = (
+/obj/structure/table/wood,
+/obj/item/lighter/zippo,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/drinks/flask/detflask = 10, /obj/item/reagent_containers/food/drinks/cans/tonic = 10, /obj/item/reagent_containers/food/drinks/cans/thirteenloko = 10, /obj/item/reagent_containers/food/drinks/cans/synthanol = 10, /obj/item/reagent_containers/food/drinks/cans/space_mountain_wind = 10, /obj/item/reagent_containers/food/drinks/cans/lemon_lime = 10, "" = 70);
+ name = "Food CC Spawner #3"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"mZc" = (
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave/upgraded,
+/obj/machinery/light{
+ dir = 4;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"mZf" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/chrono_ship)
+"mZi" = (
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 2.9;
+ name = "Grenade launcher";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/item/gun/projectile/automatic/gyropistol,
+/obj/item/gun/projectile/automatic/gyropistol,
+/obj/item/gun/projectile/automatic/gyropistol,
+/obj/item/gun/projectile/automatic/gyropistol,
+/obj/item/gun/projectile/automatic/gyropistol,
+/obj/item/gun/projectile/automatic/gyropistol,
+/obj/item/gun/projectile/automatic/gyropistol,
+/obj/item/gun/projectile/automatic/gyropistol,
+/obj/item/gun/projectile/automatic/gyropistol,
+/obj/item/gun/projectile/automatic/gyropistol,
+/obj/item/ammo_box/magazine/m75,
+/obj/item/ammo_box/magazine/m75,
+/obj/item/ammo_box/magazine/m75,
+/obj/item/ammo_box/magazine/m75,
+/obj/item/ammo_box/magazine/m75,
+/obj/item/ammo_box/magazine/m75,
+/obj/item/ammo_box/magazine/m75,
+/obj/item/ammo_box/magazine/m75,
+/obj/item/ammo_box/magazine/m75,
+/obj/item/ammo_box/magazine/m75,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"mZk" = (
+/obj/item/flag/nt,
+/obj/machinery/light{
+ dir = 8;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"mZl" = (
+/obj/machinery/teleport/hub/upgraded{
+ admin_usage = 1
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"naR" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "rampbottom"
+ },
+/area/centcom/zone1)
+"nbx" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"nbD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"ncA" = (
+/turf/simulated/floor/holofloor{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/holodeck/source_emptycourt)
+"ncY" = (
+/obj/effect/decal/warning_stripes/yellow,
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"ncZ" = (
+/obj/structure/chair/sofa/left{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"ndb" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"ndc" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/drinks/flask/detflask = 10, /obj/item/reagent_containers/food/drinks/cans/tonic = 10, /obj/item/reagent_containers/food/drinks/cans/thirteenloko = 10, /obj/item/reagent_containers/food/drinks/cans/synthanol = 10, /obj/item/reagent_containers/food/drinks/cans/space_mountain_wind = 10, /obj/item/reagent_containers/food/drinks/cans/lemon_lime = 10, "" = 70);
+ name = "Food CC Spawner #3"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"ndu" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nek" = (
+/obj/structure/chair/sofa/right{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"neG" = (
+/obj/structure/chair/sofa/right,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"neM" = (
+/obj/machinery/vending/tool,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"neO" = (
+/obj/structure/chair/sofa{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nfc" = (
+/obj/structure/table,
+/obj/machinery/chem_dispenser/soda/upgraded,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nfp" = (
+/obj/structure/table/wood,
+/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster{
+ name = "KAZ"
+ },
+/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster{
+ name = "KAZ"
+ },
+/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster{
+ name = "KAZ"
+ },
+/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster{
+ name = "KAZ"
+ },
+/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster{
+ name = "KAZ"
+ },
+/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster{
+ name = "KAZ"
+ },
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/heavy{
+ name = "URVM"
+ },
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/heavy{
+ name = "URVM"
+ },
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/heavy{
+ name = "URVM"
+ },
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/heavy{
+ name = "URVM"
+ },
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/heavy{
+ name = "URVM"
+ },
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/heavy{
+ name = "URVM"
+ },
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg/dual{
+ fire_sound = 'sound/weapons/gunshots/gunshot_strong.ogg';
+ name = "2A72M2";
+ projectile_delay = 0.5;
+ projectiles_per_shot = 10
+ },
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg/dual{
+ fire_sound = 'sound/weapons/gunshots/gunshot_strong.ogg';
+ name = "2A72M2";
+ projectile_delay = 0.5;
+ projectiles_per_shot = 10
+ },
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg/dual{
+ fire_sound = 'sound/weapons/gunshots/gunshot_strong.ogg';
+ name = "2A72M2";
+ projectile_delay = 0.5;
+ projectiles_per_shot = 10
+ },
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg/dual{
+ fire_sound = 'sound/weapons/gunshots/gunshot_strong.ogg';
+ name = "2A72M2";
+ projectile_delay = 0.5;
+ projectiles_per_shot = 10
+ },
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg/dual{
+ fire_sound = 'sound/weapons/gunshots/gunshot_strong.ogg';
+ name = "2A72M2";
+ projectile_delay = 0.5;
+ projectiles_per_shot = 10
+ },
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg/dual{
+ fire_sound = 'sound/weapons/gunshots/gunshot_strong.ogg';
+ name = "2A72M2";
+ projectile_delay = 0.5;
+ projectiles_per_shot = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ussp_ship)
+"nfZ" = (
+/obj/effect/landmark{
+ name = "tdome1"
+ },
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/tdome/tdome1)
+"ngp" = (
+/obj/structure/table/wood,
+/obj/item/folder/yellow,
+/obj/item/pen/fancy,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"ngv" = (
+/obj/structure/chair/stool/holostool,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet6-0";
+ tag = "icon-carpet6-0 (EAST)"
+ },
+/area/holodeck/source_meetinghall)
+"ngy" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 1;
+ icon_state = "open";
+ id_tag = "CC_space_jail_sec";
+ layer = 50;
+ level = 3;
+ locked = 1;
+ name = "Central Command Jail";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/centcom{
+ name = "Prison";
+ opacity = 1;
+ req_access_txt = "104"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"ngY" = (
+/obj/structure/table/wood,
+/obj/item/paper/fluff/ruins/wizardcrash,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"nhS" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/lasercarbine,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"nim" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"niJ" = (
+/obj/structure/flora/bush,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"njL" = (
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"njW" = (
+/turf/space/transit/east{
+ dir = 8
+ },
+/area/space)
+"nkd" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/flora/ausbushes/pointybush,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"nkf" = (
+/obj/structure/table,
+/obj/item/tank/oxygen/yellow,
+/obj/random/bomb_supply,
+/obj/item/clothing/under/rebeloutfit,
+/obj/item/clothing/suit/poncho/ponchoshame,
+/obj/item/clothing/head/sombrero/shamebrero,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"nkq" = (
+/obj/machinery/light/small{
+ dir = 8;
+ tag = "icon-bulb1 (WEST)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/assault_pod)
+"nkD" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet14-10";
+ tag = "icon-carpet14-10 (EAST)"
+ },
+/area/holodeck/source_theatre)
+"nlR" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nlV" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/turf/space,
+/area/ussp_ship)
+"nmy" = (
+/obj/machinery/abductor/experiment{
+ team = 3
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"nmI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"nnr" = (
+/obj/machinery/vending/boozeomat{
+ req_access_txt = null
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "1-i"
+ },
+/area/trader_station/sol)
+"nnH" = (
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"nnO" = (
+/obj/structure/rack/holorack,
+/obj/item/clothing/glasses/hud/security/sunglasses/aviators,
+/obj/item/clothing/glasses/hud/security/sunglasses/aviators,
+/obj/item/clothing/glasses/hud/security/sunglasses/aviators,
+/obj/item/clothing/glasses/hud/security/sunglasses/aviators,
+/obj/item/clothing/glasses/hud/security/sunglasses/aviators,
+/obj/item/clothing/glasses/hud/security/sunglasses/aviators,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"noe" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id_tag = "CC_space_jail_cell";
+ layer = 5;
+ locked = 1;
+ name = "Central Command Jail"
+ },
+/obj/structure/window/full/reinforced{
+ layer = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"noL" = (
+/turf/space,
+/turf/unsimulated/wall,
+/area/centcom)
+"npl" = (
+/obj/structure/table/wood,
+/obj/machinery/light/small,
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"npy" = (
+/obj/machinery/light/small{
+ brightness_range = 10;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"npR" = (
+/obj/structure/crematorium,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"npS" = (
+/obj/structure/mirror{
+ layer = 5;
+ pixel_y = 32
+ },
+/obj/structure/sink{
+ pixel_y = 25
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"npV" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"nqa" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkgreen"
+ },
+/area/centcom/specops)
+"nqk" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/barman_recipes,
+/obj/machinery/light/small,
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"nql" = (
+/obj/item/beach_ball,
+/turf/unsimulated/beach/sand,
+/area/ninja/holding)
+"nqC" = (
+/obj/structure/chair/sofa{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nqE" = (
+/obj/structure/table/wood/poker,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/snacks/lasagna = 10, /obj/item/reagent_containers/food/snacks/sliceable/pizza/hawaiianpizza = 10, /obj/item/reagent_containers/food/snacks/sushi_TobikoEgg = 10, /obj/item/reagent_containers/food/snacks/bigbiteburger = 10, /obj/item/reagent_containers/food/snacks/sushi_SmokedSalmon = 10, "" = 70);
+ name = "Food CC Spawner #2"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nqO" = (
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluecorners"
+ },
+/area/centcom/zone2)
+"nri" = (
+/obj/item/clothing/suit/space/syndicate/blue{
+ desc = "This spacesuit is emblazoned with the emblem of the USSP. Glory to Space Russia!";
+ name = "Cosmonaut Command Suit"
+ },
+/obj/item/clothing/head/helmet/space/syndicate/blue{
+ desc = "This spacesuit is emblazoned with the emblem of the USSP. Glory to Space Russia!";
+ name = "Cosmonaut Command Helmet"
+ },
+/obj/structure/closet{
+ icon_closed = "cabinet_closed";
+ icon_opened = "cabinet_open";
+ icon_state = "cabinet_closed"
+ },
+/obj/item/clothing/suit/space/syndicate/blue{
+ desc = "This spacesuit is emblazoned with the emblem of the USSP. Glory to Space Russia!";
+ name = "Cosmonaut Command Suit"
+ },
+/obj/item/clothing/head/helmet/space/syndicate/blue{
+ desc = "This spacesuit is emblazoned with the emblem of the USSP. Glory to Space Russia!";
+ name = "Cosmonaut Command Helmet"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"nrv" = (
+/obj/structure/table/reinforced/brass,
+/obj/item/clothing/suit/space/vox/stealth,
+/obj/item/clothing/suit/space/vox/stealth,
+/obj/item/clothing/head/helmet/space/vox/stealth,
+/obj/item/clothing/head/helmet/space/vox/stealth,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"nrD" = (
+/obj/structure/table/wood/poker,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/snacks/baguette = 10, /obj/item/reagent_containers/food/snacks/applepie = 10, /obj/item/reagent_containers/food/snacks/applepie = 10, /obj/item/reagent_containers/food/snacks/soup/bloodsoup = 10, /obj/item/reagent_containers/food/snacks/boiledrice = 10, /obj/item/reagent_containers/food/snacks/carrotfries = 10, /obj/item/reagent_containers/food/drinks/cans/cola = 10, "" = 70);
+ name = "Food CC Spawner #1"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nrJ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/radio/intercom/specops{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"nrS" = (
+/obj/structure/holowindow{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor,
+/area/holodeck/source_thunderdomecourt)
+"nsF" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/flora/ausbushes/pointybush,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone2)
+"ntd" = (
+/obj/machinery/disco{
+ anchored = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "light_on-cycle_all"
+ },
+/area/centcom/evac)
+"ntO" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/tdome)
+"nuC" = (
+/obj/structure/window/reinforced{
+ color = "red";
+ layer = 2.9
+ },
+/obj/structure/grille{
+ layer = 2.8
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id_tag = "commandcenter";
+ name = "Privacy Shutters"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"nuM" = (
+/obj/machinery/light/small,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/assault_pod)
+"nvL" = (
+/obj/structure/chair/sofa{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nwJ" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone2)
+"nwN" = (
+/obj/structure/table,
+/obj/structure/reagent_dispensers/beerkeg/nuke{
+ pixel_y = 10
+ },
+/obj/machinery/light{
+ dir = 4;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nxk" = (
+/obj/item/flag/species/human,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 4;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"nxP" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"nxX" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"nyD" = (
+/obj/structure/table/wood,
+/obj/item/scythe/tele,
+/obj/item/scythe/tele,
+/obj/item/scythe/tele,
+/obj/item/scythe/tele,
+/obj/item/scythe/tele,
+/obj/item/scythe/tele,
+/obj/item/scythe/tele,
+/obj/item/scythe/tele,
+/obj/item/scythe/tele,
+/obj/item/scythe/tele,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/clusterbuster/cleaner,
+/obj/item/grenade/clusterbuster/cleaner,
+/obj/item/grenade/clusterbuster/cleaner,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"nyH" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 13
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkpurple"
+ },
+/area/centcom/specops)
+"nyO" = (
+/turf/unsimulated/floor{
+ icon_state = "carpet11-12"
+ },
+/area/wizard_station)
+"nzf" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkgreen"
+ },
+/area/centcom/specops)
+"nzi" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/sop_security,
+/obj/item/book/manual/sop_command,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"nzR" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/sleeper/upgraded{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet04"
+ },
+/area/centcom/evac)
+"nAB" = (
+/obj/structure/window/reinforced,
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"nBb" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/turf/space,
+/area/ussp_ship)
+"nCo" = (
+/obj/structure/decorative_structures/metal/statue/metal_angel,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"nCr" = (
+/obj/structure/table/wood,
+/obj/item/grenade/clusterbuster/mega_syndieminibomb,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"nCV" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"nCY" = (
+/obj/machinery/teleport/hub/upgraded{
+ admin_usage = 1
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 1;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"nDL" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"nDY" = (
+/obj/structure/window/reinforced,
+/obj/structure/bush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"nEz" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"nFi" = (
+/obj/structure/chair/sofa/left{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nFj" = (
+/obj/machinery/vending/medical{
+ req_access_txt = "0"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"nFE" = (
+/obj/effect/landmark{
+ name = "tdome2"
+ },
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/tdome/tdome2)
+"nFJ" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "asteroid8";
+ tag = "icon-asteroid8 (EAST)"
+ },
+/area/holodeck/source_desert)
+"nFT" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder{
+ pixel_x = -1;
+ pixel_y = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"nFV" = (
+/obj/item/clothing/suit/space/syndicate/orange{
+ desc = "This spacesuit is emblazoned with the emblem of the USSP. Glory to Space Russia!";
+ name = "Cosmonaut Security Suit"
+ },
+/obj/item/clothing/head/helmet/space/syndicate/orange,
+/obj/structure/closet{
+ icon_closed = "cabinet_closed";
+ icon_opened = "cabinet_open";
+ icon_state = "cabinet_closed"
+ },
+/obj/item/clothing/suit/space/syndicate/orange{
+ desc = "This spacesuit is emblazoned with the emblem of the USSP. Glory to Space Russia!";
+ name = "Cosmonaut Security Suit"
+ },
+/obj/item/clothing/suit/space/syndicate/orange{
+ desc = "This spacesuit is emblazoned with the emblem of the USSP. Glory to Space Russia!";
+ name = "Cosmonaut Security Suit"
+ },
+/obj/item/clothing/head/helmet/space/syndicate/orange,
+/obj/item/clothing/head/helmet/space/syndicate/orange,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"nFY" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"nGC" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/noisecannon,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"nGO" = (
+/obj/structure/table,
+/obj/item/kitchen/utensil/fork,
+/obj/item/lighter,
+/obj/item/restraints/handcuffs/cable/red,
+/obj/item/storage/box/mousetraps,
+/obj/item/storage/fancy/cigarettes,
+/obj/item/pen,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"nHg" = (
+/obj/machinery/door_control{
+ id = "CC_zone2_blastdoor";
+ name = "Zone 2 Blastdoor Control";
+ pixel_x = -25;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"nHi" = (
+/obj/structure/chair/sofa/left{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nHq" = (
+/obj/structure/closet/secure_closet/bar{
+ req_access = null
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nHB" = (
+/obj/structure/weightmachine/stacklifter,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/jail)
+"nIc" = (
+/obj/machinery/computer/med_data,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"nIO" = (
+/obj/structure/table/wood,
+/obj/machinery/syndicatebomb/badmin/clown,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"nIP" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "engine";
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/source_plating)
+"nJf" = (
+/obj/item/flag/syndi,
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"nJs" = (
+/turf/simulated/floor/beach/sand,
+/area/holodeck/source_beach)
+"nKy" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"nKW" = (
+/obj/machinery/vending/medical/syndicate_access,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"nLg" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 1-5";
+ dir = 10;
+ network = list("CentComm")
+ },
+/turf/unsimulated/beach/water/deep/dense,
+/area/centcom/zone1)
+"nLt" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 4;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"nLK" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"nLS" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Weapons";
+ req_access = null
+ },
+/obj/item/gun/projectile/automatic/mini_uzi,
+/obj/item/gun/projectile/automatic/mini_uzi,
+/obj/item/gun/projectile/automatic/mini_uzi,
+/obj/item/gun/projectile/automatic/mini_uzi,
+/obj/item/gun/projectile/automatic/mini_uzi,
+/obj/item/gun/projectile/automatic/mini_uzi,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 4;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/obj/item/ammo_box/magazine/uzim9mm,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/ussp_ship)
+"nLY" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/drinks/flask/detflask = 10, /obj/item/reagent_containers/food/drinks/cans/tonic = 10, /obj/item/reagent_containers/food/drinks/cans/thirteenloko = 10, /obj/item/reagent_containers/food/drinks/cans/synthanol = 10, /obj/item/reagent_containers/food/drinks/cans/space_mountain_wind = 10, /obj/item/reagent_containers/food/drinks/cans/lemon_lime = 10, "" = 70);
+ name = "Food CC Spawner #3"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nMB" = (
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ layer = 2.9;
+ name = "Frag grenade";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/item/grenade/frag,
+/obj/item/grenade/frag,
+/obj/item/grenade/frag,
+/obj/item/grenade/frag,
+/obj/item/grenade/frag,
+/obj/item/grenade/frag,
+/obj/item/grenade/frag,
+/obj/item/grenade/frag,
+/obj/item/grenade/frag,
+/obj/item/grenade/frag,
+/obj/item/grenade/frag,
+/obj/item/grenade/frag,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"nMQ" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/flashlight/lamp/green,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"nNz" = (
+/obj/machinery/vending/syndicigs,
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"nNE" = (
+/obj/structure/urinal{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"nNN" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 4;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom/specops)
+"nNS" = (
+/obj/machinery/computer/shuttle/ferry,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/ferry)
+"nNV" = (
+/obj/machinery/vending/boozeomat,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nOv" = (
+/obj/machinery/vending/boozeomat,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja/holding)
+"nOx" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove{
+ icon_state = "boxinggreen";
+ item_state = "boxinggreen"
+ },
+/turf/simulated/floor/holofloor{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/holodeck/source_boxingcourt)
+"nOF" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien17"
+ },
+/area/abductor_ship)
+"nOO" = (
+/obj/structure/table/wood,
+/obj/item/clothing/suit/fluff/cheeky_sov_coat{
+ name = "coat"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"nPM" = (
+/obj/machinery/computer/crew,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"nSb" = (
+/obj/structure/piano{
+ icon_state = "piano"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"nSq" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"nSt" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/srtops)
+"nSw" = (
+/obj/structure/table/reinforced/brass,
+/obj/item/clothing/suit/space/vox/pressure,
+/obj/item/clothing/suit/space/vox/pressure,
+/obj/item/clothing/head/helmet/space/vox/pressure,
+/obj/item/clothing/head/helmet/space/vox/pressure,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"nTc" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "green"
+ },
+/area/holodeck/source_basketball)
+"nTz" = (
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/chrono_ship)
+"nTH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ussp_ship)
+"nUb" = (
+/obj/item/gun/throw,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"nUy" = (
+/obj/structure/chair/sofa{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nUz" = (
+/obj/machinery/recharge_station/ert,
+/obj/machinery/light{
+ light_range = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"nXm" = (
+/obj/structure/weightmachine/weightlifter,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"nYs" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/meteorgun,
+/obj/item/gun/energy/meteorgun/pen,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"nZn" = (
+/obj/item/flag/syndi,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"nZs" = (
+/obj/structure/chair/sofa{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"nZT" = (
+/obj/structure/chair/sofa/left{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"obc" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "light_on_flicker4"
+ },
+/area/centcom/evac)
+"obL" = (
+/obj/structure/chair/sofa/right{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"ocX" = (
+/obj/structure/chair/stool,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 1;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"ody" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Teleporter";
+ opacity = 1;
+ req_access_txt = "109"
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "navyblue"
+ },
+/area/centcom/specops)
+"odP" = (
+/obj/structure/chair/sofa{
+ dir = 10
+ },
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"oeb" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Arrivals Bar";
+ dir = 1;
+ network = list("CentComm")
+ },
+/obj/item/radio/intercom{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "light_on_flicker4"
+ },
+/area/centcom/evac)
+"oeC" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone3)
+"oeN" = (
+/obj/structure/table/reinforced/brass,
+/obj/item/clothing/suit/space/vox/carapace,
+/obj/item/clothing/suit/space/vox/carapace,
+/obj/item/clothing/head/helmet/space/vox/carapace,
+/obj/item/clothing/head/helmet/space/vox/carapace,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"ofb" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/energy/ionrifle/carbine{
+ pixel_y = 7
+ },
+/obj/item/gun/energy/ionrifle/carbine{
+ pixel_y = 7
+ },
+/obj/item/gun/energy/ionrifle/carbine{
+ pixel_y = 7
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 33;
+ pixel_y = -7
+ },
+/obj/item/grenade/empgrenade{
+ pixel_x = 7;
+ pixel_y = -2
+ },
+/obj/item/grenade/empgrenade{
+ pixel_x = 7;
+ pixel_y = -2
+ },
+/obj/item/grenade/empgrenade{
+ pixel_x = 7;
+ pixel_y = -2
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = -5
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = -5
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = -5
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/specops)
+"ofd" = (
+/obj/structure/piano{
+ icon_state = "piano"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"ofJ" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "wood_siding2";
+ tag = "icon-wood_siding2 (EAST)"
+ },
+/area/holodeck/source_picnicarea)
+"ofK" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/holodeck/source_theatre)
+"ofT" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"ohl" = (
+/obj/structure/chair/sofa/left,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/evac)
+"ohq" = (
+/obj/item/paper/syndimemo{
+ info = "ТАК ТЫ ПОЛУЧИЛ ЭТОТ ЧЕРТОВ ДИСК?
ЕСЛИ НЕТ ТО ПОЛУЧИ ЕГО!";
+ name = "paper- '?'"
+ },
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"ohz" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/shaker,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"ohL" = (
+/obj/item/camera,
+/turf/unsimulated/beach/sand,
+/area/ninja/holding)
+"ohS" = (
+/obj/machinery/photocopier,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/bridge)
+"oid" = (
+/obj/structure/table/wood/fancy/black,
+/turf/unsimulated/floor{
+ icon_state = "carpet10-8"
+ },
+/area/wizard_station)
+"oil" = (
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/assault_pod)
+"oiI" = (
+/obj/structure/table/wood/fancy,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"ojW" = (
+/turf/simulated/floor/holofloor,
+/area/holodeck/source_basketball)
+"okp" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"olF" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/l6_saw,
+/obj/item/gun/projectile/automatic/l6_saw/toy,
+/obj/item/gun/projectile/automatic/l6_saw/toy/riot,
+/obj/item/gun/energy/printer,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"olP" = (
+/obj/structure/closet/crate/trashcart{
+ desc = "A heavy, metal crate with wheels.";
+ name = "Special Delivery from Central Command"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/centcom/supply)
+"omh" = (
+/obj/machinery/computer/sm_monitor,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"oml" = (
+/obj/structure/table/reinforced,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flashbang,
+/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/bola,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/disabler,
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/specops)
+"onh" = (
+/obj/structure/holowindow,
+/turf/simulated/floor/holofloor,
+/area/holodeck/source_thunderdomecourt)
+"onZ" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"oor" = (
+/mob/living/carbon/human/farwa,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"ooB" = (
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"opl" = (
+/obj/structure/table/wood,
+/obj/item/paper/form/NT_HR_03,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"opJ" = (
+/obj/structure/filingcabinet/security,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/bridge)
+"oqe" = (
+/turf/space,
+/area/ussp_ship)
+"oqW" = (
+/obj/machinery/computer/secure_data,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"osu" = (
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/centcom/specops)
+"osZ" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"otf" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/court)
+"otJ" = (
+/obj/structure/filingcabinet/security,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"oua" = (
+/obj/structure/table/wood,
+/obj/item/pen/fancy,
+/obj/item/folder/yellow,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"ouh" = (
+/turf/unsimulated/floor{
+ dir = 9;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"ouq" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"ovq" = (
+/obj/machinery/cryopod/right,
+/obj/machinery/camera{
+ c_tag = "CentComm Black Ops Ready Room";
+ dir = 4;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/blops)
+"ovJ" = (
+/obj/structure/statue/sandstone/assistant,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/adminconstruction)
+"ovW" = (
+/obj/structure/chair/office,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"owd" = (
+/obj/machinery/vending/coffee,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/srtops)
+"owB" = (
+/obj/structure/mineral_door,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"oxv" = (
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"oyb" = (
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"oyd" = (
+/obj/machinery/door/airlock/hatch/syndicate/command{
+ req_access_txt = "150"
+ },
+/obj/machinery/door/poddoor/shutters{
+ id_tag = "commandcenter";
+ name = "Privacy Shutters"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"oyo" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"oyw" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"oyx" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/condiment/enzyme{
+ pixel_x = 5
+ },
+/obj/item/reagent_containers/food/condiment/enzyme{
+ pixel_x = 10
+ },
+/obj/item/reagent_containers/food/condiment/enzyme,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"oyP" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/obj/machinery/light{
+ dir = 1;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"oyT" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Weapons";
+ req_access = null
+ },
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 8;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/obj/structure/sign/poster/contraband/communist_state{
+ pixel_x = -32
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ name = "Saiga-12k"
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ name = "Saiga-12k"
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ name = "Saiga-12k"
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ name = "Saiga-12k"
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ name = "Saiga-12k"
+ },
+/obj/item/gun/projectile/automatic/shotgun/bulldog{
+ name = "Saiga-12k"
+ },
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
+/obj/item/storage/backpack/duffel/syndie/ammo/shotgun,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/ussp_ship)
+"ozD" = (
+/obj/docking_port/stationary/transit{
+ dir = 2;
+ dwidth = 2;
+ height = 18;
+ id = "skipjack_transit";
+ name = "skipjack in transit";
+ width = 19
+ },
+/turf/space/transit,
+/area/space)
+"ozF" = (
+/obj/item/flag/species/human,
+/obj/structure/sign/poster/contraband/communist_state{
+ pixel_x = -32
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"ozO" = (
+/obj/structure/bed/abductor,
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"ozU" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 1
+ },
+/area/wizard_station)
+"oAo" = (
+/obj/structure/reagent_dispensers/oil,
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Medical Block 3";
+ dir = 4;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"oAF" = (
+/obj/structure/chair/comfy/beige,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/bridge)
+"oAK" = (
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/bridge)
+"oBA" = (
+/obj/machinery/computer/message_monitor,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"oBG" = (
+/obj/structure/chair/comfy/beige{
+ dir = 8;
+ layer = 5;
+ pixel_y = -2
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"oBV" = (
+/obj/structure/table,
+/obj/item/kitchen/sushimat,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"oCg" = (
+/obj/machinery/photocopier,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"oCr" = (
+/obj/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"oCw" = (
+/obj/structure/bookcase/manuals,
+/obj/item/book/manual/engineering_construction,
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"oCE" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ req_access_txt = "109"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"oCK" = (
+/obj/structure/table/wood/fancy,
+/obj/item/stamp/chameleon{
+ pixel_x = 10;
+ pixel_y = 10
+ },
+/obj/item/stamp/syndicate,
+/obj/item/syndicatedetonator{
+ pixel_x = -6;
+ pixel_y = 10
+ },
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"oCZ" = (
+/obj/item/gun/energy/wormhole_projector,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"oEi" = (
+/obj/structure/table/wood,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Central Command"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/bridge)
+"oEt" = (
+/obj/structure/table/wood,
+/obj/item/folder/yellow,
+/obj/item/pen/fancy,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/bridge)
+"oGz" = (
+/obj/structure/sign/poster/official/ue_no,
+/turf/unsimulated/wall{
+ icon_state = "sandstone12"
+ },
+/area/wizard_station)
+"oHf" = (
+/obj/machinery/computer/card/centcom,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"oHr" = (
+/obj/structure/table/wood,
+/obj/item/paper/contract/employment,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/bridge)
+"oHz" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"oIg" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom/specops{
+ pixel_y = 25
+ },
+/obj/item/book/manual/sop_command,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/bridge)
+"oIl" = (
+/obj/machinery/abductor/console{
+ team = 3
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"oIH" = (
+/obj/machinery/computer/station_alert,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"oJr" = (
+/obj/structure/filingcabinet/security,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"oKr" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 5;
+ tag = "icon-fakewindows (NORTHEAST)"
+ },
+/area/centcom)
+"oKD" = (
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/tdome/tdome1)
+"oKU" = (
+/obj/structure/chair/comfy/red{
+ color = "#FFFFFF"
+ },
+/obj/effect/landmark{
+ name = "aroomwarp";
+ tag = ""
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"oLz" = (
+/obj/item/flag/wiz,
+/obj/machinery/light/small{
+ brightness_range = 6;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"oMk" = (
+/obj/item/flag/nt,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"oNb" = (
+/obj/machinery/atmospherics/unary/cryo_cell/upgraded,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"oNz" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"oNP" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/bush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"oNW" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/syndicate,
+/obj/item/shard,
+/obj/item/kitchen/knife,
+/obj/item/storage/firstaid/tactical,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"oOe" = (
+/obj/structure/lattice,
+/turf/unsimulated/wall,
+/area/centcom)
+"oOr" = (
+/obj/structure/table/wood/fancy/black,
+/obj/machinery/recharger,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"oOA" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = -32
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"oPa" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id_tag = "CC_special_operations_force_room";
+ layer = 5;
+ locked = 1;
+ name = "Central Command Special Operations Forces"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"oPr" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 6;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/ussp_ship)
+"oRN" = (
+/obj/structure/table/wood/poker,
+/obj/item/toy/cards/deck,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"oRT" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"oTp" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ icon_state = "fakewindows3";
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom)
+"oTy" = (
+/obj/structure/snowman,
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"oTG" = (
+/turf/unsimulated/floor{
+ dir = 9;
+ icon_state = "darkred"
+ },
+/area/centcom/specops)
+"oTM" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"oUI" = (
+/turf/unsimulated/floor{
+ icon_state = "carpetside"
+ },
+/area/wizard_station)
+"oVg" = (
+/obj/structure/table/reinforced,
+/obj/item/pizzabox/mushroom,
+/obj/item/pizzabox/mushroom,
+/obj/item/pizzabox/vegetable,
+/obj/item/pizzabox/vegetable,
+/obj/item/pizzabox/margherita,
+/obj/item/pizzabox/margherita,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "stage_bleft"
+ },
+/area/syndicate_mothership)
+"oVl" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 5
+ },
+/obj/structure/window/reinforced{
+ layer = 5
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/structure/curtain/open/shower,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"oVr" = (
+/obj/structure/chair/comfy/red{
+ color = "#FFFFFF";
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/jail)
+"oWa" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/paper_bin/nanotrasen{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/pen/multi/fountain,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"oWO" = (
+/obj/structure/chair/sofa{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/evac)
+"oWS" = (
+/obj/machinery/door/airlock/centcom{
+ name = "ERT Service Room";
+ opacity = 1;
+ req_access_txt = "114"
+ },
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "navyblue"
+ },
+/area/centcom/specops)
+"oXq" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet06"
+ },
+/area/centcom/evac)
+"oXT" = (
+/obj/structure/table/wood/fancy/black,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"oYE" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Bridge";
+ opacity = 1;
+ req_access_txt = "113"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"oYL" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/holofloor{
+ icon_state = "wood_siding6";
+ tag = "icon-wood_siding6"
+ },
+/area/holodeck/source_picnicarea)
+"oYZ" = (
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/syndicate_mothership)
+"oZc" = (
+/obj/structure/holowindow{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/holodeck/source_knightarena)
+"oZu" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/documents/nanotrasen,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"pal" = (
+/obj/structure/rack,
+/obj/item/tank/jetpack/oxygen,
+/obj/item/tank/jetpack/oxygen,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"paH" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
+ brightness_range = 5;
+ light_range = 5;
+ nightshift_light_range = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"paY" = (
+/obj/structure/lattice,
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ icon_state = "fakewindows3";
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom/evac)
+"pbl" = (
+/obj/structure/closet/crate,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"pbA" = (
+/obj/structure/table/wood/poker,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/event_zone)
+"pbI" = (
+/obj/structure/table/wood,
+/obj/item/clothing/suit/hooded/hoodie/nt,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"pbS" = (
+/obj/machinery/computer/account_database{
+ name = "Admin Accounts Database"
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"pcd" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/syndicate,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"pcJ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"pcS" = (
+/obj/machinery/vending/coffee,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"pdi" = (
+/obj/structure/chair/comfy/brown,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"pdP" = (
+/obj/structure/chair/sofa/right,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"peg" = (
+/obj/structure/rack/holorack,
+/obj/item/clothing/head/beret/atmos{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/atmos{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/ce{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/ce{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/centcom/captain{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/centcom/captain{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/centcom/officer{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/centcom/officer{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/centcom/officer/navy{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/centcom/officer/navy{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/durathread{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/durathread{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/eng{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/eng{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/fluff/elo{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/fluff/elo{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/fluff/sigholt{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/fluff/sigholt{
+ name = "beret"
+ },
+/obj/item/clothing/head/fluff/sparkyninja_beret{
+ name = "beret"
+ },
+/obj/item/clothing/head/fluff/sparkyninja_beret{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/fluff/sigholt{
+ icon_state = "officerberet";
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/fluff/sigholt{
+ icon_state = "officerberet";
+ name = "beret"
+ },
+/obj/item/clothing/head/fedora,
+/obj/item/clothing/head/fedora,
+/obj/item/clothing/head/fedora{
+ icon_state = "wfedora"
+ },
+/obj/item/clothing/head/fedora{
+ icon_state = "wfedora"
+ },
+/obj/item/clothing/head/beret/purple{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/purple{
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/fluff/sigholt{
+ icon_state = "beret_hos_black";
+ name = "beret"
+ },
+/obj/item/clothing/head/beret/fluff/sigholt{
+ icon_state = "beret_hos_black";
+ name = "beret"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"pfs" = (
+/obj/structure/rack/holorack,
+/obj/item/clothing/gloves/color/white{
+ desc = null
+ },
+/obj/item/clothing/gloves/color/white{
+ desc = null
+ },
+/obj/item/clothing/gloves/color/white{
+ desc = null;
+ icon_state = "s-ninjas";
+ name = "black gloves"
+ },
+/obj/item/clothing/gloves/color/white{
+ desc = null;
+ icon_state = "s-ninjas";
+ name = "black gloves"
+ },
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/gloves/combat,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"pfv" = (
+/obj/structure/piano,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"pfB" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"pgj" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/shaker,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja/holding)
+"pgx" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"pgB" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 4;
+ tag = "icon-fakewindows (EAST)"
+ },
+/area/syndicate_mothership)
+"pgJ" = (
+/obj/machinery/shuttle_manipulator,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"phr" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/paper_bin/nanotrasen{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/pen/multi/gold,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"phs" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/soda,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"phv" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"phS" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Weapons";
+ req_access = null
+ },
+/obj/item/gun/projectile/revolver/mateba,
+/obj/item/gun/projectile/revolver/mateba,
+/obj/item/gun/projectile/revolver/mateba,
+/obj/item/gun/projectile/revolver/mateba,
+/obj/item/gun/projectile/revolver/mateba,
+/obj/item/gun/projectile/revolver/mateba,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 1;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/ussp_ship)
+"piw" = (
+/obj/machinery/door/airlock/centcom{
+ req_access_txt = "152"
+ },
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"piH" = (
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/srtops)
+"piN" = (
+/obj/structure/table/wood,
+/obj/item/clothing/under/color/black{
+ icon_state = "assistant_formal"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"pje" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"pjo" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/obj/structure/chair/sofa{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"pjz" = (
+/obj/structure/flora/rock,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone2)
+"pjY" = (
+/obj/structure/table/wood,
+/obj/item/implanter/adrenalin{
+ pixel_x = 12;
+ pixel_y = -12
+ },
+/obj/item/implanter/emp{
+ pixel_x = 9;
+ pixel_y = -9
+ },
+/obj/item/implanter/explosive{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/implanter/explosive_macro{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/implanter/freedom,
+/obj/item/implanter/krav_maga{
+ pixel_x = -9;
+ pixel_y = 9
+ },
+/obj/item/implanter/mindshield{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/implanter/storage{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"pkt" = (
+/obj/item/storage/box/monkeycubes,
+/obj/item/storage/box/monkeycubes,
+/obj/item/storage/box/monkeycubes/farwacubes,
+/obj/item/storage/box/monkeycubes/farwacubes,
+/obj/item/storage/box/monkeycubes/neaeracubes,
+/obj/item/storage/box/monkeycubes/neaeracubes,
+/obj/item/storage/box/monkeycubes/stokcubes,
+/obj/item/storage/box/monkeycubes/stokcubes,
+/obj/item/storage/box/monkeycubes/wolpincubes,
+/obj/item/storage/box/monkeycubes/wolpincubes,
+/obj/structure/table/reinforced,
+/obj/item/radio/intercom/specops{
+ pixel_y = 25
+ },
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"pkN" = (
+/obj/structure/table,
+/obj/item/card/id/centcom{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/card/id,
+/obj/item/card/id/admin{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/machinery/door/window/southleft{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8;
+ name = "security checkpoint"
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"pkT" = (
+/obj/item/gun/energy/taser,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"pkV" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/flora/ausbushes/pointybush,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone2)
+"plJ" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Bridge 1-1";
+ opacity = 1;
+ req_access_txt = "113"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"pml" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/holodeck/source_boxingcourt)
+"pmM" = (
+/obj/structure/chair/comfy/red{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "aroomwarp";
+ tag = ""
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"por" = (
+/obj/structure/table/reinforced,
+/obj/machinery/kitchen_machine/microwave/upgraded,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "stage_bleft"
+ },
+/area/syndicate_mothership)
+"pot" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"poE" = (
+/obj/structure/rack/holorack,
+/obj/item/clothing/under/acj,
+/obj/item/clothing/under/assistantformal,
+/obj/item/clothing/under/captain_fly{
+ name = "rogue uniform"
+ },
+/obj/item/clothing/under/captainparade{
+ name = "parade uniform"
+ },
+/obj/item/clothing/under/captainparade{
+ name = "parade uniform"
+ },
+/obj/item/clothing/under/captain_fly{
+ name = "rogue uniform"
+ },
+/obj/item/clothing/under/assistantformal,
+/obj/item/clothing/under/acj,
+/obj/item/clothing/under/fluff/benjaminfallout,
+/obj/item/clothing/under/fluff/benjaminfallout,
+/obj/item/clothing/under/fluff/elishirt,
+/obj/item/clothing/under/fluff/elishirt,
+/obj/item/clothing/under/fluff/jay_turtleneck,
+/obj/item/clothing/under/fluff/jay_turtleneck,
+/obj/item/clothing/under/lawyer/black,
+/obj/item/clothing/under/lawyer/black,
+/obj/item/clothing/under/lawyer/blue,
+/obj/item/clothing/under/lawyer/blue,
+/obj/item/clothing/under/lawyer/bluesuit,
+/obj/item/clothing/under/lawyer/bluesuit,
+/obj/item/clothing/under/lawyer/female,
+/obj/item/clothing/under/lawyer/female,
+/obj/item/clothing/under/lawyer/oldman,
+/obj/item/clothing/under/lawyer/oldman,
+/obj/item/clothing/under/lawyer/red,
+/obj/item/clothing/under/lawyer/red,
+/obj/item/clothing/under/mafia{
+ name = "black outfit"
+ },
+/obj/item/clothing/under/mafia{
+ name = "black outfit"
+ },
+/obj/item/clothing/under/mafia/white{
+ name = "white outfit"
+ },
+/obj/item/clothing/under/mafia/white{
+ name = "white outfit"
+ },
+/obj/item/clothing/under/misc/durathread,
+/obj/item/clothing/under/misc/durathread,
+/obj/item/clothing/under/retro/engineering,
+/obj/item/clothing/under/retro/engineering,
+/obj/item/clothing/under/retro/medical,
+/obj/item/clothing/under/retro/medical,
+/obj/item/clothing/under/retro/science,
+/obj/item/clothing/under/retro/science,
+/obj/item/clothing/under/retro/security,
+/obj/item/clothing/under/retro/security,
+/obj/item/clothing/under/color/black{
+ icon_state = "hosblueclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "hosblueclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "hosdnavyclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "hosdnavyclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "hostanclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "hostanclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "officerblueclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "officerblueclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "officerdnavyclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "officerdnavyclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "officertanclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "officertanclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "wardenblueclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "wardenblueclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "wardendnavyclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "wardendnavyclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "wardentanclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/under/color/black{
+ icon_state = "wardentanclothes";
+ name = "jumpsuit"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"poJ" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "ERT_armory_lvl3";
+ layer = 5;
+ locked = 1;
+ name = "Armory level 3"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkred"
+ },
+/area/centcom/specops)
+"ppb" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/holodeck/source_knightarena)
+"ppo" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"pqC" = (
+/obj/structure/table/wood,
+/obj/item/clothing/under/color/black{
+ icon_state = "internalaffairs"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"prr" = (
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 2.9;
+ name = "ML IC";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/item/gun/energy/immolator/multi,
+/obj/item/gun/energy/immolator/multi,
+/obj/item/gun/energy/immolator/multi,
+/obj/item/gun/energy/immolator/multi,
+/obj/item/gun/energy/immolator/multi,
+/obj/item/gun/energy/immolator/multi,
+/obj/item/gun/energy/immolator/multi,
+/obj/item/gun/energy/immolator/multi,
+/obj/item/gun/energy/immolator/multi,
+/obj/item/gun/energy/immolator/multi,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"psf" = (
+/obj/item/mecha_parts/mecha_equipment/cable_layer,
+/obj/item/mecha_parts/mecha_equipment/drill/diamonddrill,
+/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp,
+/obj/item/mecha_parts/mecha_equipment/rcd,
+/obj/item/mecha_parts/mecha_equipment/extinguisher,
+/obj/structure/closet/crate,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"pst" = (
+/obj/structure/dresser,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/event_zone)
+"psG" = (
+/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"ptj" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "wood";
+ tag = "icon-wood (EAST)"
+ },
+/area/holodeck/source_theatre)
+"puq" = (
+/obj/item/flag/syndi,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"puu" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s5"
+ },
+/area/shuttle/gamma/space)
+"puv" = (
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"pvh" = (
+/obj/structure/table/wood/fancy/black,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"pvQ" = (
+/obj/structure/sink{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"pwa" = (
+/obj/docking_port/mobile/emergency/backup{
+ dwidth = 9;
+ roundstart_move = null
+ },
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 3;
+ height = 8;
+ id = "backup_away";
+ name = "Backup Shuttle Dock";
+ width = 8
+ },
+/obj/machinery/door/airlock/shuttle,
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/escape)
+"pwg" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone2)
+"pwt" = (
+/obj/structure/rack/holorack,
+/obj/item/clothing/under/dress/dress_saloon,
+/obj/item/clothing/head/hairflower,
+/turf/simulated/floor/holofloor{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/holodeck/source_theatre)
+"pwI" = (
+/obj/machinery/optable,
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"pwO" = (
+/turf/unsimulated/wall{
+ icon_state = "iron8"
+ },
+/area/syndicate_mothership)
+"pwW" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/genericbush,
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone2)
+"pxe" = (
+/obj/structure/flora/ausbushes/genericbush,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone2)
+"pxF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chem_dispenser/soda/upgraded,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "stage_bleft"
+ },
+/area/syndicate_mothership)
+"pxG" = (
+/turf/unsimulated/floor{
+ dir = 6;
+ icon_state = "darkgreen"
+ },
+/area/centcom/specops)
+"pyu" = (
+/obj/structure/flora/ausbushes/pointybush,
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone2)
+"pyS" = (
+/obj/structure/table,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"pyW" = (
+/obj/structure/table,
+/obj/item/card/id/silver{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/card/id/captains_spare,
+/obj/item/card/id/lifetime{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/machinery/door/window/southleft{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8;
+ name = "security checkpoint"
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100)
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"pzt" = (
+/obj/structure/flora/rock,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone2)
+"pAk" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/stamp/centcom{
+ pixel_x = -6;
+ pixel_y = -3
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"pAl" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/holodeck/source_emptycourt)
+"pAJ" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Jail";
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"pAT" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/centcom/specops)
+"pAX" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s5"
+ },
+/area/shuttle/escape)
+"pBn" = (
+/turf/unsimulated/wall{
+ icon_state = "iron14";
+ layer = 10
+ },
+/area/syndicate_mothership)
+"pBo" = (
+/obj/structure/table/wood,
+/obj/item/paicard/syndicate,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"pBx" = (
+/obj/machinery/vending/security,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"pBW" = (
+/obj/structure/rack/holorack,
+/obj/item/clothing/accessory/black{
+ desc = null;
+ name = "Black tie"
+ },
+/obj/item/clothing/accessory/blue{
+ desc = null;
+ name = "Blue tie"
+ },
+/obj/item/clothing/glasses/hud/security/sunglasses/aviators,
+/obj/item/clothing/glasses/hud/security/sunglasses/aviators,
+/obj/item/clothing/accessory/blue{
+ desc = null;
+ name = "Blue tie"
+ },
+/obj/item/clothing/accessory/black{
+ desc = null;
+ name = "Black tie"
+ },
+/obj/item/clothing/accessory/holster{
+ desc = null;
+ name = "Shoulder holster"
+ },
+/obj/item/clothing/accessory/holster{
+ desc = null;
+ name = "Shoulder holster"
+ },
+/obj/item/storage/backpack/satchel,
+/obj/item/storage/backpack/satchel,
+/obj/item/storage/backpack/satcheldeluxe,
+/obj/item/storage/backpack/satcheldeluxe,
+/obj/item/storage/belt/fannypack/black,
+/obj/item/storage/belt/fannypack/black,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"pCb" = (
+/obj/structure/table,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/item/assembly/infra,
+/obj/item/assembly/infra,
+/obj/item/assembly/infra,
+/obj/item/assembly/infra,
+/obj/item/assembly/infra,
+/obj/item/assembly/prox_sensor,
+/obj/item/assembly/prox_sensor,
+/obj/item/assembly/prox_sensor,
+/obj/item/assembly/prox_sensor,
+/obj/item/assembly/prox_sensor,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"pCl" = (
+/obj/structure/chair/sofa/right,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"pCM" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/snacks/grown/citrus/lemon,
+/obj/item/reagent_containers/food/snacks/grown/berries,
+/obj/item/reagent_containers/food/snacks/grown/banana,
+/obj/item/reagent_containers/food/snacks/grown/cherries,
+/obj/item/reagent_containers/food/snacks/grown/citrus/orange,
+/obj/item/reagent_containers/food/snacks/grown/corn,
+/obj/item/reagent_containers/food/snacks/grown/mushroom/amanita,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"pDg" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/pistol/APS,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"pDj" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/item/flag/nt,
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"pDL" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Central Command";
+ departmentType = 2;
+ name = "CC Requests Console";
+ pixel_y = -30
+ },
+/obj/machinery/photocopier,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"pDS" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom)
+"pEo" = (
+/obj/docking_port/stationary/transit{
+ dir = 4;
+ dwidth = 11;
+ height = 13;
+ id = "emergency_transit";
+ name = "emergency in transit";
+ width = 24
+ },
+/turf/space/transit,
+/area/space)
+"pFs" = (
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"pFW" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/pistol/m1911,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"pGR" = (
+/obj/machinery/door/airlock/hatch/syndicate/command{
+ name = "Officer Room"
+ },
+/obj/machinery/door/poddoor/impassable{
+ id_tag = "commandroom";
+ layer = 2.8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"pHf" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"pHh" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"pHj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_mothership)
+"pHT" = (
+/obj/structure/table/reinforced/brass,
+/obj/item/clothing/under/vox,
+/obj/item/clothing/under/vox,
+/obj/item/clothing/under/vox,
+/obj/item/clothing/under/vox,
+/obj/item/clothing/under/vox,
+/obj/item/clothing/under/vox,
+/obj/item/clothing/under/vox,
+/obj/item/clothing/under/vox,
+/obj/item/clothing/under/vox,
+/obj/item/clothing/under/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"pIm" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/item/storage/secure/safe{
+ pixel_x = 32
+ },
+/obj/structure/mirror{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"pII" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Weapons";
+ req_access = null
+ },
+/obj/item/gun/projectile/automatic/pistol/APS,
+/obj/item/gun/projectile/automatic/pistol/APS,
+/obj/item/gun/projectile/automatic/pistol/APS,
+/obj/item/gun/projectile/automatic/pistol/APS,
+/obj/item/gun/projectile/automatic/pistol/APS,
+/obj/item/gun/projectile/automatic/pistol/APS,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 8;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/obj/item/ammo_box/magazine/pistolm9mm,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/ussp_ship)
+"pIX" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 1;
+ tag = "icon-fakewindows (EAST)"
+ },
+/area/centcom)
+"pJA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"pKk" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ damage_deflection = 75;
+ id_tag = "syndicate_jail";
+ locked = 1;
+ name = "Syndicate Jail"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"pKw" = (
+/turf/simulated/floor/holofloor{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/holodeck/source_basketball)
+"pKK" = (
+/turf/unsimulated/floor{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/centcom/bridge)
+"pKX" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/trader_station/sol)
+"pLi" = (
+/obj/machinery/camera{
+ c_tag = "Thunderdome Red Team";
+ network = list("Thunderdome");
+ pixel_x = 11;
+ pixel_y = -9
+ },
+/obj/effect/landmark{
+ name = "tdome2"
+ },
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/tdome/tdome2)
+"pLq" = (
+/obj/structure/table/wood/fancy/black,
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"pLz" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/storage/briefcase,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"pLD" = (
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault";
+ name = "Operative position"
+ },
+/area/centcom/specops)
+"pLE" = (
+/obj/machinery/computer/rdservercontrol{
+ badmin = 1;
+ name = "Master R&D Server Controller"
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"pLV" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 2 Office 5";
+ dir = 4;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"pLZ" = (
+/obj/structure/rack/holorack,
+/obj/item/clothing/shoes/cowboy/white{
+ name = "white boots"
+ },
+/obj/item/clothing/shoes/cowboy/white{
+ name = "white boots"
+ },
+/obj/item/clothing/shoes/fluff/noble_boot,
+/obj/item/clothing/shoes/fluff/noble_boot,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/shoes/jackboots/jacksandals,
+/obj/item/clothing/shoes/jackboots/jacksandals,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/shoes/leather,
+/obj/item/clothing/shoes/white,
+/obj/item/clothing/shoes/white,
+/obj/item/clothing/shoes/white{
+ icon_state = "secshoes";
+ name = "shoes"
+ },
+/obj/item/clothing/shoes/white{
+ icon_state = "secshoes";
+ name = "shoes"
+ },
+/obj/item/clothing/shoes/centcom{
+ desc = null;
+ name = "Dress shoes"
+ },
+/obj/item/clothing/shoes/centcom{
+ desc = null;
+ name = "Dress shoes"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"pMa" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"pMb" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/flora/bush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"pMo" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"pMu" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 8;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"pMV" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"pNM" = (
+/obj/structure/filingcabinet/security,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"pOd" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/clothing/accessory/medal/gold,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"pOM" = (
+/obj/machinery/computer/secure_data,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"pOT" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkbrown"
+ },
+/area/centcom/ferry)
+"pPX" = (
+/obj/structure/bookcase/manuals,
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law/black{
+ pixel_x = -4
+ },
+/obj/item/book/manual/security_space_law/black{
+ pixel_x = -4
+ },
+/obj/item/book/manual/security_space_law/black{
+ pixel_x = -4
+ },
+/obj/item/book/manual/security_space_law/black{
+ pixel_x = -4
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"pQL" = (
+/obj/structure/sign/poster/official/enlist{
+ pixel_y = 32
+ },
+/obj/structure/weightmachine/stacklifter,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"pRk" = (
+/obj/machinery/door/poddoor/shutters{
+ active_power_usage = 1;
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "CC_zone2_checkpoint_lockdown";
+ locked = 1;
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/obj/structure/window/full/reinforced{
+ layer = 2
+ },
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/centcom/zone2)
+"pRX" = (
+/obj/structure/table,
+/obj/item/dice/d20,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja/holding)
+"pRZ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"pSy" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"pSB" = (
+/obj/machinery/computer/robotics,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"pSQ" = (
+/obj/machinery/computer/med_data,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"pTF" = (
+/obj/machinery/photocopier,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"pTT" = (
+/turf/unsimulated/wall/fakeglass,
+/area/centcom/evac)
+"pUb" = (
+/turf/unsimulated/wall{
+ icon_state = "iron5"
+ },
+/area/syndicate_mothership)
+"pUB" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/folder/blue,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"pVm" = (
+/obj/machinery/computer/card/centcom,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"pVo" = (
+/obj/effect/landmark/abductor/scientist,
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"pVy" = (
+/obj/machinery/computer/teleporter,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"pVF" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/laser/instakill,
+/obj/item/gun/energy/laser/instakill/blue,
+/obj/item/gun/energy/laser/instakill/red,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"pWD" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbrownfull"
+ },
+/area/centcom/specops)
+"pXf" = (
+/obj/structure/rack/holorack,
+/obj/item/organ/internal/cyberimp/brain/anti_drop,
+/obj/item/organ/internal/cyberimp/brain/anti_drop,
+/obj/item/organ/internal/cyberimp/brain/anti_sleep/hardened,
+/obj/item/organ/internal/cyberimp/brain/anti_sleep/hardened,
+/obj/item/organ/internal/cyberimp/brain/anti_stun/hardened,
+/obj/item/organ/internal/cyberimp/brain/anti_stun/hardened,
+/obj/item/organ/internal/cyberimp/chest/nutriment/plus,
+/obj/item/organ/internal/cyberimp/chest/nutriment/plus,
+/obj/item/organ/internal/cyberimp/chest/reviver/hardened,
+/obj/item/organ/internal/cyberimp/chest/reviver/hardened,
+/obj/item/organ/internal/cyberimp/eyes/hud/medical,
+/obj/item/organ/internal/cyberimp/eyes/hud/medical,
+/obj/item/organ/internal/cyberimp/eyes/thermals,
+/obj/item/organ/internal/cyberimp/eyes/thermals,
+/obj/item/organ/internal/cyberimp/mouth/breathing_tube,
+/obj/item/organ/internal/cyberimp/mouth/breathing_tube,
+/obj/item/implanter/mindshield,
+/obj/item/implanter/mindshield,
+/obj/item/organ/internal/cyberimp/arm/combat/centcom,
+/obj/item/organ/internal/cyberimp/arm/combat/centcom,
+/obj/item/organ/internal/cyberimp/arm/surgery,
+/obj/item/organ/internal/cyberimp/arm/toolset,
+/obj/item/organ/internal/cyberimp/arm/janitorial,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"pXI" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"pXS" = (
+/obj/docking_port/stationary/transit{
+ dir = 2;
+ dwidth = 8;
+ height = 15;
+ id = "admin_transit";
+ name = "admin in transit";
+ width = 18
+ },
+/turf/space/transit/horizontal,
+/area/space)
+"pYe" = (
+/obj/item/clothing/suit/space/syndicate/orange{
+ desc = "This spacesuit is emblazoned with the emblem of the USSP. Glory to Space Russia!";
+ name = "Cosmonaut Security Suit"
+ },
+/obj/item/clothing/head/helmet/space/syndicate/orange,
+/obj/structure/closet{
+ icon_closed = "cabinet_closed";
+ icon_opened = "cabinet_open";
+ icon_state = "cabinet_closed"
+ },
+/obj/item/clothing/suit/space/syndicate/orange{
+ desc = "This spacesuit is emblazoned with the emblem of the USSP. Glory to Space Russia!";
+ name = "Cosmonaut Security Suit"
+ },
+/obj/item/clothing/suit/space/syndicate/orange{
+ desc = "This spacesuit is emblazoned with the emblem of the USSP. Glory to Space Russia!";
+ name = "Cosmonaut Security Suit"
+ },
+/obj/item/clothing/head/helmet/space/syndicate/orange,
+/obj/item/clothing/head/helmet/space/syndicate/orange,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 1;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"pYu" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "asteroid6";
+ tag = "icon-asteroid6"
+ },
+/area/holodeck/source_desert)
+"pYy" = (
+/obj/structure/table/wood,
+/obj/item/pen/fancy,
+/obj/item/folder/red{
+ pixel_x = 7
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/bridge)
+"pYD" = (
+/obj/structure/table/abductor{
+ name = "table"
+ },
+/obj/item/gun/energy/laser/instakill/blue,
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/chrono_ship)
+"pZv" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/shotgun/automatic/combat,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"pZz" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"pZL" = (
+/obj/structure/table/wood,
+/obj/item/paper/form/NT_COM_05,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/bridge)
+"pZQ" = (
+/obj/structure/table/wood,
+/obj/machinery/kitchen_machine/microwave,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"pZZ" = (
+/obj/structure/bookcase,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"qah" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"qaB" = (
+/obj/structure/sign/double/map/left{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"qaK" = (
+/obj/structure/table,
+/obj/item/storage/backpack/medic,
+/obj/item/storage/backpack/medic,
+/obj/item/storage/backpack/science,
+/obj/item/storage/backpack/science,
+/obj/item/storage/backpack/satchel,
+/obj/item/storage/backpack/satchel,
+/obj/item/storage/backpack/industrial,
+/obj/item/storage/backpack/industrial,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"qaL" = (
+/obj/structure/chair/comfy/red{
+ color = "#FFFFFF";
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"qbO" = (
+/obj/structure/closet/l3closet/security,
+/obj/item/clothing/mask/gas,
+/obj/item/tank/emergency_oxygen/double/full,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/watertank/janitor{
+ max_integrity = 1500;
+ volume = 1500
+ },
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "darkpurple"
+ },
+/area/centcom/specops)
+"qcb" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Special Ops. Armory 2";
+ dir = 1;
+ network = list("CentComm")
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"qcm" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"qcp" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/sop_security,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/bridge)
+"qcr" = (
+/obj/structure/lattice,
+/turf/unsimulated/wall/fakeglass{
+ dir = 5;
+ tag = "icon-fakewindows (NORTHEAST)"
+ },
+/area/centcom)
+"qcy" = (
+/obj/structure/lattice,
+/obj/structure/lattice,
+/turf/space,
+/turf/unsimulated/wall,
+/area/centcom/evac)
+"qcM" = (
+/obj/machinery/poolcontroller/invisible{
+ pixel_x = 30
+ },
+/turf/unsimulated/beach/water,
+/area/ninja/holding)
+"qds" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"qdx" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/bridge)
+"qdy" = (
+/obj/structure/chair/stool/holostool,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet13-5";
+ tag = "icon-carpet13-5 (EAST)"
+ },
+/area/holodeck/source_theatre)
+"qdC" = (
+/obj/structure/table/wood,
+/obj/item/paper/hydroponics,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"qdY" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/wall{
+ icon_state = "iron12";
+ tag = "icon-iron12"
+ },
+/area/space)
+"qeA" = (
+/obj/structure/table/wood,
+/obj/item/pen/fancy,
+/obj/item/folder/white,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"qeJ" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/chair/sofa/right{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"qeT" = (
+/turf/simulated/floor/holofloor{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/holodeck/source_basketball)
+"qfe" = (
+/obj/structure/table/reinforced/brass,
+/obj/item/clothing/under/vox/vox_robes,
+/obj/item/clothing/under/vox/vox_robes,
+/obj/item/clothing/under/vox/vox_robes,
+/obj/item/clothing/under/vox/vox_robes,
+/obj/item/clothing/under/vox/vox_robes,
+/obj/item/clothing/under/vox/vox_robes,
+/obj/item/clothing/under/vox/vox_robes,
+/obj/item/clothing/under/vox/vox_robes,
+/obj/item/clothing/under/vox/vox_robes,
+/obj/item/clothing/under/vox/vox_robes,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"qfy" = (
+/obj/machinery/status_display{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"qfK" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = -5
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"qfU" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove{
+ icon_state = "boxinggreen";
+ item_state = "boxinggreen"
+ },
+/turf/simulated/floor/holofloor{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/holodeck/source_boxingcourt)
+"qgT" = (
+/obj/machinery/abductor/pad{
+ team = 4
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"qgY" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/wood,
+/obj/item/reagent_containers/glass/beaker/waterbottle,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = -5
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"qgZ" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"qhj" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"qhl" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"qiF" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/teargas{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/teargas{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/storage/box/teargas{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/teargas{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/teargas{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/storage/box/teargas{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 33;
+ pixel_y = -7
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/specops)
+"qjz" = (
+/obj/item/stock_parts/cell/infinite{
+ desc = "Интересная батарейка золотого цвета, главный вопрос который вас терзает - а что она делает в космосе? \n Жаль что контакты окислились.";
+ name = "Батарейка в космосе?"
+ },
+/turf/space,
+/area/space)
+"qjR" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 9;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom)
+"qka" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/security_space_law/black{
+ pixel_x = -4
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"qkb" = (
+/obj/docking_port/stationary{
+ area_type = /area/syndicate_mothership;
+ dwidth = 11;
+ height = 18;
+ id = "emergency_syndicate";
+ name = "404 Not Found";
+ turf_type = /turf/unsimulated/floor/snow;
+ width = 29
+ },
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"qkt" = (
+/obj/structure/table,
+/obj/item/rcd,
+/obj/item/rcd_ammo,
+/obj/item/rcd_ammo,
+/obj/item/storage/pill_bottle/random_drug_bottle,
+/turf/unsimulated/floor{
+ icon_state = "dark";
+ tag = "icon-dark"
+ },
+/area/admin)
+"qkE" = (
+/obj/machinery/computer/shuttle/syndicate/drop_pod,
+/turf/simulated/shuttle/wall{
+ icon_state = "wall3"
+ },
+/area/shuttle/assault_pod)
+"qlj" = (
+/obj/structure/table/wood/poker,
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"qlG" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"qlU" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom,
+/obj/item/megaphone,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"qme" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 10
+ },
+/area/centcom)
+"qmQ" = (
+/obj/mecha/combat/durand/old{
+ color = "#77895C";
+ desc = "Improved Armored Heavy Mech with USSP Symbol";
+ name = "TU-802"
+ },
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 4;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/ussp_ship)
+"qny" = (
+/turf/simulated/floor/bluegrid,
+/area/tdome/arena)
+"qow" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Ferry Dock";
+ dir = 4;
+ network = list("CentComm")
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/ferry)
+"qoQ" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/soda/upgraded,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/zone3)
+"qpw" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"qpz" = (
+/obj/machinery/bodyscanner,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"qpR" = (
+/obj/machinery/vending/dinnerware,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/zone3)
+"qpS" = (
+/obj/machinery/computer/camera_advanced,
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"qpU" = (
+/obj/structure/dresser,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"qqp" = (
+/obj/structure/table/wood,
+/obj/item/kitchen/knife,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/zone3)
+"qqq" = (
+/obj/structure/table/wood,
+/obj/machinery/kitchen_machine/microwave/upgraded{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/zone3)
+"qqs" = (
+/obj/machinery/computer/shuttle/syndicate{
+ name = "Nuclear Operatives Shuttle Console"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"qqR" = (
+/obj/structure/table/wood,
+/obj/item/kitchen/utensil/fork,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"qqU" = (
+/obj/structure/closet/crate/can,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"qqY" = (
+/obj/item/flag/species/human,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/srtops)
+"qrd" = (
+/obj/machinery/light{
+ dir = 8;
+ switchcount = 50
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/evac)
+"qrr" = (
+/obj/structure/chair/sofa,
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 1;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"qrv" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"qsJ" = (
+/obj/item/radio/intercom/specops{
+ pixel_y = 25
+ },
+/obj/structure/filingcabinet/security,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/bridge)
+"qtF" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/centcom/evac)
+"qtI" = (
+/obj/structure/filingcabinet/security,
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 2 Office 4";
+ dir = 4;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"qua" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Раздевалка"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"quo" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide{
+ maximum_pressure = 50000
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"quB" = (
+/obj/structure/chair/comfy/brown{
+ color = "#FF3300"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/court)
+"quI" = (
+/obj/machinery/door_control{
+ id = "CC_space_jail_cell";
+ name = "Central Command Jail Cell's";
+ pixel_y = -30;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"qvz" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/trader_station/sol)
+"qvI" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom,
+/obj/item/reagent_containers/glass/beaker/waterbottle,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = -5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/court)
+"qwb" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/drinkingglasses,
+/obj/item/reagent_containers/food/drinks/bottle/rum,
+/obj/item/reagent_containers/food/drinks/bottle/vodka{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"qwe" = (
+/turf/unsimulated/floor{
+ icon_state = "stage_stairs"
+ },
+/area/centcom/court)
+"qwM" = (
+/obj/structure/chair/stool/holostool,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet5-0";
+ tag = "icon-carpet5-0 (EAST)"
+ },
+/area/holodeck/source_meetinghall)
+"qwX" = (
+/obj/vehicle/snowmobile/key,
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"qxr" = (
+/obj/structure/sign/poster/official/enlist{
+ pixel_y = 32
+ },
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 95, "bullet" = 95, "laser" = 95, "energy" = 95, "bomb" = 95, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 80);
+ density = 0;
+ icon_state = "open";
+ id_tag = "ERT_turret_shutters";
+ locked = 1;
+ name = "ERT Lockdown";
+ opacity = 0
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"qxD" = (
+/obj/item/gun/energy/spikethrower,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"qxF" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"qxV" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/item/stamp/magistrate{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/stamp/centcom{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/folder/yellow{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/folder/red{
+ pixel_x = 7
+ },
+/obj/item/folder/blue{
+ pixel_x = 7;
+ pixel_y = -7
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"qyL" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/pulse/pistol,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"qyT" = (
+/obj/structure/table/holotable/wood,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/holofloor{
+ icon_state = "asteroid";
+ tag = "icon-asteroid"
+ },
+/area/holodeck/source_picnicarea)
+"qyV" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/item/paper_bin/nanotrasen,
+/obj/item/taperecorder,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"qzb" = (
+/obj/structure/bookcase/manuals,
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"qzK" = (
+/obj/structure/table/wood,
+/obj/item/clothing/suit/wizrobe/magusblue,
+/obj/item/clothing/head/wizard/magus,
+/obj/item/twohanded/staff,
+/obj/item/clothing/suit/wizrobe/magusred,
+/obj/item/clothing/head/wizard/magus,
+/obj/item/twohanded/staff,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet06"
+ },
+/area/wizard_station)
+"qzP" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"qzS" = (
+/obj/structure/chair/comfy/brown{
+ color = "#3300FF"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/court)
+"qAW" = (
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"qBc" = (
+/obj/structure/table,
+/obj/item/storage/box/syringes,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/grenade/chem_grenade/large,
+/obj/item/grenade/chem_grenade/large,
+/obj/item/grenade/chem_grenade/large,
+/obj/item/grenade/chem_grenade/large,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"qBg" = (
+/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated,
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/specops)
+"qBu" = (
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave/upgraded,
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja/holding)
+"qCD" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/ferry)
+"qDg" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"qDm" = (
+/turf/unsimulated/floor{
+ icon_state = "darkbrowncorners"
+ },
+/area/centcom/ferry)
+"qDz" = (
+/obj/structure/chair/stool/holostool,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet14-0";
+ tag = "icon-carpet14-0 (EAST)"
+ },
+/area/holodeck/source_meetinghall)
+"qDR" = (
+/obj/structure/bookcase/manuals,
+/obj/item/book/manual/engineering_construction,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"qDX" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreynavybluecorner"
+ },
+/area/centcom/specops)
+"qEU" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/snacks/lasagna = 10, /obj/item/reagent_containers/food/snacks/sliceable/pizza/hawaiianpizza = 10, /obj/item/reagent_containers/food/snacks/sushi_TobikoEgg = 10, /obj/item/reagent_containers/food/snacks/bigbiteburger = 10, /obj/item/reagent_containers/food/snacks/sushi_SmokedSalmon = 10, "" = 70);
+ lootcount = 20;
+ name = "Food CC Spawner #2"
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"qFt" = (
+/turf/space/transit/horizontal{
+ dir = 4
+ },
+/area/space)
+"qFH" = (
+/obj/item/flag/syndi,
+/obj/structure/sign/poster/contraband/syndicate_recruitment{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"qGK" = (
+/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/specops)
+"qGO" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/security_space_law,
+/obj/item/paper_bin/nanotrasen,
+/obj/item/pen,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/court)
+"qHw" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "sst_away";
+ req_access_txt = "150"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"qHX" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/vodka,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"qIa" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/tdome)
+"qIt" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/closet/crate/freezer{
+ desc = "A crate.";
+ name = "Medical crate"
+ },
+/obj/item/reagent_containers/iv_bag/blood/AMinus,
+/obj/item/reagent_containers/iv_bag/blood/APlus,
+/obj/item/reagent_containers/iv_bag/blood/BMinus,
+/obj/item/reagent_containers/iv_bag/blood/BPlus,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/blood/OPlus,
+/obj/item/reagent_containers/iv_bag/salglu,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"qJw" = (
+/obj/machinery/vending/sovietsoda,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"qJE" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "ferry_away";
+ name = "Ferry Airlock";
+ req_access_txt = "106"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/ferry)
+"qJM" = (
+/obj/structure/table/wood,
+/obj/item/toy/nuke,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"qJV" = (
+/obj/machinery/flasher{
+ id = "flash";
+ name = "Thunderdome Flash"
+ },
+/turf/simulated/floor/bluegrid,
+/area/tdome/arena)
+"qKs" = (
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 2;
+ height = 12;
+ id = "ferry_away";
+ name = "centcom bay 2";
+ width = 5
+ },
+/turf/space,
+/area/space)
+"qKG" = (
+/obj/structure/table/holotable,
+/obj/machinery/readybutton,
+/turf/simulated/floor/holofloor{
+ dir = 6;
+ icon_state = "blue"
+ },
+/area/holodeck/source_knightarena)
+"qKJ" = (
+/turf/unsimulated/wall{
+ dir = 4;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "window5_end";
+ tag = "icon-wall3 (NORTH)"
+ },
+/area/space)
+"qKY" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"qLy" = (
+/obj/structure/chair/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/zone3)
+"qLD" = (
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/zone3)
+"qLM" = (
+/obj/item/radio/intercom/syndicate{
+ pixel_y = -28
+ },
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"qMW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"qNb" = (
+/obj/structure/chair/sofa{
+ dir = 5
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 8;
+ layer = 5
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"qOI" = (
+/obj/structure/closet/syndicate/sst,
+/obj/item/ammo_box/magazine/mm556x45/bleeding,
+/obj/item/ammo_box/magazine/mm556x45,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/syndicate_mothership)
+"qOL" = (
+/obj/structure/table/wood,
+/obj/item/grenade/clusterbuster/syndieminibomb,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"qPc" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "green"
+ },
+/area/holodeck/source_emptycourt)
+"qPd" = (
+/obj/item/radio/intercom/syndicate{
+ pixel_x = -32
+ },
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (EAST)"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"qPX" = (
+/obj/machinery/computer/mecha,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"qQU" = (
+/obj/structure/bookcase/manuals,
+/obj/item/book/manual/engineering_construction,
+/obj/item/book/manual/engineering_construction,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"qRD" = (
+/obj/machinery/camera{
+ c_tag = "Thunderdome Green Team";
+ network = list("Thunderdome");
+ pixel_x = 12;
+ pixel_y = -10
+ },
+/obj/effect/landmark{
+ name = "tdome1"
+ },
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/tdome/tdome1)
+"qRG" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/court)
+"qSe" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"qSN" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 33;
+ pixel_y = -7
+ },
+/obj/item/gun/energy/gun/blueshield/pdw9{
+ pixel_x = 4;
+ pixel_y = 8
+ },
+/obj/item/gun/energy/gun/blueshield/pdw9,
+/obj/item/gun/energy/gun/blueshield/pdw9{
+ pixel_x = 4;
+ pixel_y = 8
+ },
+/obj/item/gun/energy/gun/blueshield/pdw9{
+ pixel_x = 4;
+ pixel_y = 8
+ },
+/obj/item/gun/energy/gun/blueshield/pdw9,
+/obj/item/gun/energy/gun/blueshield/pdw9,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/specops)
+"qTB" = (
+/obj/machinery/light{
+ layer = 10
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/trader_station/sol)
+"qTE" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/syndicate{
+ pixel_x = 5
+ },
+/obj/item/multitool{
+ pixel_x = -7;
+ pixel_y = -1
+ },
+/obj/item/multitool,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"qUd" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/specops)
+"qUk" = (
+/turf/unsimulated/beach/water/deep/dense,
+/area/centcom/zone1)
+"qUv" = (
+/obj/machinery/light/small{
+ dir = 4;
+ tag = "icon-bulb1 (EAST)"
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"qUw" = (
+/obj/structure/chair/comfy/beige{
+ dir = 4;
+ layer = 5;
+ pixel_y = -2
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/event_zone)
+"qUE" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/glass/beaker/waterbottle,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = -5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/court)
+"qVw" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 1;
+ id_tag = "ERT_armory_lvl1";
+ layer = 5;
+ locked = 1;
+ name = "Armory level 1";
+ opacity = 0
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkgreen"
+ },
+/area/centcom/specops)
+"qVA" = (
+/turf/unsimulated/floor{
+ dir = 9;
+ icon_state = "darkbrown"
+ },
+/area/centcom/ferry)
+"qWt" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Rest Room";
+ dir = 4;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"qWZ" = (
+/obj/structure/chair/sofa/left{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/zone3)
+"qXw" = (
+/obj/machinery/abductor/pad{
+ team = 2
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"qXN" = (
+/obj/structure/chair/sofa/right{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/zone3)
+"qXR" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/snacks/baguette = 10, /obj/item/reagent_containers/food/snacks/applepie = 10, /obj/item/reagent_containers/food/snacks/applepie = 10, /obj/item/reagent_containers/food/snacks/soup/bloodsoup = 10, /obj/item/reagent_containers/food/snacks/boiledrice = 10, /obj/item/reagent_containers/food/snacks/carrotfries = 10, /obj/item/reagent_containers/food/drinks/cans/cola = 10, "" = 70);
+ name = "Food CC Spawner #1"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone3)
+"qYi" = (
+/obj/machinery/cryopod/right,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"qYN" = (
+/obj/item/target,
+/obj/machinery/light/small{
+ brightness_range = 6;
+ dir = 8;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood-broken7"
+ },
+/area/wizard_station)
+"qYU" = (
+/obj/structure/chair/stool,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"qYY" = (
+/obj/structure/closet/secure_closet/syndicate_officer,
+/obj/machinery/light/small{
+ dir = 8;
+ tag = "icon-bulb1 (WEST)"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"qZe" = (
+/obj/structure/table,
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja/holding)
+"qZw" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"qZF" = (
+/obj/machinery/vending/cigarette,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom/zone1)
+"qZM" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/court)
+"qZR" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/mini_uzi,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"raL" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ req_access_txt = "106"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/court)
+"raO" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"raW" = (
+/obj/item/radio/intercom/specops{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"rbx" = (
+/turf/unsimulated/wall/fakeglass,
+/area/centcom)
+"rbO" = (
+/obj/machinery/prize_counter,
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"rbV" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/court)
+"rcb" = (
+/obj/machinery/vending/medical{
+ req_access_txt = "0"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"rcx" = (
+/obj/item/clothing/under/rainbow,
+/obj/item/clothing/glasses/sunglasses,
+/turf/simulated/floor/beach/sand,
+/area/holodeck/source_beach)
+"rcC" = (
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/zone3)
+"rcT" = (
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"rcV" = (
+/turf/unsimulated/floor{
+ icon_state = "darkbluecorners"
+ },
+/area/centcom/zone2)
+"rdj" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 32
+ },
+/obj/structure/chair/sofa{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"rew" = (
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/evac)
+"reB" = (
+/obj/structure/chair/sofa/right{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/zone3)
+"rfc" = (
+/obj/structure/table/wood/fancy/black,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Central Command"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"rfl" = (
+/obj/structure/table/wood,
+/obj/machinery/syndicatebomb,
+/obj/machinery/syndicatebomb/training,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"rfP" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"rgo" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "siding1";
+ tag = "icon-siding1"
+ },
+/area/holodeck/source_theatre)
+"rgw" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 1;
+ icon_state = "open";
+ id_tag = "CC_space_jail_sec";
+ layer = 50;
+ level = 3;
+ locked = 1;
+ name = "Central Command Jail";
+ opacity = 0
+ },
+/obj/structure/window/full/reinforced{
+ layer = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"rgL" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"rhd" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "rampbottom"
+ },
+/area/ussp_ship)
+"rhk" = (
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"rht" = (
+/obj/mecha/combat/marauder/mauler/loaded,
+/obj/effect/decal/warning_stripes/red/hollow,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"rhz" = (
+/obj/structure/table/reinforced,
+/obj/item/twohanded/required/kirbyplants{
+ pixel_y = 7
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "stage_bleft"
+ },
+/area/syndicate_mothership)
+"riL" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ icon_state = "fakewindows3";
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/syndicate_mothership)
+"riT" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 6;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom)
+"rje" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkbluecorners"
+ },
+/area/centcom/zone2)
+"rjm" = (
+/obj/structure/chair/sofa/left{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/zone3)
+"rjK" = (
+/obj/item/flag/nt,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"rjS" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/mecha/combat/gygax/ert{
+ color = "#66ff99";
+ name = "Assault Jaeger"
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbrownfull"
+ },
+/area/centcom/specops)
+"rkr" = (
+/turf/unsimulated/wall{
+ icon_state = "iron12";
+ layer = 10
+ },
+/area/syndicate_mothership)
+"rlj" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"rlI" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/robotics_cyborgs,
+/obj/item/radio/intercom/specops,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"rmc" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 5
+ },
+/area/centcom)
+"rms" = (
+/obj/structure/closet/cabinet{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100)
+ },
+/obj/item/storage/box/centcomofficer,
+/obj/item/radio/headset/centcom{
+ desc = null;
+ name = "Supreme commander bowman headset"
+ },
+/obj/item/card/id{
+ access = list(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,69,70,71,73,74,75,76,77,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114);
+ icon_state = "commander";
+ name = "Supreme Commander ID card";
+ rank = "Nanotrasen Navy Captain";
+ registered_name = null
+ },
+/obj/item/door_remote/centcomm,
+/obj/item/clothing/accessory/medal/gold{
+ desc = null;
+ name = "Supreme commander's gold medal"
+ },
+/obj/item/gun/projectile/revolver/mateba,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/clothing/under/color/black{
+ icon_state = "hosdnavyclothes";
+ name = "jumpsuit"
+ },
+/obj/item/clothing/glasses/hud/security/sunglasses/aviators,
+/obj/item/clothing/head/beret/fluff/sigholt{
+ icon_state = "officerberet";
+ name = "beret"
+ },
+/obj/item/storage/backpack/satchel,
+/obj/item/clothing/gloves/color/white{
+ desc = null;
+ name = "Supreme judge gloves"
+ },
+/obj/item/clothing/shoes/cowboy/white{
+ name = "white boots"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"rmG" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/item/radio/intercom/specops{
+ pixel_x = -25
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"rnO" = (
+/obj/structure/table/abductor,
+/obj/item/bonegel/alien,
+/obj/item/bonesetter/alien,
+/obj/item/FixOVein/alien,
+/obj/item/surgicaldrill/alien,
+/obj/item/circular_saw/alien,
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"rnU" = (
+/obj/structure/table/wood,
+/obj/item/pen/fancy,
+/obj/item/folder/blue,
+/obj/item/paper/photograph,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"rod" = (
+/obj/machinery/vending/coffee,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"roP" = (
+/obj/machinery/camera{
+ c_tag = "CentComm SOF Hallway 2";
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"rpb" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/fernybush,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"rpv" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"rpC" = (
+/obj/item/radio/intercom/specops{
+ pixel_x = 30
+ },
+/obj/structure/closet/secure_closet/reagents,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"rqj" = (
+/obj/structure/closet{
+ icon_closed = "syndicate1";
+ icon_opened = "syndicate1open";
+ icon_state = "syndicate1"
+ },
+/obj/item/suppressor,
+/obj/item/gun/projectile/automatic/proto{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/ammo_box/magazine/smgm9mm,
+/obj/item/ammo_box/magazine/smgm9mm,
+/obj/item/ammo_box/magazine/smgm9mm,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/restraints/handcuffs,
+/obj/item/restraints/handcuffs,
+/obj/item/flashlight/seclite,
+/obj/item/grenade/flashbang,
+/obj/item/gun/projectile/automatic/pistol/enforcer/lethal,
+/obj/item/kitchen/knife/combat,
+/obj/item/reagent_containers/food/snacks/candy/donor{
+ apply_type = 3;
+ list_reagents = list("nutriment" = 30, "sugar" = 3);
+ name = "MRE"
+ },
+/obj/item/reagent_containers/hypospray/autoinjector/survival,
+/obj/item/storage/belt/security/webbing{
+ name = "SRT webbing"
+ },
+/obj/item/clothing/head/HoS/beret{
+ desc = null;
+ name = "SRT beret"
+ },
+/obj/item/storage/backpack/ert{
+ desc = null;
+ name = "SRT backpack"
+ },
+/obj/item/radio/headset/ert{
+ desc = null;
+ name = "SRT headset"
+ },
+/obj/item/clothing/shoes/combat/swat{
+ name = "SRT special shoes"
+ },
+/obj/item/clothing/gloves/combat{
+ name = "Combat gloves"
+ },
+/obj/item/clothing/suit/armor/bulletproof{
+ name = "SRT bulletproof vest"
+ },
+/obj/item/clothing/accessory/holster,
+/obj/item/implanter/mindshield,
+/obj/item/card/id{
+ access = list(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,69,70,71,73,74,75,76,77,99,101,102,103,104,105,106);
+ icon_state = "nanotrasen";
+ name = "Special Reaction Team Member ID card";
+ rank = "Blueshield";
+ registered_name = null
+ },
+/obj/item/clothing/under/fluff/jay_turtleneck{
+ name = "SRT uniform"
+ },
+/obj/item/CQC_manual,
+/obj/item/clothing/glasses/hud/security/sunglasses/aviators,
+/obj/item/shield/riot/tele{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "vault"
+ },
+/area/centcom/srtops)
+"rrf" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "syndicate_away";
+ req_access_txt = "150"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"rrm" = (
+/obj/docking_port/stationary{
+ dwidth = 9;
+ height = 18;
+ id = "admin_away";
+ name = "centcom bay 1";
+ timid = 1;
+ width = 19
+ },
+/turf/space,
+/area/space)
+"rrE" = (
+/obj/structure/closet{
+ icon_closed = "cabinet_closed";
+ icon_opened = "cabinet_open";
+ icon_state = "cabinet_closed"
+ },
+/obj/item/clothing/under/color/lightpurple,
+/obj/item/clothing/under/color/purple,
+/obj/item/storage/backpack/satchel,
+/obj/item/storage/backpack/satchel,
+/obj/item/clothing/head/wizard/red,
+/obj/item/clothing/suit/wizrobe/red,
+/obj/item/clothing/head/wizard,
+/obj/item/clothing/suit/wizrobe,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/shoes/sandal,
+/obj/machinery/light/small{
+ brightness_range = 6;
+ dir = 1;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet01"
+ },
+/area/wizard_station)
+"rrK" = (
+/obj/machinery/door/window{
+ dir = 1;
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"rsf" = (
+/turf/unsimulated/floor{
+ icon_state = "rampbottom"
+ },
+/area/centcom/zone1)
+"rst" = (
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"rsE" = (
+/obj/structure/bed,
+/obj/item/bedsheet,
+/mob/living/carbon/human{
+ hunger_drain = 0;
+ name = "Николай Степанченко"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"rsL" = (
+/obj/structure/bookcase/manuals,
+/obj/item/book/manual/engineering_construction,
+/obj/item/book/manual/engineering_construction,
+/obj/item/book/manual/engineering_construction,
+/obj/item/book/manual/engineering_construction,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"rsX" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Supreme Court";
+ opacity = 1;
+ req_access_txt = "106,109,110"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/court)
+"rtj" = (
+/obj/machinery/computer/shuttle/ert{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ req_access = list(109)
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"rtp" = (
+/obj/item/gun/rocketlauncher,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"rtB" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/event_zone)
+"ruq" = (
+/obj/structure/chair/comfy/brown,
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 4;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"ruG" = (
+/obj/structure/toilet{
+ dir = 4;
+ pixel_y = 8
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"ruT" = (
+/obj/machinery/vending/cigarette,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone3)
+"rva" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/flora/rock,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"rvl" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/reagent_containers/food/drinks/trophy/gold_cup,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"rvG" = (
+/obj/machinery/vending/coffee,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone3)
+"rwu" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"rwE" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/space,
+/area/ussp_ship)
+"rwK" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"rwX" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Jail 6";
+ dir = 5;
+ network = list("CentComm")
+ },
+/obj/structure/chair/comfy/red{
+ color = "#FFFFFF"
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/jail)
+"rxp" = (
+/obj/structure/bookcase/manuals,
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"rxw" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/shotgun/automatic/dual_tube,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"rxT" = (
+/obj/structure/bed,
+/obj/item/bedsheet/hos{
+ name = "bedsheet"
+ },
+/obj/machinery/light/small{
+ light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"rxX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ussp_ship)
+"ryi" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"rym" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/holofloor{
+ icon_state = "wood_siding10";
+ tag = "icon-wood_siding10"
+ },
+/area/holodeck/source_picnicarea)
+"ryo" = (
+/turf/simulated/floor/holofloor{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/holodeck/source_knightarena)
+"ryw" = (
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone3)
+"ryN" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"ryQ" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Medical and Rest room";
+ opacity = 1;
+ req_access_txt = "109"
+ },
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 95, "bullet" = 95, "laser" = 95, "energy" = 95, "bomb" = 95, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 80);
+ density = 0;
+ dir = 1;
+ icon_state = "open";
+ id_tag = "ERT_turret_shutters";
+ locked = 1;
+ name = "ERT Lockdown";
+ opacity = 0
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"rzf" = (
+/obj/machinery/vending/cigarette,
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"rzl" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/drinkingglass/devilskiss{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/item/syndicatedetonator{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/obj/item/reagent_containers/food/drinks/bottle/rum{
+ pixel_x = 6;
+ pixel_y = 2
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"rAe" = (
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja/holding)
+"rAz" = (
+/obj/effect/decal/cleanable/blood/gibs,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"rBi" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 9;
+ tag = "icon-fakewindows (NORTHEAST)"
+ },
+/area/centcom)
+"rBz" = (
+/obj/structure/dresser,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"rBD" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/shotgun/boltaction,
+/obj/item/gun/projectile/shotgun/boltaction/enchanted,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"rBR" = (
+/obj/machinery/computer/camera_advanced/abductor{
+ team = 1
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"rCL" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet10-8";
+ tag = "icon-carpet10-8 (EAST)"
+ },
+/area/holodeck/source_theatre)
+"rCQ" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/revolver,
+/obj/item/gun/projectile/revolver/capgun,
+/obj/item/gun/projectile/revolver/golden,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"rDo" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/space,
+/area/ussp_ship)
+"rDB" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"rEo" = (
+/obj/effect/decal/warning_stripes/east{
+ layer = 50
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/centcom/zone2)
+"rEy" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"rEX" = (
+/turf/unsimulated/wall{
+ dir = 4;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "diagonalWall3"
+ },
+/area/space)
+"rFc" = (
+/obj/structure/holowindow{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/holodeck/source_thunderdomecourt)
+"rFn" = (
+/obj/effect/decal/warning_stripes/west{
+ layer = 50
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone3)
+"rFQ" = (
+/obj/effect/decal/warning_stripes/east{
+ layer = 50;
+ level = 5
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"rFZ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/space,
+/area/ussp_ship)
+"rHv" = (
+/obj/docking_port/stationary{
+ dwidth = 1;
+ height = 4;
+ id = "pod1_away";
+ name = "recovery ship bay 1";
+ width = 3
+ },
+/turf/space,
+/area/space)
+"rIn" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/applecakeslice,
+/obj/machinery/light{
+ dir = 1;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"rIA" = (
+/obj/structure/sign/goldenplaque{
+ desc = "Лучший сотрудник века";
+ name = "Это Толя Раммфан";
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/evac)
+"rIH" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/table/wood,
+/obj/item/melee/classic_baton/telescopic,
+/obj/item/melee/classic_baton/telescopic,
+/obj/item/melee/classic_baton/telescopic,
+/obj/item/melee/classic_baton/telescopic,
+/obj/item/melee/classic_baton/telescopic,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"rIO" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "engine";
+ name = "Burn-Mix Floor";
+ nitrogen = 0;
+ oxygen = 2500;
+ temperature = 370;
+ toxins = 5000
+ },
+/area/holodeck/source_burntest)
+"rJn" = (
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"rJJ" = (
+/obj/machinery/door/poddoor{
+ id_tag = "CC_zone3_blastdoor";
+ name = "Zone 3 Blastboor"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone3)
+"rKb" = (
+/obj/item/target,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood-broken7"
+ },
+/area/wizard_station)
+"rKI" = (
+/obj/effect/decal/warning_stripes/west{
+ layer = 50
+ },
+/turf/unsimulated/floor{
+ dir = 10;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone3)
+"rKK" = (
+/obj/structure/table/reinforced,
+/obj/item/kitchen/utensil/pspork,
+/obj/item/trash/plate,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"rKW" = (
+/obj/machinery/light/small{
+ brightness_range = 6;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet9-4"
+ },
+/area/wizard_station)
+"rLk" = (
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"rLL" = (
+/obj/docking_port/stationary/transit{
+ dir = 8;
+ dwidth = 2;
+ height = 12;
+ id = "ferry_transit";
+ name = "ferry in transit";
+ turf_type = /turf/space/transit/horizontal;
+ width = 5
+ },
+/turf/space/transit/horizontal,
+/area/space)
+"rMq" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/flask/detflask{
+ pixel_x = -7;
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"rMD" = (
+/turf/unsimulated/floor{
+ dir = 6;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"rMK" = (
+/obj/mecha/combat/gygax/ert,
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 1;
+ icon_state = "rightsecure";
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/specops)
+"rNj" = (
+/obj/structure/table/wood,
+/obj/item/clothing/under/plasmaman/wizard,
+/obj/item/clothing/head/helmet/space/plasmaman/wizard,
+/obj/item/clothing/mask/breath,
+/obj/item/tank/plasma/plasmaman/belt/full,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet06"
+ },
+/area/wizard_station)
+"rNq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/mecha/combat/durand/old{
+ color = "#77895C";
+ desc = "Improved Armored Heavy Mech with USSP Symbol";
+ name = "TU-802"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/ussp_ship)
+"rNH" = (
+/obj/machinery/computer/security{
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"rOi" = (
+/turf/unsimulated/floor{
+ dir = 10;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"rOy" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"rOQ" = (
+/obj/machinery/sleeper/upgraded,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"rPa" = (
+/obj/item/beach_ball,
+/turf/simulated/floor/beach/sand,
+/area/holodeck/source_beach)
+"rPz" = (
+/obj/item/flag/species/human,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"rPX" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ dir = 10;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"rQj" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"rQA" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Weapons";
+ req_access = null
+ },
+/obj/item/gun/projectile/revolver/doublebarrel,
+/obj/item/gun/projectile/revolver/doublebarrel,
+/obj/item/gun/projectile/revolver/doublebarrel,
+/obj/item/gun/projectile/revolver/doublebarrel,
+/obj/item/gun/projectile/revolver/doublebarrel,
+/obj/item/gun/projectile/revolver/doublebarrel,
+/obj/item/ammo_box/magazine/m12g/buckshot,
+/obj/item/ammo_box/magazine/m12g/buckshot,
+/obj/item/ammo_box/magazine/m12g/buckshot,
+/obj/item/ammo_box/magazine/m12g/buckshot,
+/obj/item/ammo_box/magazine/m12g/buckshot,
+/obj/item/ammo_box/magazine/m12g/buckshot,
+/obj/item/ammo_box/magazine/m12g/buckshot,
+/obj/item/ammo_box/magazine/m12g/buckshot,
+/obj/item/ammo_box/magazine/m12g/buckshot,
+/obj/item/ammo_box/magazine/m12g/buckshot,
+/obj/item/ammo_box/magazine/m12g/buckshot,
+/obj/item/ammo_box/magazine/m12g/buckshot,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/ussp_ship)
+"rQK" = (
+/turf/unsimulated/floor{
+ icon_state = "darkredcorners"
+ },
+/area/centcom/zone3)
+"rRb" = (
+/obj/machinery/door_control{
+ id = "CC_special_operations_force_room";
+ name = "Central Command Special Operations Forces";
+ pixel_y = -25;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"rRt" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 33;
+ pixel_y = -7
+ },
+/obj/item/gun/energy/lasercannon{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/gun/energy/lasercannon{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/item/gun/energy/lasercannon{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/item/gun/energy/lasercannon{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/item/gun/energy/lasercannon{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/gun/energy/lasercannon{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkredfull"
+ },
+/area/centcom/specops)
+"rRv" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "admin_away";
+ name = "Administration Shuttle";
+ opacity = 0;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"rRT" = (
+/obj/structure/closet,
+/obj/item/clothing/under/soldieruniform{
+ name = "Soldier's Uniform"
+ },
+/obj/item/clothing/under/soldieruniform{
+ name = "Soldier's Uniform"
+ },
+/obj/item/clothing/under/soldieruniform{
+ name = "Soldier's Uniform"
+ },
+/obj/item/clothing/under/soldieruniform{
+ name = "Soldier's Uniform"
+ },
+/obj/item/clothing/under/soldieruniform{
+ name = "Soldier's Uniform"
+ },
+/obj/item/clothing/under/soldieruniform{
+ name = "Soldier's Uniform"
+ },
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/shoes/combat,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"rSj" = (
+/turf/space,
+/turf/unsimulated/wall,
+/area/centcom/evac)
+"rSv" = (
+/obj/machinery/door/airlock/centcom{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ name = "Supreme Commander";
+ opacity = 1;
+ req_access_txt = "113"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"rSR" = (
+/obj/structure/rack,
+/obj/item/ammo_box/magazine/smgm45,
+/obj/item/ammo_box/magazine/smgm45,
+/obj/item/ammo_box/magazine/smgm45,
+/obj/item/ammo_box/magazine/smgm45,
+/obj/item/ammo_box/magazine/smgm45,
+/obj/item/ammo_box/magazine/smgm45,
+/obj/item/ammo_box/magazine/smgm45,
+/obj/item/ammo_box/magazine/smgm45,
+/obj/item/gun/projectile/automatic/c20r,
+/obj/item/gun/projectile/automatic/c20r,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"rST" = (
+/obj/structure/chair/comfy/red{
+ color = "#FFFFFF";
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "aroomwarp";
+ tag = ""
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"rTc" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"rUg" = (
+/obj/machinery/vending/coffee/free,
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"rUh" = (
+/obj/structure/table/wood,
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 2 Office 3";
+ dir = 1;
+ network = list("CentComm")
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"rUx" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/laser/captain/scattershot,
+/obj/item/gun/energy/lasercannon,
+/obj/item/gun/energy/lasercannon/cyborg,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"rUZ" = (
+/obj/structure/table/holotable/wood,
+/turf/simulated/floor/holofloor{
+ icon_state = "grimy";
+ tag = "icon-grimy"
+ },
+/area/holodeck/source_meetinghall)
+"rVZ" = (
+/obj/structure/table,
+/obj/random/technology_scanner,
+/obj/random/tech_supply,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/admin)
+"rWg" = (
+/obj/structure/table/wood,
+/obj/item/paper/terrorspiders8,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"rWk" = (
+/turf/unsimulated/wall{
+ icon_state = "sandstone2"
+ },
+/area/wizard_station)
+"rWO" = (
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ id_tag = "ERT_director_office_shutters";
+ layer = 5;
+ locked = 1;
+ name = "ERT Director office"
+ },
+/turf/unsimulated/wall/fakeglass{
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/centcom)
+"rXa" = (
+/obj/structure/statue/silver/sec{
+ desc = "Похоже, вы ловите нотку ностальгии и тонну страха смотря на него";
+ icon_state = "hooker";
+ name = "Eh?"
+ },
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"rXg" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"rXl" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"rXt" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkbrown"
+ },
+/area/centcom/ferry)
+"rZf" = (
+/obj/structure/flora/tree/palm,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"rZp" = (
+/obj/effect/spawner/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/centcom)
+"rZx" = (
+/obj/machinery/computer/communications,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"sao" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space,
+/obj/item/clothing/suit/space,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space,
+/obj/item/clothing/head/helmet/space,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"saI" = (
+/obj/structure/table/wood,
+/obj/item/pen/fancy,
+/obj/item/folder/red{
+ pixel_x = 7
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"sbx" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkredcorners"
+ },
+/area/centcom/zone3)
+"sbD" = (
+/obj/structure/dresser,
+/obj/structure/mirror/magic{
+ desc = null;
+ name = "mirror";
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"sca" = (
+/obj/machinery/vending/medical{
+ req_access_txt = "0"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"scb" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Weapons";
+ req_access = null
+ },
+/obj/item/gun/projectile/automatic/m90,
+/obj/item/gun/projectile/automatic/m90,
+/obj/item/gun/projectile/automatic/m90,
+/obj/item/gun/projectile/automatic/m90,
+/obj/item/gun/projectile/automatic/m90,
+/obj/item/gun/projectile/automatic/m90,
+/obj/item/ammo_box/a40mm,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/a40mm,
+/obj/item/ammo_box/a40mm,
+/obj/item/ammo_box/a40mm,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/ussp_ship)
+"scl" = (
+/obj/structure/window/reinforced{
+ color = "red";
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/grille{
+ layer = 2.8
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id_tag = "commandcenter";
+ name = "Privacy Shutters"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"scs" = (
+/obj/effect/decal/warning_stripes/east{
+ layer = 50;
+ level = 1
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"sdu" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id_tag = "CC_special_operations_force_room";
+ layer = 5;
+ locked = 1;
+ name = "Central Command Special Operations Forces"
+ },
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"seh" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/vodka,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"seJ" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"sfp" = (
+/obj/machinery/camera{
+ c_tag = "CentComm SOF Artillery";
+ network = list("CentComm")
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"sfT" = (
+/obj/structure/bed,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"sgy" = (
+/obj/structure/table/wood,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Central Command"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"sgM" = (
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/tdome/tdome2)
+"sgZ" = (
+/obj/structure/window/full/reinforced{
+ layer = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"shN" = (
+/obj/structure/chair/comfy/beige{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/bridge)
+"shO" = (
+/turf/simulated/floor/holofloor{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/holodeck/source_emptycourt)
+"shT" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/flare{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/storage/box/bola{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/box/bodybags{
+ pixel_x = -2;
+ pixel_y = 3
+ },
+/obj/item/storage/box/bodybags{
+ pixel_x = -2;
+ pixel_y = 3
+ },
+/obj/item/storage/box/bodybags{
+ pixel_x = -2;
+ pixel_y = 3
+ },
+/obj/item/storage/box/flare{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/storage/box/flare{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/storage/box/bola{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/box/bola{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"six" = (
+/obj/structure/flora/grass/both,
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"siH" = (
+/obj/structure/table/abductor{
+ name = "table"
+ },
+/obj/item/clothing/head/helmet/space/chronos,
+/obj/item/clothing/head/helmet/space/chronos,
+/obj/item/clothing/head/helmet/space/chronos,
+/obj/item/clothing/head/helmet/space/chronos,
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/chrono_ship)
+"siK" = (
+/obj/machinery/computer/bsa_control/admin{
+ integrity_failure = 20;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"sjd" = (
+/obj/machinery/bsa/full/admin/east,
+/obj/effect/decal/warning_stripes/north,
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/centcom/specops)
+"sjC" = (
+/obj/machinery/door/window{
+ color = null;
+ dir = 2;
+ opacity = 1;
+ panel_open = 1
+ },
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"sjT" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ussp_ship)
+"skb" = (
+/obj/machinery/optable,
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"skq" = (
+/obj/effect/decal/warning_stripes/north,
+/turf/space,
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/centcom/specops)
+"slB" = (
+/obj/effect/decal/warning_stripes/northeast,
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/centcom/specops)
+"slF" = (
+/obj/structure/window/reinforced{
+ color = "red";
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/grille{
+ layer = 2.8
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "commandcenter";
+ name = "Privacy Shutters"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"slM" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/syndicate_mothership)
+"slZ" = (
+/obj/effect/spawner/window/reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"smG" = (
+/obj/machinery/vending/syndicigs,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"smH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ brightness_range = 10;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"smW" = (
+/turf/unsimulated/wall{
+ icon_state = "rrust10"
+ },
+/area/vox_station)
+"snW" = (
+/obj/machinery/computer/syndicate_depot/teleporter{
+ use_power = 0
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_depot/core)
+"sob" = (
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"sog" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/bow,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"soX" = (
+/obj/machinery/chem_heater,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"spt" = (
+/obj/structure/closet/secure_closet/personal/cabinet{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ req_access_txt = "114"
+ },
+/obj/item/storage/box/centcomofficer,
+/obj/item/radio/headset/centcom{
+ desc = null;
+ name = "Supreme commander bowman headset"
+ },
+/obj/item/card/id{
+ access = list(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,69,70,71,73,74,75,76,77,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114);
+ icon_state = "commander";
+ name = "Supreme Commander ID card";
+ rank = "Nanotrasen Navy Captain";
+ registered_name = null
+ },
+/obj/item/door_remote/centcomm,
+/obj/item/clothing/accessory/medal/gold{
+ desc = null;
+ name = "Supreme commander's gold medal"
+ },
+/obj/item/gun/projectile/revolver/mateba,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"spy" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/green,
+/obj/item/clothing/shoes/brown,
+/obj/item/grenade/smokebomb,
+/obj/item/restraints/legcuffs/beartrap,
+/obj/item/sleeping_carp_scroll,
+/obj/item/twohanded/bostaff,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome/arena)
+"spA" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Black Ops";
+ opacity = 1;
+ req_access_txt = "111"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "navyblue"
+ },
+/area/centcom/blops)
+"spW" = (
+/obj/machinery/door_control{
+ id = "CC_zone3_blastdoor";
+ name = "Zone 3 Blastdoor Control";
+ pixel_x = 25;
+ req_access_txt = "114"
+ },
+/obj/effect/decal/warning_stripes/east{
+ layer = 50
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/centcom/zone2)
+"sqc" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/stalkybush,
+/obj/structure/flora/ausbushes/leafybush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"sqk" = (
+/obj/structure/mirror{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"sso" = (
+/obj/machinery/door_control{
+ id = "CC_zone3_blastdoor";
+ name = "Zone 3 Blastdoor Control";
+ pixel_x = -25;
+ req_access_txt = "114"
+ },
+/obj/effect/decal/warning_stripes/west{
+ layer = 50
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone3)
+"sss" = (
+/turf/simulated/floor/holofloor{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/holodeck/source_emptycourt)
+"ssz" = (
+/turf/unsimulated/wall{
+ icon_state = "iron11";
+ tag = "icon-iron11"
+ },
+/area/space)
+"ssS" = (
+/obj/machinery/computer/shuttle/sit,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"std" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/shotgun/riot/short,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"stq" = (
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 95, "bullet" = 95, "laser" = 95, "energy" = 95, "bomb" = 95, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 80);
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "ERT_turret_shutters";
+ locked = 1;
+ name = "ERT Lockdown";
+ opacity = 0
+ },
+/obj/structure/sign/poster/official/help_others{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"stD" = (
+/obj/item/gun/syringe/rapidsyringe,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"stM" = (
+/obj/structure/toilet{
+ dir = 8;
+ pixel_y = 8
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"stT" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "rampbottom"
+ },
+/area/centcom/bridge)
+"sum" = (
+/turf/space,
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ icon_state = "fakewindows3";
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom)
+"svp" = (
+/obj/item/radio/intercom/syndicate{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"svW" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/syndicate,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"swv" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/gyropistol,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"swC" = (
+/obj/structure/table/abductor,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/drinks/flask/detflask = 10, /obj/item/reagent_containers/food/drinks/cans/tonic = 10, /obj/item/reagent_containers/food/drinks/cans/thirteenloko = 10, /obj/item/reagent_containers/food/drinks/cans/synthanol = 10, /obj/item/reagent_containers/food/drinks/cans/space_mountain_wind = 10, /obj/item/reagent_containers/food/drinks/cans/lemon_lime = 10, "" = 70);
+ name = "Food CC Spawner #3"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"swR" = (
+/obj/machinery/door_control{
+ id = "CC_zone3_blastdoor";
+ name = "Zone 3 Blastdoor Control";
+ pixel_x = 25;
+ req_access_txt = "114"
+ },
+/obj/effect/decal/warning_stripes/east{
+ layer = 50;
+ level = 0
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"swV" = (
+/obj/effect/decal/warning_stripes/west{
+ layer = 50
+ },
+/obj/machinery/door_control{
+ id = "CC_zone3_blastdoor";
+ name = "Zone 3 Blastdoor Control";
+ pixel_x = -25;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone3)
+"sxL" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"syD" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"syH" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/e_gun/old,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"szw" = (
+/obj/machinery/vending/syndisnack,
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"szy" = (
+/obj/effect/decal/cleanable/blood,
+/obj/effect/landmark{
+ name = "syndieprisonwarp"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"sAz" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 9;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom/evac)
+"sAC" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"sBu" = (
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ layer = 2.9;
+ name = "TX-20a magazine";
+ req_access = null
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ name = "TX-20a magazine (4.6x30mm)"
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ name = "TX-20a magazine (4.6x30mm)"
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ name = "TX-20a magazine (4.6x30mm)"
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ name = "TX-20a magazine (4.6x30mm)"
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ name = "TX-20a magazine (4.6x30mm)"
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ name = "TX-20a magazine (4.6x30mm)"
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ name = "TX-20a magazine (4.6x30mm)"
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ name = "TX-20a magazine (4.6x30mm)"
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ name = "TX-20a magazine (4.6x30mm)"
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ name = "TX-20a magazine (4.6x30mm)"
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ name = "TX-20a magazine (4.6x30mm)"
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ name = "TX-20a magazine (4.6x30mm)"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"sBN" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"sBP" = (
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"sCb" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"sCI" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/revolver/mateba,
+/obj/item/gun/projectile/revolver/nagant,
+/obj/item/gun/projectile/revolver/russian,
+/obj/item/gun/projectile/revolver/russian/soul,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"sCO" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"sDx" = (
+/turf/simulated/floor/holofloor{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/holodeck/source_emptycourt)
+"sDF" = (
+/obj/machinery/light{
+ dir = 8;
+ switchcount = 50
+ },
+/turf/unsimulated/beach/water/deep/dense,
+/area/centcom/evac)
+"sEj" = (
+/turf/unsimulated/wall{
+ icon_state = "iron11"
+ },
+/area/syndicate_mothership)
+"sEB" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/wizard_station)
+"sFg" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ color = "red";
+ dir = 1;
+ layer = 2.9
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_mothership)
+"sFo" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/revolver/detective,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"sFy" = (
+/obj/machinery/vending/engineering,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"sFT" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/court)
+"sFV" = (
+/obj/machinery/computer/station_alert,
+/obj/structure/sign/poster/official/kill_syndicate{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"sGP" = (
+/obj/structure/chair/sofa/right{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"sHg" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/surgery,
+/obj/item/storage/box/gloves,
+/obj/item/storage/box/masks,
+/obj/item/clothing/gloves/color/latex/nitrile,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"sHO" = (
+/obj/machinery/camera{
+ c_tag = "CentComm SOF Hallway";
+ network = list("CentComm")
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"sIa" = (
+/turf/unsimulated/floor{
+ icon = 'icons/obj/smooth_structures/catwalk.dmi';
+ icon_state = "catwalk";
+ name = "plating"
+ },
+/area/centcom/specops)
+"sIq" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/bush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"sIv" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/light,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"sIW" = (
+/obj/machinery/photocopier,
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"sJq" = (
+/obj/effect/landmark/costume/random,
+/obj/structure/rack/holorack,
+/turf/simulated/floor/holofloor{
+ icon_state = "cult";
+ tag = "icon-cult"
+ },
+/area/holodeck/source_theatre)
+"sKF" = (
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ id_tag = "ERT_director_office_shutters";
+ layer = 5;
+ locked = 1;
+ name = "ERT Director office"
+ },
+/turf/unsimulated/wall/fakeglass{
+ dir = 1;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom)
+"sLQ" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/processor{
+ pixel_y = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"sLV" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin/nanotrasen,
+/obj/item/pen/multi/fountain,
+/obj/item/ashtray/glass{
+ pixel_x = -7;
+ pixel_y = 10
+ },
+/obj/item/lighter/zippo/blue{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/item/clothing/mask/cigarette/cigar/cohiba{
+ pixel_x = -4;
+ pixel_y = 9
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"sMn" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/space,
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/centcom/specops)
+"sMH" = (
+/obj/structure/table/wood,
+/obj/machinery/door_control{
+ id = "syndicate_jail_cell";
+ name = "Bolt Cell Doors";
+ normaldoorcontrol = 1;
+ pixel_x = 6;
+ req_access_txt = "150";
+ specialfunctions = 4
+ },
+/obj/machinery/door_control{
+ id = "syndicate_jail";
+ name = "Bolt Jail Door";
+ normaldoorcontrol = 1;
+ pixel_x = -5;
+ req_access_txt = "150";
+ specialfunctions = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"sMR" = (
+/obj/structure/table/reinforced,
+/obj/item/kitchen/utensil/pspork,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"sMS" = (
+/obj/effect/landmark{
+ name = "Response Team"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"sMZ" = (
+/obj/structure/table,
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = -3
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"sNa" = (
+/obj/structure/table/wood,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 1;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"sNl" = (
+/obj/effect/decal/warning_stripes/southeast,
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/centcom/specops)
+"sNs" = (
+/obj/structure/mirror/magic{
+ desc = null;
+ name = "mirror";
+ pixel_y = 25
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"sNE" = (
+/obj/machinery/sleeper/syndie{
+ dir = 2
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"sOd" = (
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ frequency = 1441;
+ id_tag = "syndicate_jail_airlock_control";
+ name = "Syndicate Jail Access Controller";
+ pixel_x = -25;
+ req_access_txt = "150";
+ tag_exterior_door = "syndicate_jail_airlock_external";
+ tag_interior_door = "syndicate_jail_airlock_internal"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"sOk" = (
+/obj/effect/overlay/palmtree_l,
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/beach/sand,
+/area/holodeck/source_beach)
+"sPm" = (
+/obj/structure/lattice,
+/obj/structure/lattice,
+/turf/unsimulated/wall,
+/area/centcom/evac)
+"sQl" = (
+/obj/structure/table/wood/poker,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"sQv" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Supreme Commander";
+ opacity = 1;
+ req_access_txt = "113"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"sQw" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/mech_bay_recharge_port/upgraded,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"sRB" = (
+/obj/machinery/teleport/station,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"sRJ" = (
+/obj/structure/holowindow{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/holodeck/source_thunderdomecourt)
+"sRQ" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/pen/fancy,
+/obj/item/folder/white,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"sRT" = (
+/obj/effect/decal/warning_stripes/west{
+ layer = 1000
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone3)
+"sSa" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"sSo" = (
+/obj/structure/table,
+/obj/random/toolbox,
+/obj/random/bomb_supply,
+/obj/machinery/syndicatebomb/badmin/clown,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"sSY" = (
+/obj/effect/decal/warning_stripes/east{
+ layer = 50
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"sTL" = (
+/obj/structure/table/wood,
+/obj/item/folder/yellow{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/folder/red{
+ pixel_x = 7
+ },
+/obj/item/folder/blue{
+ pixel_x = 7;
+ pixel_y = -7
+ },
+/obj/item/storage/briefcase,
+/obj/item/door_remote/omni,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"sTP" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"sTX" = (
+/obj/machinery/vending/medical/syndicate_access,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"sUx" = (
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Director Estate";
+ dir = 8;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"sUJ" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/bush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"sVs" = (
+/obj/machinery/door_control{
+ color = "#99ff99";
+ id = "ERT_armory_lvl1";
+ name = "ERT Armory Level 1";
+ pixel_x = -22;
+ pixel_y = -6;
+ req_access_txt = "114"
+ },
+/obj/machinery/door_control{
+ color = "#9999ff";
+ id = "ERT_armory_lvl2";
+ name = "ERT Armory Level 2";
+ pixel_x = -33;
+ pixel_y = -6;
+ req_access_txt = "114"
+ },
+/obj/machinery/door_control{
+ color = "#ff9999";
+ id = "ERT_armory_lvl3";
+ name = "ERT Armory Level 3";
+ pixel_x = -22;
+ pixel_y = 4;
+ req_access_txt = "114"
+ },
+/obj/machinery/door_control{
+ color = "#ffdd99";
+ id = "ERT_armory_lvl4";
+ name = "ERT Armory Level 4";
+ pixel_x = -33;
+ pixel_y = 4;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"sVv" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 25
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 40
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"sVA" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien13"
+ },
+/area/abductor_ship)
+"sWK" = (
+/turf/simulated/floor/light,
+/area/secret/gaybar)
+"sWL" = (
+/turf/unsimulated/wall,
+/area/start)
+"sXn" = (
+/obj/machinery/cryopod,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/blops)
+"sXw" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "warnwhiteorange"
+ },
+/area/centcom/evac)
+"sYp" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"sZr" = (
+/obj/machinery/door/airlock/centcom{
+ name = "ERT Mech, Gamma Delivery & Artillery Control";
+ opacity = 1;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "navyblue"
+ },
+/area/centcom/specops)
+"taf" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien12"
+ },
+/area/abductor_ship)
+"tah" = (
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"tai" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"tar" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"tav" = (
+/obj/structure/table/wood/poker,
+/obj/item/clothing/shoes/roman,
+/obj/item/clothing/under/roman,
+/obj/item/shield/riot/roman,
+/obj/item/clothing/head/helmet/roman/legionaire,
+/obj/item/twohanded/spear/bonespear,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"taF" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"taR" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ tag = "icon-fakewindows (NORTHEAST)"
+ },
+/area/centcom)
+"tbj" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/ussp_ship)
+"tbo" = (
+/obj/structure/table,
+/obj/item/lighter/zippo,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja/holding)
+"tbs" = (
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/obj/structure/cable,
+/turf/space,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
+ },
+/area/ussp_ship)
+"tbv" = (
+/obj/item/gun/throw/crossbow,
+/obj/item/gun/throw/crossbow/french,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"tbB" = (
+/mob/living/simple_animal/turkey,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"tcz" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"tcF" = (
+/obj/structure/closet/secure_closet/freezer/meat{
+ req_access_txt = "102"
+ },
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"tdZ" = (
+/obj/machinery/light/small{
+ dir = 8;
+ light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"tfq" = (
+/turf/space,
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/centcom)
+"tgm" = (
+/obj/structure/table/wood/fancy,
+/obj/item/paper_bin/syndicate,
+/obj/item/folder/red{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/pen/multi/gold{
+ pixel_x = -3;
+ pixel_y = -5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"thb" = (
+/obj/machinery/computer/card,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"tho" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"thL" = (
+/obj/machinery/computer/crew,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"tiN" = (
+/obj/machinery/chem_heater,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"tiP" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/folder/blue,
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/item/pen/multi/fountain,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"tjg" = (
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 95, "bullet" = 95, "laser" = 95, "energy" = 95, "bomb" = 95, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 80);
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "ERT_turret_shutters";
+ locked = 1;
+ name = "ERT Lockdown";
+ opacity = 0
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"tjT" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood-broken3"
+ },
+/area/wizard_station)
+"tkk" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/folder/yellow,
+/obj/item/pen/multi/gold,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"tko" = (
+/obj/structure/table/wood,
+/obj/item/paper/contract/employment,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"tkG" = (
+/obj/structure/dresser,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"tlf" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"tlj" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 25
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 40
+ },
+/obj/machinery/dna_scannernew,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"tlo" = (
+/obj/machinery/autolathe,
+/obj/item/stack/sheet/glass{
+ amount = 10
+ },
+/obj/item/stack/sheet/metal{
+ amount = 10
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"tlV" = (
+/obj/effect/decal/warning_stripes/west{
+ layer = 200
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone3)
+"tlX" = (
+/obj/structure/table/reinforced/brass,
+/obj/item/clothing/glasses/hud/security/sunglasses/fluff/voxxyhud,
+/obj/item/clothing/glasses/hud/security/sunglasses/fluff/voxxyhud,
+/obj/item/clothing/glasses/hud/security/sunglasses/fluff/voxxyhud,
+/obj/item/clothing/glasses/hud/security/sunglasses/fluff/voxxyhud,
+/obj/item/clothing/glasses/hud/security/sunglasses/fluff/voxxyhud,
+/obj/item/clothing/glasses/hud/security/sunglasses/fluff/voxxyhud,
+/obj/item/clothing/glasses/hud/security/sunglasses/fluff/voxxyhud,
+/obj/item/clothing/glasses/hud/security/sunglasses/fluff/voxxyhud,
+/obj/item/clothing/glasses/hud/security/sunglasses/fluff/voxxyhud,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"tmb" = (
+/obj/structure/table/abductor,
+/obj/machinery/kitchen_machine/microwave/upgraded,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"tmi" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/revolver/doublebarrel,
+/obj/item/gun/projectile/revolver/doublebarrel/improvised,
+/obj/item/gun/projectile/revolver/doublebarrel/improvised/cane,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"tmL" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone3)
+"tnf" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 3 Check point";
+ dir = 1;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"tnq" = (
+/obj/effect/decal/warning_stripes/west{
+ layer = 50
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone3)
+"tnx" = (
+/obj/structure/closet{
+ icon_closed = "cabinet_closed";
+ icon_opened = "cabinet_open";
+ icon_state = "cabinet_closed";
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"toA" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"tpb" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Special Team Ready Room";
+ opacity = 1;
+ req_access_txt = "106"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/srtops)
+"tpf" = (
+/obj/machinery/computer/arcade,
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"tpg" = (
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"tpv" = (
+/obj/item/radio/intercom{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"tqd" = (
+/obj/structure/table,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"tqf" = (
+/obj/structure/bookcase/manuals,
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"tqn" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/shotgun/toy/crossbow,
+/obj/item/gun/energy/kinetic_accelerator/crossbow,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"tqu" = (
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"tqR" = (
+/obj/structure/table,
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"trk" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/assault_pod)
+"tsP" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1441;
+ master_tag = "syndicate_jail_airlock_control";
+ name = "Syndicate Jail Access Button";
+ pixel_y = -25;
+ req_access_txt = "150"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"tte" = (
+/turf/space,
+/turf/space,
+/turf/space,
+/area/space)
+"ttV" = (
+/obj/structure/noticeboard{
+ pixel_y = -30
+ },
+/obj/item/paper/syndimemo{
+ info = "В крайнем случае, вызывайте коричневый код"
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"tub" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/syndicate,
+/obj/item/shard,
+/obj/item/kitchen/knife,
+/obj/item/storage/firstaid/tactical,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"tue" = (
+/turf/space,
+/turf/space,
+/area/space)
+"tuL" = (
+/obj/structure/table/abductor{
+ name = "table"
+ },
+/obj/item/clothing/suit/space/chronos,
+/obj/item/clothing/suit/space/chronos,
+/obj/item/clothing/suit/space/chronos,
+/obj/item/clothing/suit/space/chronos,
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/chrono_ship)
+"tuM" = (
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ layer = 2.9;
+ name = "Suppressor's";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/item/suppressor,
+/obj/item/suppressor,
+/obj/item/suppressor,
+/obj/item/suppressor,
+/obj/item/suppressor,
+/obj/item/suppressor,
+/obj/item/suppressor,
+/obj/item/suppressor,
+/obj/item/suppressor,
+/obj/item/suppressor,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"tvm" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 3 Hallway 2";
+ dir = 1;
+ network = list("CentComm")
+ },
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = -7;
+ pixel_y = -30
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 7;
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"tvt" = (
+/obj/structure/closet/crate/can,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"tvy" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/state_laws{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"twG" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"txn" = (
+/obj/effect/decal/warning_stripes/blue,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"txu" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "wall3"
+ },
+/area/shuttle/assault_pod)
+"txQ" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/item/radio/intercom{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"tyk" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/evac)
+"tyu" = (
+/obj/machinery/vending/chinese/free,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"tyz" = (
+/obj/machinery/vending/cola/free,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"tzl" = (
+/turf/unsimulated/wall{
+ icon_state = "sandstone5"
+ },
+/area/wizard_station)
+"tBx" = (
+/obj/structure/holowindow{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/holodeck/source_knightarena)
+"tBD" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/revolver/fingergun,
+/obj/item/gun/projectile/revolver/fingergun/fake,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"tDH" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"tEC" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/space_cops{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"tED" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "darkbrown"
+ },
+/area/centcom/specops)
+"tEG" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ name = "SIT Ready Room"
+ },
+/obj/machinery/door/poddoor/impassable{
+ id_tag = "sit_ready";
+ layer = 2.8
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"tFo" = (
+/turf/simulated/floor/beach/coastline,
+/area/holodeck/source_beach)
+"tFM" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 3 Hallway";
+ dir = 1;
+ network = list("CentComm")
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"tGb" = (
+/obj/effect/decal/warning_stripes/southwest,
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/centcom/specops)
+"tGu" = (
+/obj/structure/table/holotable,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone1)
+"tHw" = (
+/obj/structure/window/reinforced,
+/obj/structure/sign/greencross{
+ pixel_x = -32
+ },
+/obj/structure/bush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"tIi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"tIS" = (
+/obj/structure/table/reinforced,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flashbang/clusterbang/limited{
+ name = "SOB-5 Clusterbang Launcher";
+ projectiles = 5
+ },
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flashbang,
+/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbrownfull"
+ },
+/area/centcom/specops)
+"tIZ" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 5;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom)
+"tJH" = (
+/obj/structure/closet/crate/can,
+/obj/structure/sign/poster/official/work_for_a_future{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"tJM" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/gun/nuclear,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"tJW" = (
+/obj/structure/table/wood,
+/obj/item/storage/lockbox/mindshield,
+/obj/item/storage/lockbox/mindshield,
+/obj/item/storage/lockbox/mindshield,
+/obj/machinery/door_control{
+ id = "CC_special_operations_force_room";
+ name = "Central Command Special Operations Forces";
+ pixel_x = -25;
+ pixel_y = 5;
+ req_access_txt = "114"
+ },
+/obj/item/door_remote/centcomm,
+/obj/item/storage/box/erttaserproof,
+/obj/item/storage/box/permits,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"tJZ" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/computer/mech_bay_power_console,
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/gamma/space)
+"tKq" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"tKt" = (
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "darkgrey"
+ },
+/area/centcom/specops)
+"tKE" = (
+/obj/machinery/door/airlock/centcom{
+ name = "ERT Director";
+ opacity = 1;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"tKP" = (
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 2.9;
+ name = "LMG M249 SAW";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/gun/projectile/automatic/l6_saw{
+ desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'." ;
+ name = "M249 SAW"
+ },
+/obj/item/gun/projectile/automatic/l6_saw{
+ desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'." ;
+ name = "M249 SAW"
+ },
+/obj/item/gun/projectile/automatic/l6_saw{
+ desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'." ;
+ name = "M249 SAW"
+ },
+/obj/item/gun/projectile/automatic/l6_saw{
+ desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'." ;
+ name = "M249 SAW"
+ },
+/obj/item/gun/projectile/automatic/l6_saw{
+ desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'." ;
+ name = "M249 SAW"
+ },
+/obj/item/gun/projectile/automatic/l6_saw{
+ desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'." ;
+ name = "M249 SAW"
+ },
+/obj/item/gun/projectile/automatic/l6_saw{
+ desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'." ;
+ name = "M249 SAW"
+ },
+/obj/item/gun/projectile/automatic/l6_saw{
+ desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'." ;
+ name = "M249 SAW"
+ },
+/obj/item/gun/projectile/automatic/l6_saw{
+ desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'." ;
+ name = "M249 SAW"
+ },
+/obj/item/gun/projectile/automatic/l6_saw{
+ desc = "A heavily modified 5.56 light machine gun, designated 'M249 SAW'." ;
+ name = "M249 SAW"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"tLQ" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"tLV" = (
+/turf/simulated/floor/holofloor{
+ dir = 6;
+ icon_state = "carpetsymbol";
+ tag = "icon-carpetsymbol (SOUTHEAST)"
+ },
+/area/holodeck/source_meetinghall)
+"tMl" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"tMp" = (
+/obj/structure/chair/sofa{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/evac)
+"tMy" = (
+/obj/structure/chair/comfy/black,
+/obj/effect/landmark{
+ name = "ERT Director"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"tMz" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 4;
+ tag = "icon-fakewindows (EAST)"
+ },
+/area/space)
+"tNi" = (
+/obj/structure/table/wood/fancy/black,
+/turf/unsimulated/floor{
+ icon_state = "carpetside"
+ },
+/area/wizard_station)
+"tNn" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor{
+ icon_state = "wood_siding1";
+ tag = "icon-wood_siding1"
+ },
+/area/holodeck/source_picnicarea)
+"tNO" = (
+/obj/machinery/vending/coffee,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"tPs" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"tPT" = (
+/obj/machinery/door/airlock/external{
+ aiControlDisabled = 1;
+ frequency = 1379;
+ hackProof = 1;
+ icon_state = "door_locked";
+ id_tag = "emergency_away";
+ locked = 1;
+ name = "Arrival Airlock";
+ req_access = null
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/evac)
+"tQd" = (
+/turf/unsimulated/wall{
+ icon_state = "sandstone12"
+ },
+/area/wizard_station)
+"tRe" = (
+/obj/machinery/computer/bsa_control/admin{
+ integrity_failure = 20;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"tRF" = (
+/obj/machinery/door/airlock/hatch/syndicate{
+ autoclose = 0;
+ frequency = 1441;
+ id_tag = "syndicate_jail_airlock_internal";
+ locked = 1;
+ name = "Syndicate Jail Internal Airlock"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"tRW" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"tSy" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom/specops,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"tTw" = (
+/obj/effect/decal/warning_stripes/south,
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/centcom/specops)
+"tUp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"tUD" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkgreynavybluecorner"
+ },
+/area/centcom/specops)
+"tVF" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/gun/mini,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"tWj" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"tWz" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/wall{
+ icon_state = "iron12";
+ tag = "icon-iron12"
+ },
+/area/space)
+"tXq" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id_tag = "ERT_armory_lvl2";
+ layer = 5;
+ locked = 1;
+ name = "Armory level 2"
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"tXx" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Medical Block";
+ opacity = 1;
+ req_access_txt = "109"
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "navyblue"
+ },
+/area/centcom/specops)
+"tXH" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien16"
+ },
+/area/abductor_ship)
+"tXX" = (
+/obj/structure/chair/comfy/red{
+ color = "#FFFFFF"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"tYg" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor{
+ icon_state = "asteroid";
+ tag = "icon-asteroid"
+ },
+/area/holodeck/source_desert)
+"tYq" = (
+/turf/simulated/floor/holofloor{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/holodeck/source_basketball)
+"tYw" = (
+/obj/structure/chair/stool/holostool,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet11-12";
+ tag = "icon-carpet11-12 (EAST)"
+ },
+/area/holodeck/source_theatre)
+"tZi" = (
+/turf/unsimulated/wall{
+ icon_state = "sandstone14"
+ },
+/area/wizard_station)
+"tZG" = (
+/obj/structure/table,
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"uah" = (
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 2.9;
+ name = "X-ray laser";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/item/gun/energy/xray,
+/obj/item/gun/energy/xray,
+/obj/item/gun/energy/xray,
+/obj/item/gun/energy/xray,
+/obj/item/gun/energy/xray,
+/obj/item/gun/energy/xray,
+/obj/item/gun/energy/xray,
+/obj/item/gun/energy/xray,
+/obj/item/gun/energy/xray,
+/obj/item/gun/energy/xray,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"uai" = (
+/obj/machinery/door/window/northright{
+ name = "In";
+ req_access_txt = "150"
+ },
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (WEST)"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"ual" = (
+/obj/machinery/cryopod/robot,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/blops)
+"uaY" = (
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"ubp" = (
+/obj/machinery/vending/boozeomat{
+ req_access_txt = "102"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/turf/unsimulated/floor{
+ icon_state = "tranquillite"
+ },
+/area/centcom/specops)
+"ubs" = (
+/obj/structure/table/wood,
+/obj/item/paper/terrorspiders2,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"ubS" = (
+/turf/unsimulated/floor{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"udj" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/evac)
+"udp" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "bcircuit"
+ },
+/area/centcom/zone2)
+"udt" = (
+/obj/item/radio/intercom,
+/turf/unsimulated/wall,
+/area/centcom)
+"uer" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/chrono_gun,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"ueu" = (
+/obj/machinery/light{
+ dir = 1;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/evac)
+"ueG" = (
+/obj/machinery/computer/camera_advanced/abductor{
+ team = 3
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"ufB" = (
+/obj/structure/table/wood,
+/obj/item/clothing/under/color/black{
+ icon_state = "charcoal_suit"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"ufP" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"ugb" = (
+/obj/structure/flora/rock,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom)
+"ugn" = (
+/obj/machinery/cryopod,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"ugp" = (
+/obj/structure/chair/sofa{
+ dir = 9
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ layer = 5
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 4;
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"ugB" = (
+/obj/item/radio/intercom/specops{
+ pixel_x = -25
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"uik" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"uil" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"uir" = (
+/obj/structure/dresser,
+/obj/structure/mirror/magic{
+ desc = null;
+ name = "mirror";
+ pixel_x = -25
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"uiR" = (
+/obj/effect/decal/warning_stripes/northwest,
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/area/centcom/specops)
+"uiW" = (
+/obj/machinery/recharge_station/upgraded,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"uju" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 25
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"ujx" = (
+/obj/structure/table/reinforced,
+/obj/machinery/requests_console{
+ department = "Central Command";
+ departmentType = 1;
+ name = "CC Requests Console"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"ujV" = (
+/obj/structure/table/reinforced,
+/obj/item/ashtray/glass{
+ pixel_x = -7;
+ pixel_y = -4
+ },
+/obj/machinery/door_control{
+ id = "ERT_director_office_shutters";
+ name = "ERT Director Office Shutters";
+ pixel_x = 7;
+ pixel_y = -3;
+ req_access_txt = "114"
+ },
+/obj/item/radio/intercom/specops{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/lighter/zippo/blue{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/item/clothing/mask/cigarette/cigar/cohiba{
+ pixel_x = -4;
+ pixel_y = 9
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"ujX" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the Special Ops.";
+ name = "Special Ops. Monitor";
+ network = list("ERT")
+ },
+/obj/effect/landmark{
+ name = "nukecode"
+ },
+/obj/effect/landmark{
+ name = "Commando_Manual"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"uku" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"uky" = (
+/obj/machinery/vending/boozeomat{
+ req_access_txt = null
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"ukz" = (
+/turf/space,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"ukI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 1;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"ulb" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"ulT" = (
+/obj/machinery/computer/cloning,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"ulZ" = (
+/obj/machinery/abductor/experiment{
+ team = 4
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"umM" = (
+/obj/machinery/computer/bsa_control/admin{
+ integrity_failure = 20;
+ req_access_txt = "114"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"unC" = (
+/obj/machinery/computer/communications,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"uom" = (
+/obj/structure/chair/comfy/red{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"uoL" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien10"
+ },
+/area/abductor_ship)
+"upB" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/pen/multi/gold,
+/obj/item/stamp/centcom{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/toy/figure/captain{
+ name = "Supreme commander action figure"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"upL" = (
+/obj/structure/table/wood,
+/obj/item/clothing/suit/hooded/hoodie/tp,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"uqx" = (
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"uqR" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/pen/fancy,
+/obj/item/folder/red{
+ pixel_x = 7
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"urk" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/holodeck/source_thunderdomecourt)
+"urQ" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/holofloor{
+ icon_state = "asteroid";
+ tag = "icon-asteroid"
+ },
+/area/holodeck/source_picnicarea)
+"usK" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 2 Office 2";
+ dir = 1;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"usQ" = (
+/obj/structure/sign/poster/official/state_laws{
+ pixel_y = 30
+ },
+/obj/structure/weightmachine/weightlifter,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"uti" = (
+/obj/item/kitchen/utensil/spoon,
+/obj/structure/chair/sofa{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"uty" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/laser/retro,
+/obj/item/gun/energy/laser/retro/old,
+/obj/item/gun/energy/laser/retro/sc_retro,
+/obj/item/gun/energy/laser/tag/blue,
+/obj/item/gun/energy/laser/tag/red,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"uui" = (
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"uuz" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/pen/fancy,
+/obj/item/folder/yellow,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"uuN" = (
+/turf/unsimulated/floor{
+ icon_state = "darkyellow"
+ },
+/area/centcom/specops)
+"uvI" = (
+/obj/machinery/computer/mech_bay_power_console,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"uvQ" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"uwv" = (
+/obj/structure/toilet,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"uwN" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom)
+"uwY" = (
+/obj/machinery/porta_turret/syndicate/pod,
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/assault_pod)
+"uxf" = (
+/obj/structure/mirror{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/srtops)
+"uyx" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Solar Federation Forces Ready Room";
+ network = list("CentComm")
+ },
+/obj/structure/mirror{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/srtops)
+"uyC" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/weightmachine/weightlifter,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"uzl" = (
+/obj/machinery/vending/cigarette,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/srtops)
+"uzy" = (
+/obj/structure/table/wood,
+/obj/item/grenade/syndieminibomb,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"uAq" = (
+/turf/unsimulated/floor{
+ icon_state = "stairs-l"
+ },
+/area/syndicate_mothership)
+"uCq" = (
+/obj/machinery/door/airlock/centcom{
+ name = "ERT Director";
+ opacity = 1;
+ req_access_txt = "114"
+ },
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 2;
+ id_tag = "ERT_director_office_shutters";
+ layer = 5;
+ locked = 1;
+ name = "ERT Director office"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"uCQ" = (
+/obj/structure/chair/sofa/left{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/jail)
+"uDP" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Bathroom";
+ opacity = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"uEj" = (
+/obj/effect/landmark{
+ name = "Commando"
+ },
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/blops)
+"uEq" = (
+/obj/structure/table/abductor{
+ name = "table"
+ },
+/obj/item/chrono_eraser,
+/obj/item/chrono_eraser,
+/obj/item/chrono_eraser,
+/obj/item/chrono_eraser,
+/turf/unsimulated/floor{
+ icon_state = "darkfull"
+ },
+/area/chrono_ship)
+"uEy" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Artillery Control";
+ opacity = 1;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"uEN" = (
+/obj/structure/filingcabinet/security,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"uFa" = (
+/obj/structure/chair/comfy/red{
+ color = "#FFFFFF";
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"uFe" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = -12
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = -2
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = 8
+ },
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/gamma/space)
+"uFj" = (
+/obj/structure/chair/comfy/red{
+ color = "#FFFFFF";
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"uFB" = (
+/obj/machinery/washing_machine,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"uFS" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/space,
+/area/ussp_ship)
+"uGr" = (
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/pulse,
+/obj/item/mecha_parts/mecha_equipment/weapon/honker,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/carbine,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flashbang/clusterbang,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot,
+/obj/structure/closet/crate,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"uGN" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/pulse,
+/obj/item/gun/energy/pulse/carbine,
+/obj/item/gun/energy/pulse/cyborg,
+/obj/item/gun/energy/pulse/destroyer,
+/obj/item/gun/energy/pulse/destroyer/annihilator,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"uHi" = (
+/obj/machinery/vending/toyliberationstation{
+ contraband = null;
+ products = list(/obj/item/gun/projectile/automatic/toy = 10, /obj/item/gun/projectile/automatic/toy/pistol = 10, /obj/item/gun/projectile/shotgun/toy = 10, /obj/item/toy/sword = 10, /obj/item/ammo_box/foambox = 20, /obj/item/toy/foamblade = 10, /obj/item/toy/syndicateballoon = 10, /obj/item/clothing/suit/syndicatefake = 5, /obj/item/clothing/head/syndicatefake = 5, /obj/item/gun/projectile/shotgun/toy/crossbow = 10, /obj/item/gun/projectile/automatic/c20r/toy/riot = 10, /obj/item/gun/projectile/automatic/l6_saw/toy/riot = 10, /obj/item/gun/projectile/automatic/sniper_rifle/toy = 10, /obj/item/ammo_box/foambox/riot = 20, /obj/item/toy/katana = 10, /obj/item/twohanded/dualsaber/toy = 5, /obj/item/toy/cards/deck/syndicate = 10)
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"uHY" = (
+/obj/structure/bookcase/manuals,
+/obj/item/book/manual/engineering_construction,
+/obj/item/book/manual/engineering_construction,
+/obj/item/radio/intercom/specops{
+ pixel_x = -25
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"uIh" = (
+/turf/unsimulated/floor{
+ icon_state = "bcircuit"
+ },
+/area/centcom/zone2)
+"uIl" = (
+/obj/structure/filingcabinet/security,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"uIu" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Bathroom";
+ opacity = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"uJB" = (
+/obj/structure/mirror{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"uJJ" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/shotgun/boltaction/enchanted/arcane_barrage,
+/obj/item/gun/projectile/shotgun/boltaction/enchanted/arcane_barrage/blood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"uJO" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom)
+"uKO" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 9;
+ tag = "icon-fakewindows (EAST)"
+ },
+/area/syndicate_mothership)
+"uMk" = (
+/obj/structure/table/wood/fancy/black,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"uMJ" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet1-0";
+ tag = "icon-carpet1-0 (EAST)"
+ },
+/area/holodeck/source_theatre)
+"uNw" = (
+/obj/machinery/door/poddoor/shutters{
+ id_tag = "CC_NT_armory";
+ layer = 5;
+ locked = 1;
+ name = "Special Reaction Team of Nanotrasen"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/centcom/srtops)
+"uNK" = (
+/obj/machinery/computer/cryopod{
+ pixel_y = 32
+ },
+/obj/effect/landmark{
+ name = "Response Team"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"uNO" = (
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Ready Room";
+ dir = 8;
+ network = list("CentComm")
+ },
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"uOr" = (
+/obj/machinery/computer/card/centcom,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"uOx" = (
+/obj/structure/chair/comfy/red{
+ color = "#000000";
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"uPA" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"uPL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"uPW" = (
+/turf/simulated/floor/holofloor{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/holodeck/source_basketball)
+"uQh" = (
+/obj/machinery/vending/wallmed/syndicate{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"uQl" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"uQp" = (
+/obj/structure/table/wood,
+/obj/item/gun/projectile/automatic/sniper_rifle,
+/obj/item/gun/projectile/automatic/sniper_rifle/compact,
+/obj/item/gun/projectile/automatic/sniper_rifle/syndicate,
+/obj/item/gun/projectile/automatic/sniper_rifle/syndicate/penetrator,
+/obj/item/gun/projectile/automatic/sniper_rifle/toy,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"uQu" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/folder/red{
+ pixel_x = 7
+ },
+/obj/item/folder/yellow,
+/obj/item/pen/multi/gold,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"uRn" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/syndicate_mothership)
+"uRQ" = (
+/obj/structure/chair/stool,
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"uSb" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{
+ pixel_x = 8;
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/syringe/bioterror{
+ pixel_x = -5;
+ pixel_y = -3
+ },
+/obj/item/reagent_containers/syringe/capulettium_plus{
+ pixel_x = -5
+ },
+/obj/item/reagent_containers/syringe/gluttony{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/syringe/lethal{
+ pixel_x = -5;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/syringe/pancuronium{
+ pixel_x = -5;
+ pixel_y = 9
+ },
+/obj/item/reagent_containers/syringe/sarin{
+ pixel_x = -5;
+ pixel_y = 12
+ },
+/obj/item/reagent_containers/glass/bottle/mutagen{
+ pixel_y = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"uSl" = (
+/obj/machinery/vending/cola/free,
+/obj/machinery/camera{
+ c_tag = "CentComm Jail 5";
+ dir = 10;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"uSS" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"uSZ" = (
+/turf/unsimulated/wall{
+ icon_state = "iron13";
+ tag = "icon-iron13"
+ },
+/area/space)
+"uTa" = (
+/obj/item/flag/nt,
+/obj/structure/sign/restroom{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"uTd" = (
+/obj/item/gun/syringe/blowgun,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"uTy" = (
+/obj/machinery/computer/rdservercontrol{
+ badmin = 1;
+ name = "Master R&D Server Controller"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"uUa" = (
+/obj/structure/sign/greencross,
+/turf/unsimulated/wall,
+/area/centcom)
+"uUd" = (
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/jail)
+"uVh" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/suit/armor/riot/knight/blue,
+/obj/item/clothing/head/helmet/riot/knight/blue,
+/obj/item/holo/claymore/blue,
+/turf/simulated/floor/holofloor{
+ icon_state = "blue"
+ },
+/area/holodeck/source_knightarena)
+"uVp" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ussp_ship)
+"uWC" = (
+/turf/unsimulated/floor{
+ icon_state = "darkgreynavybluecorner"
+ },
+/area/centcom/specops)
+"uYh" = (
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"uYp" = (
+/obj/machinery/computer/cryopod{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/trader_station/sol)
+"uYq" = (
+/obj/structure/table/wood/fancy/black,
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"uYF" = (
+/turf/simulated/floor/holofloor{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/holodeck/source_basketball)
+"uYP" = (
+/obj/structure/chair/stool/holostool,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet7-0";
+ tag = "icon-carpet7-0 (EAST)"
+ },
+/area/holodeck/source_meetinghall)
+"uZb" = (
+/obj/structure/table/wood/fancy,
+/obj/item/paper_bin/syndicate,
+/obj/item/folder/red{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/item/pen/multi/gold{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"uZf" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/paper/terrorspiders2,
+/obj/item/stamp/centcom{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"uZr" = (
+/obj/structure/bookcase/manuals,
+/obj/item/book/manual/engineering_construction,
+/obj/item/book/manual/engineering_construction,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"uZN" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"uZU" = (
+/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated,
+/obj/machinery/light{
+ dir = 1;
+ light_range = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"vaj" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien14"
+ },
+/area/abductor_ship)
+"van" = (
+/obj/item/storage/toolbox/syndicate{
+ desc = "A powerful relic many men worked long and hard to keep safe and away from the forces of evil.";
+ force = 1e+008;
+ name = "toolbox of robustness"
+ },
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"vaA" = (
+/obj/structure/table/wood,
+/obj/item/whetstone,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/srtops)
+"vaO" = (
+/obj/structure/bookcase/manuals,
+/obj/item/book/manual/engineering_construction,
+/obj/item/book/manual/engineering_construction,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"vaX" = (
+/turf/unsimulated/wall{
+ icon_state = "iron1"
+ },
+/area/syndicate_mothership)
+"vbo" = (
+/obj/structure/sink{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkgrey"
+ },
+/area/centcom/specops)
+"vcj" = (
+/obj/machinery/abductor/gland_dispenser,
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"vcx" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcircuit"
+ },
+/area/syndicate_mothership)
+"vcL" = (
+/obj/machinery/door_control{
+ id = "syndicate_bridge";
+ name = "Bridge Blastdoor";
+ pixel_y = 38
+ },
+/obj/machinery/door_control{
+ id = "commandroom";
+ name = "Command Room Blastdoor";
+ pixel_y = 28
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"vea" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"ved" = (
+/obj/structure/table/wood/poker,
+/obj/item/card/id/syndicate/anyone{
+ name = "BOSS OF THE GYM"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/event_zone)
+"veq" = (
+/obj/structure/bush,
+/obj/machinery/light{
+ dir = 4;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"ver" = (
+/obj/structure/bookcase/manuals,
+/obj/item/book/manual/engineering_construction,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"veF" = (
+/turf/unsimulated/wall,
+/area/centcom)
+"veL" = (
+/turf/unsimulated/wall{
+ icon_state = "iron7"
+ },
+/area/syndicate_mothership)
+"veR" = (
+/obj/structure/mirror{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"veV" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/yellow,
+/obj/random/bomb_supply,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"veY" = (
+/obj/item/radio/intercom/specops{
+ pixel_y = -30
+ },
+/obj/structure/table/wood,
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/pen/fancy,
+/obj/item/folder/blue,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"vfe" = (
+/obj/machinery/door_control{
+ id = "mauler_garage";
+ name = "Mauler's Garage";
+ pixel_x = 8;
+ pixel_y = 25;
+ req_access_txt = "153"
+ },
+/obj/machinery/door_control{
+ id = "dark_gygax_garage";
+ name = "Dark Gygax's Garage";
+ pixel_x = -8;
+ pixel_y = 25;
+ req_access_txt = "153"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"vfm" = (
+/obj/machinery/door/airlock/centcom{
+ aiControlDisabled = 1;
+ name = "Assault Pod";
+ opacity = 1;
+ req_one_access_txt = "150"
+ },
+/obj/docking_port/mobile/assault_pod,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/assault_pod)
+"vfC" = (
+/obj/structure/sink{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"vfJ" = (
+/obj/machinery/shower{
+ dir = 4;
+ tag = "icon-shower (EAST)"
+ },
+/obj/machinery/light/small{
+ light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"vfM" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Weapons";
+ req_access = null
+ },
+/obj/item/gun/projectile/automatic/pistol,
+/obj/item/gun/projectile/automatic/pistol,
+/obj/item/gun/projectile/automatic/pistol,
+/obj/item/gun/projectile/automatic/pistol,
+/obj/item/gun/projectile/automatic/pistol,
+/obj/item/gun/projectile/automatic/pistol,
+/obj/item/ammo_box/magazine/m10mm,
+/obj/item/ammo_box/magazine/m10mm,
+/obj/item/ammo_box/magazine/m10mm,
+/obj/item/ammo_box/magazine/m10mm,
+/obj/item/ammo_box/magazine/m10mm,
+/obj/item/ammo_box/magazine/m10mm,
+/obj/item/ammo_box/magazine/m10mm,
+/obj/item/ammo_box/magazine/m10mm,
+/obj/item/ammo_box/magazine/m10mm,
+/obj/item/ammo_box/magazine/m10mm,
+/obj/item/ammo_box/magazine/m10mm,
+/obj/item/ammo_box/magazine/m10mm,
+/obj/item/ammo_box/magazine/m10mm/ap,
+/obj/item/ammo_box/magazine/m10mm/ap,
+/obj/item/ammo_box/magazine/m10mm/ap,
+/obj/item/ammo_box/magazine/m10mm/ap,
+/obj/item/ammo_box/magazine/m10mm/ap,
+/obj/item/ammo_box/magazine/m10mm/ap,
+/obj/item/ammo_box/magazine/m10mm/hp,
+/obj/item/ammo_box/magazine/m10mm/hp,
+/obj/item/ammo_box/magazine/m10mm/hp,
+/obj/item/ammo_box/magazine/m10mm/hp,
+/obj/item/ammo_box/magazine/m10mm/hp,
+/obj/item/ammo_box/magazine/m10mm/hp,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/ussp_ship)
+"vfS" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet2-0";
+ tag = "icon-carpet2-0 (EAST)"
+ },
+/area/holodeck/source_theatre)
+"vgf" = (
+/obj/machinery/door/airlock{
+ name = "Душ"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"vgG" = (
+/obj/structure/chair/stool/holostool,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet10-0";
+ tag = "icon-carpet10-0 (EAST)"
+ },
+/area/holodeck/source_meetinghall)
+"vgV" = (
+/obj/structure/flora/tree/pine,
+/turf/simulated/floor/holofloor{
+ icon_state = "snow";
+ tag = "icon-snow"
+ },
+/area/holodeck/source_snowfield)
+"vhk" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "eventroom";
+ name = "Privacy Shutters"
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/event_zone)
+"vhu" = (
+/turf/simulated/floor/holofloor,
+/area/holodeck/source_boxingcourt)
+"vhS" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone3)
+"vjt" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = 5
+ },
+/obj/item/ammo_box/shotgun/rubbershot,
+/obj/item/ammo_box/shotgun/rubbershot,
+/obj/item/ammo_box/shotgun/rubbershot,
+/obj/item/ammo_box/shotgun/rubbershot,
+/obj/item/ammo_box/shotgun/rubbershot,
+/obj/item/storage/box/rubbershot,
+/obj/item/storage/box/rubbershot,
+/obj/item/storage/box/rubbershot,
+/obj/item/storage/box/rubbershot,
+/obj/item/storage/box/rubbershot,
+/obj/item/storage/box/rubbershot,
+/obj/item/storage/box/rubbershot,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/specops)
+"vjT" = (
+/obj/machinery/vending/cola/free,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/srtops)
+"vlb" = (
+/obj/item/grenade/clusterbuster/smoke,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"vlp" = (
+/turf/unsimulated/floor{
+ color = "#CCCCCC";
+ dir = 8;
+ icon_state = "vault";
+ name = "Leader position"
+ },
+/area/centcom/specops)
+"vlB" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "ERT_armory_lvl3";
+ layer = 5;
+ locked = 1;
+ name = "Armory level 3"
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkred"
+ },
+/area/centcom/specops)
+"vlE" = (
+/obj/structure/lattice/catwalk,
+/mob/living/carbon/human/monkey,
+/turf/space,
+/area/space/nearstation)
+"vlY" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/blops)
+"vmM" = (
+/obj/machinery/door_control{
+ id = "CC_NT_armory";
+ name = "Nanotrasen Armory";
+ pixel_x = -25;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/srtops)
+"vnr" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/evac)
+"vnF" = (
+/obj/effect/landmark/abductor/agent{
+ team = 2
+ },
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"vob" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "robotics_solar_outer";
+ name = "Project 28u"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"voL" = (
+/obj/machinery/vending/suitdispenser,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"voX" = (
+/obj/machinery/mass_driver{
+ dir = 4;
+ id_tag = "ASSAULT0";
+ name = "gravpult"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"vpr" = (
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"vpF" = (
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ layer = 2.9;
+ name = "M-90gl magazine";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"vpT" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/centcom/specops)
+"vqH" = (
+/obj/structure/table,
+/obj/item/storage/fancy/crayons,
+/obj/item/storage/fancy/crayons,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"vrk" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/srtops)
+"vrt" = (
+/turf/unsimulated/wall{
+ dir = 8;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "diagonalWall3"
+ },
+/area/space)
+"vru" = (
+/obj/docking_port/stationary/transit{
+ dir = 8;
+ dwidth = 10;
+ height = 35;
+ id = "whiteship_transit";
+ name = "whiteship in transit";
+ width = 21
+ },
+/turf/space/transit/horizontal{
+ dir = 4
+ },
+/area/space)
+"vup" = (
+/turf/unsimulated/wall{
+ icon_state = "sandstone11"
+ },
+/area/wizard_station)
+"vuP" = (
+/obj/structure/sign/poster/contraband/atmosia_independence{
+ name = "Declaration";
+ pixel_y = 30
+ },
+/obj/structure/mineral_door,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"vvn" = (
+/turf/space,
+/turf/unsimulated/wall/fakeglass{
+ dir = 5;
+ tag = "icon-fakewindows (NORTHEAST)"
+ },
+/area/centcom)
+"vvt" = (
+/obj/structure/closet/secure_closet/personal/cabinet{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ req_access_txt = "114"
+ },
+/obj/item/clothing/head/beret/centcom/officer,
+/obj/item/storage/box/centcomofficer,
+/obj/item/radio/headset/centcom,
+/obj/item/clothing/under/suit_jacket/navy,
+/obj/item/storage/briefcase/sniperbundle,
+/obj/item/suppressor,
+/obj/item/gun/projectile/automatic/proto{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/ammo_box/magazine/smgm9mm,
+/obj/item/ammo_box/magazine/smgm9mm,
+/obj/item/ammo_box/magazine/smgm9mm,
+/obj/item/ammo_box/magazine/smgm9mm,
+/obj/item/CQC_manual,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"vvD" = (
+/obj/structure/table,
+/obj/structure/reagent_dispensers/spacecleanertank{
+ pixel_x = -32
+ },
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = -4
+ },
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"vvS" = (
+/obj/machinery/vending/boozeomat{
+ req_access_txt = "102"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/zone3)
+"vwJ" = (
+/obj/machinery/door_control{
+ id = "CC_supply_internal";
+ name = "Central Command Supply Internal Shutter";
+ pixel_x = 4;
+ pixel_y = -30;
+ req_access_txt = "114"
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"vxE" = (
+/obj/structure/chair/comfy/red{
+ color = "#FFFFFF";
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/jail)
+"vxZ" = (
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"vyk" = (
+/obj/machinery/vending/boozeomat{
+ req_access_txt = null
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "stage_bleft"
+ },
+/area/syndicate_mothership)
+"vyl" = (
+/obj/machinery/light{
+ dir = 8;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/evac)
+"vyB" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"vyE" = (
+/obj/structure/holohoop{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor{
+ icon_state = "green"
+ },
+/area/holodeck/source_basketball)
+"vyF" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id_tag = "CC_space_jail";
+ layer = 5;
+ locked = 1;
+ name = "Central Command Jail"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"vzH" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkred"
+ },
+/area/centcom/specops)
+"vzI" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/ussp_ship)
+"vzU" = (
+/turf/simulated/floor/holofloor{
+ icon_state = "rampbottom";
+ tag = "icon-rampbottom"
+ },
+/area/holodeck/source_theatre)
+"vzX" = (
+/obj/structure/table/wood,
+/obj/item/clothing/suit/fluff/stobarico_greatcoat{
+ name = "\improper Nanotrasen Greatcoat"
+ },
+/obj/item/clothing/under/rank/centcom/officer,
+/obj/item/clothing/under/rank/centcom/representative{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/clothing/under/rank/centcom/captain{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"vBi" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/assault_pod)
+"vCq" = (
+/obj/machinery/recharge_station/ert,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"vCS" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/table/wood,
+/obj/item/storage/belt/utility/chief/full,
+/obj/item/storage/belt/utility/chief/full,
+/obj/item/storage/belt/utility/chief/full,
+/obj/item/storage/belt/utility/chief/full,
+/obj/item/storage/belt/utility/chief/full,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"vCX" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"vDc" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "floor"
+ },
+/area/centcom/evac)
+"vDp" = (
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkgrey"
+ },
+/area/centcom/specops)
+"vDL" = (
+/turf/unsimulated/wall/fakeglass{
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/ussp_ship)
+"vEc" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/chem_master,
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"vEg" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault";
+ name = "Operative position"
+ },
+/area/centcom/srtops)
+"vED" = (
+/obj/item/target/syndicate,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"vEQ" = (
+/obj/structure/table/reinforced,
+/obj/structure/sink{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"vEW" = (
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja/holding)
+"vEY" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"vFb" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/holohoop{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/jail)
+"vFd" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/item/radio/intercom{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/srtops)
+"vFk" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/space,
+/turf/space,
+/area/ussp_ship)
+"vGv" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "bcircuit"
+ },
+/area/centcom/zone2)
+"vGw" = (
+/obj/structure/table,
+/obj/item/storage/fancy/crayons,
+/obj/item/storage/fancy/crayons,
+/obj/item/soap/syndie,
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"vGJ" = (
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"vHd" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"vHp" = (
+/obj/structure/table/reinforced,
+/obj/item/healthanalyzer,
+/obj/item/healthanalyzer{
+ pixel_y = 5
+ },
+/obj/item/healthupgrade{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/item/healthupgrade{
+ pixel_x = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"vHw" = (
+/obj/effect/landmark{
+ name = "Commando"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/blops)
+"vHV" = (
+/obj/structure/table/abductor,
+/obj/item/paper/abductor,
+/obj/item/scalpel/alien,
+/obj/item/cautery/alien,
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"vIb" = (
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/obj/item/radio/intercom/syndicate{
+ pixel_x = -32
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"vIn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 8;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/obj/structure/sign/poster/contraband/communist_state{
+ pixel_x = -32
+ },
+/obj/mecha/combat/durand/old{
+ color = "#77895C";
+ desc = "Improved Armored Heavy Mech with USSP Symbol";
+ name = "TU-802"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/ussp_ship)
+"vIp" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/reedbush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"vIu" = (
+/obj/machinery/mass_driver{
+ dir = 4;
+ id_tag = "ASSAULT1";
+ name = "gravpult"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"vKb" = (
+/obj/structure/table/wood,
+/obj/item/twohanded/bostaff,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"vKh" = (
+/obj/structure/chair/sofa{
+ dir = 8
+ },
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"vKp" = (
+/turf/unsimulated/floor{
+ icon = 'icons/obj/smooth_structures/catwalk.dmi';
+ icon_state = "catwalk";
+ name = "plating"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/obj/smooth_structures/catwalk.dmi';
+ icon_state = "catwalk";
+ name = "plating"
+ },
+/area/centcom/specops)
+"vKq" = (
+/obj/structure/bush,
+/turf/unsimulated/floor{
+ icon_state = "grass4";
+ name = "grass"
+ },
+/area/centcom/zone1)
+"vKY" = (
+/obj/machinery/cryopod/right,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/trader_station/sol)
+"vLa" = (
+/obj/machinery/vending/tool,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"vLb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8;
+ light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"vLj" = (
+/obj/machinery/light/small{
+ brightness_range = 6;
+ dir = 4;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"vLs" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"vLx" = (
+/obj/item/clothing/under/retro/security,
+/obj/item/clothing/under/retro/security,
+/obj/structure/closet,
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/under/retro/security,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/shoes/combat,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"vLF" = (
+/obj/item/flag/wiz,
+/obj/machinery/light/small{
+ brightness_range = 6;
+ dir = 1;
+ light_range = 8;
+ nightshift_light_range = 6;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet03"
+ },
+/area/wizard_station)
+"vLT" = (
+/obj/effect/landmark{
+ name = "Marauder Exit"
+ },
+/turf/unsimulated/floor{
+ name = "plating"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/obj/smooth_structures/catwalk.dmi';
+ icon_state = "catwalk";
+ name = "plating"
+ },
+/area/centcom/specops)
+"vMy" = (
+/obj/structure/statue/diamond/captain{
+ name = "statue of THE Supreme Commander"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"vMK" = (
+/obj/structure/closet/secure_closet/personal/cabinet{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ req_access_txt = "114"
+ },
+/obj/item/clothing/suit/judgerobe{
+ name = "Supreme judge's robe"
+ },
+/obj/item/card/id/centcom{
+ icon_state = "deathsquad";
+ name = "Supreme Judge ID card";
+ pixel_x = -3;
+ pixel_y = -3;
+ registered_name = "Supreme Judge"
+ },
+/obj/item/clothing/head/powdered_wig{
+ desc = null;
+ name = "Supreme judge wig"
+ },
+/obj/item/clothing/under/suit_jacket/really_black{
+ name = "Supreme judge suit"
+ },
+/obj/item/clothing/shoes/centcom{
+ desc = null;
+ name = "Dress shoes"
+ },
+/obj/item/clothing/gloves/color/white{
+ desc = null;
+ name = "Supreme judge gloves"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"vMT" = (
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ id_tag = "CC_supply_internal";
+ layer = 5;
+ locked = 1;
+ name = "Central Command Supply Internal Shutter"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"vMX" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"vNb" = (
+/obj/structure/window/reinforced,
+/turf/unsimulated/wall{
+ icon_state = "iron12";
+ tag = "icon-iron12"
+ },
+/area/space)
+"vNO" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "CC_space_jail_cell";
+ layer = 5;
+ locked = 1;
+ name = "Central Command Jail"
+ },
+/obj/structure/window/full/reinforced{
+ layer = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"vOU" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"vOW" = (
+/obj/structure/table/wood,
+/obj/item/ashtray/glass{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/lighter/zippo/blue{
+ pixel_x = 7;
+ pixel_y = 8
+ },
+/obj/item/clothing/mask/cigarette/cigar{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/srtops)
+"vPf" = (
+/turf/simulated/floor/plating/lava/smooth/lava_land_surface,
+/area/space)
+"vPR" = (
+/turf/unsimulated/floor{
+ dir = 10;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"vQj" = (
+/turf/unsimulated/floor{
+ icon_state = "darkblue"
+ },
+/area/centcom/zone2)
+"vQz" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "ERT_armory_lvl3";
+ layer = 5;
+ locked = 1;
+ name = "Armory level 3"
+ },
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"vQA" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/paper_bin/nanotrasen,
+/obj/item/pen/multi/fountain{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/stamp/centcom{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/srtops)
+"vSa" = (
+/obj/effect/decal/warning_stripes/blue,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"vTj" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "darkred"
+ },
+/area/centcom/zone1)
+"vTl" = (
+/obj/machinery/vending/security,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/srtops)
+"vTo" = (
+/obj/item/flag/nt,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/blops)
+"vTv" = (
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"vTC" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/alien,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"vTR" = (
+/turf/unsimulated/wall{
+ icon_state = "iron10";
+ tag = "icon-iron10"
+ },
+/area/space)
+"vUb" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/ferry)
+"vUE" = (
+/turf/simulated/floor/plasteel,
+/area/tdome/arena)
+"vUG" = (
+/obj/structure/table/reinforced,
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/blops)
+"vUT" = (
+/obj/machinery/computer/pod/deathsquad,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"vVh" = (
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"vVu" = (
+/obj/machinery/teleport/hub/upgraded{
+ admin_usage = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"vVx" = (
+/obj/machinery/computer/arcade,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/jail)
+"vWN" = (
+/obj/machinery/computer/account_database{
+ name = "Admin Accounts Database"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"vWR" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 13
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"vXg" = (
+/obj/structure/sign/securearea{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/gamma/space)
+"vXj" = (
+/obj/machinery/cryopod/right,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/blops)
+"vYf" = (
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/space,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
+ },
+/area/ussp_ship)
+"vYi" = (
+/obj/structure/chair/sofa{
+ dir = 9
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ dir = 4;
+ layer = 5
+ },
+/obj/structure/window/reinforced{
+ color = "black";
+ layer = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"vYW" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"vZD" = (
+/obj/item/beach_ball/holoball,
+/turf/simulated/floor/holofloor,
+/area/holodeck/source_basketball)
+"vZH" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external{
+ id_tag = "supply_away";
+ name = "Central Command Supply";
+ req_access_txt = "31"
+ },
+/obj/machinery/door/poddoor{
+ id_tag = "CC_supply_space";
+ locked = 2;
+ name = "Supply Blastdoor"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"waa" = (
+/obj/machinery/computer/shuttle/ert,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"wai" = (
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"wak" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet04"
+ },
+/area/wizard_station)
+"wax" = (
+/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"waB" = (
+/obj/structure/closet,
+/obj/item/storage/backpack/satchel,
+/obj/item/storage/backpack/satchel,
+/obj/item/storage/backpack/satchel,
+/obj/item/storage/backpack/satchel,
+/obj/item/storage/backpack/satchel,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"wbd" = (
+/obj/structure/table,
+/obj/machinery/plantgenes{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/zone1)
+"wbx" = (
+/obj/machinery/light{
+ dir = 1;
+ switchcount = 50
+ },
+/obj/structure/table/wood,
+/obj/machinery/computer/secure_data/laptop{
+ desc = "Похоже, что на данном ноутбуке открыт какой-то старый браузер, со включенной вкладкой Twitch BANDA.";
+ name = "Ноутбук"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"wby" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/gun/advtaser,
+/obj/item/gun/energy/gun/advtaser/cyborg,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"wbG" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbrownfull"
+ },
+/area/centcom/specops)
+"wbY" = (
+/obj/structure/chair/stool/holostool,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/holofloor{
+ icon_state = "asteroid";
+ tag = "icon-asteroid"
+ },
+/area/holodeck/source_picnicarea)
+"wcf" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark{
+ name = "Syndicate-Spawn"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"wcl" = (
+/obj/machinery/computer/rdservercontrol{
+ badmin = 1;
+ name = "Master R&D Server Controller"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"wdp" = (
+/turf/unsimulated/wall/abductor{
+ icon_state = "alien15"
+ },
+/area/abductor_ship)
+"wdx" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/reedbush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"wdT" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 9;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"wed" = (
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 2;
+ height = 18;
+ id = "skipjack_away";
+ name = "vox bay 1";
+ width = 19
+ },
+/turf/space,
+/area/space)
+"weu" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "ERT_armory_lvl3";
+ layer = 5;
+ locked = 1;
+ name = "Armory level 3"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"wfo" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/bluespace_beacon/syndicate,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"wfx" = (
+/obj/item/radio/intercom/specops{
+ pixel_x = -30
+ },
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Shuttle";
+ dir = 4;
+ network = list("ERT","CentComm")
+ },
+/turf/unsimulated/floor{
+ dir = 10;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"wfy" = (
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/holodeck/source_knightarena)
+"wfG" = (
+/obj/item/flag/syndi,
+/obj/machinery/light{
+ dir = 4;
+ light_range = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"wfJ" = (
+/obj/structure/flora/tree/pine{
+ pixel_x = 1
+ },
+/turf/unsimulated/floor/snow,
+/area/syndicate_mothership)
+"wgm" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"wgK" = (
+/obj/structure/table/wood,
+/obj/item/storage/firstaid/tactical,
+/obj/item/storage/firstaid/tactical,
+/obj/item/storage/firstaid/tactical,
+/obj/item/storage/firstaid/tactical,
+/obj/item/storage/firstaid/tactical,
+/obj/item/storage/firstaid/tactical,
+/obj/item/storage/firstaid/tactical,
+/obj/item/storage/firstaid/tactical,
+/obj/item/storage/firstaid/tactical,
+/obj/item/storage/firstaid/tactical,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"wgZ" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor{
+ icon_state = "asteroid";
+ tag = "icon-asteroid"
+ },
+/area/holodeck/source_desert)
+"whn" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "ERT_armory_lvl4";
+ layer = 5;
+ locked = 1;
+ name = "Armory level 4"
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkbrown"
+ },
+/area/centcom/specops)
+"whE" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/immolator,
+/obj/item/gun/energy/immolator,
+/obj/item/gun/energy/immolator,
+/obj/item/gun/energy/immolator,
+/obj/item/gun/energy/immolator,
+/obj/item/gun/energy/immolator,
+/obj/item/gun/energy/immolator,
+/obj/item/gun/energy/immolator,
+/obj/item/gun/energy/immolator,
+/obj/item/gun/energy/immolator,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"wiz" = (
+/obj/structure/table/wood,
+/obj/item/clothing/suit/blacktrenchcoat,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"wjb" = (
+/obj/structure/table/reinforced,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,
+/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluefull"
+ },
+/area/centcom/specops)
+"wjl" = (
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"wkc" = (
+/obj/structure/table/wood,
+/obj/item/clothing/head/helmet/space/space_ninja,
+/obj/item/clothing/shoes/space_ninja,
+/obj/item/clothing/mask/gas/space_ninja,
+/obj/item/katana/energy,
+/obj/item/clothing/gloves/space_ninja,
+/obj/item/clothing/suit/space/space_ninja,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"wkH" = (
+/obj/structure/bookcase,
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/jail)
+"wll" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"wmH" = (
+/obj/structure/bush,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"wmI" = (
+/obj/structure/table/abductor,
+/obj/item/reagent_containers/food/drinks/shaker,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"wmM" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/lasercannon,
+/obj/item/gun/energy/lasercannon,
+/obj/item/gun/energy/lasercannon,
+/obj/item/gun/energy/lasercannon,
+/obj/item/gun/energy/lasercannon,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"won" = (
+/obj/mecha/combat/marauder/loaded{
+ operation_req_access = list()
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/centcom/supply)
+"wpd" = (
+/obj/machinery/atmospherics/unary/cold_sink/freezer/upgraded{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"wps" = (
+/turf/unsimulated/wall{
+ dir = 4;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "swall_f9"
+ },
+/area/ussp_ship)
+"wpt" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 1;
+ id_tag = "ERT_armory_lvl1";
+ layer = 5;
+ locked = 1;
+ name = "Armory level 1";
+ opacity = 0
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkgreen"
+ },
+/area/centcom/specops)
+"wpu" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"wpX" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "specops_away";
+ name = "Shuttle Hatch";
+ req_access_txt = "109"
+ },
+/obj/machinery/shower{
+ pixel_y = 20
+ },
+/obj/structure/fans/tiny,
+/turf/unsimulated/floor{
+ icon_state = "darkgrey"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"wpY" = (
+/obj/mecha/combat/gygax/ert/loaded{
+ operation_req_access = list()
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/centcom/supply)
+"wqo" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 33;
+ pixel_y = -7
+ },
+/obj/item/gun/energy/immolator{
+ pixel_y = -3
+ },
+/obj/item/gun/energy/immolator{
+ pixel_y = 8
+ },
+/obj/item/gun/energy/immolator{
+ pixel_y = 8
+ },
+/obj/item/gun/energy/immolator{
+ pixel_y = 8
+ },
+/obj/item/gun/energy/immolator{
+ pixel_y = -3
+ },
+/obj/item/gun/energy/immolator{
+ pixel_y = -3
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkredfull"
+ },
+/area/centcom/specops)
+"wqy" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbrown"
+ },
+/area/centcom/specops)
+"wqK" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window{
+ dir = 8;
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/obj/machinery/door_control{
+ id = "CC_supply_external";
+ name = "Central Command Supply External Shutte";
+ pixel_x = -5;
+ pixel_y = -2;
+ req_access_txt = "114"
+ },
+/obj/machinery/door_control{
+ id = "CC_supply_internal";
+ name = "Central Command Supply Internal Shutter";
+ pixel_x = -5;
+ pixel_y = 8;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"wrO" = (
+/obj/structure/table,
+/obj/item/grenade/syndieminibomb{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/grenade/syndieminibomb{
+ pixel_x = -1
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"wsG" = (
+/obj/structure/table/reinforced,
+/obj/item/kitchen/knife,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "stage_bleft"
+ },
+/area/syndicate_mothership)
+"wto" = (
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1441;
+ master_tag = "syndicate_jail_airlock_control";
+ name = "Syndicate Jail Access Button";
+ pixel_y = 25;
+ req_access_txt = "150"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"wtB" = (
+/obj/machinery/door/poddoor/shutters{
+ id_tag = "CC_space_jail_cell";
+ layer = 5;
+ locked = 1;
+ name = "Central Command Jail"
+ },
+/obj/structure/window/full/reinforced{
+ layer = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"wtT" = (
+/obj/structure/chair/comfy/red{
+ color = "#000000"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"wua" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkyellow"
+ },
+/area/centcom/specops)
+"wuj" = (
+/obj/machinery/computer/card/centcom,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/srtops)
+"wuw" = (
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"wvl" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s9"
+ },
+/area/shuttle/gamma/space)
+"wvz" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/ids,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/srtops)
+"wwc" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"wwf" = (
+/turf/unsimulated/floor{
+ color = "#CCCCCC";
+ dir = 8;
+ icon_state = "vault";
+ name = "Leader position"
+ },
+/area/centcom/srtops)
+"wwh" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/wizard_station)
+"wwk" = (
+/obj/structure/chair/comfy/red{
+ color = "#FFFFFF"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/court)
+"wxo" = (
+/obj/machinery/mass_driver{
+ dir = 4;
+ id_tag = "ASSAULT2";
+ name = "gravpult"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"wxZ" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 1;
+ icon_state = "fakewindows2"
+ },
+/area/centcom)
+"wyn" = (
+/obj/structure/table/holotable,
+/turf/simulated/floor/holofloor{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/holodeck/source_thunderdomecourt)
+"wyS" = (
+/obj/structure/table/wood,
+/obj/item/clothing/accessory/medal/engineering{
+ pixel_x = 10;
+ pixel_y = 15
+ },
+/obj/item/clothing/accessory/medal/engineering{
+ pixel_x = 10;
+ pixel_y = 15
+ },
+/obj/item/clothing/accessory/medal/engineering{
+ pixel_x = 10;
+ pixel_y = 15
+ },
+/obj/item/clothing/accessory/medal/legal{
+ pixel_y = 10
+ },
+/obj/item/clothing/accessory/medal/legal{
+ pixel_y = 10
+ },
+/obj/item/clothing/accessory/medal/legal{
+ pixel_y = 10
+ },
+/obj/item/clothing/accessory/medal/medical{
+ pixel_x = -10;
+ pixel_y = 15
+ },
+/obj/item/clothing/accessory/medal/medical{
+ pixel_x = -10;
+ pixel_y = 15
+ },
+/obj/item/clothing/accessory/medal/medical{
+ pixel_x = -10;
+ pixel_y = 15
+ },
+/obj/item/clothing/accessory/medal/science{
+ pixel_x = 10
+ },
+/obj/item/clothing/accessory/medal/science{
+ pixel_x = 10
+ },
+/obj/item/clothing/accessory/medal/science{
+ pixel_x = 10
+ },
+/obj/item/clothing/accessory/medal/security{
+ pixel_y = -5
+ },
+/obj/item/clothing/accessory/medal/security{
+ pixel_y = -5
+ },
+/obj/item/clothing/accessory/medal/security{
+ pixel_y = -5
+ },
+/obj/item/clothing/accessory/medal/service{
+ pixel_x = -10
+ },
+/obj/item/clothing/accessory/medal/service{
+ pixel_x = -10
+ },
+/obj/item/clothing/accessory/medal/service{
+ pixel_x = -10
+ },
+/obj/item/clothing/accessory/medal{
+ pixel_y = 3
+ },
+/obj/item/clothing/accessory/medal{
+ pixel_y = 3
+ },
+/obj/item/clothing/accessory/medal{
+ pixel_y = 3
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"wzd" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/sniperrifle,
+/obj/item/gun/energy/sniperrifle,
+/obj/item/gun/energy/sniperrifle,
+/obj/item/gun/energy/sniperrifle,
+/obj/item/gun/energy/sniperrifle,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"wzV" = (
+/obj/structure/table/wood/fancy/black,
+/obj/item/radio/intercom/specops,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone2)
+"wAv" = (
+/obj/mecha/combat/durand/loaded,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/centcom/supply)
+"wAy" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/syndicate_mothership)
+"wAK" = (
+/obj/machinery/vending/medical,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/zone1)
+"wAN" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"wAQ" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet04"
+ },
+/area/centcom/evac)
+"wBh" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 4;
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/ussp_ship)
+"wCk" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"wCx" = (
+/obj/item/gun/syringe,
+/obj/item/mecha_parts/mecha_equipment/medical/syringe_gun,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"wCK" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/wall{
+ icon_state = "iron3";
+ tag = "icon-iron3"
+ },
+/area/space)
+"wCQ" = (
+/obj/structure/bed,
+/obj/effect/landmark{
+ name = "prisonwarp"
+ },
+/obj/item/bedsheet/brown,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"wCS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkbluecorners"
+ },
+/area/centcom/specops)
+"wDG" = (
+/obj/structure/table,
+/obj/item/radio/electropack{
+ pixel_x = -5
+ },
+/obj/item/assembly/signaler{
+ code = 2;
+ frequency = 1449;
+ pixel_x = 8
+ },
+/obj/item/restraints/handcuffs{
+ pixel_y = 10
+ },
+/obj/item/restraints/handcuffs{
+ pixel_y = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"wFH" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/obj/item/paper_bin/nanotrasen{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/pen/multi/fountain,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"wGP" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Execution Room";
+ dir = 4
+ },
+/obj/structure/closet/fireaxecabinet{
+ locked = 0;
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"wGW" = (
+/obj/structure/bookcase,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/obj/item/book/manual,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"wHp" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"wHU" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"wHY" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin/nanotrasen,
+/obj/item/pen/multi/fountain,
+/obj/item/stamp/centcom{
+ pixel_x = -5;
+ pixel_y = -7
+ },
+/obj/item/megaphone{
+ pixel_x = -5;
+ pixel_y = 7
+ },
+/obj/item/camera_bug/ert{
+ pixel_y = 10
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/specops)
+"wIx" = (
+/turf/unsimulated/wall{
+ icon_state = "iron4"
+ },
+/area/syndicate_mothership)
+"wID" = (
+/turf/unsimulated/wall,
+/area/tdome)
+"wIS" = (
+/obj/structure/table/wood,
+/obj/item/sleeping_carp_scroll,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"wJc" = (
+/obj/structure/table/wood,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Central Command"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/srtops)
+"wJe" = (
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"wJA" = (
+/obj/structure/chair/sofa/right,
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"wJJ" = (
+/obj/machinery/mass_driver{
+ dir = 4;
+ id_tag = "ASSAULT3";
+ name = "gravpult"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"wKn" = (
+/obj/structure/closet/crate/can,
+/obj/machinery/chem_dispenser/soda/upgraded{
+ pixel_y = 33
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"wKz" = (
+/obj/structure/sign/poster/contraband/c20r{
+ pixel_x = 32
+ },
+/obj/structure/bed/dogbed/ian,
+/mob/living/simple_animal/pet/cat/Syndi,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"wKD" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/court)
+"wKJ" = (
+/turf/unsimulated/wall/fakeglass{
+ tag = "icon-fakewindows (EAST)"
+ },
+/area/syndicate_mothership)
+"wLv" = (
+/obj/structure/chair/stool/holostool,
+/turf/simulated/floor/holofloor{
+ dir = 4;
+ icon_state = "carpet9-4";
+ tag = "icon-carpet9-4 (EAST)"
+ },
+/area/holodeck/source_theatre)
+"wLK" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/holofloor{
+ icon_state = "wood_siding9";
+ tag = "icon-wood_siding9"
+ },
+/area/holodeck/source_picnicarea)
+"wMc" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/chair/sofa/left,
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"wMt" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Prison";
+ opacity = 1;
+ req_access_txt = "104"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/jail)
+"wMD" = (
+/obj/machinery/door/poddoor{
+ id_tag = "ASSAULT0";
+ name = "Launch Bay #0"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/obj/smooth_structures/catwalk.dmi';
+ icon_state = "catwalk";
+ name = "plating"
+ },
+/area/centcom/specops)
+"wNl" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 1;
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (NORTH)"
+ },
+/area/wizard_station)
+"wNs" = (
+/obj/effect/landmark{
+ name = "Marauder Exit"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/obj/smooth_structures/catwalk.dmi';
+ icon_state = "catwalk";
+ name = "plating"
+ },
+/area/centcom/specops)
+"wNv" = (
+/obj/structure/table/wood,
+/obj/item/clothing/accessory/medal/silver,
+/obj/item/clothing/accessory/medal/silver,
+/obj/item/clothing/accessory/medal/silver,
+/obj/item/clothing/accessory/medal/silver/leadership{
+ pixel_x = -7;
+ pixel_y = 7
+ },
+/obj/item/clothing/accessory/medal/silver/leadership{
+ pixel_x = -7;
+ pixel_y = 7
+ },
+/obj/item/clothing/accessory/medal/silver/leadership{
+ pixel_x = -7;
+ pixel_y = 7
+ },
+/obj/item/clothing/accessory/medal/silver/valor{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/clothing/accessory/medal/silver/valor{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/clothing/accessory/medal/silver/valor{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"wNT" = (
+/obj/machinery/door/airlock/centcom{
+ aiControlDisabled = 1;
+ name = "Assault Pod";
+ opacity = 1;
+ req_one_access_txt = "150"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/assault_pod)
+"wOq" = (
+/obj/machinery/chem_dispenser/supgraded,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"wOK" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/laser/captain,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"wPr" = (
+/obj/machinery/door/window{
+ dir = 8;
+ panel_open = 1;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"wPJ" = (
+/obj/effect/decal/cleanable/blood,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"wQl" = (
+/obj/structure/table/reinforced,
+/obj/item/kitchen/utensil/fork{
+ pixel_x = -4;
+ pixel_y = 18
+ },
+/obj/item/stack/tape_roll,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/mask/muzzle,
+/obj/item/clothing/suit/straight_jacket,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"wRd" = (
+/obj/structure/flora/ausbushes/pointybush,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/zone2)
+"wRl" = (
+/obj/item/flag/species/human,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/srtops)
+"wRA" = (
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
+ },
+/area/ussp_ship)
+"wSE" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/chair/sofa/right,
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"wSO" = (
+/obj/machinery/door_control{
+ id = "CC_space_jail_sec";
+ name = "Central Command Jail Security Room";
+ pixel_y = -30;
+ req_access_txt = "110"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"wTQ" = (
+/obj/machinery/computer/communications,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"wUd" = (
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Mech Delivery";
+ dir = 8;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"wUM" = (
+/obj/structure/table/wood,
+/obj/item/clothing/accessory/medal/gold{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/clothing/accessory/medal/gold{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/clothing/accessory/medal/gold{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/clothing/accessory/medal/gold/heroism{
+ pixel_x = -7;
+ pixel_y = 7
+ },
+/obj/item/clothing/accessory/medal/gold/heroism{
+ pixel_x = -7;
+ pixel_y = 7
+ },
+/obj/item/clothing/accessory/medal/gold/heroism{
+ pixel_x = -7;
+ pixel_y = 7
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"wVf" = (
+/obj/structure/table/wood,
+/obj/item/gun/medbeam,
+/obj/item/gun/medbeam,
+/obj/item/gun/medbeam,
+/obj/item/gun/medbeam,
+/obj/item/gun/medbeam,
+/obj/item/clothing/glasses/hud/health/night,
+/obj/item/clothing/glasses/hud/health/night,
+/obj/item/clothing/glasses/hud/health/night,
+/obj/item/clothing/glasses/hud/health/night,
+/obj/item/clothing/glasses/hud/health/night,
+/obj/item/bodyanalyzer/advanced,
+/obj/item/bodyanalyzer/advanced,
+/obj/item/bodyanalyzer/advanced,
+/obj/item/bodyanalyzer/advanced,
+/obj/item/bodyanalyzer/advanced,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"wVM" = (
+/obj/mecha/medical/odysseus,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/centcom/supply)
+"wWC" = (
+/obj/mecha/combat/phazon,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/centcom/supply)
+"wWX" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id_tag = "CC_supply_external";
+ layer = 5;
+ locked = 1;
+ name = "Central Command Supply External Shutte"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"wXx" = (
+/obj/effect/decal/cleanable/blood/gibs/body,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"wXO" = (
+/obj/machinery/light,
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"wYg" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"wYz" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ id_tag = "CC_zone2_blastdoor";
+ name = "Zone 2 Blastboor";
+ opacity = 0
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"wZp" = (
+/obj/structure/rack,
+/obj/item/gun/medbeam,
+/obj/item/storage/firstaid/tactical,
+/obj/item/reagent_containers/applicator/dual,
+/obj/item/reagent_containers/applicator/dual,
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"wZL" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"wZM" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"wZQ" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/court)
+"xaI" = (
+/obj/structure/dispenser/oxygen,
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"xaM" = (
+/obj/structure/window/reinforced{
+ layer = 2.9
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"xaZ" = (
+/turf/unsimulated/floor{
+ icon_state = "light_on_flicker4"
+ },
+/area/centcom/evac)
+"xba" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen{
+ maximum_pressure = 50000
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"xbp" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "whitehall";
+ tag = "icon-floor"
+ },
+/area/centcom/evac)
+"xbG" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/zipties{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/storage/box/zipties{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/zipties{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/zipties{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/zipties{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/storage/box/zipties{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 33;
+ pixel_y = -7
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/specops)
+"xcj" = (
+/obj/structure/bed,
+/obj/item/bedsheet/hos{
+ name = "bedsheet"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"xcs" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Jail 2";
+ dir = 8;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"xcy" = (
+/obj/structure/closet/crate/can,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"xdc" = (
+/obj/machinery/cryopod/robot,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"xdo" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"xdp" = (
+/obj/machinery/vending/coffee,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"xeW" = (
+/turf/unsimulated/floor{
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"xfi" = (
+/obj/machinery/door/poddoor/shutters{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 2;
+ id_tag = "ERT_director_office_shutters";
+ layer = 5;
+ locked = 1;
+ name = "ERT Director office"
+ },
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom)
+"xfx" = (
+/obj/structure/chair/sofa/left,
+/turf/simulated/floor/wood,
+/area/secret/gaybar)
+"xgb" = (
+/obj/machinery/mech_bay_recharge_port/upgraded/unsimulated{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"xhs" = (
+/obj/machinery/vending/cigarette{
+ prices = list()
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"xht" = (
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Ready Room 3";
+ dir = 4;
+ network = list("CentComm")
+ },
+/obj/structure/sign/poster/official/safety_report{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"xia" = (
+/obj/structure/table,
+/obj/item/gun/energy/ionrifle,
+/obj/machinery/light{
+ brightness_range = 5;
+ light_range = 5;
+ nightshift_light_range = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"xiw" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom)
+"xjq" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s6"
+ },
+/area/shuttle/gamma/space)
+"xkE" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12";
+ tag = "icon-swall12"
+ },
+/area/shuttle/gamma/space)
+"xkI" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s10"
+ },
+/area/shuttle/gamma/space)
+"xlt" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/kitchen/rollingpin,
+/obj/item/reagent_containers/food/condiment/enzyme,
+/obj/item/reagent_containers/glass/beaker,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"xlx" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/chem_dispenser/supgraded,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"xlT" = (
+/obj/item/storage/bible,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"xlW" = (
+/obj/structure/chair/comfy/red,
+/obj/effect/landmark{
+ name = "voxstart"
+ },
+/turf/unsimulated/floor/vox{
+ icon_state = "plastitanium"
+ },
+/area/vox_station)
+"xlZ" = (
+/obj/structure/table/wood,
+/obj/item/nullrod,
+/obj/item/nullrod,
+/obj/item/nullrod,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"xmr" = (
+/obj/item/gun/projectile/automatic/m90{
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ layer = 3.4
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ layer = 2.9;
+ name = "M-90gl";
+ req_access = null;
+ req_access_txt = "114"
+ },
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/obj/item/gun/projectile/automatic/m90{
+ pixel_y = 4
+ },
+/obj/item/gun/projectile/automatic/m90{
+ pixel_y = 4
+ },
+/obj/item/gun/projectile/automatic/m90{
+ pixel_y = 4
+ },
+/obj/item/gun/projectile/automatic/m90{
+ pixel_y = 4
+ },
+/obj/item/gun/projectile/automatic/m90{
+ pixel_y = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"xmH" = (
+/turf/unsimulated/floor{
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"xmU" = (
+/obj/machinery/camera{
+ c_tag = "CentComm Zone 2 Cargo Supply";
+ dir = 6;
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"xni" = (
+/obj/structure/noticeboard{
+ pixel_y = 30
+ },
+/obj/item/paper/syndimemo{
+ info = "Баки с газами доставлять только через шаттл ферри"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"xnY" = (
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"xoc" = (
+/obj/structure/table/abductor,
+/obj/item/storage/box/alienhandcuffs,
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"xoF" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"xoS" = (
+/turf/unsimulated/wall{
+ icon_state = "rrust"
+ },
+/area/vox_station)
+"xpe" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"xps" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"xpy" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/space,
+/area/ussp_ship)
+"xpK" = (
+/obj/effect/decal/warning_stripes/blue{
+ layer = 3
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkgrey"
+ },
+/area/centcom/specops)
+"xqL" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/centcom/jail)
+"xqX" = (
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"xrQ" = (
+/turf/unsimulated/floor{
+ dir = 10;
+ icon_state = "darkgreen"
+ },
+/area/centcom/specops)
+"xrZ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed/syndicate{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"xse" = (
+/turf/unsimulated/floor{
+ dir = 9;
+ icon_state = "darkred"
+ },
+/area/centcom/jail)
+"xso" = (
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/jail)
+"xsy" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"xsI" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/ferry)
+"xtz" = (
+/obj/structure/table/reinforced,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flashbang,
+/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/bola,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/disabler,
+/obj/structure/window/reinforced{
+ armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
+ dir = 4
+ },
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 1;
+ icon_state = "rightsecure";
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/specops)
+"xtF" = (
+/obj/structure/chair/stool,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"xtI" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s9"
+ },
+/area/shuttle/escape)
+"xtP" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkredcorners"
+ },
+/area/centcom/jail)
+"xug" = (
+/turf/unsimulated/wall{
+ icon_state = "iron9"
+ },
+/area/syndicate_mothership)
+"xuX" = (
+/obj/machinery/camera{
+ c_tag = "Thunderdome Arena";
+ network = list("Thunderdome");
+ pixel_x = 10
+ },
+/turf/simulated/floor/bluegrid,
+/area/tdome/arena)
+"xvn" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/machinery/floodlight,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"xvO" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ icon_state = "fakewindows2";
+ tag = "icon-fakewindows2 (WEST)"
+ },
+/area/centcom)
+"xwb" = (
+/turf/unsimulated/wall{
+ icon_state = "sandstone13"
+ },
+/area/wizard_station)
+"xwY" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/reedbush,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/closet/crate/can,
+/turf/unsimulated/floor{
+ icon_state = "grass3";
+ name = "grass"
+ },
+/area/centcom/evac)
+"xyg" = (
+/obj/structure/sign/double/map/right{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"xyv" = (
+/obj/item/flag/nt,
+/obj/machinery/status_display{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"xyV" = (
+/obj/structure/sign/poster/official/work_for_a_future,
+/turf/unsimulated/wall,
+/area/centcom)
+"xzq" = (
+/obj/structure/chair/stool/bar,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"xzK" = (
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/zone1)
+"xAa" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"xAM" = (
+/obj/item/gun/energy/shock_revolver,
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"xAW" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"xBN" = (
+/obj/structure/table/abductor,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"xCf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/mecha/combat/durand/old{
+ color = "#77895C";
+ desc = "Improved Armored Heavy Mech with USSP Symbol";
+ name = "TU-802"
+ },
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 8;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/ussp_ship)
+"xCr" = (
+/obj/machinery/optable/abductor,
+/turf/unsimulated/floor/abductor,
+/area/abductor_ship)
+"xCx" = (
+/obj/structure/sign/poster/official/safety_eye_protection{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"xCC" = (
+/obj/structure/table/abductor,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/reagent_containers/food/drinks/flask/detflask = 10, /obj/item/reagent_containers/food/drinks/cans/tonic = 10, /obj/item/reagent_containers/food/drinks/cans/thirteenloko = 10, /obj/item/reagent_containers/food/drinks/cans/synthanol = 10, /obj/item/reagent_containers/food/drinks/cans/space_mountain_wind = 10, /obj/item/reagent_containers/food/drinks/cans/lemon_lime = 10, "" = 70);
+ name = "Food CC Spawner #3"
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"xCT" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/centcom/specops)
+"xDo" = (
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"xDT" = (
+/obj/machinery/vending/syndisnack,
+/obj/machinery/light{
+ dir = 1;
+ light_range = 5
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"xEk" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/mineral/sandbags{
+ amount = 50;
+ pixel_y = 5
+ },
+/obj/item/stack/sheet/mineral/sandbags{
+ amount = 50;
+ pixel_y = 5
+ },
+/obj/item/stack/sheet/mineral/sandbags{
+ amount = 50;
+ pixel_y = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"xEm" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"xEt" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"xEG" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/accessory/holster{
+ pixel_y = 10
+ },
+/obj/item/clothing/accessory/holster{
+ pixel_y = 10
+ },
+/obj/item/clothing/accessory/holster{
+ pixel_y = 10
+ },
+/obj/item/clothing/accessory/holster{
+ pixel_y = 10
+ },
+/obj/item/clothing/accessory/holster{
+ pixel_y = 5
+ },
+/obj/item/clothing/accessory/holster{
+ pixel_y = 5
+ },
+/obj/item/clothing/accessory/holster{
+ pixel_y = 5
+ },
+/obj/item/clothing/accessory/holster{
+ pixel_y = 5
+ },
+/obj/item/clothing/accessory/holster,
+/obj/item/clothing/accessory/holster,
+/obj/item/clothing/accessory/holster,
+/obj/item/clothing/accessory/holster,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"xEX" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/space,
+/area/ussp_ship)
+"xGL" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Gamma Armory";
+ opacity = 1;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/gamma)
+"xGX" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3";
+ tag = "icon-swall3"
+ },
+/area/shuttle/gamma/space)
+"xHb" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault";
+ name = "Prisoner position"
+ },
+/area/centcom/jail)
+"xHr" = (
+/obj/machinery/vending/snack,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "cafeteria"
+ },
+/area/ninja/holding)
+"xHJ" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/bush,
+/turf/unsimulated/floor{
+ icon_state = "grass1";
+ name = "grass"
+ },
+/area/centcom/specops)
+"xIA" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Bridge 1-2";
+ opacity = 1;
+ req_access_txt = "113"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/bridge)
+"xIK" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/floragun,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"xIS" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ layer = 2.9;
+ name = "combat shotgun"
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/obj/item/ammo_box/shotgun/buck,
+/obj/item/ammo_box/shotgun/buck,
+/obj/item/ammo_box/shotgun/buck,
+/obj/item/gun/projectile/shotgun/automatic/combat,
+/obj/item/gun/projectile/shotgun/automatic/combat,
+/obj/item/gun/projectile/shotgun/automatic/combat,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/gamma/space)
+"xJC" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ layer = 2.9;
+ name = "Enforcer"
+ },
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/ammo_box/magazine/enforcer/lethal,
+/obj/item/gun/projectile/automatic/pistol/enforcer/lethal{
+ icon_state = "enforcer_red"
+ },
+/obj/item/gun/projectile/automatic/pistol/enforcer/lethal{
+ icon_state = "enforcer_red"
+ },
+/obj/item/gun/projectile/automatic/pistol/enforcer/lethal{
+ icon_state = "enforcer_red"
+ },
+/obj/item/gun/projectile/automatic/pistol/enforcer/lethal{
+ icon_state = "enforcer_red"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/gamma/space)
+"xJG" = (
+/obj/structure/holowindow,
+/turf/simulated/floor/holofloor{
+ icon_state = "asteroid7";
+ tag = "icon-asteroid7"
+ },
+/area/holodeck/source_knightarena)
+"xJU" = (
+/obj/machinery/door/poddoor{
+ id_tag = "ASSAULT2";
+ name = "Launch Bay #2"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/obj/smooth_structures/catwalk.dmi';
+ icon_state = "catwalk";
+ name = "plating"
+ },
+/area/centcom/specops)
+"xKa" = (
+/obj/structure/chair/sofa/left{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"xLp" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ layer = 2.9;
+ name = "advanced energy gun"
+ },
+/obj/item/gun/energy/gun/nuclear,
+/obj/item/gun/energy/gun/nuclear,
+/obj/item/gun/energy/gun/nuclear,
+/obj/item/gun/energy/gun/nuclear,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/gamma/space)
+"xLA" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ layer = 2.9;
+ name = "L.W.A.P. Sniper Rifle"
+ },
+/obj/item/gun/energy/sniperrifle,
+/obj/item/gun/energy/sniperrifle,
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/gamma/space)
+"xLW" = (
+/turf/space,
+/turf/unsimulated/wall{
+ dir = 4;
+ icon = 'icons/turf/shuttle.dmi';
+ icon_state = "swall_f6"
+ },
+/area/ussp_ship)
+"xMo" = (
+/obj/structure/table/wood,
+/obj/item/kitchen/utensil/spork,
+/obj/item/kitchen/utensil/spork,
+/obj/item/kitchen/utensil/spork,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone3)
+"xMK" = (
+/obj/machinery/prize_counter,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/jail)
+"xNg" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/jail)
+"xNP" = (
+/obj/docking_port/stationary/transit{
+ dir = 8;
+ dwidth = 2;
+ height = 11;
+ id = "specops_transit";
+ name = "specops in transit";
+ turf_type = /turf/space/transit/horizontal;
+ width = 5
+ },
+/turf/space/transit/horizontal,
+/area/space)
+"xOp" = (
+/obj/structure/table/wood,
+/obj/item/clothing/suit/armor/heavy,
+/obj/item/clothing/suit/armor/heavy,
+/obj/item/clothing/suit/armor/heavy,
+/obj/item/clothing/suit/armor/heavy,
+/obj/item/clothing/suit/armor/heavy,
+/obj/item/clothing/suit/armor/heavy,
+/obj/item/clothing/suit/armor/heavy,
+/obj/item/clothing/suit/armor/heavy,
+/obj/item/clothing/suit/armor/heavy,
+/obj/item/clothing/suit/armor/heavy,
+/obj/item/clothing/shoes/combat/swat,
+/obj/item/clothing/shoes/combat/swat,
+/obj/item/clothing/shoes/combat/swat,
+/obj/item/clothing/shoes/combat/swat,
+/obj/item/clothing/shoes/combat/swat,
+/obj/item/clothing/shoes/combat/swat,
+/obj/item/clothing/shoes/combat/swat,
+/obj/item/clothing/shoes/combat/swat,
+/obj/item/clothing/shoes/combat/swat,
+/obj/item/clothing/shoes/combat/swat,
+/obj/structure/sign/poster/official/random{
+ pixel_x = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"xOV" = (
+/obj/structure/window/reinforced{
+ layer = 2.9
+ },
+/obj/machinery/vending/coffee{
+ layer = 2
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"xPm" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkred"
+ },
+/area/centcom/jail)
+"xPw" = (
+/obj/structure/lattice/catwalk,
+/turf/space,
+/turf/space,
+/area/space/nearstation)
+"xPP" = (
+/obj/structure/holowindow{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor{
+ icon_state = "asteroid7";
+ tag = "icon-asteroid7"
+ },
+/area/holodeck/source_knightarena)
+"xQT" = (
+/obj/machinery/door/poddoor{
+ id_tag = "ASSAULT1";
+ name = "Launch Bay #1"
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/obj/smooth_structures/catwalk.dmi';
+ icon_state = "catwalk";
+ name = "plating"
+ },
+/area/centcom/specops)
+"xRp" = (
+/turf/simulated/floor/holofloor{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/holodeck/source_knightarena)
+"xRE" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet05"
+ },
+/area/centcom/evac)
+"xSo" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 8;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom/evac)
+"xSG" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/srtops)
+"xSJ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/holohoop{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkredfull"
+ },
+/area/centcom/jail)
+"xUq" = (
+/turf/unsimulated/wall,
+/area/space)
+"xUD" = (
+/obj/structure/chair/office/light,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone2)
+"xVX" = (
+/turf/unsimulated/floor{
+ icon_state = "darkgreen"
+ },
+/area/centcom/specops)
+"xWc" = (
+/obj/mecha/combat/marauder/seraph/loaded{
+ operation_req_access = list(109)
+ },
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Armory Level 4";
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"xWD" = (
+/obj/machinery/door/airlock/centcom{
+ name = "ERT Service Room";
+ opacity = 1;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "navyblue"
+ },
+/area/centcom/specops)
+"xXe" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 30
+ },
+/obj/item/nullrod/tribal_knife,
+/obj/item/kitchen/knife/combat/survival,
+/obj/item/kitchen/knife/combat,
+/obj/item/kitchen/knife/butcher,
+/obj/item/kitchen/knife,
+/obj/item/hatchet/unathiknife,
+/obj/item/whetstone/super,
+/obj/item/whetstone/cult,
+/obj/item/whetstone,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"xXr" = (
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkpurple"
+ },
+/area/centcom/specops)
+"xXH" = (
+/obj/structure/bookcase,
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/obj/item/book/manual/security_space_law{
+ pixel_x = 3
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/jail)
+"xYb" = (
+/obj/structure/table/wood,
+/obj/item/clothing/suit/hooded/wintercoat/fluff,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"xYH" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/evac)
+"xZd" = (
+/obj/structure/table/wood,
+/obj/structure/reagent_dispensers/spacecleanertank{
+ pixel_y = 30
+ },
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkpurple"
+ },
+/area/centcom/specops)
+"xZq" = (
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/zone1)
+"xZI" = (
+/obj/structure/chair/comfy/red{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "Syndicate Officer"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/syndicate_mothership)
+"xZJ" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 4;
+ tag = "icon-fakewindows (WEST)"
+ },
+/area/centcom)
+"xZL" = (
+/obj/structure/closet,
+/obj/item/clothing/under/color/orange/prison,
+/obj/item/clothing/under/color/orange/prison,
+/obj/item/clothing/shoes/orange,
+/obj/item/clothing/shoes/orange,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"xZQ" = (
+/obj/structure/bookcase,
+/obj/item/book/manual,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/wizard_station)
+"yae" = (
+/obj/structure/chair/sofa{
+ dir = 8
+ },
+/obj/item/radio/intercom/syndicate{
+ pixel_x = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/syndicate_mothership)
+"yaG" = (
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "darkgreynavyblue"
+ },
+/area/centcom/specops)
+"yaN" = (
+/obj/structure/curtain/open/shower/security,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/evac)
+"yaO" = (
+/obj/mecha/combat/gygax/ert,
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ req_access_txt = "114"
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkgreenfull"
+ },
+/area/centcom/specops)
+"ybJ" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/zone3)
+"ybZ" = (
+/obj/machinery/kitchen_machine/candy_maker/upgraded,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"yda" = (
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Service Room";
+ network = list("CentComm")
+ },
+/obj/structure/table/wood,
+/obj/item/grenade/clusterbuster/cleaner,
+/obj/item/grenade/clusterbuster/cleaner,
+/obj/item/grenade/clusterbuster/cleaner,
+/obj/item/grenade/clusterbuster/cleaner,
+/obj/item/grenade/clusterbuster/cleaner,
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/lights/mixed,
+/turf/space,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "darkpurple"
+ },
+/area/centcom/specops)
+"ydA" = (
+/obj/structure/table/wood,
+/obj/item/clothing/suit/wizrobe/marisa,
+/obj/item/clothing/shoes/sandal/marisa,
+/obj/item/clothing/head/wizard/marisa,
+/obj/item/twohanded/staff/broom,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet02"
+ },
+/area/wizard_station)
+"ydI" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/structure/mirror{
+ pixel_y = -30
+ },
+/obj/item/storage/secure/safe{
+ pixel_x = -22
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"ydO" = (
+/obj/structure/table/wood,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/gamma)
+"ydP" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/gamma)
+"ydY" = (
+/obj/machinery/camera{
+ c_tag = "CentComm ERT Gamma Armory";
+ network = list("CentComm")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/gamma)
+"yed" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 6;
+ pixel_y = -27
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = -27
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkred"
+ },
+/area/centcom/zone3)
+"yeD" = (
+/turf/space,
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/gamma/space)
+"yeG" = (
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/gamma/space)
+"yfh" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/unsimulated/floor{
+ icon_state = "stage_bleft"
+ },
+/area/centcom/jail)
+"yfi" = (
+/obj/machinery/power/smes/engineering,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/unsimulated/floor{
+ icon_state = "sepia"
+ },
+/area/ussp_ship)
+"yfw" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/evac)
+"yfA" = (
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/zone1)
+"yfP" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 32;
+ pixel_y = -12
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 32;
+ pixel_y = 8
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 32;
+ pixel_y = -2
+ },
+/turf/unsimulated/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/gamma/space)
+"yfR" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ anchored = 1;
+ name = "Weapons";
+ req_access = null
+ },
+/obj/item/gun/projectile/automatic/l6_saw,
+/obj/item/gun/projectile/automatic/l6_saw,
+/obj/item/gun/projectile/automatic/l6_saw,
+/obj/item/gun/projectile/automatic/l6_saw,
+/obj/item/gun/projectile/automatic/l6_saw,
+/obj/item/gun/projectile/automatic/l6_saw,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 4;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/obj/item/ammo_box/magazine/mm556x45/ap,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/ussp_ship)
+"ygd" = (
+/turf/unsimulated/wall/fakeglass{
+ dir = 4;
+ tag = "icon-fakewindows (EAST)"
+ },
+/area/centcom/evac)
+"ygj" = (
+/turf/unsimulated/beach/water/deep/dense,
+/area/centcom/evac)
+"ygs" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/srtops)
+"ygw" = (
+/obj/machinery/status_display/supply_display{
+ pixel_x = -32
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"ygF" = (
+/obj/structure/table,
+/obj/item/storage/box/syringes,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/grenade/chem_grenade/large,
+/obj/item/grenade/chem_grenade/large,
+/obj/item/grenade/chem_grenade/large,
+/obj/item/grenade/chem_grenade/large,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_mothership)
+"ygG" = (
+/obj/structure/sign/poster/contraband/communist_state{
+ pixel_x = -32
+ },
+/obj/machinery/light/small{
+ brightness_range = 10;
+ dir = 8;
+ light_range = 10;
+ nightshift_light_range = 10;
+ throw_range = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon = 'icons/turf/floors/carpet_black.dmi';
+ icon_state = "carpet"
+ },
+/area/ussp_ship)
+"ygH" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = 5
+ },
+/obj/item/ammo_box/shotgun/buck,
+/obj/item/ammo_box/shotgun/buck,
+/obj/item/ammo_box/shotgun/buck,
+/obj/item/ammo_box/shotgun/buck,
+/obj/item/ammo_box/shotgun/buck,
+/obj/item/storage/box/buck,
+/obj/item/storage/box/buck,
+/obj/item/storage/box/buck,
+/obj/item/storage/box/buck,
+/obj/item/storage/box/buck,
+/obj/item/storage/box/buck,
+/obj/item/storage/box/buck,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkredfull"
+ },
+/area/centcom/specops)
+"ygK" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 30
+ },
+/obj/item/melee/energy/axe,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"ygV" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 6;
+ pixel_y = -27
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -6;
+ pixel_y = -27
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"ygW" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/item/rcd/combat,
+/obj/item/rcd/combat,
+/obj/item/rcd/combat,
+/obj/item/rcd/combat,
+/obj/item/rcd/combat,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"yhy" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/item/gun/projectile/automatic/ar,
+/obj/item/gun/projectile/automatic/ar,
+/obj/item/gun/projectile/automatic/ar,
+/obj/item/gun/projectile/automatic/ar,
+/obj/item/gun/projectile/automatic/ar,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/obj/item/ammo_box/magazine/m556,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/supply)
+"yhA" = (
+/obj/structure/toilet{
+ dir = 4;
+ name = "Трон старшего администратора"
+ },
+/obj/machinery/light{
+ dir = 8;
+ switchcount = 50
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/evac)
+"yhI" = (
+/obj/machinery/teleport/station,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"yhS" = (
+/obj/structure/table/wood,
+/obj/item/gun/energy/decloner,
+/turf/unsimulated/floor{
+ icon_state = "floor";
+ tag = "icon-floor"
+ },
+/area/admin)
+"yis" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "darkbluecorners"
+ },
+/area/centcom/jail)
+"yix" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/shoes/brown,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/head/helmet/swat,
+/obj/item/gun/energy/laser,
+/obj/item/shield/energy,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 3;
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome/arena)
+"yiH" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/blops)
+"yiM" = (
+/obj/structure/morgue{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/jail)
+"yjb" = (
+/obj/structure/bed,
+/obj/item/bedsheet/wiz,
+/obj/effect/landmark/start{
+ name = "wizard"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "bcarpet08"
+ },
+/area/wizard_station)
+"yje" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/unsimulated/floor/grass,
+/area/centcom/zone1)
+"yjg" = (
+/turf/unsimulated/floor{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/centcom/jail)
+"yjq" = (
+/obj/machinery/door/poddoor/impassable{
+ id_tag = "SST_classified_gear_room";
+ name = "Classified gear"
+ },
+/turf/unsimulated/floor{
+ icon_state = "darkfull";
+ tag = "icon-dark"
+ },
+/area/syndicate_mothership)
+"ykd" = (
+/turf/unsimulated/floor{
+ dir = 10;
+ icon_state = "darkred"
+ },
+/area/centcom/jail)
+"yky" = (
+/obj/structure/chair/sofa/left,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "grimy"
+ },
+/area/centcom/zone1)
+"ykF" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 4;
+ icon_state = "darkredcorners"
+ },
+/area/centcom/jail)
+"ylb" = (
+/turf/unsimulated/floor{
+ dir = 9;
+ icon_state = "darkbrown"
+ },
+/area/centcom/specops)
+"ylm" = (
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "woodalt"
+ },
+/area/centcom/specops)
+"ylo" = (
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/evac)
+"ylZ" = (
+/turf/unsimulated/beach/sand,
+/area/ninja/holding)
+
+(1,1,1) = {"
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+jyD
+jyD
+jyD
+jyD
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(2,1,1) = {"
+xUq
+qBu
+dUZ
+hhh
+eId
+hyN
+hyN
+rzf
+aby
+bIV
+bbV
+xUq
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(3,1,1) = {"
+gvu
+rAe
+rAe
+rAe
+lce
+lce
+lce
+lce
+ncY
+bbV
+bbV
+xUq
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+cXT
+hic
+hic
+hic
+hic
+hic
+hic
+hic
+hic
+hic
+hic
+hic
+hic
+hic
+tzl
+vPf
+lcX
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(4,1,1) = {"
+cEK
+jQJ
+rAe
+pgj
+ijS
+lce
+lce
+lce
+ncY
+bbV
+bbV
+xUq
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+tQd
+bpZ
+bpZ
+eeC
+sEB
+cvw
+gLu
+bym
+bym
+ioL
+sSa
+sSa
+sSa
+qYN
+tQd
+vPf
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(5,1,1) = {"
+cEK
+vEW
+rAe
+luP
+ijS
+lce
+lce
+lce
+aby
+bbV
+bbV
+xUq
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+tQd
+bpZ
+iUG
+bpZ
+fwg
+oOr
+bym
+bym
+bym
+sSa
+sSa
+sSa
+tjT
+rKb
+tQd
+vPf
+lcX
+mPL
+mPL
+fAh
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(6,1,1) = {"
+tMz
+vEW
+rAe
+tbo
+ijS
+lce
+lce
+lce
+xUq
+xUq
+xUq
+xUq
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+tQd
+bYr
+bpZ
+bpZ
+fwg
+bym
+bym
+bym
+bym
+iCr
+sSa
+sSa
+dSX
+iFT
+tQd
+vPf
+lcX
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+fAh
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(7,1,1) = {"
+xUq
+nOv
+rAe
+lhG
+ijS
+lce
+lce
+uRQ
+xUq
+cfZ
+dGD
+dVO
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+tQd
+ozU
+wNl
+wNl
+cCd
+kQB
+bym
+bym
+oLz
+ozU
+wNl
+wNl
+wNl
+kds
+tQd
+vPf
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(8,1,1) = {"
+xUq
+qZe
+ltv
+pRX
+ijS
+lce
+cTT
+tqR
+xUq
+cCA
+dGD
+eqF
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+tQd
+iUp
+bym
+bym
+bym
+bym
+bym
+bym
+bym
+bym
+bym
+bym
+bym
+gNF
+tQd
+vPf
+lcX
+mPL
+fAh
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(9,1,1) = {"
+xUq
+eJQ
+lce
+lce
+lce
+lce
+lce
+lce
+aQX
+cTS
+cTS
+xUq
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+tQd
+pZZ
+bym
+bym
+oor
+bym
+bym
+bym
+vLj
+lZH
+bym
+bym
+bym
+cId
+tQd
+vPf
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+fAh
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(10,1,1) = {"
+xUq
+eMu
+lce
+lce
+lce
+lce
+lce
+uRQ
+xUq
+dEh
+cTS
+xUq
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+tZi
+esE
+fas
+kIg
+kIg
+kIg
+kIg
+iOb
+rWk
+tzl
+kQB
+bym
+bym
+mqX
+tQd
+vPf
+lcX
+mPL
+mPL
+wfJ
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(11,1,1) = {"
+xUq
+rbO
+lce
+lce
+lce
+lce
+cTT
+tqR
+xUq
+xUq
+xUq
+xUq
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+tQd
+wGW
+jmq
+hfF
+mXM
+evr
+dyC
+oUI
+iUp
+oGz
+bym
+bym
+bym
+jvy
+tQd
+vPf
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+aND
+jEz
+jEz
+vaX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(12,1,1) = {"
+xUq
+tpf
+uRQ
+lce
+lce
+lce
+lce
+uRQ
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+tQd
+hUH
+jmq
+hfF
+fhS
+fzc
+dyC
+oUI
+iUp
+tZi
+esE
+vuP
+owB
+rWk
+xwb
+vPf
+lcX
+mPL
+mPL
+mPL
+wfJ
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+dhe
+eFT
+wKJ
+pwO
+wYg
+njL
+duM
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(13,1,1) = {"
+xUq
+ylZ
+ylZ
+ylZ
+ylZ
+tNO
+xHr
+hfR
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+tQd
+hUH
+jmq
+hfF
+hfz
+tNi
+dyC
+oUI
+iUp
+tQd
+rrE
+wak
+wak
+hTY
+tQd
+vPf
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+rrf
+njL
+njL
+rrf
+njL
+njL
+uRn
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+hSw
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(14,1,1) = {"
+xUq
+hql
+ylZ
+ylZ
+ylZ
+ylZ
+mUD
+fTl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+tQd
+hon
+jmq
+hfF
+oid
+ldu
+dyC
+oUI
+iUp
+tQd
+ydA
+wwh
+wwh
+hQw
+tQd
+vPf
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+dhe
+eFT
+wKJ
+dhe
+njL
+njL
+uRn
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+uKO
+mpC
+mpC
+wKJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(15,1,1) = {"
+xUq
+ylZ
+ylZ
+jGo
+ylZ
+ylZ
+mUD
+fTl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+tZi
+esE
+jxb
+nyO
+nyO
+nyO
+nyO
+rKW
+rWk
+xwb
+fku
+wwh
+wwh
+yjb
+tQd
+vPf
+lcX
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+qkb
+rrf
+njL
+njL
+rrf
+njL
+njL
+uRn
+mPL
+mPL
+mPL
+wfJ
+fAh
+fAh
+uRn
+njL
+njL
+rrf
+jEV
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+fAh
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(16,1,1) = {"
+jKJ
+ylZ
+ohL
+ylZ
+nql
+ylZ
+mUD
+fTl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+tQd
+jcn
+iUp
+hon
+iUp
+xZQ
+lfc
+iUp
+jcn
+tQd
+vLF
+rNj
+qzK
+dJV
+tQd
+vPf
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+dhe
+eFT
+wKJ
+dhe
+wYg
+njL
+uRn
+mPL
+fAh
+wfJ
+mPL
+mPL
+wfJ
+uRn
+njL
+njL
+rrf
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(17,1,1) = {"
+xUq
+lxW
+ylZ
+gsF
+ylZ
+ylZ
+kch
+mSW
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+eJM
+hic
+hic
+hic
+hic
+hic
+hic
+hic
+hic
+vup
+hic
+hic
+hic
+hic
+dxF
+vPf
+lcX
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+duM
+njL
+njL
+uRn
+mPL
+mPL
+mPL
+rXa
+mPL
+mPL
+uRn
+eRL
+rJn
+uRn
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+fAh
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(18,1,1) = {"
+xUq
+mhm
+ylZ
+hql
+ylZ
+ylZ
+mUD
+qcM
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xUq
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+vPf
+lcX
+mPL
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+uRn
+njL
+njL
+uRn
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+uRn
+njL
+njL
+uRn
+mPL
+fAh
+mPL
+wfJ
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+pXS
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(19,1,1) = {"
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+lcX
+fAh
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+pgB
+njL
+njL
+uRn
+mPL
+wfJ
+mPL
+mPL
+lto
+mPL
+uRn
+njL
+njL
+uRn
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+hSw
+wfJ
+mPL
+oTy
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+ahI
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(20,1,1) = {"
+bOR
+eJo
+eJo
+eJo
+eJo
+eJo
+eJo
+eJo
+eJo
+eJo
+eJo
+ksJ
+eJo
+eJo
+eJo
+eJo
+eJo
+eJo
+eJo
+eJo
+eJo
+eJo
+fuj
+xUq
+eJo
+eJo
+eJo
+eJo
+xUq
+fFH
+fFH
+fFH
+fFH
+xUq
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+dhe
+eFT
+wKJ
+dhe
+wYg
+njL
+pgB
+mPL
+mPL
+fAh
+mPL
+mPL
+fAh
+pgB
+njL
+njL
+pgB
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+fAh
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(21,1,1) = {"
+vNb
+kYO
+xRp
+xRp
+xRp
+aZR
+tBx
+ryo
+ryo
+ryo
+eCs
+cHZ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tWz
+vNb
+fzD
+uYh
+uYh
+mfp
+qdY
+wJA
+uYh
+uYh
+uYh
+tWz
+lcX
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+rrf
+njL
+njL
+rrf
+njL
+njL
+wIx
+eFT
+mpC
+mpC
+mpC
+wKJ
+hdH
+vaX
+ioe
+ioe
+hdH
+jEz
+jEz
+jEz
+veL
+jEz
+jEz
+jEz
+vaX
+tlf
+mPL
+mPL
+cVV
+cVV
+cVV
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(22,1,1) = {"
+vNb
+jWb
+gDq
+gDq
+gDq
+xJG
+xPP
+gDq
+gDq
+gDq
+uVh
+cHZ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tWz
+vNb
+fAR
+uYh
+uYh
+mpW
+qdY
+wMc
+sWK
+sWK
+dRR
+tWz
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+dhe
+eFT
+wKJ
+dhe
+njL
+njL
+jga
+uPA
+uPA
+xAa
+xAa
+xAa
+lES
+dil
+tcz
+tcz
+ltZ
+qwb
+xAa
+uky
+rkr
+vHd
+fjf
+njL
+rrf
+mPL
+mPL
+mPL
+ilE
+ilE
+ilE
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(23,1,1) = {"
+vNb
+jWb
+gDq
+gDq
+gDq
+xJG
+xPP
+gDq
+gDq
+gDq
+uVh
+cHZ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tWz
+vNb
+lEF
+wgm
+uYh
+uYh
+qdY
+uYh
+sWK
+sWK
+sWK
+tWz
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+rrf
+njL
+njL
+rrf
+njL
+njL
+jga
+vGw
+xAa
+xAa
+wcf
+wcf
+wcf
+wcf
+tcz
+tcz
+lov
+qJM
+xAa
+gms
+rkr
+tZG
+njL
+njL
+wIx
+cCw
+mPL
+mPL
+eZg
+ilE
+ilE
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+xNP
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+rLL
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(24,1,1) = {"
+vNb
+jWb
+gDq
+gDq
+gDq
+xJG
+xPP
+gDq
+gDq
+gDq
+uVh
+cHZ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tWz
+vNb
+fMQ
+uYh
+uYh
+mpW
+qdY
+wSE
+sWK
+sWK
+dRR
+tWz
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+dhe
+eFT
+wKJ
+dhe
+wYg
+njL
+jga
+hTW
+xAa
+wcf
+kia
+kia
+kia
+lrE
+tcz
+tcz
+lov
+abo
+qLM
+aND
+sEj
+vaX
+rrf
+hdH
+iMk
+mPL
+mPL
+mPL
+ghW
+ghW
+ghW
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(25,1,1) = {"
+vNb
+dYH
+ppb
+ppb
+ppb
+ijg
+oZc
+wfy
+wfy
+wfy
+qKG
+cHZ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tWz
+vNb
+fTE
+uYh
+uYh
+mfp
+qdY
+xfx
+uYh
+uYh
+uYh
+tWz
+lcX
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+duM
+njL
+njL
+jga
+mly
+xAa
+wcf
+kia
+kia
+kia
+mwG
+tcz
+tcz
+lov
+pBo
+knf
+rkr
+aMD
+fjf
+njL
+paH
+pwO
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jEO
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(26,1,1) = {"
+hjB
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+xUq
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+uSZ
+xUq
+fFH
+fFH
+fFH
+fFH
+xUq
+fFH
+fFH
+fFH
+fFH
+xUq
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+uRn
+njL
+njL
+pwO
+lmc
+xAa
+xAa
+xAa
+xAa
+fYA
+xAa
+tcz
+tcz
+lov
+kbU
+msU
+pwO
+pSy
+njL
+njL
+iDS
+duM
+bpL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(27,1,1) = {"
+vNb
+kuc
+kuc
+kuc
+kuc
+fUB
+kuc
+kuc
+kuc
+kuc
+tYg
+qdY
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+tWz
+vNb
+geV
+uYh
+uYh
+mMq
+cHZ
+wJA
+uYh
+uYh
+uYh
+tWz
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+uRn
+njL
+njL
+cpE
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+jcG
+uAq
+njL
+njL
+iDS
+uRn
+bpL
+mPL
+mPL
+mPL
+mPL
+kdH
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(28,1,1) = {"
+vNb
+kuc
+wgZ
+bGJ
+kuc
+kuc
+fUB
+wgZ
+kuc
+egx
+kuc
+qdY
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+tWz
+vNb
+gqp
+uYh
+uYh
+npl
+qdY
+wMc
+sWK
+sWK
+dRR
+tWz
+lcX
+mPL
+mPL
+wfJ
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+uRn
+njL
+njL
+cpE
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+aaN
+njL
+njL
+iDS
+uRn
+bpL
+mPL
+mPL
+mPL
+mPL
+kdH
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(29,1,1) = {"
+vNb
+pYu
+kuc
+kuc
+tYg
+kuc
+kuc
+fUB
+kuc
+kuc
+iwj
+qdY
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+tWz
+vNb
+gFR
+uYh
+uYh
+uYh
+qdY
+uYh
+sWK
+sWK
+sWK
+tWz
+lcX
+mPL
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+pgB
+njL
+njL
+wIx
+xDT
+tcz
+jKH
+wfG
+uPA
+tcz
+wKz
+ejr
+wfG
+tcz
+tcz
+wAy
+wIx
+pSy
+njL
+njL
+iDS
+uRn
+qwX
+mPL
+mPL
+mPL
+mPL
+ilE
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(30,1,1) = {"
+vNb
+kuc
+kuc
+kuc
+mIb
+kuc
+kuc
+kuc
+fUB
+kuc
+kuc
+qdY
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+tWz
+vNb
+hcI
+uYh
+uYh
+nqk
+qdY
+wSE
+sWK
+sWK
+dRR
+tWz
+lcX
+mPL
+mPL
+mPL
+wfJ
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+aND
+jEz
+jEz
+pUb
+aDO
+aDO
+mKI
+vaX
+fRk
+hdH
+veL
+vaX
+dVm
+hdH
+jEz
+pUb
+meY
+tcz
+nUz
+rkr
+uZU
+njL
+njL
+xia
+uRn
+qwX
+mPL
+mPL
+mPL
+mPL
+kdH
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(31,1,1) = {"
+vNb
+kuc
+nFJ
+kuc
+kuc
+kuc
+liA
+tYg
+kuc
+fUB
+wgZ
+qdY
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+gTE
+tWz
+vNb
+hOV
+uYh
+uYh
+mMq
+qdY
+xfx
+uYh
+uYh
+uYh
+tWz
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+jga
+sfT
+oxv
+jga
+jcp
+njL
+jga
+njL
+njL
+njL
+jga
+amx
+pFs
+dVm
+jeT
+pBn
+pUb
+lZI
+aND
+iMk
+njL
+njL
+njL
+iDS
+uRn
+qwX
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(32,1,1) = {"
+hjB
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+xUq
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+uSZ
+xUq
+wCK
+wCK
+wCK
+wCK
+xUq
+fFH
+fFH
+fFH
+fFH
+xUq
+lcX
+mPL
+mPL
+fAh
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+jga
+njL
+njL
+jga
+njL
+kmG
+jga
+njL
+njL
+njL
+jga
+amx
+ezB
+hdH
+jEz
+eUA
+iMk
+njL
+mKI
+iMk
+uvI
+njL
+njL
+iDS
+uRn
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(33,1,1) = {"
+vNb
+hkl
+taF
+ofJ
+urQ
+mzK
+oYL
+urQ
+gir
+taF
+hkl
+qdY
+lGr
+lGr
+lGr
+lGr
+lGr
+lGr
+lGr
+ceM
+lGr
+lGr
+tWz
+jyD
+jyD
+wID
+wID
+wID
+wID
+wID
+wID
+wID
+jyD
+jyD
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+jga
+njL
+njL
+jga
+jcp
+njL
+jga
+njL
+njL
+njL
+jga
+veR
+pFs
+dVm
+jeT
+pBn
+iMk
+xpe
+mKI
+iMk
+neM
+njL
+njL
+iDS
+uRn
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(34,1,1) = {"
+vNb
+pZz
+nbx
+bLJ
+urQ
+wbY
+wbY
+urQ
+tNn
+nbx
+pZz
+qdY
+lGr
+bvP
+lGr
+lGr
+lGr
+beF
+lGr
+lGr
+kBB
+lGr
+tWz
+jyD
+jyD
+wID
+kVg
+kVg
+kVg
+kVg
+kVg
+wID
+jyD
+jyD
+lcX
+aND
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+pUb
+eFT
+wKJ
+aND
+vaX
+eFT
+mpC
+mpC
+mpC
+wKJ
+hdH
+jEz
+xug
+bst
+hJf
+jga
+cNr
+cNr
+jga
+djG
+njL
+dgj
+jga
+pvQ
+pFs
+hdH
+jEz
+eUA
+iMk
+njL
+mKI
+iMk
+pSy
+njL
+njL
+iDS
+pgB
+mPL
+mPL
+oTy
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+"}
+(35,1,1) = {"
+vNb
+hkl
+taF
+ofJ
+urQ
+qyT
+qyT
+urQ
+gir
+taF
+hkl
+qdY
+lGr
+lGr
+lGr
+lGr
+lGr
+lGr
+lGr
+lGr
+lGr
+lGr
+tWz
+wID
+wID
+wID
+gLF
+gLF
+gLF
+gLF
+gLF
+wID
+wID
+wID
+lcX
+jga
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+jga
+njL
+njL
+jga
+qaK
+kzK
+mRa
+mHZ
+tcz
+rUg
+vqH
+qrv
+qrv
+xAa
+hYv
+jga
+jcp
+njL
+jga
+njL
+njL
+njL
+jga
+pvQ
+pFs
+dVm
+jeT
+pBn
+iMk
+xpe
+mKI
+iMk
+aMD
+ulb
+ulb
+kzj
+wIx
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(36,1,1) = {"
+vNb
+pZz
+nbx
+bLJ
+urQ
+wbY
+wbY
+urQ
+tNn
+nbx
+pZz
+qdY
+lGr
+lGr
+vgV
+lGr
+kBB
+lGr
+lGr
+lGr
+beF
+lGr
+tWz
+wID
+hQm
+jYX
+sgM
+sgM
+sgM
+sgM
+sgM
+kXa
+yix
+wID
+lcX
+jga
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+jga
+njL
+njL
+jga
+mpH
+lgJ
+mRa
+mHZ
+tcz
+nNz
+uFB
+tcz
+tcz
+xAa
+xAa
+jga
+njL
+hDv
+jga
+njL
+njL
+njL
+jga
+pvQ
+ezB
+hdH
+veL
+eUA
+iMk
+njL
+mKI
+eUA
+veL
+veL
+veL
+jEz
+xug
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(37,1,1) = {"
+vNb
+hkl
+taF
+ofJ
+urQ
+wLK
+rym
+urQ
+gir
+taF
+hkl
+qdY
+lGr
+lGr
+lGr
+lGr
+lGr
+lGr
+bvP
+lGr
+lGr
+ceM
+tWz
+wID
+hQm
+jYX
+sgM
+nFE
+sgM
+nFE
+sgM
+kXa
+yix
+wID
+lcX
+jga
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+jga
+njL
+njL
+jga
+mpH
+iUr
+mRa
+mHZ
+tcz
+szw
+voL
+tcz
+tcz
+xAa
+xAa
+jga
+njL
+njL
+jga
+njL
+njL
+njL
+jga
+pFs
+pFs
+fEa
+mKI
+sEj
+xug
+lZI
+jHb
+sEj
+eUA
+eUA
+iMk
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(38,1,1) = {"
+hjB
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+xUq
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+uSZ
+wID
+hQm
+jYX
+sgM
+sgM
+pLi
+sgM
+sgM
+kXa
+yix
+wID
+lcX
+jga
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+jga
+njL
+ayZ
+pwO
+mhA
+mHZ
+mHZ
+tcz
+tcz
+nJf
+uHi
+tcz
+tcz
+xAa
+xAa
+pwO
+mfF
+njL
+jga
+vED
+vED
+vED
+jga
+exo
+exo
+aND
+xug
+mew
+txu
+wNT
+txu
+dZk
+jHb
+eUA
+iMk
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(39,1,1) = {"
+vNb
+pwt
+ofK
+ofK
+rgo
+ptj
+ptj
+vfS
+fnD
+fnD
+uMJ
+qdY
+aVK
+aVK
+aVK
+aVK
+aVK
+aVK
+aVK
+aVK
+aVK
+aVK
+tWz
+wID
+hQm
+jYX
+sgM
+nFE
+sgM
+nFE
+sgM
+kXa
+yix
+wID
+lcX
+jga
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+lVz
+oYZ
+oYZ
+oYZ
+jga
+njL
+njL
+adO
+xAa
+xAa
+xAa
+xAa
+xAa
+xAa
+xAa
+xAa
+xAa
+xAa
+xAa
+tEG
+njL
+njL
+mKI
+jEz
+jEz
+jEz
+sEj
+jEz
+jEz
+iMk
+mew
+txu
+ecl
+oil
+ecl
+txu
+dZk
+mKI
+iMk
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(40,1,1) = {"
+vNb
+sJq
+ofK
+ofK
+rgo
+iky
+mCJ
+mCJ
+mCJ
+mCJ
+gcY
+qdY
+aVK
+eoM
+rUZ
+aVK
+ngv
+uYP
+uYP
+uYP
+qwM
+aVK
+tWz
+wID
+hQm
+jYX
+sgM
+sgM
+sgM
+sgM
+sgM
+kXa
+yix
+wID
+lcX
+jHb
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+pUb
+kgi
+hdH
+jEz
+jEz
+xug
+njL
+njL
+adO
+nSq
+xAa
+xAa
+xAa
+nSq
+svp
+nSq
+xAa
+xrZ
+xAa
+nSq
+tEG
+njL
+njL
+jga
+vCX
+qYY
+sbD
+sbD
+qYY
+vCX
+rkr
+txu
+ecl
+oil
+jPQ
+oil
+ecl
+txu
+mKI
+iMk
+six
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(41,1,1) = {"
+vNb
+sJq
+ofK
+ofK
+rgo
+nkD
+eRB
+eRB
+eRB
+eRB
+qdy
+qdY
+aVK
+tLV
+rUZ
+aVK
+qDz
+ggK
+ggK
+ggK
+hue
+aVK
+tWz
+wID
+wID
+kuo
+fjV
+fjV
+fjV
+fjV
+fjV
+kuo
+wID
+wID
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+jga
+qaB
+gAu
+njL
+oOA
+njL
+njL
+njL
+mKI
+vaX
+hzJ
+kST
+hzJ
+hdH
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+pUb
+njL
+hDv
+jga
+cIb
+raO
+raO
+raO
+raO
+cIb
+rkr
+wNT
+oil
+nuM
+qkE
+trk
+oil
+vfm
+mKI
+iMk
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(42,1,1) = {"
+vNb
+sJq
+ofK
+ofK
+rgo
+rCL
+tYw
+tYw
+tYw
+tYw
+wLv
+qdY
+aVK
+aDk
+rUZ
+aVK
+vgG
+ksl
+ksl
+ksl
+hXB
+aVK
+tWz
+wID
+wID
+kQX
+lfj
+lfj
+lfj
+lfj
+lfj
+kQX
+ntO
+wID
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+jga
+xyg
+njL
+njL
+njL
+ewW
+njL
+njL
+jga
+iCh
+njL
+njL
+njL
+uQl
+jcl
+eyW
+flI
+ssS
+qqs
+vCX
+jga
+njL
+njL
+jga
+qUv
+raO
+raO
+raO
+raO
+fVG
+rkr
+txu
+vBi
+oil
+nkq
+oil
+vBi
+txu
+mKI
+iMk
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(43,1,1) = {"
+vNb
+sJq
+ofK
+ofK
+vzU
+ptj
+ptj
+vfS
+fnD
+fnD
+uMJ
+qdY
+aVK
+aVK
+aVK
+aVK
+aVK
+aVK
+aVK
+aVK
+aVK
+aVK
+tWz
+wID
+wID
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+qIa
+wID
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+pwO
+sFg
+pHj
+iOl
+aND
+jEz
+vaX
+iXv
+pwO
+jcp
+slM
+slM
+njL
+njL
+bln
+raO
+raO
+raO
+raO
+aND
+xug
+kwI
+njL
+jHb
+veL
+vaX
+lEu
+lEu
+hdH
+veL
+iMk
+fUw
+txu
+vBi
+oil
+vBi
+txu
+uwY
+mKI
+iMk
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+aal
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+pEo
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(44,1,1) = {"
+hjB
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+xUq
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+uSZ
+wID
+wID
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+qIa
+wID
+lcX
+mPL
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+jga
+vSa
+axw
+njL
+slF
+njL
+slM
+slM
+slM
+njL
+jMl
+dnq
+hBC
+raO
+ehc
+pwO
+qFH
+njL
+njL
+iCh
+pwO
+raO
+raO
+raO
+xnY
+mKI
+eUA
+pUb
+fUw
+txu
+wNT
+txu
+uwY
+aND
+eUA
+iMk
+hSw
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+hvA
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(45,1,1) = {"
+vNb
+kQd
+kQd
+kQd
+kQd
+kQd
+kQd
+kQd
+kQd
+kQd
+kQd
+cHZ
+iDt
+jat
+jat
+jat
+dts
+tYq
+hNx
+hNx
+hNx
+mOM
+tWz
+wID
+wID
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+qIa
+wID
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+jga
+snW
+njL
+njL
+ibN
+njL
+slM
+slM
+slM
+njL
+nuC
+rzl
+eMv
+raO
+raO
+eab
+njL
+njL
+njL
+njL
+pGR
+raO
+raO
+raO
+wXO
+mKI
+sEj
+sEj
+jEz
+jEz
+veL
+jEz
+jEz
+sEj
+sEj
+iMk
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(46,1,1) = {"
+vNb
+kQd
+aRV
+kQd
+kQd
+kQd
+kQd
+kQd
+kQd
+aRV
+kQd
+cHZ
+iDt
+jat
+qeT
+ojW
+llk
+jyA
+ojW
+nTc
+hNx
+mOM
+tWz
+wID
+wID
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+qIa
+wID
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+jga
+wfo
+uai
+njL
+slF
+njL
+slM
+slM
+slM
+njL
+scl
+bXF
+kQS
+raO
+ehc
+wIx
+qFH
+njL
+njL
+iCh
+wIx
+hrp
+raO
+raO
+tlo
+rkr
+rAz
+rAz
+wXx
+fHN
+rkr
+afn
+bky
+sfT
+wDG
+jga
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(47,1,1) = {"
+vNb
+kQd
+kQd
+kQd
+kQd
+aRV
+aRV
+kQd
+kQd
+kQd
+kQd
+cHZ
+mkS
+ojW
+qeT
+ojW
+llk
+jyA
+vZD
+nTc
+ojW
+vyE
+tWz
+wID
+wID
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+qIa
+gnk
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+fAh
+mPL
+wIx
+sFg
+pHj
+iOl
+jHb
+jEz
+vaX
+ibA
+wIx
+xpe
+slM
+slM
+njL
+njL
+bln
+raO
+raO
+raO
+raO
+jHb
+pUb
+jcp
+njL
+aND
+xug
+vcL
+raO
+uZb
+oiI
+rkr
+rAz
+rAz
+wPJ
+fHN
+rkr
+djx
+njL
+wPJ
+ceq
+jga
+fAh
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+hxr
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(48,1,1) = {"
+vNb
+kQd
+aRV
+kQd
+kQd
+kQd
+kQd
+kQd
+kQd
+aRV
+kQd
+cHZ
+pKw
+bNs
+qeT
+ojW
+llk
+jyA
+ojW
+nTc
+jSz
+uYF
+tWz
+wID
+wID
+vUE
+vUE
+vUE
+qny
+qny
+vUE
+vUE
+qIa
+gnk
+lcX
+mPL
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+jga
+qaB
+njL
+njL
+njL
+qPd
+njL
+njL
+jga
+iCh
+njL
+njL
+njL
+pot
+jcl
+eyW
+cEI
+thL
+ccC
+vCX
+jga
+njL
+hDv
+jga
+msY
+raO
+raO
+xZI
+oiI
+rkr
+rAz
+fHN
+iWh
+rAz
+rkr
+djx
+njL
+njL
+giz
+jga
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(49,1,1) = {"
+vNb
+kQd
+kQd
+kQd
+kQd
+kQd
+kQd
+kQd
+kQd
+kQd
+kQd
+cHZ
+pKw
+bNs
+bNs
+bNs
+dOJ
+uPW
+jSz
+jSz
+jSz
+uYF
+tWz
+wID
+wID
+vUE
+vUE
+vUE
+qJV
+xuX
+vUE
+vUE
+qIa
+ibP
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+jga
+xyg
+fso
+njL
+tPs
+njL
+njL
+njL
+mKI
+vaX
+gMh
+oyd
+gMh
+hdH
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+xug
+njL
+njL
+jga
+ccC
+raO
+raO
+thL
+qpS
+rkr
+rAz
+rAz
+rAz
+rAz
+rkr
+djx
+djx
+njL
+cIF
+jga
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+arb
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(50,1,1) = {"
+hjB
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+xUq
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+uSZ
+wID
+wID
+vUE
+vUE
+vUE
+qny
+qny
+vUE
+vUE
+qIa
+kTJ
+lcX
+aND
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+xug
+qHw
+hdH
+jEz
+jEz
+pUb
+njL
+njL
+adO
+xAa
+xAa
+xAa
+dks
+xAa
+vIb
+xAa
+xAa
+iwc
+xAa
+xAa
+enf
+njL
+njL
+jga
+ssS
+raO
+raO
+xZI
+tgm
+rkr
+fHN
+wPJ
+rAz
+rAz
+rkr
+djx
+hSy
+uSb
+dzB
+jga
+hSw
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(51,1,1) = {"
+vNb
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+cHZ
+nJs
+nJs
+nJs
+nJs
+nJs
+nJs
+nJs
+djn
+tFo
+gEV
+tWz
+wID
+wID
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+qIa
+wID
+lcX
+jga
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+fKp
+oYZ
+oYZ
+oYZ
+jga
+njL
+njL
+adO
+xAa
+xAa
+xAa
+xAa
+xAa
+xAa
+xAa
+xAa
+xAa
+xAa
+xAa
+enf
+njL
+njL
+jga
+qqs
+xEm
+raO
+oCK
+fsa
+rkr
+eFT
+wKJ
+aXG
+riL
+pwO
+jvr
+hdH
+jEz
+jEz
+iMk
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(52,1,1) = {"
+vNb
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+cHZ
+nJs
+mGg
+nJs
+nJs
+rcx
+nJs
+nJs
+djn
+tFo
+gEV
+tWz
+wID
+wID
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+qIa
+wID
+lcX
+jga
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+jga
+njL
+ayZ
+wIx
+aQT
+tcz
+tcz
+vHp
+sNE
+xAa
+xAa
+gyc
+ard
+gyc
+tcz
+wIx
+njL
+hDv
+mKI
+jEz
+vaX
+dxO
+hdH
+jEz
+iMk
+jFM
+njL
+njL
+njL
+pRZ
+njL
+biT
+iiz
+sfT
+jga
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(53,1,1) = {"
+vNb
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+cHZ
+nJs
+nJs
+nJs
+nJs
+nJs
+nJs
+nJs
+djn
+tFo
+gEV
+tWz
+wID
+wID
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+qIa
+wID
+lcX
+jga
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+jga
+njL
+njL
+jga
+jIe
+tcz
+tcz
+daV
+sNE
+xAa
+xAa
+gyc
+ard
+gyc
+tcz
+jga
+njL
+njL
+jga
+rvl
+dfd
+vcx
+dfd
+itg
+rkr
+njL
+njL
+njL
+njL
+njL
+rJn
+duM
+njL
+lUT
+jga
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(54,1,1) = {"
+vNb
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+cHZ
+nJs
+sOk
+nJs
+nJs
+nJs
+rPa
+nJs
+djn
+tFo
+gEV
+tWz
+wID
+wID
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+qIa
+wID
+lcX
+jga
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+jga
+njL
+njL
+jga
+smG
+tcz
+tcz
+qTE
+sNE
+xAa
+xAa
+gyc
+ard
+gyc
+tcz
+jga
+jcp
+njL
+jga
+mIO
+vcx
+bxc
+vcx
+jIg
+mKI
+jEz
+jEz
+jEz
+pUb
+njL
+njL
+aci
+wKJ
+hdH
+iMk
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(55,1,1) = {"
+vNb
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+nIP
+cHZ
+nJs
+nJs
+nJs
+nJs
+nJs
+nJs
+nJs
+djn
+tFo
+gEV
+tWz
+wID
+wID
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+vUE
+qIa
+wID
+lcX
+jga
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+oYZ
+jga
+njL
+njL
+jga
+puq
+svW
+cLr
+gri
+sNE
+xAa
+xAa
+puq
+meL
+puq
+tcz
+jga
+njL
+hDv
+jga
+fuo
+vcx
+vcx
+vcx
+cri
+rkr
+sMH
+qHX
+eMx
+jga
+njL
+njL
+biT
+szy
+sfT
+jga
+mPL
+mPL
+fAh
+hSw
+six
+fAh
+fAh
+six
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(56,1,1) = {"
+hjB
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+xUq
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+uSZ
+wID
+wID
+kQX
+lfu
+lfu
+lfu
+lfu
+lfu
+kQX
+gag
+wID
+lcX
+jHb
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+xug
+eFT
+wKJ
+mKI
+jEz
+jEz
+jEz
+jEz
+pUb
+njL
+rJn
+aND
+jEz
+jEz
+jEz
+iMk
+mfF
+njL
+jga
+pOd
+fbu
+gly
+jNo
+iPX
+rkr
+qgZ
+njL
+dvF
+pwO
+njL
+rJn
+duM
+njL
+lUT
+jga
+mPL
+wfJ
+mPL
+wfJ
+mPL
+mPL
+mPL
+wfJ
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(57,1,1) = {"
+vNb
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+cHZ
+dip
+axN
+axN
+axN
+hez
+rFc
+kPB
+kPB
+kPB
+wyn
+tWz
+wID
+wID
+kuo
+fjV
+fjV
+fjV
+fjV
+fjV
+kuo
+wID
+wID
+lcX
+mPL
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+fAh
+mPL
+jga
+psG
+lZo
+psG
+iCh
+pwO
+uQh
+njL
+pwO
+qOI
+qOI
+qOI
+jga
+njL
+tsP
+jHb
+jEz
+jEz
+jEz
+jEz
+jEz
+xug
+wto
+njL
+njL
+pKk
+njL
+njL
+aci
+wKJ
+hdH
+iMk
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(58,1,1) = {"
+vNb
+rIO
+hyI
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+hyI
+rIO
+cHZ
+ixH
+jOT
+jOT
+jOT
+onh
+nrS
+jOT
+jOT
+jOT
+dSe
+tWz
+wID
+spy
+jYX
+oKD
+oKD
+oKD
+oKD
+oKD
+kXa
+ipG
+wID
+lcX
+mPL
+mPL
+mPL
+mPL
+dBD
+mPL
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+dBD
+aND
+xug
+fbQ
+fbQ
+fbQ
+njL
+feD
+njL
+njL
+njL
+njL
+njL
+njL
+jga
+njL
+njL
+mJI
+njL
+njL
+sOd
+njL
+njL
+tRF
+njL
+njL
+dGO
+wIx
+njL
+njL
+biT
+iiz
+sfT
+jga
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(59,1,1) = {"
+vNb
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+cHZ
+ixH
+jOT
+jOT
+jOT
+onh
+nrS
+jOT
+jOT
+jOT
+dSe
+tWz
+wID
+spy
+jYX
+oKD
+nfZ
+oKD
+nfZ
+oKD
+kXa
+ipG
+wID
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+fAh
+mPL
+jga
+eKf
+njL
+njL
+njL
+njL
+feD
+njL
+njL
+njL
+njL
+njL
+rJn
+jga
+mfF
+njL
+mJI
+njL
+njL
+mIk
+njL
+njL
+tRF
+njL
+xAW
+pZQ
+jga
+njL
+rJn
+riL
+njL
+lUT
+jga
+mPL
+hSw
+mPL
+fAh
+mPL
+mPL
+wfJ
+hSw
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(60,1,1) = {"
+vNb
+rIO
+hyI
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+hyI
+rIO
+cHZ
+ixH
+jOT
+jOT
+jOT
+onh
+nrS
+jOT
+jOT
+jOT
+dSe
+tWz
+wID
+spy
+jYX
+oKD
+oKD
+qRD
+oKD
+oKD
+kXa
+ipG
+wID
+lcX
+mPL
+mPL
+dBD
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+jga
+jNu
+njL
+njL
+njL
+njL
+feD
+njL
+njL
+njL
+njL
+njL
+njL
+jga
+iSV
+iSV
+aND
+veL
+jEz
+jEz
+jEz
+jEz
+jEz
+veL
+jEz
+jEz
+sEj
+jEz
+jEz
+jEz
+jEz
+jEz
+iMk
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(61,1,1) = {"
+vNb
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+rIO
+cHZ
+lhP
+bQG
+bQG
+bQG
+avY
+sRJ
+urk
+urk
+urk
+iyW
+tWz
+wID
+spy
+jYX
+oKD
+nfZ
+oKD
+nfZ
+oKD
+kXa
+ipG
+wID
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+dBD
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+jga
+jPz
+tPs
+njL
+tPs
+rJn
+wIx
+njL
+rJn
+wIx
+qOI
+qOI
+qOI
+jga
+tcz
+wAy
+mKI
+xug
+oVg
+bag
+lwT
+wsG
+rhz
+jga
+wOq
+lnX
+aPu
+gTr
+kiB
+oNW
+ygF
+qhl
+jga
+mPL
+wfJ
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(62,1,1) = {"
+hjB
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+xUq
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+fFH
+uSZ
+wID
+spy
+jYX
+oKD
+oKD
+oKD
+oKD
+oKD
+kXa
+ipG
+wID
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+dBD
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+fAh
+mKI
+jEz
+jEz
+jEz
+jEz
+jEz
+iMk
+vfe
+kWQ
+mKI
+jEz
+jEz
+jEz
+iMk
+tcz
+tcz
+jga
+iEl
+dFP
+dFP
+dFP
+dFP
+por
+jga
+jRu
+pFs
+vWR
+pFs
+pFs
+pFs
+pFs
+gii
+jga
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(63,1,1) = {"
+vNb
+gJe
+ncA
+ncA
+ncA
+ncA
+sDx
+sDx
+sDx
+sDx
+jJB
+cHZ
+fLf
+aNh
+aNh
+aNh
+aNh
+hZZ
+hZZ
+hZZ
+hZZ
+qfU
+tWz
+wID
+wID
+wID
+gLF
+gLF
+gLF
+gLF
+gLF
+wID
+wID
+wID
+lcX
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+dBD
+mPL
+mPL
+dBD
+mPL
+mPL
+jga
+jPz
+njL
+njL
+njL
+rJn
+pwO
+njL
+rJn
+pwO
+wZp
+giR
+mtJ
+jga
+mgy
+wAy
+pwO
+pxF
+dFP
+dFP
+dFP
+dFP
+vyk
+jga
+aVe
+kbg
+jwy
+kbg
+vMX
+pFs
+pFs
+iDU
+jga
+mPL
+mPL
+fAh
+mPL
+wfJ
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(64,1,1) = {"
+vNb
+shO
+dYF
+dYF
+dYF
+dYF
+dYF
+dYF
+dYF
+dYF
+qPc
+cHZ
+ipv
+vhu
+vhu
+vhu
+vhu
+vhu
+vhu
+vhu
+vhu
+kzG
+tWz
+jyD
+jyD
+wID
+lgX
+lgX
+lgX
+lgX
+lgX
+wID
+jyD
+jyD
+lcX
+mPL
+mPL
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+fAh
+mPL
+jga
+jNu
+njL
+njL
+njL
+njL
+eKo
+njL
+njL
+yjq
+njL
+njL
+rJn
+jga
+mpH
+tcz
+lKj
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+pwO
+fpT
+ooB
+xlx
+kEs
+vEc
+pFs
+pFs
+ndb
+jga
+mPL
+mPL
+wfJ
+mPL
+mPL
+mPL
+wfJ
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(65,1,1) = {"
+vNb
+shO
+dYF
+dYF
+dYF
+dYF
+dYF
+dYF
+dYF
+dYF
+qPc
+cHZ
+ipv
+vhu
+vhu
+vhu
+vhu
+vhu
+vhu
+vhu
+vhu
+kzG
+tWz
+xUq
+xUq
+wID
+wID
+wID
+wID
+wID
+wID
+wID
+xUq
+xUq
+lcX
+mPL
+mPL
+mPL
+dBD
+mPL
+mPL
+dBD
+mPL
+mPL
+mPL
+mPL
+dBD
+mPL
+mPL
+jga
+eKf
+njL
+njL
+njL
+njL
+eKo
+njL
+njL
+yjq
+njL
+njL
+njL
+jga
+mpH
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+tcz
+kaJ
+pFs
+pFs
+pFs
+pFs
+pFs
+pFs
+pFs
+asG
+jga
+mPL
+mPL
+mPL
+mPL
+mPL
+wfJ
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(66,1,1) = {"
+vNb
+shO
+dYF
+dYF
+dYF
+dYF
+dYF
+dYF
+dYF
+dYF
+qPc
+cHZ
+ipv
+vhu
+vhu
+vhu
+vhu
+vhu
+vhu
+vhu
+vhu
+kzG
+tWz
+xUq
+hRW
+rLk
+rLk
+nUb
+rtp
+wCx
+foN
+kgG
+fcL
+xUq
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+fAh
+mPL
+mPL
+mPL
+mPL
+dBD
+jHb
+pUb
+rht
+rht
+rht
+njL
+eKo
+njL
+njL
+yjq
+njL
+njL
+rJn
+jga
+pCl
+qqR
+gzA
+aMo
+nZn
+pdP
+gzA
+jYQ
+sGP
+wIx
+pFs
+pFs
+pFs
+pFs
+pFs
+pFs
+pFs
+skb
+jga
+mPL
+mPL
+hSw
+mPL
+mPL
+mPL
+ohq
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(67,1,1) = {"
+vNb
+lDH
+pAl
+pAl
+pAl
+pAl
+ctn
+ctn
+ctn
+ctn
+sss
+cHZ
+gOu
+ezi
+ezi
+ezi
+ezi
+pml
+pml
+pml
+pml
+nOx
+tWz
+xUq
+fuq
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+uGN
+xUq
+lcX
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+jga
+wax
+xgb
+wax
+iCh
+wIx
+tPs
+rJn
+wIx
+rSR
+giR
+hnI
+jga
+odP
+uti
+rdj
+lWN
+uPA
+pjo
+yae
+vKh
+kIf
+jga
+sTX
+nKW
+sTX
+kjC
+gTh
+fxa
+coD
+ndb
+jga
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+mPL
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+aGy
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(68,1,1) = {"
+vTR
+wCK
+wCK
+wCK
+wCK
+wCK
+wCK
+wCK
+wCK
+wCK
+wCK
+ssz
+wCK
+wCK
+wCK
+wCK
+wCK
+wCK
+wCK
+wCK
+wCK
+wCK
+jvg
+xUq
+bKE
+tpg
+tpg
+fBO
+rxw
+nGC
+uty
+pZv
+nhS
+xUq
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+jHb
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+sEj
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+sEj
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+jEz
+xug
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+lcX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(69,1,1) = {"
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+swv
+tpg
+tpg
+eSj
+rBD
+mNM
+cYJ
+pFW
+bjW
+xUq
+jyD
+jyD
+jyD
+jyD
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+xoS
+xoS
+xoS
+xoS
+kID
+kID
+kID
+kID
+kID
+xoS
+xoS
+kID
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(70,1,1) = {"
+xUq
+txn
+aZe
+aZe
+aZe
+aZe
+aZe
+iic
+iic
+xUq
+xUq
+mpD
+rtB
+mpD
+xUq
+mpD
+rtB
+mpD
+xUq
+mpD
+rtB
+mpD
+xUq
+xUq
+olF
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+pkT
+xUq
+jyD
+jyD
+jyD
+jyD
+gXj
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+gXj
+vKY
+vKY
+dkl
+gXj
+dGH
+fiK
+fiK
+gXj
+xoS
+nSw
+kIj
+oeN
+xoS
+mDD
+mDD
+mDD
+mDD
+mDD
+mDD
+kID
+xoS
+smW
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(71,1,1) = {"
+xUq
+irV
+aZe
+aZe
+aZe
+aZe
+aZe
+aZe
+iic
+xUq
+xUq
+pst
+rtB
+fva
+xUq
+pst
+rtB
+fva
+xUq
+pst
+rtB
+fva
+xUq
+xUq
+jmK
+tpg
+tpg
+izb
+rCQ
+qyL
+pVF
+etk
+qxD
+xUq
+jyD
+jyD
+jyD
+jyD
+gXj
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+gXj
+pKX
+pKX
+pKX
+gXj
+eeN
+fiK
+fOf
+gXj
+kID
+nrv
+qAW
+qAW
+xoS
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+xoS
+qAW
+qAW
+qAW
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+aad
+njW
+njW
+njW
+njW
+adR
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(72,1,1) = {"
+xUq
+dol
+aZe
+aZe
+aZe
+aZe
+aZe
+aZe
+iic
+xUq
+xUq
+mpD
+rtB
+mpD
+xUq
+mpD
+rtB
+mpD
+xUq
+mpD
+rtB
+mpD
+xUq
+xUq
+qZR
+tpg
+tpg
+tBD
+sog
+bZZ
+wOK
+sCI
+cYU
+xUq
+jyD
+jyD
+jyD
+jyD
+gXj
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+gXj
+uYp
+pKX
+pKX
+dEq
+eDg
+fjA
+gXj
+gXj
+xoS
+fGT
+qAW
+qAW
+piw
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+igW
+qAW
+qAW
+qAW
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(73,1,1) = {"
+xUq
+sRB
+aZe
+aZe
+aZe
+aZe
+aZe
+aZe
+iic
+xUq
+xUq
+xUq
+fgC
+xUq
+xUq
+xUq
+fgC
+xUq
+xUq
+xUq
+fgC
+xUq
+xUq
+xUq
+htZ
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+hen
+xUq
+jyD
+jyD
+jyD
+jyD
+gXj
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+gXj
+pKX
+pKX
+pKX
+gXj
+gXj
+gXj
+gXj
+gXj
+xoS
+fGT
+qAW
+qAW
+xoS
+qAW
+qAW
+dAs
+fGT
+qAW
+fEx
+xoS
+smW
+xoS
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+aHs
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(74,1,1) = {"
+xUq
+mPw
+aZe
+aZe
+aZe
+aZe
+aZe
+iic
+iic
+xUq
+xUq
+ets
+hCF
+ets
+xUq
+ets
+hCF
+ets
+xUq
+ets
+hCF
+ets
+xUq
+xUq
+pDg
+tpg
+tpg
+dyv
+sFo
+irj
+dzo
+xAM
+gIN
+xUq
+jyD
+jyD
+jyD
+jyD
+gXj
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+gXj
+pKX
+pKX
+qTB
+gXj
+gXj
+gXj
+gXj
+gXj
+xoS
+tlX
+qfe
+pHT
+kID
+qAW
+qAW
+fGT
+fGT
+qAW
+qAW
+qAW
+qAW
+vLs
+kID
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+hbO
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(75,1,1) = {"
+xUq
+xUq
+xUq
+xUq
+aZe
+aZe
+xUq
+xUq
+xUq
+xUq
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+ets
+xUq
+dZO
+tpg
+tpg
+bue
+tmi
+mUB
+jVp
+aJn
+wby
+xUq
+jyD
+jyD
+jyD
+jyD
+gXj
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+gXj
+pKX
+pKX
+pKX
+gXj
+eIt
+eIt
+fWB
+gXj
+xoS
+xoS
+kID
+xoS
+xoS
+qAW
+qAW
+fGT
+fGT
+qAW
+qAW
+qAW
+qAW
+vLs
+kID
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(76,1,1) = {"
+xUq
+ets
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+vhk
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+ets
+xUq
+uTd
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+yhS
+xUq
+jyD
+jyD
+jyD
+jyD
+gXj
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+gXj
+pKX
+pKX
+pKX
+dGv
+eNw
+eNw
+gmR
+gXj
+kID
+fEx
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+vLs
+kID
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(77,1,1) = {"
+xUq
+ets
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+vhk
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+ets
+xUq
+std
+tpg
+tpg
+lNy
+tqn
+lof
+oCZ
+tbv
+bSc
+xUq
+jyD
+jyD
+jyD
+jyD
+gXj
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+gXj
+lqJ
+pKX
+pKX
+gXj
+eWw
+eNw
+gva
+gXj
+xoS
+qAW
+qAW
+qAW
+fbe
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+cDm
+kID
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(78,1,1) = {"
+xUq
+ets
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+vhk
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+ets
+xUq
+kvU
+tpg
+tpg
+bBX
+tJM
+tVF
+gVd
+iBQ
+fdm
+xUq
+jyD
+jyD
+jyD
+jyD
+gXj
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+gXj
+pKX
+pKX
+pKX
+gXj
+eXh
+fBQ
+fWB
+gXj
+xoS
+qAW
+qAW
+fGT
+fGT
+fbe
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+cDm
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(79,1,1) = {"
+xUq
+xUq
+xUq
+xUq
+aZe
+aZe
+xUq
+xUq
+xUq
+xUq
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+hCF
+ets
+xUq
+mJv
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+vTC
+xUq
+jyD
+jyD
+jyD
+jyD
+gXj
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+gXj
+pKX
+pKX
+qTB
+gXj
+gXj
+gXj
+gXj
+gXj
+xoS
+qAW
+xlW
+fGT
+fGT
+fbe
+qAW
+qAW
+qAW
+qAW
+qAW
+xoS
+kID
+xoS
+kID
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(80,1,1) = {"
+xUq
+epr
+epr
+epr
+aZe
+aZe
+epr
+epr
+epr
+xUq
+xUq
+ets
+hCF
+hCF
+xUq
+ets
+hCF
+ets
+xUq
+ets
+hCF
+ets
+xUq
+xUq
+fXF
+tpg
+tpg
+hAZ
+uer
+hQs
+eGQ
+syH
+xIK
+xUq
+jyD
+jyD
+jyD
+jyD
+gXj
+jyD
+jyD
+jyD
+jyD
+brx
+jyD
+jyD
+jyD
+jyD
+gXj
+pKX
+pKX
+pKX
+gXj
+eIt
+eIt
+fWB
+gXj
+xoS
+qAW
+qAW
+fGT
+fGT
+fbe
+qAW
+qAW
+qAW
+qAW
+qAW
+iXH
+dKN
+dKN
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(81,1,1) = {"
+xUq
+qUw
+qUw
+qUw
+aZe
+aZe
+qUw
+qUw
+qUw
+xUq
+xUq
+xUq
+fgC
+xUq
+xUq
+xUq
+fgC
+xUq
+xUq
+xUq
+fgC
+xUq
+xUq
+xUq
+inp
+tpg
+tpg
+nYs
+stD
+rUx
+uJJ
+gbp
+uQp
+xUq
+jyD
+jyD
+jyD
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+buC
+gXj
+gXj
+gXj
+gXj
+gXj
+pKX
+pKX
+pKX
+dGv
+eNw
+eNw
+gmR
+gXj
+xoS
+qAW
+qAW
+qAW
+fbe
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+iXH
+qAW
+qAW
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(82,1,1) = {"
+xUq
+qUw
+qUw
+qUw
+aZe
+aZe
+qUw
+qUw
+qUw
+xUq
+xUq
+mpD
+rtB
+mpD
+xUq
+mpD
+rtB
+mpD
+xUq
+mpD
+rtB
+mpD
+xUq
+xUq
+isK
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+xUq
+xUq
+xUq
+xUq
+gXj
+dxr
+iMC
+dxr
+fpk
+pKX
+pKX
+pKX
+bEL
+cPc
+pKX
+pKX
+pKX
+pKX
+pKX
+gXj
+eWw
+eNw
+gva
+gXj
+kID
+fEx
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+lIO
+qAW
+qAW
+kID
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(83,1,1) = {"
+xUq
+qUw
+qUw
+qUw
+aZe
+aZe
+qUw
+qUw
+qUw
+xUq
+xUq
+pst
+rtB
+fva
+xUq
+pst
+rtB
+fva
+xUq
+pst
+rtB
+fva
+xUq
+xUq
+lCb
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+xUq
+nCr
+qOL
+xUq
+gXj
+bDQ
+qvz
+aVF
+gXj
+ijL
+pKX
+pKX
+pKX
+pKX
+pKX
+pKX
+pKX
+pKX
+pKX
+gXj
+eXh
+fBQ
+fWB
+gXj
+kID
+xoS
+kID
+xoS
+kID
+qAW
+qAW
+fGT
+fGT
+qAW
+qAW
+iXH
+qAW
+qAW
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(84,1,1) = {"
+xUq
+pbA
+pbA
+pbA
+aZe
+aZe
+pbA
+pbA
+fqe
+xUq
+xUq
+mpD
+rtB
+mpD
+xUq
+mpD
+rtB
+mpD
+xUq
+mpD
+rtB
+mpD
+xUq
+xUq
+knq
+kDp
+lmC
+pjY
+eRH
+ygK
+xXe
+tpg
+tpg
+xUq
+tpg
+cpC
+xUq
+gXj
+fNO
+gXj
+gXj
+gXj
+pKX
+pKX
+pKX
+pKX
+pKX
+pKX
+pKX
+pKX
+pKX
+qTB
+gXj
+gXj
+gXj
+gXj
+gXj
+kID
+qAW
+qAW
+qAW
+kID
+qAW
+qAW
+fGT
+fGT
+qAW
+qAW
+iXH
+dKN
+dKN
+kID
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(85,1,1) = {"
+xUq
+pbA
+gHj
+aZe
+aZe
+aZe
+aZe
+gHj
+cQQ
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+eSq
+eSq
+xUq
+tpg
+uzy
+xUq
+gXj
+bDQ
+mIq
+aYx
+jrw
+bDQ
+bDQ
+bDQ
+bZG
+bZG
+bZG
+lWK
+pKX
+pKX
+pKX
+gXj
+eIt
+eIt
+fWB
+gXj
+xoS
+qAW
+qAW
+qAW
+kID
+qAW
+qAW
+fGT
+fGT
+qAW
+fEx
+xoS
+xoS
+xoS
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+njW
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(86,1,1) = {"
+xUq
+pbA
+tnx
+aZe
+aZe
+aZe
+aZe
+tnx
+pbA
+xUq
+aEe
+rtB
+aEe
+xUq
+aMO
+cHF
+cHF
+cHF
+cHF
+cHF
+cHF
+cHF
+aMO
+xUq
+jeA
+kKc
+lnj
+pqC
+ufB
+piN
+xUq
+tpg
+tpg
+xUq
+tpg
+mwa
+xUq
+gXj
+bDQ
+aBv
+bmW
+gXj
+bvW
+bDQ
+bDQ
+clX
+clX
+cWL
+lWK
+pKX
+pKX
+pKX
+dGv
+eNw
+eNw
+gmR
+gXj
+kID
+qAW
+mgR
+qAW
+piw
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+igW
+qAW
+qAW
+qAW
+wed
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(87,1,1) = {"
+xUq
+xUq
+xUq
+xUq
+bmO
+bmO
+xUq
+xUq
+xUq
+xUq
+aEe
+rtB
+aEe
+xUq
+aXk
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+aXk
+xUq
+wiz
+tpg
+tpg
+tpg
+tpg
+tpg
+eSq
+tpg
+tpg
+eSq
+tpg
+rfl
+xUq
+gXj
+bDQ
+gXj
+gXj
+gXj
+gTB
+bDQ
+bDQ
+cnM
+cRR
+dbc
+lWK
+pKX
+pKX
+pKX
+gXj
+eWw
+eNw
+gva
+gXj
+kID
+qAW
+qAW
+qAW
+xoS
+qAW
+qAW
+qAW
+qAW
+qAW
+qAW
+xoS
+qAW
+qAW
+qAW
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+vru
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(88,1,1) = {"
+xUq
+aZe
+aZe
+aZe
+aZe
+aZe
+aZe
+aZe
+ajr
+xUq
+aEe
+rtB
+aEe
+xUq
+aXk
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+aXk
+xUq
+fsd
+tpg
+tpg
+tpg
+tpg
+tpg
+eSq
+tpg
+tpg
+eSq
+tpg
+kNk
+xUq
+gXj
+bDQ
+aKp
+bne
+gXj
+nnr
+bDQ
+bDQ
+cMS
+fBM
+fBM
+lWK
+lIE
+fGU
+qTB
+gXj
+eXh
+fBQ
+fWB
+gXj
+xoS
+qAW
+qAW
+qAW
+xoS
+pbl
+pbl
+pbl
+pbl
+pbl
+pbl
+xoS
+kID
+xoS
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(89,1,1) = {"
+xUq
+fdk
+cCR
+aZe
+aZe
+aZe
+aZe
+aZe
+bbX
+xUq
+aEe
+rtB
+aEe
+xUq
+aXk
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+aXk
+xUq
+iJd
+nOO
+vzX
+xYb
+upL
+pbI
+xUq
+tpg
+tpg
+xUq
+juL
+nIO
+xUq
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+gXj
+xoS
+xoS
+xoS
+xoS
+xoS
+kID
+xoS
+kID
+xoS
+kID
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+xoS
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+ozD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(90,1,1) = {"
+xUq
+jjA
+kXq
+ved
+tav
+aZe
+aZe
+aZe
+ckB
+xUq
+aEe
+rtB
+aEe
+xUq
+arh
+arh
+arh
+cHF
+arh
+cHF
+arh
+arh
+arh
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+eSq
+eSq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(91,1,1) = {"
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+fgC
+xUq
+xUq
+arh
+arh
+arh
+ctP
+arh
+ctP
+arh
+arh
+arh
+xUq
+sQw
+sQw
+sQw
+psf
+uGr
+xUq
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+xUq
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(92,1,1) = {"
+xUq
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+buD
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+buD
+xUq
+iid
+kPT
+lqe
+tpg
+tpg
+eSq
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+eSq
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(93,1,1) = {"
+xUq
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+buD
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+buD
+xUq
+tpg
+tpg
+tpg
+tpg
+tpg
+eSq
+tpg
+tpg
+tpg
+tpg
+tpg
+tpg
+eSq
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(94,1,1) = {"
+xUq
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+buD
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+buD
+xUq
+tpg
+tpg
+tpg
+tpg
+tpg
+xUq
+xUq
+xUq
+eSq
+xUq
+xUq
+xUq
+xUq
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(95,1,1) = {"
+xUq
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+aMO
+ctP
+ctP
+ctP
+ctP
+ctP
+ctP
+ctP
+aMO
+xUq
+tpg
+tpg
+tpg
+tpg
+tpg
+xUq
+nGO
+mmI
+tpg
+qBc
+bie
+jfH
+xUq
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(96,1,1) = {"
+xUq
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+gZh
+kRS
+lxj
+tpg
+tpg
+xUq
+mWK
+tpg
+tpg
+pCb
+tpg
+iGd
+xUq
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(97,1,1) = {"
+xUq
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+bXt
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+fYa
+fYa
+fYa
+tpg
+tpg
+xUq
+tub
+tpg
+tpg
+pCM
+tpg
+geL
+xUq
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(98,1,1) = {"
+xUq
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+bXt
+arh
+arh
+arh
+cHF
+cHF
+cHF
+cHF
+arh
+xUq
+xUq
+xUq
+xUq
+hnU
+xUq
+xUq
+cst
+tpg
+tpg
+tpg
+tpg
+goP
+xUq
+bWl
+bWl
+ovJ
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+qFt
+"}
+(99,1,1) = {"
+xUq
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+ctP
+ctP
+cHF
+arh
+cKr
+cKr
+cKr
+cKr
+arh
+xUq
+lbQ
+iru
+lKO
+tpg
+van
+xUq
+fpr
+tpg
+tpg
+tpg
+tpg
+kDF
+xUq
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+iEI
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(100,1,1) = {"
+xUq
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+ctP
+ctP
+cKr
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+rLk
+tpg
+tpg
+tpg
+vlb
+xUq
+gaV
+rOQ
+tpg
+soX
+gRt
+jYJ
+xUq
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+iBH
+"}
+(101,1,1) = {"
+xUq
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+ctP
+ctP
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+kqD
+tpg
+tpg
+tpg
+vKb
+xUq
+xUq
+xUq
+eSq
+xUq
+xUq
+xUq
+xUq
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+bSk
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+"}
+(102,1,1) = {"
+xUq
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+ctP
+ctP
+cLD
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+uTy
+tpg
+tpg
+tpg
+tpg
+xUq
+sao
+pal
+tpg
+sSo
+nkf
+iOe
+xUq
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+abH
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+"}
+(103,1,1) = {"
+xUq
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+ctP
+ctP
+cVo
+arh
+cLD
+cLD
+cLD
+cLD
+arh
+xUq
+oHf
+tpg
+tpg
+tpg
+wkc
+xUq
+dAK
+tpg
+tpg
+tpg
+tpg
+tpg
+xUq
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+"}
+(104,1,1) = {"
+xUq
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+bXt
+arh
+arh
+arh
+cVo
+cVo
+cVo
+cVo
+arh
+xUq
+lUs
+tpg
+tpg
+tpg
+wIS
+xUq
+hCT
+tpg
+tpg
+pcd
+tpg
+wrO
+xUq
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+"}
+(105,1,1) = {"
+xUq
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+bXt
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+arh
+xUq
+fEu
+bBn
+pkN
+pyW
+fEu
+xUq
+rVZ
+cOg
+veV
+qkt
+cnx
+mKQ
+xUq
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+dJg
+bWl
+bWl
+bWl
+bWl
+jxJ
+bWl
+bWl
+bWl
+bWl
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+"}
+(106,1,1) = {"
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+xUq
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+"}
+(107,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+axm
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+"}
+(108,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+"}
+(109,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+"}
+(110,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+jyD
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+lAC
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+"}
+(111,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+"}
+(112,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+"}
+(113,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+"}
+(114,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+sWL
+"}
+(115,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(116,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(117,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tXH
+vaj
+taf
+uoL
+lHA
+jyD
+jyD
+jyD
+tXH
+vaj
+taf
+uoL
+lHA
+jyD
+"}
+(118,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+wxZ
+wxZ
+wxZ
+wxZ
+wxZ
+wxZ
+wxZ
+wxZ
+lYG
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iLB
+nOF
+rBR
+iRo
+vHV
+jgZ
+bJA
+jyD
+iLB
+nOF
+kec
+iRo
+vHV
+jgZ
+bJA
+"}
+(119,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+wxZ
+riT
+oEi
+oRT
+pfB
+qDg
+qDg
+pfB
+oRT
+oEi
+tIZ
+wxZ
+lYG
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+aQI
+jhh
+kVI
+pVo
+kVI
+vcj
+lia
+jyD
+aQI
+ijy
+kVI
+dgY
+kVI
+vcj
+lia
+"}
+(120,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+riT
+lDs
+oAF
+oEt
+qDg
+pgJ
+qDg
+qDg
+pgJ
+qDg
+pYy
+qdx
+lDs
+tIZ
+lYG
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cth
+lSd
+kVI
+xCr
+kVI
+rnO
+fFT
+jyD
+cth
+fLE
+kVI
+xCr
+kVI
+rnO
+fFT
+"}
+(121,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+riT
+lDs
+lDs
+lDs
+oHr
+qDg
+qDg
+qDg
+qDg
+qDg
+qDg
+pZL
+lDs
+lDs
+lDs
+tIZ
+lYG
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jgy
+kxj
+kVI
+bVa
+kVI
+ozO
+iqu
+jyD
+jgy
+qXw
+kVI
+vnF
+kVI
+ozO
+iqu
+"}
+(122,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+riT
+ohS
+lDs
+opJ
+oAK
+oIg
+qDg
+qDg
+qDg
+qDg
+qDg
+qDg
+qcp
+oAK
+qsJ
+lDs
+ohS
+tIZ
+lYG
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iVp
+dBz
+iOE
+xoc
+iOE
+lxo
+dUX
+jyD
+iVp
+dBz
+iOE
+xoc
+iOE
+lxo
+dUX
+"}
+(123,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+stT
+stT
+stT
+stT
+qDg
+qDg
+qDg
+qDg
+qDg
+qDg
+qDg
+qDg
+qDg
+qDg
+stT
+stT
+stT
+stT
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+mAQ
+wdp
+sVA
+khP
+ist
+jyD
+jyD
+jyD
+mAQ
+wdp
+sVA
+khP
+ist
+jyD
+"}
+(124,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+nIc
+krY
+hgF
+oqW
+stT
+stT
+qDg
+qDg
+qDg
+qDg
+qDg
+qDg
+stT
+stT
+omh
+oIH
+qPX
+pSB
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(125,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+riT
+shN
+shN
+shN
+shN
+omh
+oIH
+stT
+stT
+stT
+stT
+stT
+stT
+omh
+pSB
+shN
+shN
+shN
+shN
+tIZ
+lYG
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tXH
+vaj
+taf
+uoL
+lHA
+jyD
+jyD
+jyD
+tXH
+vaj
+taf
+uoL
+lHA
+jyD
+"}
+(126,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+stT
+stT
+stT
+stT
+oRT
+shN
+shN
+qDg
+qDg
+qDg
+qDg
+qDg
+qDg
+shN
+shN
+oRT
+stT
+stT
+stT
+stT
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iLB
+nOF
+hFH
+iRo
+vHV
+jgZ
+bJA
+jyD
+iLB
+nOF
+ueG
+iRo
+vHV
+jgZ
+bJA
+"}
+(127,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+wxZ
+wxZ
+wxZ
+wxZ
+wxZ
+rbx
+jyD
+jyD
+jyD
+jyD
+xvO
+nIc
+nPM
+omh
+nIc
+stT
+stT
+stT
+qDg
+qDg
+qDg
+qDg
+qDg
+qDg
+stT
+stT
+stT
+oBA
+pSB
+oqW
+aNa
+xvO
+jyD
+jyD
+jyD
+jyD
+dqw
+wxZ
+wxZ
+wxZ
+wxZ
+wxZ
+lYG
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+aQI
+ulZ
+kVI
+cCy
+kVI
+vcj
+lia
+jyD
+aQI
+nmy
+kVI
+mbp
+kVI
+vcj
+lia
+"}
+(128,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+riT
+jFy
+uiW
+pHf
+uiW
+lKT
+veF
+veF
+jyD
+jyD
+jyD
+xvO
+shN
+shN
+shN
+shN
+pSB
+oBA
+oqW
+stT
+stT
+stT
+stT
+stT
+stT
+pSB
+aNa
+hgF
+shN
+shN
+shN
+shN
+xvO
+jyD
+jyD
+jyD
+veF
+veF
+thb
+tWj
+unC
+tWj
+uOr
+tIZ
+lYG
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+cth
+cGp
+kVI
+xCr
+kVI
+gur
+fFT
+jyD
+cth
+oIl
+kVI
+xCr
+kVI
+rnO
+fFT
+"}
+(129,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+riT
+jtt
+mVv
+wwc
+wwc
+wwc
+vQj
+kEe
+veF
+veF
+jyD
+jyD
+xZJ
+qDg
+qDg
+qDg
+qDg
+shN
+oBG
+shN
+qDg
+qDg
+qDg
+qDg
+qDg
+qDg
+shN
+shN
+shN
+qDg
+qDg
+qDg
+qDg
+xZJ
+jyD
+jyD
+veF
+veF
+sNs
+vVh
+vVh
+vVh
+vVh
+vVh
+isY
+tIZ
+lYG
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jgy
+qgT
+kVI
+aFj
+kVI
+ozO
+iqu
+jyD
+jgy
+fdn
+kVI
+jFI
+kVI
+ozO
+iqu
+"}
+(130,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+riT
+jhp
+nqO
+jFZ
+wwc
+wwc
+wwc
+vQj
+mkc
+nrJ
+veF
+veF
+veF
+veF
+pfB
+pfB
+oRT
+qDg
+qDg
+qDg
+qDg
+qDg
+qDg
+phv
+puv
+qDg
+qDg
+qDg
+qDg
+qDg
+qDg
+oRT
+pfB
+pfB
+veF
+veF
+veF
+veF
+oCg
+vVh
+uOx
+onZ
+uom
+pUB
+uOx
+vVh
+vMy
+tIZ
+lYG
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iVp
+dBz
+iOE
+xoc
+iOE
+lxo
+dUX
+jyD
+iVp
+dBz
+iOE
+xoc
+iOE
+lxo
+dUX
+"}
+(131,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+iFw
+joi
+jtK
+jGQ
+wwc
+wwc
+wwc
+vQj
+mkf
+wwc
+mZl
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+oYE
+oYE
+veF
+veF
+oYE
+oYE
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+vVh
+vVh
+rSv
+vVh
+vVh
+tkk
+wzV
+upB
+pLz
+uQu
+vVh
+vVh
+isY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+mAQ
+wdp
+sVA
+khP
+ist
+jyD
+jyD
+jyD
+mAQ
+wdp
+sVA
+khP
+ist
+jyD
+"}
+(132,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+iGV
+wwc
+juf
+wwc
+wwc
+wwc
+wwc
+vQj
+mkf
+wwc
+hLQ
+veF
+jyD
+jyD
+veF
+veF
+veF
+veF
+veF
+aAA
+jnQ
+wwc
+wwc
+nsF
+pwg
+wwc
+wwc
+ugB
+aAA
+veF
+veF
+veF
+veF
+veF
+rms
+rsE
+rBz
+vaO
+vVh
+vVh
+vVh
+tXX
+pvh
+uFa
+vVh
+vVh
+vVh
+vWN
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(133,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+iIJ
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+knx
+wwc
+pVy
+veF
+veF
+veF
+veF
+qpw
+rxp
+pLV
+otJ
+jvL
+vQj
+wwc
+wwc
+pjz
+eFy
+wwc
+wwc
+pXI
+jvL
+qtI
+qDR
+qQU
+uEN
+veF
+veF
+veF
+veF
+veF
+spt
+vVh
+vVh
+tXX
+onZ
+uFa
+vVh
+vVh
+vVh
+wcl
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(134,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+iIV
+jop
+jrZ
+hMK
+wwc
+wwc
+wwc
+vQj
+mlt
+nFY
+veF
+veF
+uEN
+nxP
+wwc
+wwc
+xcy
+wwc
+xUD
+aEO
+vQj
+wwc
+wwc
+nwJ
+pwW
+wwc
+wwc
+pXI
+qdC
+nxX
+wwc
+wwc
+qZw
+cLA
+rmG
+rsL
+veF
+veF
+veF
+vVh
+vVh
+tXX
+pvh
+uFa
+vVh
+vVh
+vVh
+oJr
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(135,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+vGv
+vGv
+juo
+pXI
+wwc
+wwc
+wwc
+rje
+kEe
+veF
+qpw
+pje
+jvL
+tqu
+hRV
+wwc
+wwc
+wwc
+bPo
+tqu
+vQj
+wwc
+wwc
+wRd
+pxe
+wwc
+wwc
+pXI
+qeA
+cLA
+wwc
+kWm
+qdC
+oua
+wwc
+xcy
+erl
+rUh
+veF
+vVh
+vVh
+vVh
+vVh
+vVh
+vVh
+vVh
+vVh
+isY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(136,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+uIh
+joR
+mxE
+jHp
+hMK
+wwc
+wwc
+wwc
+kSA
+mGf
+wwc
+wwc
+wwc
+wwc
+wwc
+uEN
+ngp
+wwc
+ovW
+wwc
+vQj
+wwc
+wwc
+nwJ
+pyu
+wwc
+wwc
+pXI
+wwc
+wwc
+wwc
+wwc
+wwc
+rlj
+wwc
+wwc
+xUD
+rWg
+xcy
+sQv
+vVh
+vVh
+vVh
+vVh
+uYq
+dkV
+vVh
+tWj
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(137,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+uIh
+uIh
+uIh
+jHs
+wwc
+wwc
+wwc
+veF
+mmx
+rje
+wwc
+wwc
+ngp
+uEN
+wwc
+xUD
+kWm
+wwc
+wwc
+wwc
+vQj
+wwc
+wwc
+gAP
+pwg
+wwc
+wwc
+pXI
+wwc
+tko
+mBa
+pje
+wwc
+wwc
+wwc
+uEN
+cLA
+saI
+mVv
+wwc
+veF
+vVh
+vVh
+vVh
+uZf
+uFa
+vVh
+oCg
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(138,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xZJ
+iKj
+uIh
+uIh
+uIh
+kbD
+kEe
+kSA
+wwc
+wwc
+wwc
+rje
+wwc
+ngY
+nxX
+wwc
+tqu
+opl
+wwc
+wwc
+wwc
+vQj
+wwc
+wwc
+pkV
+pzt
+wwc
+wwc
+pXI
+ovW
+oua
+nxX
+wwc
+wwc
+wwc
+wwc
+wwc
+ovW
+mVv
+wwc
+wwc
+jUg
+sQv
+vVh
+uFj
+tiP
+vVh
+vVh
+oJr
+xZJ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(139,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+udp
+uIh
+jMf
+mxE
+veF
+wwc
+hMK
+wwc
+wwc
+wwc
+rje
+tqu
+nzi
+erl
+erl
+erl
+xcy
+vQj
+lUG
+lUG
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+lUG
+lUG
+pXI
+uEN
+erl
+xcy
+qZw
+jvL
+wwc
+mVv
+wwc
+wwc
+wwc
+rcV
+xcy
+veF
+veF
+uZr
+vvt
+vMK
+veF
+veF
+veF
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(140,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+uIh
+uIh
+veF
+juC
+wwc
+wwc
+hMK
+wwc
+wwc
+wwc
+rje
+wwc
+wwc
+vQj
+lUG
+lUG
+lUG
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+lUG
+lUG
+lUG
+pXI
+rlI
+rnU
+mVv
+wwc
+wwc
+wwc
+rcV
+wwc
+tqu
+uqR
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(141,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+veF
+veF
+veF
+pje
+wwc
+erl
+wwc
+hMK
+wwc
+wwc
+wwc
+rje
+lUG
+lUG
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+lUG
+lUG
+mVv
+wwc
+wwc
+wwc
+rcV
+wwc
+erl
+aEO
+usK
+veF
+veF
+veF
+veF
+wgK
+wyS
+wNv
+wUM
+xlZ
+xOp
+veF
+veF
+veF
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(142,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+veF
+kdE
+mBa
+wwc
+jQL
+kjt
+wwc
+hMK
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+rcV
+mBa
+wwc
+wwc
+ubs
+wwc
+uHY
+veF
+veF
+veF
+whE
+uZN
+uZN
+uZN
+uZN
+uZN
+ygw
+uZN
+uZN
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(143,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+wxZ
+wxZ
+wxZ
+wxZ
+wxZ
+lYG
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+veF
+kei
+kEO
+wwc
+xUD
+tqu
+wwc
+wwc
+hMK
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+rcV
+wwc
+opl
+qZw
+wwc
+wwc
+wwc
+uIl
+veF
+veF
+veF
+wmM
+wzd
+kCK
+wVf
+uZN
+uZN
+uZN
+uZN
+uZN
+vZH
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+bAQ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(144,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+wxZ
+riT
+fjI
+hjl
+hjl
+hjl
+fjI
+tIZ
+wxZ
+lYG
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+veF
+veF
+keA
+kEQ
+wwc
+uEN
+mnV
+vQj
+lUG
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+lUG
+sxL
+sRQ
+xcy
+wwc
+uuz
+jvL
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+xmU
+uZN
+uZN
+uZN
+ccG
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(145,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+dqw
+wxZ
+riT
+fjI
+uaY
+gMB
+hjl
+hjl
+hjl
+rsf
+uaY
+fjI
+tIZ
+lYG
+jyD
+jyD
+jyD
+veF
+veF
+veF
+xcy
+wwc
+wwc
+wwc
+wwc
+vQj
+lUG
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+aAA
+oTp
+aAA
+wwc
+wwc
+aAA
+oTp
+aAA
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+lUG
+pXI
+wwc
+wwc
+tko
+nxX
+vaO
+veF
+veF
+won
+wAv
+wAv
+wVM
+uZN
+uZN
+uZN
+uZN
+uZN
+vZH
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(146,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+veF
+veF
+ezE
+uaY
+uaY
+uaY
+uaY
+uaY
+uaY
+uaY
+uaY
+uaY
+uaY
+ezE
+xZJ
+jyD
+jyD
+jyD
+veF
+veF
+veF
+uEN
+wwc
+tqu
+wwc
+vQj
+lUG
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+erl
+qjR
+wxZ
+wxZ
+hSC
+hSC
+rbx
+plJ
+plJ
+pIX
+hSC
+wxZ
+wxZ
+wxZ
+lYG
+erl
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+lUG
+pXI
+wwc
+kWm
+wwc
+ver
+veF
+veF
+uZN
+uZN
+uZN
+uZN
+uZN
+uZN
+uZN
+uZN
+mSo
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(147,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+duF
+yfA
+kjL
+uaY
+uaY
+uaY
+dlx
+fDu
+hyA
+uaY
+dlx
+fDu
+hyA
+uaY
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+tqf
+xUD
+tko
+wwc
+vQj
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+erl
+qjR
+lnV
+xiw
+bsQ
+bUG
+oWa
+cFi
+qDg
+qDg
+dcD
+oWa
+bUG
+bsQ
+xiw
+tIZ
+lYG
+erl
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+pXI
+wwc
+wwc
+qZw
+qdC
+veF
+veF
+uZN
+uZN
+uZN
+uZN
+uZN
+uZN
+ygW
+vCS
+rIH
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(148,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+wxZ
+wxZ
+wxZ
+wxZ
+arf
+veF
+tkG
+ugn
+veF
+uaY
+uaY
+uaY
+uaY
+uaY
+uaY
+uaY
+uaY
+uaY
+uaY
+uaY
+veF
+tkG
+ydI
+veF
+tkG
+ydI
+veF
+veF
+jPu
+kjq
+cue
+vQj
+lUG
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+aAA
+qjR
+lnV
+jyD
+xvO
+bMW
+oKU
+oXT
+cFi
+qDg
+qDg
+dcD
+oXT
+rST
+bMW
+xvO
+jyD
+tIZ
+lYG
+aAA
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+lUG
+sxL
+mBa
+ngY
+veY
+veF
+veF
+wpY
+wpY
+wpY
+wWC
+uZN
+uZN
+uZN
+uZN
+mNz
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(149,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+riT
+tGu
+ebh
+tGu
+tGu
+cos
+veF
+veF
+veF
+veF
+eBL
+eBL
+veF
+fnq
+xKa
+ghC
+gGT
+fjI
+fnq
+xKa
+hfk
+veF
+eLm
+yfA
+veF
+eLm
+yfA
+veF
+juC
+wwc
+wwc
+wwc
+vQj
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+qjR
+lnV
+jyD
+jyD
+xvO
+bMW
+bXY
+oZu
+cFi
+qDg
+qDg
+dcD
+rfc
+bXY
+bMW
+xvO
+jyD
+jyD
+tIZ
+lYG
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+sYp
+uvQ
+uvQ
+uvQ
+vwJ
+veF
+veF
+veF
+veF
+veF
+xni
+uZN
+uZN
+uZN
+hTB
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(150,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+riT
+aVj
+bai
+bai
+bai
+chW
+bai
+veF
+duF
+yfA
+kjL
+hjl
+hjl
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+kjL
+veF
+veF
+kjL
+veF
+pje
+wwc
+wwc
+wwc
+vQj
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+erl
+xvO
+jyD
+jyD
+jyD
+xvO
+oCr
+bMW
+bMW
+daG
+qDg
+qDg
+pKK
+bMW
+bMW
+qfy
+xvO
+jyD
+jyD
+jyD
+xvO
+erl
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+vMT
+uZN
+uZN
+uZN
+wWX
+uZN
+uZN
+uZN
+uZN
+nyD
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(151,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+aHX
+pMV
+pMV
+bAl
+pMV
+pMV
+aHX
+veF
+tkG
+ugn
+veF
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+veF
+jvL
+jQL
+kjt
+arz
+vQj
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+qjR
+lnV
+jyD
+jyD
+jyD
+xvO
+oCw
+bMW
+coa
+bXY
+oXT
+pAk
+pLq
+coa
+bMW
+oCw
+xvO
+jyD
+jyD
+jyD
+tIZ
+lYG
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+vMT
+uZN
+uZN
+uZN
+wWX
+uZN
+uZN
+yhy
+aSD
+efz
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(152,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+tue
+tue
+tue
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+arf
+xvO
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+cpK
+veF
+veF
+veF
+veF
+hjl
+hjl
+qds
+hjl
+hjl
+qds
+hjl
+hjl
+hjl
+hjl
+hjl
+qds
+hjl
+hjl
+qds
+hjl
+hjl
+veF
+uEN
+jRw
+kjw
+wwc
+vQj
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+xvO
+jyD
+jyD
+jyD
+jyD
+xvO
+oCw
+bMW
+coa
+phr
+pmM
+pDL
+msd
+coa
+bMW
+oCw
+xvO
+jyD
+jyD
+jyD
+jyD
+xvO
+wwc
+wwc
+wwc
+wwc
+wwc
+wwc
+ubS
+lUG
+lUG
+lUG
+bsp
+veF
+wqK
+wFH
+wPr
+veF
+uZN
+uZN
+uZN
+uZN
+uZN
+fyH
+buo
+uZN
+buo
+buo
+uZN
+buo
+uZN
+buo
+uZN
+veF
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(153,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+tue
+tue
+jyD
+jyD
+jyD
+jyD
+tte
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+riT
+tGu
+xvO
+aIN
+aWd
+pMV
+bAy
+pMV
+ckg
+crq
+veF
+duF
+yfA
+kjL
+hjl
+hjl
+veF
+veF
+kjL
+veF
+veF
+kjL
+veF
+veF
+kjL
+veF
+veF
+kjL
+veF
+veF
+kjL
+veF
+xcy
+jSE
+wwc
+wwc
+kSQ
+lLK
+lLK
+mHq
+lLK
+lLK
+erl
+xvO
+jyD
+jyD
+jyD
+jyD
+xZJ
+oCw
+bMW
+bMW
+bMW
+bMW
+bMW
+bMW
+bMW
+bMW
+oCw
+xZJ
+jyD
+jyD
+jyD
+jyD
+xvO
+erl
+rEo
+rEo
+spW
+rEo
+rEo
+sxL
+wwc
+wwc
+wwc
+wwc
+veF
+jpm
+uZN
+uZN
+veF
+uZN
+uZN
+uZN
+uZN
+uZN
+jVT
+kYQ
+ggH
+ggH
+aRC
+aRC
+lju
+lju
+quo
+quo
+veF
+veF
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(154,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tte
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+riT
+tGu
+pMV
+xvO
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+veF
+tkG
+ugn
+veF
+hjl
+hjl
+veF
+ugn
+yfA
+veF
+ugn
+yfA
+veF
+ugn
+yfA
+veF
+ugn
+yfA
+veF
+ugn
+yfA
+veF
+veF
+veF
+veF
+veF
+veF
+wYz
+wYz
+veF
+wYz
+wYz
+qjR
+lnV
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+oMk
+pbS
+rZx
+bMW
+bMW
+pLE
+pVm
+oMk
+veF
+veF
+jyD
+jyD
+jyD
+jyD
+tIZ
+lYG
+mWs
+mWs
+veF
+mWs
+mWs
+veF
+wwc
+wwc
+wwc
+ryi
+veF
+veF
+veF
+veF
+veF
+xps
+xOV
+uZN
+uZN
+uZN
+xba
+kYQ
+ggH
+ggH
+aRC
+aRC
+lju
+lju
+quo
+quo
+veF
+jyD
+veF
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(155,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tte
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+riT
+pMV
+pMV
+pMV
+xvO
+pMV
+pMV
+pMV
+bBg
+pMV
+pMV
+pMV
+veF
+veF
+veF
+veF
+hjl
+hjl
+veF
+tkG
+pIm
+veF
+tkG
+pIm
+veF
+tkG
+pIm
+veF
+tkG
+pIm
+veF
+tkG
+pIm
+veF
+aAA
+jUg
+wwc
+kGa
+veF
+lPh
+lUG
+nHg
+lUG
+lUG
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+veF
+veF
+xIA
+xIA
+veF
+veF
+veF
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+rFn
+rFn
+sso
+sRT
+tlV
+veF
+loD
+bqa
+xcy
+wwc
+veF
+olP
+olP
+olP
+olP
+olP
+olP
+uZN
+uZN
+uZN
+jVT
+kYQ
+ggH
+ggH
+aRC
+aRC
+lju
+lju
+quo
+quo
+veF
+jyD
+jyD
+veF
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(156,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tte
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+gtq
+pMV
+nXm
+pMV
+xvO
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+veF
+duF
+yfA
+kjL
+hjl
+hjl
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+jwT
+wwc
+wwc
+wwc
+kVm
+wwc
+wwc
+wwc
+wwc
+wwc
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xiw
+peg
+bMW
+bMW
+bMW
+bMW
+aOB
+xiw
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+ybJ
+ybJ
+ybJ
+ybJ
+tmL
+veF
+veF
+veF
+veF
+uIu
+veF
+olP
+olP
+olP
+olP
+olP
+olP
+uZN
+uZN
+uZN
+jVT
+kYQ
+ggH
+ggH
+aRC
+aRC
+lju
+lju
+quo
+quo
+veF
+jyD
+jyD
+jyD
+veF
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(157,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+pMV
+pMV
+pMV
+pMV
+xvO
+aOd
+vTj
+pMV
+bDt
+pMV
+clx
+ctN
+veF
+tkG
+ugn
+veF
+hjl
+hjl
+veF
+tkG
+ydI
+veF
+tkG
+ydI
+veF
+tkG
+ydI
+veF
+tkG
+ydI
+veF
+tkG
+ydI
+veF
+jym
+jUn
+kkR
+kHx
+pRk
+wwc
+hMK
+wwc
+rcV
+hMK
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+pfs
+bMW
+bMW
+bMW
+bMW
+pXf
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+ybJ
+sbx
+ybJ
+rQK
+ybJ
+veF
+uwv
+uIu
+wwc
+wwc
+veF
+olP
+olP
+olP
+olP
+olP
+olP
+uZN
+uZN
+uZN
+jVT
+kYQ
+ggH
+ggH
+aRC
+aRC
+lju
+lju
+quo
+quo
+veF
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+jyD
+jyD
+jyD
+jyD
+"}
+(158,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+gtq
+pMV
+nXm
+pMV
+xvO
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+veF
+veF
+veF
+veF
+eCq
+hjl
+veF
+eLm
+yfA
+veF
+eLm
+yfA
+veF
+eLm
+yfA
+veF
+eLm
+yfA
+veF
+eLm
+yfA
+veF
+pje
+wwc
+kld
+jRw
+kVV
+vQj
+wwc
+rcV
+mVv
+pXI
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+coa
+pBW
+poE
+nnO
+pLZ
+coa
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+xmH
+ybJ
+ryN
+ybJ
+tnf
+veF
+veF
+veF
+vfC
+ryi
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+jyD
+jyD
+jyD
+"}
+(159,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+tue
+tue
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+pMV
+pMV
+pMV
+pMV
+xvO
+aOV
+pMV
+pMV
+bJv
+pMV
+pMV
+aOV
+veF
+duF
+yfA
+kjL
+hjl
+hjl
+veF
+veF
+kjL
+veF
+veF
+kjL
+veF
+veF
+kjL
+veF
+veF
+kjL
+veF
+veF
+kjL
+veF
+jzk
+jUn
+jzk
+jzk
+pRk
+lPx
+lUG
+mVv
+wwc
+pXI
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tIZ
+wxZ
+wxZ
+wxZ
+wxZ
+wxZ
+wxZ
+riT
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+ybJ
+rQj
+ybJ
+rQj
+tmL
+veF
+uwv
+uIu
+wwc
+wwc
+veF
+wCQ
+eZS
+wCQ
+veF
+wCQ
+eZS
+wCQ
+veF
+wCQ
+eZS
+wCQ
+veF
+hld
+hld
+hld
+hld
+aoU
+cjZ
+pgx
+ldc
+veF
+veF
+cjZ
+cjZ
+cjZ
+cjZ
+veF
+jyD
+jyD
+jyD
+"}
+(160,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+gtq
+pMV
+nXm
+pMV
+xZJ
+aPa
+aPa
+bdA
+bJR
+bJR
+cmZ
+elp
+veF
+tkG
+ugn
+veF
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+hjl
+veF
+jAi
+wwc
+knx
+wwc
+pRk
+wwc
+wwc
+wwc
+wwc
+wwc
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+ybJ
+ybJ
+ybJ
+ybJ
+tmL
+veF
+veF
+veF
+vfC
+ryi
+veF
+qpU
+cjZ
+rEy
+veF
+qpU
+cjZ
+rEy
+veF
+qpU
+cjZ
+rEy
+veF
+xtF
+xtF
+xtF
+xtF
+gmw
+cjZ
+cjZ
+cjZ
+veF
+veF
+yiM
+cjZ
+cjZ
+yiM
+veF
+jyD
+jyD
+jyD
+"}
+(161,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+tue
+tue
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+cxA
+veF
+veF
+veF
+veF
+hjl
+hjl
+hjl
+qds
+hjl
+hjl
+hjl
+hjl
+hjl
+qds
+hjl
+hjl
+hjl
+hjl
+qds
+hjl
+hjl
+veF
+jAX
+wwc
+kph
+wwc
+pRk
+lLK
+lLK
+mHq
+lLK
+lLK
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+rFQ
+scs
+swR
+sSY
+sSY
+veF
+uwv
+uIu
+wwc
+wwc
+veF
+xZL
+cjZ
+bip
+veF
+xZL
+cjZ
+bip
+veF
+xZL
+cjZ
+bip
+veF
+xtF
+xtF
+xtF
+xtF
+xaM
+cjZ
+cjZ
+cjZ
+veF
+veF
+cjZ
+cjZ
+cjZ
+cjZ
+veF
+jyD
+jyD
+jyD
+"}
+(162,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+tue
+tue
+tue
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+gtq
+pMV
+nXm
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+kty
+pMV
+czl
+veF
+duF
+yfA
+kjL
+hjl
+hjl
+veF
+veF
+kjL
+veF
+veF
+kjL
+veF
+veF
+kjL
+veF
+veF
+kjL
+veF
+veF
+kjL
+veF
+veF
+veF
+veF
+veF
+kXs
+lSp
+lSp
+veF
+lSp
+lSp
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+rJJ
+rJJ
+veF
+rJJ
+rJJ
+veF
+veF
+veF
+veF
+veF
+veF
+wtB
+egq
+wtB
+veF
+wtB
+egq
+wtB
+veF
+wtB
+egq
+wtB
+veF
+hld
+hld
+hld
+hld
+aoU
+cjZ
+cjZ
+edY
+veF
+veF
+yiM
+cjZ
+cjZ
+yiM
+veF
+veF
+jyD
+jyD
+"}
+(163,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+dqw
+wxZ
+wxZ
+arf
+veF
+veF
+veF
+veF
+bMT
+aYS
+cnh
+veF
+veF
+tkG
+ugn
+veF
+hjl
+hjl
+veF
+ugn
+yfA
+veF
+ugn
+yfA
+veF
+ugn
+yfA
+veF
+ugn
+yfA
+veF
+ugn
+yfA
+veF
+jyD
+veF
+veF
+kJk
+bsY
+bsY
+bsY
+mJm
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+rKI
+rFn
+swV
+rFn
+tnq
+veF
+veF
+wCQ
+osZ
+bip
+vNO
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+veF
+veF
+veF
+veF
+veF
+veF
+cjZ
+cjZ
+pcS
+veF
+veF
+cjZ
+cjZ
+cjZ
+cjZ
+veF
+veF
+jyD
+jyD
+"}
+(164,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+jyD
+qjR
+arf
+ppo
+nnH
+aRK
+aRK
+big
+bsY
+bsY
+bsY
+cBc
+veF
+veF
+veF
+veF
+hjl
+hjl
+veF
+tkG
+pIm
+veF
+tkG
+pIm
+veF
+tkG
+pIm
+veF
+tkG
+pIm
+veF
+tkG
+pIm
+veF
+veF
+veF
+iwu
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+xmH
+ybJ
+ybJ
+ybJ
+toA
+veF
+veF
+uJB
+cjZ
+cjZ
+jFD
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+veF
+kFU
+wMt
+mjS
+ecm
+wMt
+cjZ
+cjZ
+oyo
+veF
+veF
+yiM
+cjZ
+cjZ
+yiM
+veF
+veF
+jyD
+jyD
+"}
+(165,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+qjR
+riT
+nnH
+ppo
+nnH
+nnH
+nnH
+biX
+bsY
+bsY
+bsY
+cBc
+veF
+duF
+yfA
+kjL
+hjl
+hjl
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+iLU
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+xmH
+ybJ
+ybJ
+ybJ
+toA
+veF
+veF
+wCQ
+qpU
+xZL
+vNO
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+veF
+veF
+veF
+ecm
+ecm
+veF
+cjZ
+cjZ
+uSl
+veF
+veF
+veF
+eWu
+eWu
+veF
+veF
+veF
+jyD
+jyD
+"}
+(166,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+xZJ
+anU
+oTM
+cmK
+nnH
+nnH
+oTM
+bko
+bsY
+bsY
+bsY
+cBc
+veF
+tkG
+ugn
+veF
+hjl
+hIe
+veF
+rDB
+fEn
+fEn
+fEn
+fEn
+gNc
+fxw
+hgY
+wAK
+hxL
+uil
+hLL
+veF
+veF
+veF
+qxF
+bsY
+bsY
+bsY
+bsY
+bsY
+rpb
+krt
+eBL
+eBL
+oKr
+hsb
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+wxZ
+wxZ
+wxZ
+wxZ
+wxZ
+rbx
+xvO
+xmH
+ybJ
+ybJ
+ybJ
+tpv
+udt
+veF
+veF
+veF
+veF
+veF
+cjZ
+cjZ
+cjZ
+cjZ
+xHb
+xHb
+xHb
+cjZ
+cjZ
+cjZ
+cjZ
+veF
+eka
+wMt
+cxi
+cxi
+veF
+cjZ
+cjZ
+aHF
+veF
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+mGQ
+veF
+jyD
+jyD
+"}
+(167,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+tue
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+ajj
+apV
+uaY
+mSB
+evU
+evU
+evU
+bkF
+bsY
+bsY
+bsY
+cBc
+veF
+veF
+veF
+veF
+eVl
+hjl
+veF
+fnz
+fxw
+fxw
+fxw
+fxw
+gQZ
+fxw
+hiy
+fxw
+xZq
+xZq
+pyS
+veF
+veF
+iwu
+bsY
+bsY
+bsY
+bsY
+bsY
+jXk
+vKq
+lXh
+pMV
+pMV
+jZk
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+wxZ
+wxZ
+riT
+mfy
+wZQ
+wZQ
+wZQ
+wZQ
+mfy
+xvO
+xmH
+ybJ
+ybJ
+ybJ
+ttV
+veF
+veF
+wCQ
+osZ
+bip
+vNO
+cjZ
+cjZ
+cjZ
+cjZ
+xHb
+xHb
+xHb
+cjZ
+igG
+cjZ
+wSO
+veF
+veF
+veF
+veF
+veF
+veF
+cjZ
+cjZ
+cjZ
+eWu
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+oyo
+veF
+jyD
+jyD
+"}
+(168,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+tue
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+lTt
+uaY
+uaY
+mSB
+jix
+jix
+jix
+bnq
+bsY
+bsY
+bsY
+cBc
+veF
+veF
+mEW
+mEW
+hjl
+eTZ
+veF
+foX
+fxw
+fxw
+fxw
+fxw
+fxw
+fxw
+fxw
+fxw
+hCQ
+hOT
+hTe
+veF
+veF
+iMg
+bsY
+bsY
+bsY
+bsY
+kuU
+kKH
+jXk
+ajG
+pMV
+pMV
+ajG
+oKr
+hsb
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+riT
+wjl
+wwk
+qfK
+sFT
+sFT
+sFT
+wKD
+wKD
+wKD
+xvO
+xmH
+ybJ
+ybJ
+ybJ
+tvm
+veF
+veF
+uJB
+cjZ
+cjZ
+jFD
+cjZ
+cjZ
+cjZ
+cjZ
+xHb
+xHb
+xHb
+cjZ
+cjZ
+cjZ
+cjZ
+ngy
+cjZ
+rrK
+cjZ
+eWu
+cjZ
+cjZ
+cjZ
+cjZ
+veF
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+mGQ
+veF
+jyD
+jyD
+"}
+(169,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+uaY
+uaY
+avw
+avP
+hjl
+sob
+sob
+nAB
+bsY
+bsY
+bsY
+cBM
+veF
+veF
+dWu
+ctJ
+hjl
+hjl
+veF
+fpD
+fxw
+fxw
+fxw
+fxw
+fxw
+fxw
+fxw
+fxw
+hDk
+hPK
+sHg
+veF
+iLQ
+bsY
+bsY
+bsY
+bsY
+kKv
+krt
+kKv
+krt
+mMP
+pMV
+pMV
+niJ
+ajG
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+pMa
+wjl
+wwk
+qgY
+quB
+bOp
+sFT
+wKD
+wKD
+wKD
+xvO
+xmH
+ybJ
+ybJ
+ybJ
+tLQ
+dNX
+veF
+wCQ
+qpU
+xZL
+vNO
+cjZ
+cjZ
+cjZ
+cjZ
+xHb
+xHb
+xHb
+cjZ
+igG
+cjZ
+cjZ
+rgw
+sgZ
+sgZ
+sgZ
+veF
+cjZ
+cjZ
+cjZ
+mGQ
+veF
+veF
+veF
+eWu
+eWu
+veF
+veF
+veF
+veF
+jyD
+"}
+(170,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+mhI
+uaY
+avw
+awl
+hjl
+sob
+sob
+nAB
+bsY
+bsY
+bsY
+cEG
+veF
+veF
+dSL
+emj
+hjl
+eTZ
+veF
+fsT
+fxw
+fxw
+fxw
+fxw
+gUw
+fxw
+oVl
+fxw
+xZq
+xZq
+pyS
+veF
+iLU
+bsY
+bsY
+bsY
+kqa
+jXk
+jXk
+lVR
+mph
+mNE
+pMV
+pMV
+vKq
+lae
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+pMo
+wjl
+wwk
+qfK
+qvI
+qGO
+sFT
+wKD
+wKD
+wKD
+xZJ
+rMD
+ybJ
+ybJ
+ybJ
+rpv
+rwK
+veF
+veF
+veF
+veF
+veF
+pAJ
+cjZ
+cjZ
+cjZ
+xHb
+xHb
+xHb
+cjZ
+cjZ
+cjZ
+cjZ
+rgw
+dZP
+sBP
+eKE
+veF
+cjZ
+cjZ
+drU
+ctX
+veF
+fTJ
+rXg
+cjZ
+cjZ
+wGP
+cjZ
+dlU
+veF
+jyD
+"}
+(171,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+mhI
+uaY
+uaY
+hak
+hjl
+hjl
+hjl
+nAB
+bsY
+bsY
+bsY
+cEG
+veF
+veF
+uqx
+uqx
+hjl
+hjl
+veF
+fuE
+fGG
+hAD
+fxw
+fxw
+gNc
+fxw
+hgY
+wAK
+hGI
+hPT
+hLL
+veF
+iLU
+bsY
+bsY
+vKq
+krt
+kKH
+lZt
+jXk
+kqa
+mOF
+pMV
+pMV
+vKq
+kuU
+oKr
+hsb
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+pNM
+wjl
+wjl
+qhj
+qwe
+otf
+otf
+otf
+otf
+otf
+rsX
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+vyF
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+rgw
+lxH
+mVq
+quI
+veF
+cjZ
+cjZ
+rcT
+rcT
+veF
+qpz
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+dnh
+veF
+jyD
+"}
+(172,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+alv
+uaY
+uaY
+xlT
+hjl
+aTA
+hjl
+bpg
+bsY
+bsY
+bsY
+bsY
+cRS
+veF
+veF
+veF
+eDV
+eBL
+veF
+veF
+veF
+veF
+gGV
+gGV
+veF
+veF
+veF
+ezs
+veF
+veF
+veF
+veF
+iLZ
+bsY
+bsY
+jXk
+jXk
+kqa
+jXk
+lXh
+kuU
+mRu
+pMV
+pMV
+vKq
+lXh
+rpb
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+pOM
+wjl
+wjl
+qka
+qxV
+otf
+qRG
+qZM
+otf
+otf
+rsX
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+vyF
+cjZ
+cjZ
+cjZ
+wZL
+dMS
+vFb
+yis
+ebg
+cjZ
+cjZ
+cjZ
+rgw
+gFx
+oyw
+oyw
+eWu
+cjZ
+cjZ
+gEE
+rcT
+veF
+npR
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+fUi
+veF
+jyD
+"}
+(173,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+mhI
+uaY
+uaY
+hak
+hjl
+hjl
+hjl
+nAB
+bsY
+bsY
+bsY
+bsY
+qZF
+veF
+veF
+veF
+eJh
+eak
+veF
+qah
+qah
+qxF
+bsY
+bsY
+qxF
+qah
+qah
+qah
+hHF
+veF
+veF
+iwu
+bsY
+bsY
+bsY
+ajG
+kqa
+ajG
+kYw
+lXr
+mrJ
+mSR
+pMV
+pMV
+vKq
+vKq
+vKq
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+pPX
+wjl
+wjl
+wtT
+fRT
+isN
+lqD
+raL
+otf
+otf
+oTp
+kmt
+ybJ
+ybJ
+ybJ
+pDS
+ugb
+uwN
+uJO
+vhS
+mGp
+veF
+fiR
+cjZ
+cjZ
+vyB
+cjZ
+cjZ
+cjZ
+xaM
+cjZ
+cjZ
+cjZ
+rgw
+sBP
+rNH
+jYo
+veF
+oyo
+cjZ
+obL
+uCQ
+veF
+oyo
+wQl
+tMl
+tMl
+tMl
+cCP
+oyo
+veF
+jyD
+"}
+(174,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+mhI
+uaY
+avw
+avP
+hjl
+sob
+sob
+nAB
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+rsf
+bsY
+bsY
+bsY
+bsY
+rsf
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+qUk
+qUk
+qUk
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+pSQ
+wjl
+wjl
+qlU
+qyV
+otf
+qUE
+rbV
+otf
+otf
+rsX
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+vyF
+cjZ
+cjZ
+cjZ
+vyB
+xqL
+cjZ
+yjg
+xaM
+cjZ
+cjZ
+bJB
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+"}
+(175,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+uaY
+uaY
+avw
+awo
+hjl
+sob
+sob
+nAB
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+rsf
+bsY
+bsY
+bsY
+bsY
+rsf
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+qUk
+nCo
+nLg
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+pTF
+wjl
+wjl
+qhj
+qwe
+otf
+otf
+otf
+otf
+otf
+rsX
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+vyF
+cjZ
+cjZ
+cjZ
+vyB
+cjZ
+gYA
+cjZ
+xaM
+cjZ
+cjZ
+cjZ
+veF
+hOj
+hSQ
+hOj
+dTj
+rwX
+cIq
+vxE
+xMK
+veF
+wai
+dHz
+dHz
+dHz
+wai
+dHz
+dHz
+wai
+veF
+"}
+(176,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+alW
+uaY
+uaY
+mSB
+evU
+evU
+evU
+bkF
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+rsf
+bsY
+bsY
+bsY
+bsY
+rsf
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+pMV
+qUk
+qUk
+qUk
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+pMo
+wjl
+wwk
+qfK
+qvI
+qGO
+sFT
+wKD
+wKD
+wKD
+xiw
+rOi
+ybJ
+ybJ
+ybJ
+ouh
+uik
+veF
+veF
+veF
+veF
+veF
+cjZ
+cjZ
+cjZ
+vyB
+cjZ
+kUg
+cjZ
+oCE
+cjZ
+cjZ
+cjZ
+veF
+dTj
+dTj
+dTj
+dTj
+dTj
+dTj
+dTj
+fcS
+veF
+cPp
+cPp
+wai
+cPp
+cPp
+wai
+cPp
+qaL
+veF
+"}
+(177,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+vGJ
+vGJ
+uaY
+mSB
+jix
+jix
+jix
+bnq
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+qxF
+emV
+veF
+slZ
+slZ
+slZ
+slZ
+slZ
+slZ
+slZ
+slZ
+mnu
+slZ
+slZ
+hHP
+hHP
+veF
+iwu
+bsY
+bsY
+bsY
+jXk
+kqa
+ajG
+kZR
+lYn
+mrK
+mSR
+pMV
+pMV
+vKq
+vKq
+vKq
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+pMa
+wjl
+wwk
+qgY
+qzS
+bOp
+sFT
+wKD
+wKD
+wKD
+xvO
+xmH
+ybJ
+ybJ
+ybJ
+tLQ
+dNX
+veF
+wCQ
+osZ
+bip
+vNO
+cjZ
+cjZ
+cjZ
+vyB
+cjZ
+xPm
+cjZ
+xaM
+cjZ
+cjZ
+cjZ
+veF
+dTj
+dTj
+dTj
+dTj
+dTj
+dTj
+dTj
+dTj
+veF
+sMR
+hkC
+wai
+cmf
+dkg
+wai
+cmf
+hkC
+veF
+"}
+(178,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tIZ
+lYG
+aqc
+avN
+rfP
+nnH
+nnH
+veF
+veF
+veF
+veF
+uDP
+uDP
+veF
+veF
+veF
+veF
+veF
+dbl
+lmi
+fvZ
+fHd
+dbl
+lmi
+gIz
+gVi
+dbl
+lmi
+gIz
+nnH
+nnH
+veF
+veF
+cBz
+bsY
+bsY
+jZk
+rpb
+jZk
+kqa
+kKv
+jXk
+mNE
+pMV
+pMV
+vKq
+kuU
+nLK
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tIZ
+lYG
+wjl
+wwk
+qfK
+sFT
+sFT
+sFT
+wKD
+wKD
+wKD
+xvO
+xmH
+ybJ
+ybJ
+ybJ
+tvt
+veF
+veF
+uJB
+cjZ
+cjZ
+jFD
+cjZ
+cjZ
+cjZ
+vyB
+xse
+cjZ
+ykd
+xaM
+cjZ
+cjZ
+cjZ
+veF
+nHB
+dTj
+nHB
+dTj
+dTj
+vVx
+vVx
+vVx
+veF
+cmf
+sMR
+wai
+rKK
+sMR
+wai
+sMR
+sMR
+veF
+"}
+(179,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tte
+jyD
+jyD
+jyD
+tte
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tIZ
+lYG
+nnH
+ppo
+nnH
+gsP
+veF
+nNE
+nNE
+veF
+nnH
+nnH
+dau
+dau
+dau
+dau
+veF
+yky
+lmi
+fwA
+fKK
+yky
+lmi
+fwA
+vIp
+yky
+lmi
+fwA
+nnH
+nnH
+hYy
+rZp
+iMg
+bsY
+bsY
+jZk
+jZk
+krt
+mpA
+lZe
+jXk
+mOF
+pMV
+pMV
+vKq
+nCV
+rBi
+foD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tIZ
+wxZ
+wxZ
+qme
+mfy
+wZQ
+wZQ
+wZQ
+wZQ
+mfy
+xvO
+xmH
+ybJ
+ybJ
+ybJ
+tvy
+veF
+veF
+wCQ
+qpU
+xZL
+vNO
+cjZ
+cjZ
+cjZ
+vyB
+cjZ
+cjZ
+cjZ
+xaM
+cjZ
+cjZ
+cjZ
+veF
+qzP
+qzP
+qzP
+dTj
+dTj
+qzP
+qzP
+qzP
+veF
+jFl
+jFl
+wai
+jFl
+jFl
+wai
+jFl
+jFl
+veF
+"}
+(180,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tte
+jyD
+jyD
+jyD
+jyD
+jyD
+tte
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tIZ
+lYG
+ppo
+gsP
+aUH
+veF
+bqe
+bqe
+bXC
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+uDP
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+hYX
+rZp
+iMg
+bsY
+bsY
+bsY
+kuU
+jXk
+kKH
+kqa
+jZk
+mRu
+pMV
+pMV
+vKq
+kuU
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tIZ
+wxZ
+wxZ
+wxZ
+wxZ
+wxZ
+rbx
+xvO
+xmH
+ybJ
+ybJ
+ybJ
+aZO
+veF
+veF
+veF
+veF
+veF
+veF
+cjZ
+cjZ
+cjZ
+wZM
+xtP
+xSJ
+ykF
+mxk
+cjZ
+cjZ
+cjZ
+laO
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+wai
+wai
+wai
+wai
+wai
+wai
+wai
+wai
+veF
+"}
+(181,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tIZ
+arf
+veF
+veF
+veF
+veF
+veF
+veF
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+uDP
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+ppo
+rZp
+qxF
+bsY
+bsY
+bsY
+bsY
+kKv
+ajG
+lXh
+kqa
+kqa
+pMV
+pMV
+niJ
+nDL
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+riT
+xmH
+ybJ
+ybJ
+ybJ
+twG
+veF
+veF
+wCQ
+osZ
+bip
+vNO
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+laO
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+wai
+wai
+wai
+wai
+wai
+wai
+wai
+dJi
+veF
+"}
+(182,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+btS
+bNp
+nnH
+nnH
+nnH
+xZq
+pHh
+dVb
+eod
+veF
+eUh
+xzq
+xzq
+hjl
+nnH
+nnH
+mfo
+mfo
+jZW
+hjA
+hjp
+nnH
+nnH
+qqU
+rZp
+rZp
+iMg
+bsY
+bsY
+bsY
+bsY
+jZk
+jZk
+vKq
+kKH
+pMV
+pMV
+nkd
+rBi
+foD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+ruT
+xmH
+ybJ
+ybJ
+ybJ
+txQ
+veF
+veF
+uJB
+cjZ
+cjZ
+jFD
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+laO
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+wai
+wai
+wai
+wai
+wai
+wai
+wai
+aDu
+veF
+"}
+(183,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+veF
+nnH
+vEY
+veF
+bXC
+veF
+veF
+veF
+veF
+xCC
+swC
+swC
+xzq
+nnH
+nnH
+gIP
+iCK
+vYi
+qrr
+mfo
+nnH
+nnH
+ieG
+ixp
+rZp
+iwu
+bsY
+bsY
+bsY
+bsY
+bsY
+jZk
+jXk
+ajG
+pMV
+pMV
+rpb
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+rvG
+xmH
+ybJ
+ybJ
+ybJ
+tyu
+veF
+veF
+wCQ
+qpU
+xZL
+vNO
+cjZ
+cjZ
+cjZ
+xcs
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+cjZ
+veF
+qzP
+qzP
+qzP
+uUd
+uUd
+qzP
+qzP
+qzP
+veF
+gqE
+wai
+wai
+wai
+wai
+wai
+wai
+gqE
+veF
+"}
+(184,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tte
+jyD
+jyD
+jyD
+jyD
+jyD
+tte
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+btS
+bNp
+nnH
+vEY
+veF
+xZq
+dVK
+dVK
+dVK
+veF
+eVl
+hjl
+swC
+xzq
+nnH
+nnH
+gJm
+mcv
+qNb
+qrr
+mfo
+nnH
+nnH
+ruq
+lPi
+rZp
+rZp
+qxF
+bsY
+bsY
+bsY
+bsY
+bsY
+kqa
+lXh
+naR
+naR
+rBi
+foD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+oeC
+xmH
+ybJ
+ybJ
+ybJ
+tyz
+veF
+veF
+veF
+veF
+veF
+veF
+noe
+lBZ
+noe
+veF
+noe
+lBZ
+noe
+veF
+noe
+lBZ
+noe
+veF
+kXV
+xNg
+xso
+uUd
+uUd
+xso
+xso
+kXV
+veF
+jmT
+jmT
+iGg
+lnF
+lBl
+fsI
+dCo
+sLQ
+veF
+"}
+(185,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tte
+jyD
+jyD
+jyD
+tte
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+veF
+nnH
+vEY
+veF
+xZq
+xZq
+xZq
+xZq
+veF
+xBN
+hjl
+swC
+xzq
+nnH
+nnH
+mfo
+mfo
+gWM
+hKD
+hmw
+nnH
+nnH
+ifq
+mcv
+iMt
+rZp
+rZp
+iMg
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+wxZ
+wxZ
+wxZ
+wxZ
+qme
+tIZ
+lYG
+xmH
+ybJ
+ybJ
+ybJ
+tDH
+veF
+rqj
+ygs
+ygs
+rqj
+veF
+xZL
+cjZ
+bip
+veF
+xZL
+cjZ
+bip
+veF
+xZL
+cjZ
+bip
+veF
+xso
+oVr
+oVr
+uUd
+uUd
+oVr
+oVr
+jIJ
+veF
+vxZ
+wai
+wai
+wai
+dkg
+dkg
+wai
+kYG
+veF
+"}
+(186,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+btS
+bNp
+nnH
+vEY
+veF
+xZq
+dWH
+dWH
+dWH
+veF
+eYN
+hjl
+swC
+xzq
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+qrr
+hjl
+iQV
+iQV
+rZp
+rZp
+iwu
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qjR
+riT
+qCD
+vUb
+vUb
+qCD
+rmc
+rbx
+xvO
+xmH
+ybJ
+ybJ
+ybJ
+tEC
+veF
+rqj
+ygs
+ygs
+rqj
+veF
+qpU
+cjZ
+rEy
+veF
+qpU
+cjZ
+rEy
+veF
+qpU
+cjZ
+rEy
+veF
+xXH
+uUd
+uUd
+uUd
+uUd
+uUd
+uUd
+eZj
+veF
+yfh
+wai
+wai
+wai
+wai
+wai
+wai
+xlt
+veF
+"}
+(187,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+faG
+hjl
+swC
+xzq
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+iie
+hjl
+iQV
+iQV
+iQV
+rZp
+rZp
+qxF
+bsY
+bsY
+bsY
+bsY
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+qow
+qDm
+pOT
+pOT
+pOT
+pOT
+pOT
+lWo
+rMD
+ybJ
+ybJ
+ybJ
+tFM
+veF
+rqj
+ygs
+ygs
+rqj
+veF
+wCQ
+sqk
+wCQ
+veF
+wCQ
+sqk
+wCQ
+veF
+wCQ
+sqk
+wCQ
+veF
+wkH
+uUd
+uUd
+xXH
+jpb
+uUd
+uUd
+cFt
+veF
+tcF
+wai
+mgj
+eLi
+kPw
+hnB
+ybZ
+fvf
+veF
+"}
+(188,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+bvY
+bvY
+bvY
+bvY
+cHw
+dgy
+sMZ
+tqd
+nFT
+veF
+fbv
+hjl
+swC
+xzq
+nnH
+nnH
+mfo
+mfo
+jZW
+hjA
+hjp
+nnH
+nnH
+hjl
+hjl
+hjl
+hjl
+hjl
+jZW
+veF
+veF
+veF
+veF
+veF
+mTV
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+vUb
+bwi
+xsI
+xsI
+xsI
+xsI
+xsI
+dKv
+ybJ
+ybJ
+ybJ
+ybJ
+tJH
+veF
+veF
+uNw
+uNw
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+"}
+(189,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xiw
+xDo
+xDo
+xDo
+xDo
+xDo
+nnH
+nnH
+dWZ
+wbd
+veF
+tmb
+hjl
+swC
+xzq
+nnH
+nnH
+gIP
+iCK
+ugp
+qrr
+mfo
+nnH
+nnH
+ijP
+iCK
+iCK
+iCK
+iCK
+vYi
+veF
+veF
+ldk
+uaY
+msj
+bsY
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+vUb
+bwi
+xsI
+xsI
+xsI
+xsI
+xsI
+dKv
+ybJ
+ybJ
+ybJ
+ybJ
+yed
+veF
+ygs
+ygs
+ygs
+vmM
+hCD
+wuj
+cdB
+qqY
+veF
+veF
+veF
+rjS
+tIS
+tIS
+rjS
+veF
+vLa
+cYu
+sFy
+veF
+hup
+foi
+vjt
+flj
+aSN
+veF
+wHU
+vvD
+rgL
+oAo
+wpd
+kqr
+kqr
+kqr
+veF
+"}
+(190,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+bvY
+bvY
+bvY
+bvY
+xDo
+dhN
+nnH
+nnH
+eoB
+veF
+fbA
+hjl
+swC
+xzq
+nnH
+nnH
+gJm
+mcv
+qNb
+qrr
+mfo
+nnH
+nnH
+ikP
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+ldq
+mbt
+muE
+bsY
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+nNS
+bwi
+xsI
+qVA
+rXt
+rXt
+rXt
+oTp
+rPX
+ybJ
+ybJ
+ybJ
+lkC
+veF
+uxf
+ygs
+ygs
+ygs
+vaA
+piH
+piH
+piH
+veF
+veF
+pWD
+ylb
+lLT
+lLT
+lLT
+clg
+wqy
+bjs
+bcF
+jBn
+rTc
+rTc
+rTc
+vPR
+qBg
+veF
+wHp
+bjs
+lCE
+nbD
+lUP
+lUP
+lUP
+pJA
+veF
+"}
+(191,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+bvY
+bvY
+bvY
+bvY
+xDo
+din
+nnH
+nnH
+erc
+veF
+eVl
+hjl
+swC
+xzq
+nnH
+nnH
+mfo
+mfo
+gWM
+hKD
+hmw
+nnH
+nnH
+inB
+veF
+veF
+jqt
+jDd
+jqt
+veF
+veF
+ldx
+uaY
+mvA
+bsY
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qcr
+wxZ
+rbx
+qJE
+dqw
+rbx
+veF
+veF
+veF
+xmH
+ybJ
+ybJ
+ybJ
+veF
+veF
+uyx
+ygs
+ygs
+ygs
+vOW
+vrk
+piH
+piH
+veF
+veF
+lPk
+bjs
+bjs
+bjs
+bjs
+kyn
+wqy
+bjs
+bcF
+kbZ
+bjs
+bjs
+bjs
+bjs
+eAI
+veF
+veF
+veF
+clq
+veF
+veF
+veF
+veF
+veF
+veF
+"}
+(192,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+xDo
+xDo
+xDo
+xDo
+xDo
+dio
+nnH
+dZz
+lrI
+veF
+xBN
+hjl
+hjl
+hjl
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+ioN
+veF
+iSr
+jqt
+jqt
+jqt
+iSr
+veF
+fjI
+uaY
+mvV
+bsY
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+jyD
+jyD
+qKs
+jyD
+jyD
+veF
+wdT
+rwu
+rQj
+ybJ
+ybJ
+ybJ
+veF
+nSt
+ygs
+ygs
+ygs
+ygs
+vQA
+wvz
+wJc
+piH
+veF
+veF
+wbG
+wqy
+tai
+tai
+tai
+kyn
+wqy
+bjs
+bcF
+kbZ
+tai
+tai
+tai
+bcF
+wjb
+veF
+oNb
+eac
+lDU
+gKV
+rcb
+gRh
+xCT
+jkr
+veF
+"}
+(193,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+hhB
+oHz
+oHz
+oHz
+xDo
+dli
+dwX
+dZY
+ewX
+veF
+fbH
+wmI
+fwD
+fPu
+giA
+gHf
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+nnH
+qqU
+veF
+iSU
+iSU
+iSU
+iSU
+iSU
+veF
+veF
+veF
+veF
+bsY
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+rod
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+veF
+xSG
+ygs
+ygs
+ygs
+ygs
+ygs
+ygs
+ygs
+ygs
+veF
+veF
+ffr
+bjs
+lBX
+tKP
+mZi
+kyn
+wqy
+bjs
+bcF
+kbZ
+bNx
+aOX
+tuM
+bjs
+hdm
+veF
+oNb
+qMW
+lDU
+bjs
+bjs
+bjs
+bjs
+pwI
+veF
+"}
+(194,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+bwj
+vYW
+oyb
+hwQ
+xDo
+vYW
+xDo
+vYW
+xvn
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+tqd
+tqd
+qEU
+qEU
+hnN
+hIF
+hIF
+veF
+veF
+iTG
+iTG
+iTG
+iTG
+iTG
+kLa
+lfA
+mcd
+mvV
+bsY
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+rst
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+tpb
+ygs
+ygs
+ygs
+ygs
+ygs
+ygs
+wwf
+ygs
+ygs
+veF
+veF
+xWc
+bjs
+uah
+aqH
+prr
+kyn
+wqy
+bjs
+bcF
+kbZ
+gCW
+sBu
+eMY
+bjs
+wHp
+veF
+oNb
+qMW
+wCS
+fGA
+jVm
+bjs
+bjs
+bKF
+veF
+"}
+(195,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xZJ
+xDo
+xDo
+sjC
+xDo
+xDo
+xDo
+xDo
+xDo
+xDo
+kyW
+xzK
+xzK
+xzK
+xzK
+giY
+gHs
+xzK
+xzK
+xzK
+xzK
+hqV
+nnH
+nnH
+ioO
+veF
+xZq
+xZq
+xZq
+xZq
+xZq
+kLa
+lfY
+mde
+mAt
+bsY
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+iij
+ybJ
+ybJ
+ybJ
+ybJ
+ybJ
+tpb
+ygs
+ygs
+ygs
+ygs
+ygs
+ygs
+ygs
+ygs
+ygs
+veF
+veF
+wbG
+wqy
+tai
+tai
+tai
+kyn
+wqy
+bjs
+bcF
+kbZ
+tai
+tai
+tai
+bcF
+bJJ
+veF
+pkt
+nEz
+kjB
+fuP
+mho
+bjs
+bjs
+hmY
+veF
+"}
+(196,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+kyj
+kyj
+kyj
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+kyj
+kyj
+kyj
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+fxK
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+fxK
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+wAN
+bOD
+bZL
+vYW
+xDo
+xDo
+xDo
+xDo
+xDo
+kyW
+xzK
+xzK
+xzK
+xzK
+gjx
+xzK
+xzK
+xzK
+xzK
+xzK
+hqV
+nnH
+nnH
+ioO
+veF
+xZq
+jqZ
+xZq
+xZq
+kvb
+kMR
+bsY
+bsY
+mBi
+bsY
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+sHO
+ybJ
+ybJ
+ybJ
+ybJ
+dNX
+veF
+xSG
+ygs
+ygs
+ygs
+vEg
+vEg
+vEg
+vEg
+vEg
+veF
+veF
+lPk
+bjs
+bjs
+bjs
+bjs
+kyn
+wqy
+bjs
+bcF
+kbZ
+bjs
+bjs
+bjs
+bjs
+eAI
+veF
+jUX
+nEz
+eJk
+nKy
+bsn
+bjs
+bjs
+bKF
+veF
+"}
+(197,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fBc
+iuU
+iuU
+iuU
+kyj
+jyD
+jyD
+jyD
+jyD
+jyD
+kyj
+iuU
+iuU
+iuU
+gkl
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+fxK
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+fxK
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+kZq
+xDo
+duQ
+xDo
+xDo
+vYW
+xDo
+vYW
+tho
+veF
+fcz
+xzK
+xzK
+fXa
+gnE
+xzK
+gJD
+oBV
+gHR
+xzK
+veF
+nnH
+nnH
+ioO
+veF
+iXG
+jsp
+jsp
+jsp
+kvb
+kLa
+lhm
+lhm
+lhm
+mVb
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+eqh
+ybJ
+rQK
+ryN
+syD
+rwK
+veF
+nSt
+uzl
+owd
+vjT
+vFd
+vTl
+cDn
+jcb
+wRl
+veF
+veF
+pWD
+tED
+ijb
+ijb
+ijb
+whn
+wqy
+bjs
+bcF
+tXq
+kHZ
+kHZ
+kHZ
+dlm
+qGK
+veF
+ulT
+nEz
+bjs
+bjs
+bjs
+bjs
+bjs
+pwI
+veF
+"}
+(198,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fBc
+iuU
+iuU
+iuU
+iuU
+iuU
+kyj
+kyj
+kyj
+kyj
+kyj
+iuU
+iuU
+iuU
+iuU
+iuU
+gkl
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+fxK
+fxK
+bmv
+dnT
+bmv
+bmv
+bmv
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+bmv
+bmv
+bmv
+bmv
+bmv
+fxK
+fxK
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+xDo
+xDo
+gQd
+xDo
+xDo
+dmb
+dzV
+eed
+ezp
+veF
+fdp
+xzK
+xzK
+fZP
+goI
+xzK
+hQK
+hQK
+hQK
+xzK
+veF
+nnH
+nnH
+irI
+veF
+xZq
+xZq
+xZq
+xZq
+kvK
+kNm
+bsY
+bsY
+mBp
+bsY
+bsY
+bsY
+xvO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+tLQ
+ybJ
+bmp
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+gPt
+gPt
+gPt
+gPt
+veF
+bjs
+bjs
+qcb
+veF
+cCY
+qSN
+ofb
+hLt
+aSN
+veF
+lvs
+nEz
+bcF
+qIt
+sca
+esx
+mnk
+gcv
+veF
+"}
+(199,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fBc
+iuU
+rRT
+kez
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+gkl
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+bnM
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+vrt
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+bED
+yje
+vYW
+xDo
+dnA
+diO
+xDo
+diO
+veF
+fdp
+xzK
+xzK
+fZP
+gqH
+xzK
+xzK
+xzK
+xzK
+xzK
+veF
+nnH
+nnH
+mnf
+veF
+xZq
+xZq
+xZq
+xZq
+xZq
+kLa
+lkJ
+meT
+mCp
+bsY
+bsY
+bsY
+xZJ
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+tLQ
+ybJ
+xmH
+veF
+qcm
+sTL
+tJW
+uir
+veF
+qYi
+qYi
+qYi
+qYi
+qYi
+qYi
+wHp
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+raW
+bjs
+ygV
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+hdG
+nEz
+bcF
+lCZ
+jiX
+tiN
+fdz
+cNR
+veF
+"}
+(200,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fBc
+iuU
+ozF
+eIW
+eIW
+iuU
+uVp
+oyT
+vfM
+pII
+fVo
+xCf
+rNq
+vIn
+nTH
+sCb
+tUp
+tUp
+iFb
+iuU
+gkl
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+bnM
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+vrt
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+veF
+mgY
+rZf
+xoF
+fjB
+tbB
+dAi
+veF
+fdP
+fjS
+fjS
+gbP
+gqU
+oyx
+gKf
+mqj
+has
+bdk
+veF
+hIL
+tqd
+tqd
+veF
+xZq
+xZq
+xZq
+xZq
+xZq
+kLa
+lmq
+uaY
+mDm
+bsY
+bsY
+bsY
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+iij
+ybJ
+xmH
+veF
+bWt
+wpu
+wpu
+eHx
+veF
+uNK
+sMS
+sMS
+sMS
+sMS
+sMS
+rOy
+huo
+veF
+ila
+kZP
+ygH
+ixk
+elZ
+veF
+bjs
+bjs
+ffI
+veF
+mQT
+fsp
+juj
+jkB
+iJh
+veF
+nFj
+nEz
+bjs
+bjs
+bjs
+bjs
+qKY
+vEQ
+veF
+"}
+(201,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iuU
+glP
+eIW
+eIW
+eIW
+iuU
+cHq
+sjT
+sjT
+sjT
+rxX
+sjT
+sjT
+sjT
+hko
+iuU
+yfi
+yfi
+yfi
+iuU
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+auz
+auz
+auz
+byK
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+gwT
+gwT
+gwT
+gwT
+gwT
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+byK
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+tLQ
+ybJ
+xmH
+veF
+eAm
+wpu
+wpu
+wpu
+uCq
+bjs
+bjs
+bjs
+bjs
+bjs
+bjs
+sMS
+xdc
+bzH
+ewl
+oTG
+vzH
+vzH
+vzH
+poJ
+qUd
+bjs
+xVX
+wpt
+nqa
+nqa
+nqa
+xrQ
+aSW
+veF
+nFj
+nEz
+bcF
+eFa
+rpC
+tlj
+bZo
+cbm
+veF
+"}
+(202,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iuU
+dFZ
+eIW
+eIW
+fOy
+iuU
+rQA
+sjT
+sjT
+sjT
+rxX
+sjT
+sjT
+sjT
+nfp
+iuU
+ufP
+ufP
+ufP
+iuU
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+bmv
+bmv
+bmv
+fxK
+fxK
+fxK
+bmv
+bmv
+bmv
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+dEy
+ccE
+cok
+cok
+dEy
+yhA
+dEy
+yhA
+dEy
+yhA
+dEy
+yhA
+dEy
+ygj
+sDF
+ygj
+sDF
+ygj
+ygj
+sDF
+ygj
+sDF
+ygj
+jpc
+sXw
+sXw
+sXw
+sXw
+kvS
+dEy
+lpj
+mgI
+mDX
+mZk
+ncZ
+nek
+mZk
+nFi
+nqC
+nUy
+dEy
+tMp
+dUB
+dUB
+oWO
+dEy
+dEy
+tMp
+dUB
+dUB
+oWO
+dEy
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+tLQ
+ybJ
+xmH
+veF
+bWt
+sUx
+wpu
+uju
+veF
+eQm
+bjs
+bjs
+bjs
+bjs
+bjs
+sMS
+xdc
+veF
+ivN
+bjs
+bjs
+bjs
+bjs
+weu
+qUd
+bjs
+xVX
+cbF
+bjs
+bjs
+bjs
+bjs
+yaO
+veF
+lTx
+nEz
+bcF
+npV
+veF
+veF
+veF
+veF
+veF
+"}
+(203,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iuU
+waB
+eIW
+eIW
+eIW
+iuU
+phS
+sjT
+sjT
+sjT
+rxX
+sjT
+sjT
+sjT
+inR
+iuU
+mAx
+nmI
+kxr
+iuU
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+rHv
+hQn
+sAC
+sAC
+sAC
+dEy
+npS
+dEy
+dPP
+dEy
+dPP
+dEy
+dPP
+dEy
+ygj
+xsy
+xsy
+xsy
+kVW
+okp
+hsH
+hJc
+hQT
+ygj
+jpc
+jaa
+xYH
+xYH
+xYH
+kwf
+dEy
+lqg
+mhF
+mhF
+sAC
+cNX
+mhF
+sAC
+mhF
+cNX
+nZs
+dEy
+ohl
+ylo
+ylo
+jGS
+dEy
+dEy
+ohl
+ylo
+ylo
+jGS
+dEy
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+tLQ
+ybJ
+bmp
+veF
+veF
+veF
+tKE
+veF
+veF
+bjs
+bjs
+gAt
+gAt
+gAt
+bjs
+sMS
+xdc
+veF
+cTd
+qUd
+tai
+tai
+tai
+weu
+qUd
+bjs
+xVX
+cbF
+tai
+tai
+tai
+xVX
+xtz
+veF
+bsB
+nEz
+bcF
+uSS
+veF
+vVu
+wua
+jSH
+veF
+"}
+(204,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iuU
+kTX
+eIW
+eIW
+eIW
+iuU
+uVp
+nLS
+scb
+yfR
+rxX
+qmQ
+ehY
+qmQ
+uVp
+iuU
+uPL
+eIW
+eIW
+iuU
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+dEy
+cdf
+sAC
+fxF
+dEy
+dBu
+dEy
+dBu
+dEy
+dBu
+dEy
+dBu
+dEy
+ygj
+ygj
+ygj
+ygj
+ygj
+ygj
+ygj
+ygj
+ygj
+ygj
+jpc
+jaQ
+xYH
+xYH
+xYH
+kwX
+dEy
+mGN
+cNX
+mhF
+sAC
+sAC
+sAC
+sAC
+cNX
+mhF
+nZT
+dEy
+dEy
+yaN
+yaN
+dEy
+dEy
+dEy
+dEy
+yaN
+yaN
+dEy
+byK
+oOe
+oOe
+oOe
+oOe
+oOe
+oOe
+tLQ
+ybJ
+xmH
+veF
+cJh
+sVs
+vTv
+waa
+xfi
+bjs
+bjs
+gAt
+gAt
+gAt
+bjs
+sMS
+xdc
+veF
+iuh
+bjs
+xmr
+vpF
+gFy
+weu
+qUd
+bjs
+xVX
+cbF
+tKq
+tKq
+tKq
+bjs
+eHk
+veF
+sCO
+nEz
+bcF
+rva
+veF
+yhI
+bjs
+uuN
+veF
+"}
+(205,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iuU
+iuU
+iuU
+iuU
+qua
+iuU
+iuU
+iuU
+iuU
+iuU
+fRZ
+iuU
+iuU
+iuU
+iuU
+iuU
+glr
+iuU
+iuU
+iuU
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+auz
+auz
+auz
+auz
+dEy
+xdo
+sAC
+sAC
+dog
+xYH
+efo
+xYH
+eMQ
+xYH
+efo
+xYH
+dog
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+drJ
+xYH
+xYH
+xYH
+xYH
+xYH
+kNw
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+iOS
+ylo
+ylo
+iOS
+ylo
+ylo
+iOS
+ylo
+ylo
+qrd
+sPm
+vvS
+hhr
+qLy
+iEK
+rcC
+oTp
+tLQ
+ybJ
+xmH
+veF
+sFV
+vTv
+vTv
+mbF
+fJO
+bjs
+bjs
+bjs
+gAt
+gAt
+bjs
+bjs
+eZl
+xyV
+wHp
+bjs
+ivP
+jly
+nMB
+weu
+qUd
+bjs
+xVX
+cbF
+kxA
+kxA
+kxA
+bjs
+wHp
+veF
+aDo
+nEz
+bcF
+iAK
+veF
+gcS
+dEc
+uuN
+veF
+"}
+(206,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+kvV
+jzu
+iuU
+ruG
+iuU
+gwm
+qSe
+qSe
+sBN
+vLb
+kps
+amT
+kps
+vLb
+sBN
+qSe
+qSe
+tIi
+iuU
+vfJ
+iuU
+wps
+kvV
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+nTz
+nTz
+nTz
+nTz
+nTz
+nTz
+nTz
+nTz
+nTz
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+auz
+auz
+auz
+byK
+dEy
+cgH
+sAC
+sAC
+drJ
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+drJ
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+drJ
+xYH
+xYH
+xYH
+xYH
+xYH
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+udj
+sPm
+qoQ
+maC
+maC
+maC
+maC
+maC
+ybJ
+ybJ
+xmH
+veF
+fcB
+vTv
+tMy
+ujx
+fJO
+bjs
+vlp
+bjs
+gAt
+gAt
+bjs
+bjs
+xdp
+veF
+eJU
+qUd
+tai
+tai
+tai
+weu
+qUd
+bjs
+xVX
+cbF
+tai
+tai
+tai
+xVX
+oml
+veF
+veF
+tXx
+tXx
+veF
+veF
+veF
+ody
+ody
+veF
+"}
+(207,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+wRA
+xEX
+htO
+iuU
+bHZ
+iuU
+ukI
+eIW
+eIW
+eIW
+eIW
+eIW
+uPL
+eIW
+eIW
+eIW
+eIW
+eIW
+smH
+iuU
+vgf
+iuU
+wRA
+uFS
+htO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+nTz
+leJ
+leJ
+leJ
+leJ
+leJ
+leJ
+leJ
+nTz
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+dEy
+bOP
+sAC
+sAC
+cJn
+dEy
+dDe
+wAQ
+wAQ
+nzR
+nzR
+nzR
+nzR
+gbV
+gry
+xsy
+gry
+xsy
+xYH
+xYH
+xsy
+uyC
+xsy
+uyC
+jpc
+jcI
+xYH
+xYH
+xYH
+kxa
+dEy
+oyP
+miX
+miX
+ylo
+ylo
+lpj
+nqC
+nek
+wCk
+nlR
+dEy
+dEy
+dEy
+dEy
+dEy
+ueu
+rew
+dEy
+dEy
+dEy
+dEy
+sPm
+iEK
+maC
+maC
+maC
+maC
+maC
+ybJ
+ybJ
+xmH
+veF
+sIW
+vTv
+vTv
+ujV
+fJO
+bjs
+bjs
+bjs
+gAt
+gAt
+bjs
+bjs
+xhs
+veF
+ivN
+bjs
+bjs
+dJo
+bjs
+vQz
+qUd
+bjs
+xVX
+cbF
+bjs
+bjs
+bjs
+bjs
+rMK
+veF
+tHw
+vea
+xeW
+hJA
+eHe
+nDY
+vea
+xeW
+veF
+"}
+(208,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+wRA
+xEX
+htO
+iuU
+miK
+bHZ
+uPL
+eIW
+eIW
+eIW
+eIW
+eIW
+iVq
+hge
+hge
+hge
+hge
+iFb
+uPL
+vgf
+fOy
+iuU
+wRA
+uFS
+htO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+nTz
+leJ
+leJ
+leJ
+leJ
+leJ
+leJ
+leJ
+nTz
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iEW
+hQn
+sAC
+sAC
+sAC
+cLn
+dEy
+dFy
+xRE
+xRE
+xRE
+xRE
+xRE
+xRE
+gcT
+gsH
+xsy
+gry
+xsy
+xYH
+xYH
+xsy
+uyC
+xsy
+dCf
+jpc
+jej
+xYH
+xYH
+xYH
+kyC
+dEy
+lun
+cNX
+mhF
+ylo
+ylo
+lqg
+nqE
+nqE
+sAC
+sAC
+dEy
+eGS
+sAC
+sAC
+dEy
+kpJ
+kpJ
+dEy
+ncZ
+nqC
+nek
+sPm
+qpR
+maC
+maC
+qWZ
+reB
+xiw
+tLQ
+ybJ
+xmH
+veF
+mCU
+wHY
+lXf
+ujX
+fJO
+bjs
+bjs
+gAt
+gAt
+gAt
+bjs
+bjs
+cZd
+veF
+hwV
+hZx
+osu
+lmp
+osu
+vlB
+eZu
+bjs
+xVX
+qVw
+nzf
+nzf
+nzf
+pxG
+hXg
+veF
+wdx
+vea
+xeW
+oNP
+pMb
+sUJ
+vea
+xeW
+veF
+"}
+(209,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+wRA
+xEX
+htO
+iuU
+bHZ
+iuU
+ukI
+eIW
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+uPL
+smH
+iuU
+vgf
+iuU
+wRA
+uFS
+htO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+nTz
+leJ
+leJ
+leJ
+leJ
+leJ
+leJ
+leJ
+nTz
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+dEy
+xdo
+sAC
+sAC
+cLu
+dEy
+dHJ
+xRE
+xRE
+xRE
+xRE
+xRE
+xRE
+gcU
+gty
+gIn
+gKq
+xYH
+xYH
+xYH
+xYH
+gIn
+gKq
+pDj
+jpc
+jej
+xYH
+xYH
+xYH
+kyC
+dEy
+lxn
+mhF
+cNX
+ylo
+mGi
+lqu
+nrD
+nrD
+xaZ
+obc
+dEy
+rMq
+sAC
+sAC
+dEy
+kpJ
+kpJ
+dEy
+sAC
+sAC
+bnI
+sPm
+iEK
+maC
+qLD
+iEK
+iEK
+xvO
+fbq
+ybJ
+bmp
+veF
+sKF
+rWO
+rWO
+iVD
+kBV
+dJo
+dJo
+pLD
+pLD
+gAt
+bjs
+bjs
+xyv
+veF
+ila
+iqV
+rRt
+wqo
+kLW
+veF
+bjs
+dJo
+ffI
+veF
+dje
+qiF
+aHg
+xbG
+iJh
+veF
+cQL
+vea
+xeW
+oNP
+cct
+iQi
+vea
+xeW
+veF
+"}
+(210,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+wRA
+xEX
+htO
+iuU
+stM
+iuU
+uPL
+eIW
+iuU
+dCZ
+bQR
+ygG
+pfv
+akM
+qJw
+dCZ
+iuU
+uPL
+uPL
+iuU
+huf
+iuU
+wRA
+uFS
+htO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+nTz
+leJ
+leJ
+leJ
+leJ
+leJ
+leJ
+leJ
+nTz
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+auz
+auz
+auz
+paY
+bRh
+sAC
+sAC
+cLu
+dEy
+dFy
+xRE
+xRE
+xRE
+xRE
+xRE
+xRE
+gcT
+gtE
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xwY
+jpc
+jes
+xYH
+xYH
+xYH
+kyR
+dEy
+lyv
+mjd
+mjd
+ylo
+ylo
+xaZ
+xaZ
+xaZ
+xaZ
+xaZ
+dEy
+wbx
+aoG
+sAC
+mJR
+kpJ
+kpJ
+fqr
+sAC
+cVG
+cVG
+sPm
+xMo
+maC
+maC
+qXN
+rjm
+xvO
+tLQ
+ybJ
+rRb
+veF
+rOy
+wHp
+wHp
+uku
+wHp
+bjs
+bjs
+bjs
+bjs
+dJo
+bjs
+wTQ
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+qxr
+lub
+jGI
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+fLG
+vea
+xeW
+oNP
+sqc
+xHJ
+vea
+xeW
+veF
+"}
+(211,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+wRA
+xEX
+htO
+iuU
+iuU
+iuU
+uPL
+eIW
+rXl
+rXl
+rXl
+rXl
+rXl
+rXl
+rXl
+rXl
+rXl
+uPL
+uPL
+iuU
+iuU
+iuU
+wRA
+xpy
+htO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+nTz
+leJ
+leJ
+leJ
+leJ
+leJ
+leJ
+leJ
+nTz
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+dEy
+xdo
+sAC
+sAC
+cLu
+dEy
+dKc
+xRE
+xRE
+kXw
+kXw
+kXw
+kXw
+gfs
+guC
+xYH
+xYH
+wmH
+wmH
+wmH
+wmH
+xYH
+xYH
+qeJ
+jpc
+jfD
+xYH
+xYH
+xYH
+kyU
+dEy
+lyZ
+wCk
+mFh
+ylo
+ylo
+xaZ
+ntd
+xaZ
+xaZ
+oeb
+dEy
+rIn
+sAC
+sAC
+dEy
+kpJ
+cPV
+cah
+ehx
+dAx
+qlj
+qcy
+qqp
+maC
+maC
+qWZ
+reB
+xvO
+fbq
+ybJ
+ybJ
+oPa
+wll
+wll
+wll
+wll
+yaG
+qDX
+lSb
+lSb
+tKt
+lSb
+chH
+wll
+xht
+xCx
+eWY
+dWz
+wll
+oNz
+tjg
+wll
+jty
+jty
+jty
+aKY
+wll
+wfx
+wHp
+wHp
+rjK
+uUa
+avK
+vea
+xeW
+aKL
+sIq
+avK
+vea
+xeW
+veF
+"}
+(212,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+wRA
+jKW
+htO
+iuU
+iuU
+iuU
+uPL
+eIW
+rXl
+rXl
+rXl
+rXl
+rXl
+rXl
+rXl
+rXl
+rXl
+uPL
+uPL
+iuU
+iuU
+iuU
+wRA
+iLw
+htO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+nTz
+leJ
+leJ
+leJ
+leJ
+leJ
+leJ
+leJ
+nTz
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+aYR
+hQn
+sAC
+sAC
+sAC
+cNh
+dEy
+dLs
+xRE
+ezt
+dEy
+dEy
+dEy
+dEy
+dEy
+gvr
+xYH
+wmH
+ygj
+ygj
+ygj
+ygj
+wmH
+xYH
+irU
+jpc
+jej
+xYH
+xYH
+xYH
+kAr
+dEy
+lrM
+miX
+miX
+ylo
+ylo
+xaZ
+xaZ
+xaZ
+xaZ
+obc
+dEy
+qzb
+sAC
+sAC
+dEy
+cPv
+rew
+dEy
+sAC
+sAC
+bnI
+sPm
+iEK
+maC
+maC
+qXR
+iEK
+xvO
+roP
+ryw
+ybJ
+sdu
+lSb
+tKt
+lSb
+lSb
+lSb
+lSb
+lSb
+lSb
+lSb
+lSb
+lSb
+lSb
+lSb
+lSb
+lSb
+tKt
+lSb
+lSb
+jpl
+lSb
+lSb
+tKt
+lSb
+lSb
+lSb
+chH
+wll
+wll
+wll
+lGZ
+wll
+qDX
+chH
+wll
+wll
+wll
+qDX
+xeW
+veF
+"}
+(213,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+wRA
+jKW
+htO
+iuU
+iuU
+iuU
+ukI
+eIW
+iuU
+ocX
+qYU
+qYU
+qYU
+qYU
+rXl
+maH
+iuU
+uPL
+smH
+iuU
+iuU
+iuU
+wRA
+iLw
+htO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+nTz
+nTz
+nTz
+nTz
+nTz
+nTz
+nTz
+nTz
+nTz
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+dEy
+bOP
+sAC
+sAC
+cOC
+dEy
+dNa
+efG
+xRE
+mVQ
+fgs
+fkt
+fDh
+dEy
+gyA
+xYH
+veq
+ygj
+xsy
+hkd
+ygj
+veq
+xYH
+isW
+jpc
+jej
+xYH
+xYH
+xYH
+kyC
+dEy
+lxn
+mhF
+mhF
+ylo
+mGi
+neG
+nrD
+nqE
+xaZ
+obc
+dEy
+egZ
+sAC
+jnD
+dEy
+vnr
+tyk
+dEy
+fPy
+nvL
+nHi
+sPm
+qqq
+maC
+maC
+qXN
+rjm
+lWo
+rpv
+ryN
+ryN
+oPa
+xqX
+xqX
+xqX
+xqX
+xqX
+xqX
+tUD
+uWC
+xqX
+xqX
+xqX
+tUD
+uWC
+xqX
+ajR
+uWC
+xqX
+uui
+stq
+uui
+xqX
+xqX
+ajR
+lSb
+lSb
+uWC
+xqX
+xqX
+xqX
+ryQ
+xqX
+xqX
+xqX
+tUD
+lSb
+uWC
+xqX
+bpt
+veF
+"}
+(214,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+nBb
+vFk
+lVF
+jWC
+pMu
+vob
+aRB
+eIW
+iuU
+jIS
+seh
+cPX
+seh
+egj
+rXl
+rXl
+iuU
+uPL
+xEt
+vob
+pMu
+vob
+ewg
+rDo
+vzI
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+auz
+auz
+auz
+byK
+dEy
+cgH
+sAC
+cOD
+dEy
+dNa
+egi
+xRE
+aGp
+aGp
+aGp
+fya
+dEy
+jpc
+jpc
+jpc
+jpc
+jpc
+jpc
+jpc
+jpc
+jpc
+jpc
+jpc
+jfX
+xYH
+xYH
+xYH
+kyC
+dEy
+lun
+mhF
+cNX
+ylo
+ylo
+lqg
+nqE
+nrD
+sAC
+ofd
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+rSj
+dEy
+dEy
+dEy
+dEy
+dEy
+veF
+veF
+noL
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+rOy
+sVv
+rhk
+wHp
+wHp
+uNO
+vea
+xeW
+hQV
+wHp
+wHp
+vea
+xeW
+xEk
+vea
+xeW
+bjs
+shT
+veF
+rOy
+wHp
+wHp
+vea
+lSb
+lSb
+xeW
+wHp
+wHp
+uTa
+veF
+pQL
+pcJ
+iLv
+lSb
+lSb
+lSb
+veF
+veF
+veF
+"}
+(215,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+vzI
+kpU
+ewg
+vob
+nLt
+vob
+gZG
+civ
+gvF
+mrA
+rXl
+rXl
+rXl
+seh
+rXl
+maH
+iuU
+uPL
+xEt
+vob
+nLt
+vob
+ewg
+rFZ
+vzI
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+fCu
+fCu
+fCu
+fCu
+fxK
+lqz
+lqz
+lqz
+pYD
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+auz
+auz
+auz
+auz
+dEy
+xdo
+sAC
+cOD
+dEy
+dOV
+egi
+xRE
+ePf
+fgt
+aGp
+fyP
+dEy
+gzz
+xYH
+vyl
+xYH
+xYH
+xYH
+xYH
+vyl
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+kAP
+dEy
+eQF
+mjd
+mjd
+ylo
+ylo
+neO
+nvL
+nHi
+wCk
+ofT
+dEy
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+veF
+jyD
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+spA
+spA
+veF
+veF
+wHp
+vea
+xeW
+xEG
+vea
+xeW
+bjs
+cWI
+veF
+bgo
+bgo
+wHp
+vea
+lSb
+lSb
+xeW
+wHp
+bgo
+bgo
+veF
+usQ
+aPM
+aPM
+lSb
+lSb
+lSb
+kgD
+ldM
+veF
+"}
+(216,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+wRA
+izA
+htO
+gvF
+iuU
+iuU
+mVN
+eIW
+iuU
+dCl
+phs
+fHb
+mGJ
+rXl
+rXl
+rXl
+iuU
+uPL
+smH
+iuU
+iuU
+iuU
+wRA
+nlV
+htO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+nTz
+leJ
+leJ
+nTz
+fxK
+mZf
+leJ
+leJ
+pYD
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+dEy
+cdf
+sAC
+nlR
+dEy
+dRv
+ekQ
+xRE
+ePM
+fgO
+aGp
+fCj
+dEy
+gBR
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+rIA
+dEy
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+veF
+jyD
+jyD
+jyD
+veF
+vXj
+ovq
+vXj
+ual
+yiH
+yiH
+vTo
+veF
+rOy
+vea
+xeW
+jyE
+vpr
+xeW
+bjs
+pBx
+veF
+jyt
+dYI
+wHp
+vpr
+lSb
+lSb
+xeW
+wHp
+hHg
+fXw
+veF
+msb
+aPM
+aPM
+lSb
+lSb
+vbo
+veF
+veF
+veF
+"}
+(217,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+wRA
+izA
+htO
+gvF
+kRi
+eIW
+eIW
+eIW
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+rXl
+rXl
+iuU
+uPL
+uPL
+eIW
+kRi
+iuU
+wRA
+nlV
+htO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fCu
+leJ
+leJ
+fCu
+fxK
+nTz
+leJ
+leJ
+pYD
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+mFM
+hQn
+sAC
+sAC
+sAC
+dEy
+dRK
+egi
+xRE
+aGp
+aGp
+aGp
+fya
+dEy
+gDE
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+xYH
+kQP
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+ylo
+clr
+dEy
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+veF
+jyD
+jyD
+jyD
+veF
+vHw
+vHw
+vHw
+yiH
+yiH
+yiH
+cEj
+veF
+veF
+sZr
+sZr
+veF
+xWD
+oWS
+veF
+veF
+veF
+veF
+veF
+rtj
+aqE
+xpK
+ffo
+dAR
+vCq
+veF
+veF
+veF
+hXo
+lNE
+hvs
+lSb
+lSb
+lSb
+kgD
+ldM
+veF
+"}
+(218,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+wRA
+izA
+htO
+iuU
+sNa
+eIW
+eIW
+eIW
+iuU
+vLx
+xcj
+xcj
+rxT
+iuU
+lQx
+rXl
+iuU
+uPL
+ouq
+qSe
+ccm
+iuU
+wRA
+nlV
+htO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+nTz
+leJ
+leJ
+nTz
+fxK
+nTz
+leJ
+leJ
+pYD
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+dEy
+ewu
+yfw
+yfw
+dEy
+jaU
+ayN
+oXq
+mVQ
+kqn
+flT
+fDh
+dEy
+lZK
+xbp
+gMc
+eOL
+vDc
+eOL
+huv
+hLK
+hRY
+iuV
+iDd
+eOL
+vDc
+eOL
+kbA
+kDo
+dEy
+lAl
+sAC
+sAC
+mje
+mje
+mje
+mje
+mje
+mje
+sIv
+dEy
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+jyD
+tue
+jyD
+veF
+lDX
+yiH
+yiH
+yiH
+yiH
+yiH
+bah
+veF
+bjs
+dJo
+dJo
+noL
+xXr
+baI
+lhq
+ldQ
+veF
+veF
+veF
+veF
+sum
+wpX
+hJy
+sum
+veF
+veF
+veF
+veF
+noL
+veF
+veF
+vDp
+lSb
+jjP
+veF
+veF
+veF
+"}
+(219,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+vYf
+eOr
+tbs
+gvF
+dUz
+eIW
+eIW
+eIW
+iuU
+dYk
+rXl
+rXl
+rXl
+mTN
+rXl
+rXl
+iuU
+lzH
+qSe
+qSe
+lup
+iuU
+wRA
+nlV
+htO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+fxK
+fxK
+fxK
+fCu
+leJ
+leJ
+fCu
+fxK
+nTz
+leJ
+leJ
+siH
+fxK
+fxK
+fxK
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+auz
+auz
+auz
+auz
+byK
+dEy
+dEy
+dEy
+dEy
+dEy
+jjm
+pTT
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+dEy
+xSo
+tPT
+xSo
+tPT
+dEy
+laZ
+hGZ
+pTT
+dEy
+tPT
+xSo
+tPT
+sAz
+pTT
+dEy
+ghO
+mje
+sAC
+mYZ
+ndc
+ndc
+ndc
+ndc
+nLY
+ohz
+dEy
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+jyD
+jyD
+jyD
+veF
+vHw
+vHw
+uEj
+yiH
+yiH
+yiH
+vUG
+veF
+bjs
+bjs
+bjs
+veF
+xXr
+bjs
+bjs
+kNv
+veF
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+tue
+tue
+tue
+hnf
+wuw
+wKn
+wpu
+wpu
+wpu
+qWt
+aZF
+hnf
+"}
+(220,1,1) = {"
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+tue
+jyD
+vYf
+izA
+htO
+iuU
+dUz
+eIW
+eIW
+eIW
+iuU
+aXF
+rXl
+rXl
+rXl
+mTN
+rXl
+rXl
+iuU
+uPL
+eIW
+eIW
+eMF
+iuU
+wRA
+nlV
+htO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+fxK
+nTz
+leJ
+leJ
+nTz
+fxK
+nTz
+leJ
+leJ
+tuL
+fxK
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qtF
+xYH
+qtF
+xYH
+xSo
+gMu
+hTb
+gkb
+xSo
+xYH
+qtF
+xYH
+qtF
+qjz
+dEy
+lFi
+mje
+sAC
+sAC
+sAC
+sAC
+sAC
+sAC
+sAC
+fJi
+dEy
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+jyD
+jyD
+jyD
+veF
+sXn
+sXn
+sXn
+ual
+cEa
+vlY
+veF
+veF
+bjs
+bjs
+bjs
+veF
+xZd
+bjs
+bjs
+kNv
+veF
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+cKw
+fAZ
+wpu
+nim
+wpu
+wpu
+nSb
+xvO
+"}
+(221,1,1) = {"
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+vYf
+izA
+htO
+iuU
+sNa
+eIW
+eIW
+eIW
+iuU
+vLx
+xcj
+xcj
+rxT
+iuU
+lQx
+rXl
+iuU
+uPL
+eIW
+eIW
+eIW
+iuU
+wRA
+nlV
+htO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+fCu
+leJ
+leJ
+fCu
+fxK
+mZf
+leJ
+leJ
+uEq
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+qtF
+xYH
+qtF
+xYH
+ygd
+gkb
+dsW
+gMu
+ygd
+xYH
+qtF
+xYH
+qtF
+jyD
+dEy
+lFi
+mje
+sAC
+mZc
+ndu
+nfc
+nwN
+nHq
+nNV
+wCk
+dEy
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+veF
+veF
+veF
+veF
+veF
+noL
+veF
+veF
+veF
+noL
+veF
+rOy
+bjs
+bjs
+veF
+xZd
+bjs
+dJo
+qbO
+veF
+eMI
+tue
+jyD
+tue
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+xvO
+guG
+wpu
+pdi
+sQl
+qlG
+wpu
+vOU
+xvO
+"}
+(222,1,1) = {"
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+vYf
+ebR
+htO
+iuU
+kRi
+eIW
+eIW
+eIW
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+rXl
+rXl
+iuU
+uPL
+eIW
+eIW
+kdY
+iuU
+wRA
+rwE
+htO
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+fxK
+leJ
+leJ
+fxK
+fxK
+fxK
+leJ
+leJ
+fxK
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+gxA
+tPT
+gxA
+tPT
+dEy
+laZ
+hGZ
+pTT
+dEy
+tPT
+gxA
+tPT
+gxA
+dEy
+dEy
+dEy
+jjm
+mef
+mef
+mef
+mef
+mef
+mef
+pTT
+dEy
+byK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+tue
+veF
+veF
+seJ
+gKB
+tah
+tRW
+iIT
+veF
+rOy
+bjs
+bjs
+bjs
+bjs
+bjs
+bjs
+bjs
+veF
+yda
+nyH
+nyH
+eUO
+veF
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+ubp
+wpu
+pdi
+oRN
+qlG
+wpu
+sTP
+xvO
+"}
+(223,1,1) = {"
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+xLW
+iuU
+iuU
+iuU
+iuU
+iuU
+mVN
+eIW
+iuU
+vLx
+xcj
+xcj
+rxT
+iuU
+lQx
+rXl
+iuU
+uPL
+npy
+iuU
+iuU
+iuU
+iuU
+iuU
+gkl
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+mZf
+nTz
+leJ
+leJ
+mZf
+nTz
+mZf
+leJ
+leJ
+nTz
+mZf
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+hlr
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+noL
+veF
+sfp
+vTv
+vTv
+vTv
+ukz
+uEy
+bjs
+bjs
+bjs
+bjs
+dJo
+wJe
+dJo
+bjs
+veF
+noL
+noL
+noL
+noL
+veF
+tue
+tue
+tue
+tue
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+xvO
+ipp
+wpu
+pdi
+sQl
+qlG
+wpu
+qcm
+xvO
+"}
+(224,1,1) = {"
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+tue
+jyD
+gvF
+ikJ
+eIW
+eIW
+npy
+iuU
+eIW
+eIW
+iuU
+dYk
+rXl
+rXl
+rXl
+mTN
+rXl
+rXl
+iuU
+uPL
+eIW
+eIW
+eIW
+eIW
+eIW
+dxC
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+nTz
+nTz
+leJ
+leJ
+nTz
+nTz
+nTz
+leJ
+leJ
+nTz
+nTz
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+rrm
+bjs
+rRv
+vTv
+vTv
+vTv
+vTv
+vTv
+uEy
+bjs
+bjs
+bjs
+bjs
+bjs
+bjs
+bjs
+bjs
+veF
+ydO
+ydO
+ydO
+ydO
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+xvO
+doe
+fAZ
+pdi
+sQl
+qlG
+wpu
+doe
+xvO
+"}
+(225,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iuU
+gRG
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+iuU
+aXF
+rXl
+rXl
+rXl
+mTN
+rXl
+rXl
+iuU
+ouq
+qSe
+qSe
+qSe
+qSe
+qSe
+koO
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+dzC
+gzj
+nTz
+leJ
+leJ
+lqz
+ixm
+lqz
+leJ
+leJ
+nTz
+nTz
+dzC
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+vlE
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+bjs
+rRv
+vTv
+vTv
+vTv
+vTv
+mbF
+veF
+rOy
+bjs
+bjs
+vUT
+bjs
+bjs
+wUd
+bjs
+xGL
+ydP
+ydP
+ydP
+ydO
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+tue
+tue
+tue
+xvO
+kBc
+wpu
+pdi
+sQl
+qlG
+wpu
+qcm
+xvO
+"}
+(226,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+iuU
+nCY
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+iuU
+vLx
+xcj
+xcj
+rxT
+iuU
+lQx
+rXl
+iuU
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+dxC
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+eEL
+gCq
+nTz
+leJ
+leJ
+lqz
+lqz
+lqz
+leJ
+leJ
+nTz
+nTz
+eEL
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+sgy
+vTv
+tar
+vTv
+iPw
+veF
+veF
+voX
+vIu
+mzS
+wxo
+wJJ
+mzS
+veF
+veF
+ydY
+ydP
+ydP
+ydO
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+vvn
+hsb
+ylm
+sQl
+eSX
+sQl
+ylm
+rBi
+foD
+"}
+(227,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jzu
+iuU
+nFV
+eIW
+eIW
+iuU
+eIW
+eIW
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+rXl
+rXl
+iuU
+eIW
+npy
+iuU
+iuU
+iuU
+mVD
+iuU
+wps
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+eEL
+hoH
+nTz
+leJ
+leJ
+leJ
+nTz
+leJ
+leJ
+leJ
+nTz
+nTz
+eEL
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+tue
+veF
+veF
+siK
+sLV
+lXf
+tSy
+umM
+veF
+veF
+wMD
+xQT
+vpT
+xJU
+fJr
+vpT
+veF
+veF
+veF
+veF
+xGL
+veF
+veF
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+oKr
+hSC
+hSC
+hSC
+hSC
+hSC
+foD
+jyD
+"}
+(228,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+iuU
+nFV
+eIW
+eIW
+iuU
+mVN
+eIW
+iuU
+vLx
+xcj
+xcj
+rxT
+iuU
+lQx
+rXl
+iuU
+eIW
+eIW
+eIW
+kRi
+iuU
+lhB
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+eEL
+iqq
+nTz
+leJ
+leJ
+leJ
+nTz
+leJ
+leJ
+leJ
+nTz
+nTz
+eEL
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+tue
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+noL
+veF
+dqw
+hSC
+taR
+hSC
+rbx
+noL
+veF
+sIa
+sIa
+bqf
+sIa
+sIa
+vpT
+xjq
+xGX
+xGX
+des
+kSW
+xGX
+puu
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(229,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+iuU
+nFV
+eIW
+eIW
+iuU
+eIW
+eIW
+iuU
+dYk
+rXl
+rXl
+rXl
+mTN
+rXl
+rXl
+iuU
+eIW
+eIW
+eIW
+iTN
+iuU
+rhd
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+eEL
+flR
+nTz
+nTz
+leJ
+leJ
+leJ
+leJ
+leJ
+nTz
+nTz
+nTz
+eEL
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+veF
+veF
+uiR
+tGb
+xvO
+uiR
+tGb
+veF
+veF
+sIa
+sIa
+vpT
+sIa
+sIa
+vpT
+xkE
+xIS
+uFe
+jAr
+yeD
+mGI
+iBB
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(230,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iuU
+pYe
+eIW
+npy
+iuU
+eIW
+eIW
+iuU
+aXF
+rXl
+rXl
+rXl
+mTN
+rXl
+rXl
+iuU
+eIW
+eIW
+eIW
+dUz
+iuU
+rhd
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ene
+nTz
+nTz
+nTz
+leJ
+leJ
+leJ
+leJ
+leJ
+nTz
+nTz
+nTz
+ene
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+tue
+jyD
+veF
+veF
+pAT
+tTw
+xvO
+pAT
+tTw
+veF
+veF
+sIa
+sIa
+vpT
+sIa
+sIa
+vpT
+xkE
+xJC
+yeG
+yeD
+yeG
+ezv
+xkE
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(231,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iuU
+nri
+eIW
+eIW
+iuU
+eIW
+eIW
+iuU
+vLx
+xcj
+xcj
+rxT
+iuU
+lQx
+rXl
+iuU
+eIW
+eIW
+eIW
+iTN
+iuU
+dRt
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+mZf
+nTz
+nTz
+nTz
+leJ
+leJ
+leJ
+nTz
+nTz
+nTz
+mZf
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+pAT
+tTw
+xvO
+pAT
+tTw
+veF
+veF
+sIa
+sIa
+bqf
+sIa
+sIa
+vpT
+xkE
+xLp
+yeG
+yeG
+yeG
+jUw
+xkE
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(232,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jzu
+iuU
+ewA
+xaI
+iuU
+eIW
+eIW
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+iuU
+eIW
+eIW
+eIW
+kRi
+iuU
+rhd
+wps
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+leJ
+leJ
+leJ
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+afr
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+pAT
+tTw
+xvO
+pAT
+tTw
+veF
+veF
+sIa
+sIa
+vpT
+sIa
+sIa
+vpT
+xkE
+xLA
+yfP
+yeG
+vXg
+tJZ
+iBB
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(233,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jzu
+iuU
+iuU
+iuU
+mVN
+eIW
+tdZ
+eIW
+eIW
+lks
+eIW
+lks
+eIW
+eIW
+tdZ
+eIW
+npy
+iuU
+iuU
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+fxK
+fxK
+fxK
+fxK
+mZf
+mZf
+leJ
+leJ
+leJ
+mZf
+mZf
+fxK
+fxK
+fxK
+fxK
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+pAT
+tTw
+xvO
+pAT
+tTw
+veF
+veF
+sIa
+sIa
+bqf
+sIa
+sIa
+vpT
+xkI
+xGX
+xGX
+kSW
+xGX
+xGX
+wvl
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(234,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iuU
+iuU
+aeh
+aeh
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+aeh
+aeh
+iuU
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+fxK
+fxK
+fxK
+nTz
+nTz
+leJ
+leJ
+leJ
+nTz
+nTz
+fxK
+fxK
+fxK
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+xPw
+moX
+moX
+moX
+moX
+veF
+veF
+pAT
+tTw
+xvO
+pAT
+tTw
+noL
+veF
+sIa
+sIa
+vpT
+sIa
+sIa
+vpT
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(235,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iuU
+iuU
+aeh
+aeh
+rPz
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+rPz
+aeh
+aeh
+iuU
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+fxK
+fxK
+nTz
+lqz
+leJ
+leJ
+leJ
+lqz
+nTz
+fxK
+fxK
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+sjd
+tTw
+xvO
+sjd
+tTw
+veF
+veF
+sIa
+sIa
+vpT
+sIa
+sIa
+vpT
+jyD
+jyD
+tue
+jyD
+tue
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(236,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iuU
+iuU
+aeh
+aeh
+aeh
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+eIW
+aeh
+aeh
+aeh
+iuU
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+fxK
+ixm
+lqz
+leJ
+leJ
+leJ
+lqz
+ixm
+fxK
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+pAT
+tTw
+xvO
+pAT
+tTw
+noL
+veF
+sIa
+vKp
+vpT
+sIa
+sIa
+vpT
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(237,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jzu
+iuU
+aeh
+aeh
+aeh
+iuU
+tRe
+rXl
+rXl
+rXl
+rXl
+rXl
+tRe
+iuU
+aeh
+aeh
+aeh
+iuU
+wps
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+lqz
+lqz
+leJ
+leJ
+leJ
+lqz
+lqz
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+tue
+jyD
+veF
+veF
+skq
+sMn
+tfq
+pAT
+tTw
+veF
+veF
+sIa
+sIa
+vpT
+sIa
+sIa
+vpT
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(238,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iuU
+aeh
+aeh
+aeh
+iuU
+lQx
+rXl
+nMQ
+uMk
+uMk
+rXl
+maH
+iuU
+aeh
+aeh
+aeh
+iuU
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+nTz
+nTz
+leJ
+leJ
+leJ
+nTz
+nTz
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+pAT
+tTw
+xvO
+pAT
+sMn
+veF
+veF
+wMD
+xQT
+bqf
+xJU
+fJr
+vpT
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(239,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jzu
+oqe
+oqe
+oqe
+tbj
+rXl
+rXl
+ben
+lbz
+uMk
+rXl
+rXl
+tbj
+oqe
+oqe
+oqe
+wps
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+nTz
+nTz
+leJ
+mEE
+leJ
+nTz
+nTz
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+veF
+veF
+slB
+sNl
+xZJ
+slB
+sNl
+noL
+veF
+wNs
+vLT
+nNN
+wNs
+wNs
+nNN
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(240,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+oqe
+lwB
+oqe
+wBh
+nxk
+rXl
+rXl
+rXl
+rXl
+rXl
+nxk
+wBh
+oqe
+lwB
+oqe
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+nTz
+nTz
+leJ
+leJ
+leJ
+nTz
+nTz
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(241,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+gNo
+iFV
+nxk
+rXl
+rXl
+rXl
+nxk
+crS
+oPr
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fxK
+mZf
+nTz
+leJ
+leJ
+leJ
+nTz
+mZf
+fxK
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+jyD
+jyD
+tue
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(242,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+gNo
+vDL
+vDL
+vDL
+vDL
+vDL
+oPr
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+fxK
+mZf
+lqz
+lqz
+lqz
+mZf
+fxK
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(243,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+ahL
+kdb
+lHq
+lHq
+lHq
+qKJ
+rEX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(244,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(245,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(246,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+moX
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+"}
+(247,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+fAu
+lth
+lth
+lth
+pwa
+lth
+lth
+lth
+pAX
+"}
+(248,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iMD
+lHa
+lHa
+lHa
+lHa
+lHa
+lHa
+lHa
+iMD
+"}
+(249,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+jyD
+jyD
+tue
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iMD
+lHa
+lHa
+lHa
+lHa
+lHa
+lHa
+lHa
+iMD
+"}
+(250,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+tue
+jyD
+tue
+tue
+jyD
+tue
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iMD
+lHa
+lHa
+lHa
+lHa
+lHa
+lHa
+lHa
+iMD
+"}
+(251,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iMD
+lHa
+lHa
+lHa
+lHa
+lHa
+lHa
+lHa
+iMD
+"}
+(252,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iMD
+lHa
+lHa
+lHa
+lHa
+lHa
+lHa
+lHa
+iMD
+"}
+(253,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iMD
+lHa
+lHa
+lHa
+lHa
+lHa
+lHa
+lHa
+iMD
+"}
+(254,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+iMD
+lHa
+lHa
+lHa
+lHa
+lHa
+lHa
+lHa
+iMD
+"}
+(255,1,1) = {"
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+jyD
+kdD
+lth
+lth
+lth
+lth
+lth
+lth
+lth
+xtI
+"}
diff --git a/_maps/map_files/shuttles/admin_admin.dmm b/_maps/map_files/shuttles/admin_admin.dmm
index 6e494e0b85b0f..b82b8b19305b3 100644
--- a/_maps/map_files/shuttles/admin_admin.dmm
+++ b/_maps/map_files/shuttles/admin_admin.dmm
@@ -1,1092 +1,1210 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/space,
-/area/space)
-"ab" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 8;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/administration)
-"ac" = (
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
- },
-/area/shuttle/administration)
-"ad" = (
-/obj/machinery/door/airlock/external{
- id_tag = "s_docking_airlock";
- name = "Shuttle Hatch";
- req_access_txt = "101"
- },
-/obj/structure/fans/tiny,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"ae" = (
-/obj/machinery/door/airlock/external{
- id_tag = "s_docking_airlock";
- name = "Shuttle Hatch";
- req_access_txt = "101"
- },
-/obj/docking_port/mobile{
- dir = 2;
- dwidth = 8;
- height = 15;
- id = "admin";
- name = "admin";
- roundstart_move = null;
- timid = 1;
- width = 18
- },
-/obj/structure/fans/tiny,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"af" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/administration)
-"ag" = (
-/obj/machinery/vending/boozeomat,
-/turf/simulated/shuttle/wall{
- icon_state = "wall3"
- },
-/area/shuttle/administration)
-"ah" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chem_dispenser/beer,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"ai" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/drinkingglasses,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aj" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chem_dispenser/soda,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"ak" = (
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "wall3"
- },
-/area/shuttle/administration)
-"al" = (
-/obj/machinery/door_control{
- id = "adminshuttleblast";
- name = "blast door control";
- pixel_x = -30;
- req_access_txt = "101"
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"am" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"an" = (
-/obj/machinery/cell_charger,
-/obj/structure/table,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"ao" = (
-/obj/item/storage/toolbox/mechanical,
-/obj/item/multitool,
-/obj/structure/table,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"ap" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aq" = (
-/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"ar" = (
-/obj/machinery/door/poddoor/preopen{
- id_tag = "adminshuttleblast";
- name = "Blast Doors";
- req_access_txt = "101"
- },
-/obj/machinery/door/airlock/centcom{
- id_tag = "adminshuttle";
- name = "General Access";
- opacity = 1;
- req_access_txt = "101"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"as" = (
-/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"at" = (
-/obj/item/stack/sheet/metal,
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"au" = (
-/obj/machinery/mecha_part_fabricator/upgraded,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"av" = (
-/obj/machinery/kitchen_machine/microwave/upgraded,
-/obj/structure/table,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aw" = (
-/obj/machinery/door/window/northright{
- name = "bar"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"ax" = (
-/obj/structure/table,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"ay" = (
-/obj/item/ashtray/glass,
-/obj/structure/table,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"az" = (
-/obj/item/storage/fancy/cigarettes/dromedaryco,
-/obj/item/lighter/zippo{
- pixel_x = 5
- },
-/obj/structure/table,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aA" = (
-/obj/machinery/door_control{
- id = "adminshuttleblast";
- name = "blast door control";
- pixel_x = -30;
- req_access_txt = "101"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aB" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "adminshuttle";
- name = "Workshop";
- opacity = 1;
- req_access_txt = "101"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aC" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (EAST)"
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/administration)
-"aD" = (
-/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (WEST)";
- icon_state = "heater";
- dir = 8
- },
-/obj/structure/window/plasmareinforced{
- color = "#FF0000";
- dir = 4
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/administration)
-"aE" = (
-/obj/structure/chair/stool/bar,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aF" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aG" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aH" = (
-/obj/machinery/recharge_station/upgraded,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aI" = (
-/obj/machinery/autolathe/upgraded{
- hacked = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aJ" = (
-/obj/structure/dispenser,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aK" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_r";
- tag = "icon-propulsion_r (EAST)"
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/administration)
-"aL" = (
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aM" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/administration)
-"aN" = (
-/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "diagonalWall3"
- },
-/area/shuttle/administration)
-"aO" = (
-/obj/machinery/vending/snack,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aP" = (
-/obj/machinery/vending/cola,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aQ" = (
-/obj/machinery/vending/coffee,
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aR" = (
-/obj/machinery/vending/cigarette,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aS" = (
-/obj/machinery/computer/card,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aT" = (
-/obj/machinery/computer/communications,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aU" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 4;
- icon_state = "open";
- id_tag = "adminshuttleshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- tag = "icon-window5_end (WEST)";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/shuttle/administration)
-"aV" = (
-/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
- },
-/obj/machinery/door_control{
- id = "adminshuttleblast";
- name = "Blast door control";
- pixel_x = -5;
- pixel_y = 35;
- req_access = list(101);
- req_access_txt = "0"
- },
-/obj/machinery/door_control{
- id = "adminshuttleshutters";
- name = "Shutter control";
- pixel_x = 5;
- pixel_y = 35;
- req_access = list(101);
- req_access_txt = "0"
- },
-/obj/structure/chair/comfy/black{
- dir = 4
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aW" = (
-/obj/structure/chair/comfy/black{
- dir = 4
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aX" = (
-/obj/machinery/computer/shuttle/admin{
- name = "NTV Argos shuttle console"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aY" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 4;
- icon_state = "open";
- id_tag = "adminshuttleshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- tag = "icon-window5 (EAST)"
- },
-/turf/simulated/floor/plating,
-/area/shuttle/administration)
-"aZ" = (
-/obj/machinery/dna_scannernew/upgraded,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"ba" = (
-/obj/machinery/computer/cloning,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bb" = (
-/obj/machinery/clonepod/upgraded,
-/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bc" = (
-/obj/machinery/computer/scan_consolenew,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bd" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "adminshuttle";
- name = "Bridge";
- opacity = 1;
- req_access_txt = "101"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"be" = (
-/obj/machinery/computer/camera_advanced/shuttle_docker/admin{
- name = "NTV Argos shuttle navigation computer"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"bf" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 4;
- icon_state = "open";
- id_tag = "adminshuttleshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- tag = "icon-window5_end (EAST)";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/shuttle/administration)
-"bg" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bh" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "adminshuttle";
- name = "Medbay";
- opacity = 1;
- req_access_txt = "101"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"bi" = (
-/obj/machinery/bodyscanner,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bk" = (
-/obj/structure/window/plasmareinforced{
- color = "#FF0000";
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"bl" = (
-/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
- dir = 4
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"bm" = (
-/obj/machinery/sleeper/upgraded{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bn" = (
-/obj/machinery/chem_master,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bo" = (
-/obj/machinery/chem_dispenser,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bp" = (
-/obj/machinery/door/airlock/centcom{
- id_tag = "adminshuttle";
- name = "Holding Cell";
- opacity = 1;
- req_access_txt = "104"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"bq" = (
-/obj/machinery/door/window/brigdoor/westleft{
- color = "#d70000";
- req_access_txt = "104"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"br" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"bs" = (
-/obj/machinery/iv_drip,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bt" = (
-/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bu" = (
-/obj/structure/table,
-/obj/item/storage/box/handcuffs,
-/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"bv" = (
-/obj/structure/window/plasmareinforced{
- color = "#FF0000";
- dir = 8
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"bw" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"bx" = (
-/obj/structure/table,
-/obj/item/bonegel,
-/obj/item/bonesetter,
-/obj/item/hemostat,
-/obj/item/cautery,
-/obj/item/surgicaldrill,
-/obj/item/circular_saw,
-/obj/item/scalpel,
-/obj/item/retractor,
-/obj/item/FixOVein,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"by" = (
-/obj/machinery/optable,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bz" = (
-/obj/machinery/vending/medical,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bA" = (
-/obj/machinery/light,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"bB" = (
-/obj/structure/table,
-/obj/item/storage/lockbox/mindshield,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"bC" = (
-/obj/structure/table,
-/obj/item/storage/box/chemimp{
- pixel_x = 4;
- pixel_y = 3
- },
-/obj/item/storage/box/trackimp,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-
-(1,1,1) = {"
-aa
-aa
-aa
-ab
-aC
-aK
-aN
-aa
-ab
-aC
-aK
-aN
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(2,1,1) = {"
-aa
-aa
-ab
-ac
-aD
-aD
-ac
-ac
-ac
-aD
-aD
-ac
-aN
-aa
-aa
-aa
-aa
-aa
-"}
-(3,1,1) = {"
-aa
-ab
-ac
-av
-am
-am
-aO
-ac
-aZ
-bg
-bg
-bm
-ac
-aN
-aa
-aa
-aa
-aa
-"}
-(4,1,1) = {"
-ab
-ag
-am
-aw
-am
-am
-aP
-ac
-ba
-bg
-bg
-bg
-bs
-ac
-aN
-aa
-aa
-aa
-"}
-(5,1,1) = {"
-ac
-ah
-am
-ax
-aE
-am
-aQ
-ac
-bb
-bg
-bg
-bg
-bg
-bx
-ac
-aa
-aa
-aa
-"}
-(6,1,1) = {"
-ac
-ai
-am
-ay
-aE
-am
-aR
-ac
-aZ
-bg
-bi
-bn
-bg
-by
-ac
-aa
-aa
-aa
-"}
-(7,1,1) = {"
-ac
-aj
-aq
-az
-aE
-am
-am
-ac
-bc
-bg
-bg
-bo
-bt
-bz
-ac
-aa
-aa
-aa
-"}
-(8,1,1) = {"
-ac
-ak
-ak
-ak
-ak
-aL
-ak
-ak
-ak
-bh
-ak
-ak
-ak
-ak
-ac
-aa
-aa
-aa
-"}
-(9,1,1) = {"
-ad
-al
-ar
-aA
-am
-am
-am
-as
-am
-am
-am
-am
-am
-am
-ac
-aa
-aa
-aa
-"}
-(10,1,1) = {"
-ae
-am
-ar
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-bA
-ac
-aa
-aa
-aa
-"}
-(11,1,1) = {"
-ac
-ak
-ak
-aB
-ak
-ak
-ak
-bd
-ak
-ak
-ak
-bp
-ak
-ak
-ac
-aa
-aa
-aa
-"}
-(12,1,1) = {"
-ac
-an
-as
-am
-aF
-ac
-aS
-am
-am
-ac
-am
-am
-bu
-bB
-ac
-aa
-aa
-aa
-"}
-(13,1,1) = {"
-ac
-ao
-am
-am
-aG
-ac
-aV
-aW
-aW
-ac
-am
-am
-am
-bC
-ac
-aa
-aa
-aa
-"}
-(14,1,1) = {"
-ac
-ap
-am
-am
-aH
-ac
-aT
-aX
-be
-ac
-am
-am
-am
-am
-ac
-aa
-aa
-aa
-"}
-(15,1,1) = {"
-af
-ac
-at
-am
-am
-ac
-aU
-aY
-bf
-ac
-bk
-bq
-bv
-ac
-aM
-aa
-aa
-aa
-"}
-(16,1,1) = {"
-aa
-ac
-au
-am
-aI
-ac
-aa
-aa
-aa
-ac
-am
-am
-bw
-ac
-aa
-aa
-aa
-aa
-"}
-(17,1,1) = {"
-aa
-af
-ac
-aq
-aJ
-ac
-aa
-aa
-aa
-ac
-bl
-br
-ac
-aM
-aa
-aa
-aa
-aa
-"}
-(18,1,1) = {"
-aa
-aa
-af
-ak
-ak
-aM
-aa
-aa
-aa
-af
-ak
-ak
-aM
-aa
-aa
-aa
-aa
-aa
-"}
-(19,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/space,
+/area/space)
+"ab" = (
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "gwall_f2"
+ },
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s6"
+ },
+/area/shuttle/administration)
+"ad" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Hatch";
+ req_access_txt = "101"
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"ae" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "s_docking_airlock";
+ name = "Shuttle Hatch";
+ req_access_txt = "101"
+ },
+/obj/docking_port/mobile{
+ dir = 2;
+ dwidth = 9;
+ height = 18;
+ id = "admin";
+ name = "admin";
+ timid = 1;
+ width = 19
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"ag" = (
+/obj/machinery/vending/boozeomat,
+/turf/simulated/shuttle/wall{
+ icon_state = "wall3"
+ },
+/area/shuttle/administration)
+"ah" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chem_dispenser/beer/upgraded,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"ai" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/drinkingglasses,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aj" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chem_dispenser/soda/upgraded,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"ak" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12"
+ },
+/area/shuttle/administration)
+"al" = (
+/obj/machinery/door_control{
+ id = "adminshuttleblast";
+ name = "blast door control";
+ pixel_x = -30;
+ req_access_txt = "101"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"am" = (
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"an" = (
+/obj/machinery/cell_charger,
+/obj/structure/table,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"ao" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s10"
+ },
+/area/shuttle/administration)
+"ap" = (
+/obj/item/storage/toolbox/mechanical,
+/obj/item/multitool,
+/obj/structure/table,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aq" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"ar" = (
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "adminshuttleblast";
+ name = "Blast Doors";
+ req_access_txt = "101"
+ },
+/obj/machinery/door/airlock/centcom{
+ id_tag = "adminshuttle";
+ name = "General Access";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"as" = (
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"at" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"au" = (
+/obj/item/stack/sheet/metal,
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/metal,
+/obj/item/stack/sheet/metal,
+/obj/item/stack/sheet/glass{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/glass{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"av" = (
+/obj/machinery/kitchen_machine/microwave/upgraded,
+/obj/structure/table,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aw" = (
+/obj/machinery/door/window/northright{
+ name = "bar"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"ax" = (
+/obj/structure/table,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"ay" = (
+/obj/item/ashtray/glass,
+/obj/structure/table,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"az" = (
+/obj/item/storage/fancy/cigarettes/dromedaryco,
+/obj/item/lighter/zippo{
+ pixel_x = 5
+ },
+/obj/structure/table,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aA" = (
+/obj/machinery/door_control{
+ id = "adminshuttleblast";
+ name = "blast door control";
+ pixel_x = -30;
+ req_access_txt = "101"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aB" = (
+/obj/machinery/door/airlock/centcom{
+ id_tag = "adminshuttle";
+ name = "Workshop";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aC" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_l";
+ tag = "icon-propulsion_l (EAST)"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/administration)
+"aD" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8;
+ tag = "icon-heater (WEST)"
+ },
+/obj/structure/window/plasmareinforced{
+ color = "#FF0000";
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/administration)
+"aE" = (
+/obj/structure/chair/stool/bar,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aF" = (
+/obj/machinery/mecha_part_fabricator/upgraded,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aG" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aH" = (
+/obj/machinery/vending/coffee,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aI" = (
+/obj/structure/dispenser,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aJ" = (
+/obj/machinery/vending/cigarette,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aK" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_r";
+ tag = "icon-propulsion_r (EAST)"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/administration)
+"aL" = (
+/obj/machinery/door/airlock/public/glass,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aM" = (
+/turf/space,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12"
+ },
+/area/shuttle/administration)
+"aN" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_r";
+ tag = "icon-propulsion_r (EAST)"
+ },
+/turf/space,
+/turf/simulated/shuttle/plating,
+/area/shuttle/administration)
+"aO" = (
+/obj/machinery/vending/snack,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aP" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aQ" = (
+/obj/machinery/light/spot,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aR" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aS" = (
+/obj/machinery/recharge_station/upgraded,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aT" = (
+/obj/machinery/autolathe/security{
+ hacked = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aU" = (
+/obj/machinery/autolathe/upgraded{
+ hacked = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aV" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s9"
+ },
+/area/shuttle/administration)
+"aX" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s5"
+ },
+/area/shuttle/administration)
+"aY" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/machinery/door_control{
+ id = "adminshuttleblast";
+ name = "Blast door control";
+ pixel_x = -5;
+ pixel_y = 35;
+ req_access = list(101)
+ },
+/obj/machinery/door_control{
+ id = "adminshuttleshutters";
+ name = "Shutter control";
+ pixel_x = 5;
+ pixel_y = 35;
+ req_access = list(101)
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"bc" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"bd" = (
+/obj/structure/chair/comfy/shuttle,
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"be" = (
+/obj/machinery/door/airlock/centcom{
+ id_tag = "adminshuttle";
+ name = "Bridge";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"bf" = (
+/obj/machinery/computer/communications,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"bg" = (
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bh" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "adminshuttleshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/full/shuttle,
+/turf/simulated/floor/plating,
+/area/shuttle/administration)
+"bi" = (
+/turf/space,
+/turf/space,
+/area/space)
+"bl" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/admin{
+ name = "NTV Argos shuttle navigation computer"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"bn" = (
+/obj/machinery/dna_scannernew/upgraded,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bo" = (
+/obj/machinery/computer/scan_consolenew,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bp" = (
+/obj/machinery/computer/shuttle/admin{
+ name = "NTV Argos shuttle console"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"bq" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"br" = (
+/obj/machinery/computer/card,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"bs" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "adminshuttleshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/full/shuttle,
+/turf/space,
+/turf/simulated/floor/plating,
+/area/shuttle/administration)
+"bt" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s6"
+ },
+/area/shuttle/administration)
+"bv" = (
+/obj/structure/chair/comfy/shuttle,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"bw" = (
+/obj/structure/window/plasmareinforced{
+ color = "#FF0000";
+ dir = 8
+ },
+/obj/structure/chair/comfy/shuttle,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"bx" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"by" = (
+/obj/machinery/bodyscanner,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bz" = (
+/obj/machinery/computer/cloning,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bA" = (
+/obj/machinery/clonepod/upgraded,
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bB" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8;
+ tag = "icon-heater (WEST)"
+ },
+/obj/structure/window/plasmareinforced{
+ color = "#FF0000";
+ dir = 4
+ },
+/turf/space,
+/turf/simulated/shuttle/plating,
+/area/shuttle/administration)
+"bC" = (
+/obj/machinery/door/airlock/centcom{
+ id_tag = "adminshuttle";
+ name = "Medbay";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"iq" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc3"
+ },
+/area/shuttle/administration)
+"ks" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc1"
+ },
+/area/shuttle/administration)
+"mq" = (
+/obj/machinery/sleeper/upgraded{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"oI" = (
+/obj/machinery/iv_drip,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"pp" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"qE" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall1";
+ tag = "icon-swall1"
+ },
+/area/shuttle/administration)
+"ry" = (
+/obj/machinery/door/airlock/centcom{
+ id_tag = "adminshuttle";
+ name = "Holding Cell";
+ opacity = 1;
+ req_access_txt = "104"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"sr" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
+ },
+/area/shuttle/administration)
+"st" = (
+/turf/space,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"sA" = (
+/turf/simulated/shuttle/wall{
+ dir = 4;
+ icon_state = "swall2"
+ },
+/area/shuttle/administration)
+"ut" = (
+/obj/machinery/chem_dispenser,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"uT" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"uX" = (
+/obj/machinery/optable,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"yg" = (
+/obj/structure/table,
+/obj/item/storage/lockbox/mindshield,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"zj" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"zR" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall11"
+ },
+/area/shuttle/administration)
+"zY" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall14"
+ },
+/area/shuttle/administration)
+"Bl" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc2"
+ },
+/area/shuttle/administration)
+"Do" = (
+/obj/structure/window/plasmareinforced{
+ color = "#FF0000";
+ dir = 8
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Ds" = (
+/obj/structure/window/plasmareinforced{
+ color = "#FF0000";
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Fr" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc4"
+ },
+/area/shuttle/administration)
+"FB" = (
+/turf/space,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"Hn" = (
+/turf/space,
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc3"
+ },
+/area/shuttle/administration)
+"Jh" = (
+/obj/structure/table,
+/obj/item/storage/box/handcuffs,
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Ki" = (
+/obj/machinery/door/window/brigdoor/westleft{
+ color = "#d70000";
+ req_access_txt = "104"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Qt" = (
+/turf/space,
+/turf/simulated/shuttle/wall{
+ icon_state = "swallc2"
+ },
+/area/shuttle/administration)
+"QB" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"QL" = (
+/obj/machinery/vending/medical,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"SE" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall13"
+ },
+/area/shuttle/administration)
+"XW" = (
+/obj/structure/table,
+/obj/item/bonegel,
+/obj/item/bonesetter,
+/obj/item/hemostat,
+/obj/item/cautery,
+/obj/item/surgicaldrill,
+/obj/item/circular_saw,
+/obj/item/scalpel,
+/obj/item/retractor,
+/obj/item/FixOVein,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"Yi" = (
+/obj/machinery/chem_master,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"Yu" = (
+/obj/structure/table,
+/obj/item/storage/box/chemimp{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/storage/box/trackimp,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+
+(1,1,1) = {"
+aa
+aa
+aa
+ab
+aC
+aK
+aN
+aX
+bi
+aa
+bt
+aN
+aC
+aK
+aX
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+aa
+aa
+ab
+Fr
+aD
+aD
+aD
+zY
+sr
+sr
+SE
+aD
+bB
+aD
+ks
+aX
+aa
+aa
+"}
+(3,1,1) = {"
+aa
+ab
+Fr
+av
+aH
+aJ
+aO
+ak
+bc
+am
+ak
+bn
+bg
+FB
+mq
+ks
+aX
+aa
+"}
+(4,1,1) = {"
+ab
+ag
+am
+aw
+am
+am
+am
+ak
+bc
+am
+ak
+bz
+bg
+bg
+FB
+oI
+ks
+aX
+"}
+(5,1,1) = {"
+ak
+ah
+am
+ax
+aE
+am
+aQ
+ak
+bc
+am
+ak
+bA
+bg
+bg
+bg
+bg
+XW
+ak
+"}
+(6,1,1) = {"
+ak
+ai
+am
+ay
+aE
+am
+am
+ak
+bc
+am
+ak
+bn
+bg
+by
+Yi
+bg
+uX
+ak
+"}
+(7,1,1) = {"
+ak
+aj
+aq
+az
+aE
+am
+am
+ak
+bc
+am
+ak
+bo
+bg
+bg
+ut
+QB
+QL
+ak
+"}
+(8,1,1) = {"
+ks
+sr
+sr
+sr
+qE
+aL
+sA
+zR
+qE
+aL
+ks
+qE
+bC
+sA
+sr
+sr
+sr
+SE
+"}
+(9,1,1) = {"
+ad
+al
+ar
+aA
+am
+am
+am
+as
+am
+am
+am
+am
+am
+am
+am
+am
+am
+ak
+"}
+(10,1,1) = {"
+ae
+am
+ar
+am
+am
+am
+am
+am
+am
+am
+am
+am
+am
+am
+am
+am
+zj
+ak
+"}
+(11,1,1) = {"
+Bl
+sr
+qE
+aB
+sr
+sr
+iq
+bd
+am
+am
+bx
+Bl
+sr
+qE
+ry
+sA
+sr
+SE
+"}
+(12,1,1) = {"
+ak
+an
+as
+am
+am
+aP
+ak
+bv
+am
+am
+bx
+ak
+bv
+am
+am
+Jh
+yg
+ak
+"}
+(13,1,1) = {"
+ak
+ax
+am
+am
+am
+aR
+ak
+bv
+am
+am
+bx
+ak
+bv
+am
+am
+am
+Yu
+ak
+"}
+(14,1,1) = {"
+ak
+ap
+am
+am
+am
+aS
+zY
+qE
+be
+be
+sA
+SE
+bv
+am
+am
+am
+am
+ak
+"}
+(15,1,1) = {"
+aM
+at
+am
+am
+am
+aS
+ak
+am
+am
+am
+am
+ak
+bv
+am
+st
+am
+am
+ak
+"}
+(16,1,1) = {"
+ao
+iq
+au
+am
+am
+aT
+ak
+aY
+bq
+bq
+bq
+ak
+bw
+Ds
+Ki
+Do
+Bl
+aV
+"}
+(17,1,1) = {"
+aa
+aM
+aF
+am
+am
+aU
+ak
+bf
+bp
+br
+bl
+ak
+bv
+st
+am
+bx
+ak
+aa
+"}
+(18,1,1) = {"
+aa
+ao
+Hn
+aG
+aI
+Qt
+zR
+bh
+bh
+bs
+bh
+zR
+Hn
+pp
+uT
+Bl
+aV
+aa
+"}
+(19,1,1) = {"
+aa
+aa
+ao
+sr
+sr
+aV
+aa
+aa
+aa
+aa
+aa
+aa
+ao
+sr
+sr
+aV
+aa
+aa
+"}
diff --git a/_maps/map_files/shuttles/admin_armory.dmm b/_maps/map_files/shuttles/admin_armory.dmm
index 837f867a52bba..1b00d2dca3f8a 100644
--- a/_maps/map_files/shuttles/admin_armory.dmm
+++ b/_maps/map_files/shuttles/admin_armory.dmm
@@ -1,1691 +1,1902 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ae" = (
-/obj/structure/sign/securearea,
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall4";
- tag = "icon-swall14"
- },
-/area/shuttle/administration)
-"al" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/folder,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aI" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/recharger,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"aP" = (
-/obj/machinery/vending/security,
-/obj/machinery/light/spot{
- dir = 8;
- icon_state = "tube1";
- tag = "icon-tube1 (WEST)"
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"bi" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid,
-/obj/item/storage/firstaid/brute,
-/obj/item/storage/box/bodybags,
-/obj/item/storage/firstaid/surgery,
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"bm" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "adminarmoryshutters"
- },
-/obj/structure/window/full/shuttle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"ce" = (
-/obj/machinery/autolathe/upgraded{
- hacked = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"cl" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"cV" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"de" = (
-/obj/machinery/suit_storage_unit/security/secure,
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"df" = (
-/obj/structure/rack,
-/obj/item/storage/box/buck{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/box/buck,
-/obj/structure/window/reinforced,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"dn" = (
-/obj/machinery/computer/camera_advanced/shuttle_docker/admin{
- name = "NRV Sparta navigation computer"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"dH" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/gun/energy/gun,
-/obj/item/gun/energy/gun{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"dP" = (
-/obj/machinery/recharge_station/upgraded,
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"eI" = (
-/obj/machinery/turretid/stun{
- check_access = 0;
- name = "Shuttle Turret Control";
- pixel_y = 30
- },
-/obj/machinery/computer/camera_advanced,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"eL" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"fo" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"fF" = (
-/obj/machinery/light/spot{
- dir = 4;
- icon_state = "tube1";
- tag = "icon-tube1 (EAST)"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"fQ" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"gd" = (
-/obj/machinery/door/airlock/shuttle,
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"gh" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"gj" = (
-/obj/machinery/computer/communications{
- name = "NRV Sparta Communications Console"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"hN" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"ir" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"iz" = (
-/obj/machinery/porta_turret{
- installation = /obj/item/gun/energy/gun
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"jn" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/full/shuttle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"jB" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/lockbox/mindshield,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"jU" = (
-/obj/machinery/suit_storage_unit/security/secure,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"kf" = (
-/obj/structure/sign/securearea,
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall8";
- tag = "icon-swall12"
- },
-/area/shuttle/administration)
-"mq" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/window/full/shuttle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"mw" = (
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"mM" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall13"
- },
-/area/shuttle/administration)
-"nG" = (
-/obj/structure/window/full/shuttle,
-/obj/structure/grille,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"oj" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
- },
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"oY" = (
-/obj/structure/chair,
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"pa" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall11"
- },
-/area/shuttle/administration)
-"pK" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion"
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/administration)
-"pQ" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"qQ" = (
-/obj/machinery/recharger/wallcharger{
- pixel_y = 25
- },
-/obj/machinery/recharger/wallcharger{
- pixel_y = 35
- },
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/obj/machinery/door_control{
- id = "adminshuttlebridge";
- name = "Bridge Privacy Shutters";
- pixel_x = 25;
- req_access_txt = "19"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"rb" = (
-/obj/machinery/door/window/brigdoor/southleft{
- req_one_access_txt = "2;19"
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"rW" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters/preopen{
- id_tag = "adminshuttlebridge"
- },
-/obj/structure/window/full/shuttle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"sq" = (
-/obj/structure/table/reinforced,
-/obj/item/kitchen/knife/combat{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/kitchen/knife/combat,
-/obj/item/kitchen/knife/combat{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"tx" = (
-/obj/machinery/sleeper/upgraded{
- dir = 4
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"ua" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/door_control{
- dir = 4;
- id = "Asclshutters";
- name = "External Window Shutter Control";
- pixel_x = -5;
- pixel_y = 35;
- req_access_txt = "19"
- },
-/obj/machinery/keycard_auth{
- pixel_y = 24
- },
-/obj/machinery/door_control{
- id = "asclblast";
- name = "Airlock Blast Door Control";
- pixel_x = 5;
- pixel_y = 35;
- req_access = null;
- req_access_txt = "19"
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"uz" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall4";
- tag = "icon-swall14"
- },
-/area/shuttle/administration)
-"uW" = (
-/obj/structure/shuttle/engine/heater{
- dir = 4;
- icon_state = "heater"
- },
-/obj/structure/window/plasmareinforced{
- dir = 8
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/administration)
-"uY" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"vk" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s6"
- },
-/area/shuttle/administration)
-"vy" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"vA" = (
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"vW" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/storage/box/handcuffs,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"wG" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/clothing/head/helmet/alt,
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/clothing/head/helmet/alt,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"wH" = (
-/obj/machinery/light/spot{
- dir = 8;
- icon_state = "tube1";
- tag = "icon-tube1 (WEST)"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"wQ" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 8;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/full/shuttle,
-/turf/space,
-/area/shuttle/administration)
-"xm" = (
-/obj/structure/table/reinforced,
-/obj/item/rcd/preloaded,
-/obj/item/rcd_ammo,
-/obj/item/rcd_ammo{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/rcd_ammo{
- pixel_x = -3;
- pixel_y = 3
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"xF" = (
-/obj/structure/rack,
-/obj/item/storage/box/buck{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/box/buck,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"xH" = (
-/obj/machinery/door/airlock/shuttle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"xK" = (
-/obj/structure/sign/nosmoking_2,
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall3";
- tag = "icon-swall3"
- },
-/area/shuttle/administration)
-"xQ" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/light/spot{
- dir = 1;
- icon_state = "tube1";
- tag = "icon-tube1 (NORTH)"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"xU" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"xZ" = (
-/turf/space,
-/area/shuttle/administration)
-"yg" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor/eastleft{
- name = "Armory";
- req_access_txt = "3"
- },
-/obj/machinery/door/window/brigdoor/westleft{
- name = "Armory"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 8;
- id_tag = "adminarmoryshutters"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"yu" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger{
- pixel_x = -5
- },
-/obj/machinery/recharger{
- pixel_x = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"yF" = (
-/obj/machinery/status_display,
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall3"
- },
-/area/shuttle/administration)
-"zY" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall14"
- },
-/area/shuttle/administration)
-"AH" = (
-/obj/machinery/light/spot,
-/obj/machinery/porta_turret{
- installation = /obj/item/gun/energy/gun
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Bc" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/shield/riot,
-/obj/item/shield/riot{
- pixel_x = 2;
- pixel_y = -4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Bj" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/airlock/external{
- req_one_access_txt = "2;19"
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "asclblast";
- name = "Blast Door";
- opacity = 0
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Bn" = (
-/obj/machinery/door/window/brigdoor/southleft{
- req_one_access_txt = "2;19"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Bq" = (
-/obj/structure/sign/nosmoking_2,
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall1";
- tag = "icon-swall1"
- },
-/area/shuttle/administration)
-"BZ" = (
-/obj/machinery/light/spot,
-/obj/machinery/porta_turret{
- installation = /obj/item/gun/energy/gun
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Cl" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/emergency{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/toolbox/mechanical,
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"Du" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced,
-/obj/item/gun/energy/gun,
-/obj/item/gun/energy/gun{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"DZ" = (
-/obj/machinery/light/spot,
-/obj/structure/closet/emcloset,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Eq" = (
-/obj/structure/sign/securearea,
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall12"
- },
-/area/shuttle/administration)
-"EQ" = (
-/obj/machinery/door/airlock/shuttle/glass,
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"Fd" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/gun/energy/gun,
-/obj/item/gun/energy/gun{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Fo" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/gun/energy/immolator/multi{
- pixel_y = -3
- },
-/obj/item/gun/energy/immolator/multi,
-/obj/item/gun/energy/immolator/multi{
- pixel_y = 3
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"FF" = (
-/obj/structure/sign/poster/official/enlist,
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall12"
- },
-/area/shuttle/administration)
-"FT" = (
-/obj/structure/rack,
-/obj/item/storage/box/buck{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/box/buck,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Gf" = (
-/obj/structure/sign/vacuum{
- pixel_x = -32
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Gn" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/rack,
-/obj/item/gun/projectile/shotgun/riot/buckshot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/projectile/shotgun/riot/buckshot,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Gx" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/airlock/external,
-/obj/docking_port/mobile{
- dir = 2;
- dwidth = 9;
- height = 18;
- id = "admin";
- name = "armory";
- roundstart_move = "cc_bay_1";
- timid = 1;
- width = 19
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "asclblast";
- name = "Blast Door";
- opacity = 0
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Gy" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"Hc" = (
-/obj/machinery/porta_turret{
- installation = /obj/item/gun/energy/gun
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"HN" = (
-/obj/structure/sign/poster/official/do_not_question,
-/obj/item/tank/emergency_oxygen/engi,
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall3"
- },
-/area/shuttle/administration)
-"Ir" = (
-/obj/machinery/computer/shuttle/admin{
- name = "NRV Sparta shuttle console"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"IC" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall3"
- },
-/area/shuttle/administration)
-"Jt" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Ke" = (
-/obj/machinery/door/window/brigdoor/southright{
- req_one_access_txt = "2;19"
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"Kh" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Ki" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/structure/rack,
-/obj/item/clothing/head/helmet/alt,
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/clothing/head/helmet/alt,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"KM" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall7"
- },
-/area/shuttle/administration)
-"Lh" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/gun/energy/ionrifle{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/gun/energy/ionrifle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"LK" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/computer/secure_data,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"LP" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s9"
- },
-/area/shuttle/administration)
-"Mi" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Mj" = (
-/obj/machinery/vending/medical,
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"Mo" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/clothing/head/helmet/alt,
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/clothing/head/helmet/alt,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"MN" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall12"
- },
-/area/shuttle/administration)
-"MZ" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall3";
- tag = "icon-swall3"
- },
-/area/shuttle/administration)
-"Ni" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/rack,
-/obj/item/gun/projectile/shotgun/riot/buckshot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/projectile/shotgun/riot/buckshot,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Ns" = (
-/obj/machinery/recharger/wallcharger{
- pixel_y = 25
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"NF" = (
-/obj/structure/sign/poster/official/here_for_your_safety,
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall3";
- tag = "icon-swall3"
- },
-/area/shuttle/administration)
-"NQ" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 1;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/full/shuttle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Op" = (
-/obj/structure/dispenser/oxygen,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Ou" = (
-/obj/machinery/autolathe/upgraded{
- hacked = 1
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"Pe" = (
-/obj/machinery/door/window/brigdoor/southright{
- req_one_access_txt = "2;19"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Pn" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/clothing/suit/armor/riot,
-/obj/item/clothing/suit/armor/riot{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"PL" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s10"
- },
-/area/shuttle/administration)
-"PR" = (
-/obj/machinery/light/spot{
- dir = 8;
- tag = "icon-tube1 (WEST)"
- },
-/obj/machinery/door_control{
- id = "adminarmoryshutters";
- name = "Armory Internal Shutters";
- pixel_x = -26;
- req_access_txt = "3"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"PS" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/gun/energy/gun/nuclear{
- pixel_y = -3
- },
-/obj/item/gun/energy/gun/nuclear,
-/obj/item/gun/energy/gun/nuclear{
- pixel_y = 3
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"PV" = (
-/obj/structure/rack,
-/obj/item/gun/energy/sniperrifle{
- pixel_y = -4
- },
-/obj/item/gun/energy/sniperrifle,
-/obj/item/gun/energy/sniperrifle{
- pixel_y = 3
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"RM" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall8";
- tag = "icon-swall12"
- },
-/area/shuttle/administration)
-"TD" = (
-/obj/machinery/door/airlock/command{
- name = "Command Center";
- req_access = null;
- req_access_txt = "19"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"TF" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/item/storage/fancy/donut_box,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Un" = (
-/obj/structure/table/reinforced,
-/obj/item/tank/emergency_oxygen/engi{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/tank/emergency_oxygen/engi,
-/obj/item/tank/emergency_oxygen/engi{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/machinery/light/spot{
- dir = 8;
- icon_state = "tube1";
- tag = "icon-tube1 (WEST)"
- },
-/obj/item/clothing/mask/breath{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"Ur" = (
-/obj/machinery/porta_turret{
- installation = /obj/item/gun/energy/gun
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/administration)
-"UR" = (
-/obj/machinery/status_display,
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall12"
- },
-/area/shuttle/administration)
-"UX" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/airlock/external,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "asclblast";
- name = "Blast Door";
- opacity = 0
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"Vc" = (
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall_s5"
- },
-/area/shuttle/administration)
-"VC" = (
-/obj/machinery/door/airlock/shuttle{
- name = "Shuttle Armory";
- req_access_txt = "3"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"VQ" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"WV" = (
-/obj/structure/table/reinforced,
-/obj/item/restraints/handcuffs{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/restraints/handcuffs,
-/obj/item/restraints/handcuffs{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/machinery/light/spot{
- dir = 4;
- icon_state = "tube1";
- tag = "icon-tube1 (EAST)"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-"XL" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/rack,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/gun/projectile/shotgun/riot/buckshot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/projectile/shotgun/riot/buckshot,
-/turf/simulated/shuttle/floor{
- icon_state = "floor4"
- },
-/area/shuttle/administration)
-
-(1,1,1) = {"
-vk
-MZ
-HN
-IC
-IC
-IC
-IC
-KM
-wQ
-wQ
-wQ
-wQ
-KM
-IC
-IC
-IC
-IC
-Vc
-"}
-(2,1,1) = {"
-MN
-Un
-xm
-Mj
-aP
-dP
-tx
-MN
-eI
-Ir
-dn
-gj
-MN
-vA
-cl
-cl
-DZ
-Eq
-"}
-(3,1,1) = {"
-MN
-Ns
-mw
-mw
-mw
-mw
-mw
-MN
-ua
-gh
-gh
-gh
-FF
-Op
-Kh
-Kh
-Kh
-Bj
-"}
-(4,1,1) = {"
-MN
-Ns
-mw
-mw
-mw
-mw
-Gy
-MN
-qQ
-Kh
-Kh
-Kh
-UR
-Jt
-Kh
-Kh
-Kh
-Bj
-"}
-(5,1,1) = {"
-MN
-Ns
-mw
-mw
-mw
-mw
-fo
-zY
-MZ
-TD
-rW
-rW
-pa
-MZ
-xH
-nG
-nG
-Eq
-"}
-(6,1,1) = {"
-MN
-bi
-Cl
-vy
-Ou
-mw
-mw
-MN
-cV
-Kh
-Kh
-Kh
-Bn
-Gf
-Kh
-Mi
-Mi
-MN
-"}
-(7,1,1) = {"
-zY
-nG
-nG
-nG
-nG
-gd
-nG
-MN
-xQ
-Kh
-hN
-Kh
-Pe
-Kh
-Kh
-Kh
-oj
-MN
-"}
-(8,1,1) = {"
-RM
-oY
-mw
-mw
-mw
-mw
-Ur
-kf
-vW
-al
-aI
-LK
-TF
-Kh
-Kh
-Kh
-fQ
-mq
-"}
-(9,1,1) = {"
-UX
-mw
-mw
-mw
-mw
-mw
-mw
-EQ
-mw
-mw
-mw
-mw
-rb
-Kh
-Kh
-Kh
-fQ
-jn
-"}
-(10,1,1) = {"
-Gx
-mw
-mw
-mw
-mw
-mw
-mw
-EQ
-mw
-mw
-mw
-mw
-Ke
-Kh
-Kh
-Kh
-Kh
-jn
-"}
-(11,1,1) = {"
-uz
-oY
-mw
-mw
-mw
-mw
-Hc
-ae
-ir
-pQ
-pQ
-pQ
-uY
-Kh
-Kh
-Kh
-BZ
-MN
-"}
-(12,1,1) = {"
-zY
-MZ
-Bq
-yg
-VC
-yg
-yF
-pa
-bm
-bm
-bm
-MZ
-MZ
-xK
-VC
-NF
-MZ
-mM
-"}
-(13,1,1) = {"
-MN
-Kh
-wH
-eL
-Kh
-eL
-Kh
-PR
-PV
-PS
-Fo
-wH
-VQ
-Bc
-Kh
-Kh
-AH
-MN
-"}
-(14,1,1) = {"
-NQ
-Kh
-dH
-Ni
-Kh
-FT
-Mo
-Kh
-Kh
-Kh
-Kh
-Kh
-Lh
-Pn
-Kh
-Kh
-Kh
-mq
-"}
-(15,1,1) = {"
-NQ
-Kh
-Du
-Gn
-Kh
-df
-wG
-Kh
-Kh
-Kh
-Kh
-Kh
-Kh
-Kh
-Kh
-Kh
-Kh
-mq
-"}
-(16,1,1) = {"
-NQ
-Kh
-Fd
-XL
-Kh
-xF
-Ki
-Kh
-Kh
-Kh
-Kh
-Kh
-Kh
-Kh
-Kh
-Kh
-Kh
-mq
-"}
-(17,1,1) = {"
-MN
-fF
-Kh
-Kh
-fF
-Kh
-Kh
-fF
-iz
-yu
-sq
-WV
-xU
-ce
-jB
-jU
-de
-MN
-"}
-(18,1,1) = {"
-PL
-KM
-uW
-uW
-KM
-IC
-IC
-KM
-uW
-uW
-KM
-IC
-IC
-KM
-uW
-uW
-KM
-LP
-"}
-(19,1,1) = {"
-xZ
-PL
-pK
-pK
-LP
-xZ
-xZ
-PL
-pK
-pK
-LP
-xZ
-xZ
-PL
-pK
-pK
-LP
-xZ
-"}
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ae" = (
+/obj/structure/sign/securearea,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall4";
+ tag = "icon-swall14"
+ },
+/area/shuttle/administration)
+"al" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/folder,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aI" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/recharger,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"aP" = (
+/obj/machinery/vending/security,
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"bi" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid,
+/obj/item/storage/firstaid/brute,
+/obj/item/storage/box/bodybags,
+/obj/item/storage/firstaid/surgery,
+/obj/item/storage/firstaid/tactical,
+/obj/item/storage/firstaid/tactical,
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"bm" = (
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "adminarmoryshutters"
+ },
+/obj/structure/window/full/shuttle,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"ce" = (
+/obj/machinery/autolathe/security{
+ hacked = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"cl" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"cV" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"de" = (
+/obj/machinery/light/spot,
+/obj/item/flag/nt,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"df" = (
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/structure/rack,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/clothing/head/helmet/alt,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"dn" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/admin{
+ name = "NRV Sparta navigation computer"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"dH" = (
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"dP" = (
+/obj/machinery/recharge_station/upgraded,
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"eo" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/suit/armor/riot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/suit/armor/riot,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"eI" = (
+/obj/machinery/turretid/stun{
+ check_access = 0;
+ name = "Shuttle Turret Control";
+ pixel_y = 30
+ },
+/obj/machinery/computer/camera_advanced,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"eL" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"fo" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/light/spot,
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"fF" = (
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/obj/machinery/porta_turret{
+ installation = /obj/item/gun/energy/gun
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"fQ" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"gd" = (
+/obj/machinery/door/airlock/shuttle,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"gh" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"gj" = (
+/obj/machinery/computer/communications{
+ name = "NRV Sparta Communications Console"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"hN" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"ir" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"iz" = (
+/obj/machinery/porta_turret{
+ installation = /obj/item/gun/energy/gun
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"jn" = (
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "Asclshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/full/shuttle,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"jB" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/lockbox/mindshield,
+/obj/item/storage/lockbox/mindshield,
+/obj/item/storage/lockbox/mindshield,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"jU" = (
+/obj/machinery/suit_storage_unit/security/secure,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"kf" = (
+/obj/structure/sign/securearea,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall8";
+ tag = "icon-swall12"
+ },
+/area/shuttle/administration)
+"kO" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/item/clothing/head/helmet/swat,
+/obj/item/clothing/head/helmet/swat,
+/obj/item/clothing/head/helmet/swat,
+/obj/item/clothing/head/helmet/swat,
+/obj/item/clothing/mask/gas/sechailer/swat,
+/obj/item/clothing/mask/gas/sechailer/swat,
+/obj/item/clothing/mask/gas/sechailer/swat,
+/obj/item/clothing/mask/gas/sechailer/swat,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"le" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/suit/armor/riot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/suit/armor/riot,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"mq" = (
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "Asclshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/window/full/shuttle,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"mw" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"mM" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall13"
+ },
+/area/shuttle/administration)
+"nG" = (
+/obj/structure/window/full/shuttle,
+/obj/structure/grille,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"oj" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/obj/machinery/light/spot,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"oY" = (
+/obj/structure/chair,
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 30
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"pa" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall11"
+ },
+/area/shuttle/administration)
+"pK" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/administration)
+"pQ" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"qQ" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/machinery/door_control{
+ id = "adminshuttlebridge";
+ name = "Bridge Privacy Shutters";
+ pixel_x = 25;
+ req_access_txt = "19"
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 30
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"rb" = (
+/obj/machinery/door/window/brigdoor/southleft{
+ req_one_access_txt = "2;19"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"rW" = (
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "adminshuttlebridge"
+ },
+/obj/structure/window/full/shuttle,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"sq" = (
+/obj/structure/table/reinforced,
+/obj/item/kitchen/knife/combat{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/kitchen/knife/combat,
+/obj/item/kitchen/knife/combat{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/kitchen/knife/combat{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/kitchen/knife/combat{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"tx" = (
+/obj/machinery/sleeper/upgraded{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"ua" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/door_control{
+ dir = 4;
+ id = "Asclshutters";
+ name = "External Window Shutter Control";
+ pixel_x = -5;
+ pixel_y = 35;
+ req_access_txt = "19"
+ },
+/obj/machinery/keycard_auth{
+ pixel_y = 24
+ },
+/obj/machinery/door_control{
+ id = "asclblast";
+ name = "Airlock Blast Door Control";
+ pixel_x = 5;
+ pixel_y = 35;
+ req_access = null;
+ req_access_txt = "19"
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"uz" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall4";
+ tag = "icon-swall14"
+ },
+/area/shuttle/administration)
+"uW" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 4
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/administration)
+"uY" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"vk" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s6"
+ },
+/area/shuttle/administration)
+"vy" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"vA" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"vW" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/storage/box/handcuffs,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"wG" = (
+/obj/machinery/porta_turret{
+ installation = /obj/item/gun/energy/gun
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"wH" = (
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"xm" = (
+/obj/structure/table/reinforced,
+/obj/item/rcd/preloaded,
+/obj/item/rcd_ammo,
+/obj/item/rcd_ammo{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/rcd_ammo{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"xF" = (
+/obj/structure/rack,
+/obj/item/gun/energy/gun,
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"xH" = (
+/obj/machinery/door/airlock/shuttle,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"xK" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3";
+ tag = "icon-swall3"
+ },
+/area/shuttle/administration)
+"xQ" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"xU" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"xZ" = (
+/turf/space,
+/area/shuttle/administration)
+"yg" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Armory";
+ req_access_txt = "3"
+ },
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Armory"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ closingLayer = 5;
+ dir = 8;
+ id_tag = "adminarmoryshutters";
+ layer = 5
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"yu" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger{
+ pixel_x = -5
+ },
+/obj/machinery/recharger{
+ pixel_x = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"yF" = (
+/obj/machinery/status_display,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
+ },
+/area/shuttle/administration)
+"zY" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall14"
+ },
+/area/shuttle/administration)
+"Az" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/item/shield/riot,
+/obj/item/shield/riot{
+ pixel_x = 2;
+ pixel_y = -4
+ },
+/obj/item/shield/riot{
+ pixel_x = 2;
+ pixel_y = -4
+ },
+/obj/item/shield/riot{
+ pixel_x = 2;
+ pixel_y = -4
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/shield/riot{
+ pixel_x = 2;
+ pixel_y = -4
+ },
+/obj/item/shield/riot{
+ pixel_x = 2;
+ pixel_y = -4
+ },
+/obj/item/shield/riot{
+ pixel_x = 2;
+ pixel_y = -4
+ },
+/obj/item/shield/riot{
+ pixel_x = 2;
+ pixel_y = -4
+ },
+/obj/item/shield/riot{
+ pixel_x = 2;
+ pixel_y = -4
+ },
+/obj/item/shield/riot{
+ pixel_x = 2;
+ pixel_y = -4
+ },
+/obj/item/shield/riot{
+ pixel_x = 2;
+ pixel_y = -4
+ },
+/obj/item/shield/riot{
+ pixel_x = 2;
+ pixel_y = -4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"AH" = (
+/obj/machinery/light/spot,
+/obj/machinery/porta_turret{
+ installation = /obj/item/gun/energy/gun
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Bc" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/item/grenade/frag{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/grenade/frag{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/grenade/frag{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/grenade/frag{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/grenade/frag{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/grenade/frag{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = 10
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = 10
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = 10
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = 10
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = 10
+ },
+/obj/item/grenade/smokebomb{
+ pixel_x = 10
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Bj" = (
+/obj/structure/fans/tiny,
+/obj/machinery/door/airlock/external{
+ req_one_access_txt = "2;19"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "asclblast";
+ name = "Blast Door";
+ opacity = 0
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Bn" = (
+/obj/machinery/door/window/brigdoor/southleft{
+ req_one_access_txt = "2;19"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Bq" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall1";
+ tag = "icon-swall1"
+ },
+/area/shuttle/administration)
+"BZ" = (
+/obj/machinery/light/spot,
+/obj/machinery/porta_turret{
+ installation = /obj/item/gun/energy/gun
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Cl" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/emergency{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"Du" = (
+/obj/structure/rack,
+/obj/item/gun/energy/gun,
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"DZ" = (
+/obj/machinery/light/spot,
+/obj/structure/closet/emcloset,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Eq" = (
+/obj/structure/sign/securearea,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12"
+ },
+/area/shuttle/administration)
+"EQ" = (
+/obj/machinery/door/airlock/shuttle/glass,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"Fd" = (
+/obj/structure/rack,
+/obj/item/gun/energy/gun,
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Fo" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/gun/energy/immolator/multi{
+ pixel_y = -3
+ },
+/obj/item/gun/energy/immolator/multi,
+/obj/item/gun/energy/immolator/multi{
+ pixel_y = 3
+ },
+/obj/item/gun/energy/immolator/multi,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"FF" = (
+/obj/structure/sign/poster/official/enlist,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12"
+ },
+/area/shuttle/administration)
+"FT" = (
+/obj/structure/rack,
+/obj/item/gun/projectile/shotgun/riot/buckshot{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/projectile/shotgun/riot/buckshot,
+/obj/item/gun/projectile/shotgun/riot/buckshot,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/item/gun/projectile/shotgun/riot/buckshot,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Gf" = (
+/obj/structure/sign/vacuum{
+ pixel_x = -32
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Gn" = (
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/structure/rack,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/clothing/head/helmet/alt,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Gx" = (
+/obj/structure/fans/tiny,
+/obj/machinery/door/airlock/external,
+/obj/docking_port/mobile{
+ dir = 2;
+ dwidth = 9;
+ height = 18;
+ id = "admin";
+ name = "armory";
+ roundstart_move = "cc_bay_1";
+ timid = 1;
+ width = 19
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "asclblast";
+ name = "Blast Door";
+ opacity = 0
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"Gy" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"Hc" = (
+/obj/machinery/porta_turret{
+ installation = /obj/item/gun/energy/gun
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"Hv" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/item/clothing/shoes/combat/swat,
+/obj/item/clothing/shoes/combat/swat,
+/obj/item/clothing/shoes/combat/swat,
+/obj/item/clothing/shoes/combat/swat,
+/obj/item/clothing/suit/space/swat,
+/obj/item/clothing/suit/space/swat,
+/obj/item/clothing/suit/space/swat,
+/obj/item/clothing/suit/space/swat,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"HN" = (
+/obj/structure/sign/poster/official/do_not_question,
+/obj/item/tank/emergency_oxygen/engi,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
+ },
+/area/shuttle/administration)
+"HQ" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/suit/armor/riot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/suit/armor/riot,
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Ir" = (
+/obj/machinery/computer/shuttle/admin{
+ name = "NRV Sparta shuttle console"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"IC" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
+ },
+/area/shuttle/administration)
+"Jt" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Ke" = (
+/obj/machinery/door/window/brigdoor/southright{
+ req_one_access_txt = "2;19"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"Kh" = (
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Ki" = (
+/obj/structure/rack,
+/obj/item/gun/projectile/shotgun/riot/buckshot{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/projectile/shotgun/riot/buckshot,
+/obj/item/gun/projectile/shotgun/riot/buckshot,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/gun/projectile/shotgun/riot/buckshot,
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"KM" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall7"
+ },
+/area/shuttle/administration)
+"Lh" = (
+/obj/structure/window/full/shuttle,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "adminarmoryshutters"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"LK" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/computer/secure_data,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"LP" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s9"
+ },
+/area/shuttle/administration)
+"Mi" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Mj" = (
+/obj/machinery/vending/medical{
+ req_access_txt = "0"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"Mo" = (
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/structure/rack,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/clothing/head/helmet/alt,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"MN" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12"
+ },
+/area/shuttle/administration)
+"MZ" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3";
+ tag = "icon-swall3"
+ },
+/area/shuttle/administration)
+"Ni" = (
+/obj/structure/rack,
+/obj/item/storage/box/buck{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/buck,
+/obj/item/storage/box/buck,
+/obj/item/storage/box/buck{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/item/storage/box/buck{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/buck{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Ns" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 30
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"NF" = (
+/obj/structure/sign/poster/official/here_for_your_safety,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3";
+ tag = "icon-swall3"
+ },
+/area/shuttle/administration)
+"Op" = (
+/obj/structure/dispenser/oxygen,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Ou" = (
+/obj/machinery/autolathe/upgraded,
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"Pe" = (
+/obj/machinery/door/window/brigdoor/southright{
+ req_one_access_txt = "2;19"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Pn" = (
+/obj/structure/rack,
+/obj/item/storage/box/buck{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/buck,
+/obj/item/storage/box/buck,
+/obj/item/storage/box/buck{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/storage/box/buck{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/buck{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"PE" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/gun/energy/gun/advtaser{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/gun/energy/gun/advtaser,
+/obj/item/gun/energy/gun/advtaser,
+/obj/item/gun/energy/gun/advtaser,
+/obj/item/gun/energy/gun/advtaser,
+/obj/item/gun/energy/gun/advtaser,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"PL" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s10"
+ },
+/area/shuttle/administration)
+"PR" = (
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/obj/machinery/door_control{
+ id = "adminarmoryshutters";
+ name = "Armory Internal Shutters";
+ pixel_x = -26;
+ req_access_txt = "3"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"PS" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/gun/energy/gun/nuclear{
+ pixel_y = -3
+ },
+/obj/item/gun/energy/gun/nuclear,
+/obj/item/gun/energy/gun/nuclear{
+ pixel_y = 3
+ },
+/obj/item/gun/energy/gun/nuclear{
+ pixel_y = 3
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"PV" = (
+/obj/structure/rack,
+/obj/item/gun/energy/sniperrifle{
+ pixel_y = -4
+ },
+/obj/item/gun/energy/sniperrifle,
+/obj/item/gun/energy/sniperrifle{
+ pixel_y = 3
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/item/gun/energy/sniperrifle,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"RM" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall8";
+ tag = "icon-swall12"
+ },
+/area/shuttle/administration)
+"TD" = (
+/obj/machinery/door/airlock/command{
+ name = "Command Center";
+ req_access = null;
+ req_access_txt = "19"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"TF" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/item/storage/fancy/donut_box,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"Un" = (
+/obj/structure/table/reinforced,
+/obj/item/tank/emergency_oxygen/engi{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/tank/emergency_oxygen/engi,
+/obj/item/tank/emergency_oxygen/engi{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/machinery/light/spot{
+ dir = 8;
+ tag = "icon-tube1 (WEST)"
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/administration)
+"Ur" = (
+/obj/machinery/porta_turret{
+ installation = /obj/item/gun/energy/gun
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"UR" = (
+/obj/machinery/status_display,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12"
+ },
+/area/shuttle/administration)
+"UX" = (
+/obj/structure/fans/tiny,
+/obj/machinery/door/airlock/external,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "asclblast";
+ name = "Blast Door";
+ opacity = 0
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"Vc" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s5"
+ },
+/area/shuttle/administration)
+"VC" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Shuttle Armory";
+ req_access_txt = "3"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"VQ" = (
+/obj/structure/rack,
+/obj/item/gun/energy/ionrifle{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/ionrifle,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"WV" = (
+/obj/structure/table/reinforced,
+/obj/item/restraints/handcuffs{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/restraints/handcuffs,
+/obj/item/restraints/handcuffs{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/machinery/light/spot{
+ dir = 4;
+ tag = "icon-tube1 (EAST)"
+ },
+/obj/item/restraints/handcuffs{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/restraints/handcuffs{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/restraints/handcuffs{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+"XL" = (
+/obj/machinery/vending/security,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor4"
+ },
+/area/shuttle/administration)
+
+(1,1,1) = {"
+vk
+MZ
+HN
+IC
+IC
+IC
+IC
+KM
+mq
+mq
+mq
+mq
+KM
+IC
+IC
+IC
+IC
+Vc
+"}
+(2,1,1) = {"
+MN
+Un
+xm
+Mj
+aP
+dP
+tx
+MN
+eI
+Ir
+dn
+gj
+MN
+vA
+cl
+cl
+DZ
+Eq
+"}
+(3,1,1) = {"
+MN
+Ns
+mw
+mw
+mw
+mw
+mw
+MN
+ua
+gh
+gh
+gh
+FF
+Op
+Kh
+Kh
+Kh
+Bj
+"}
+(4,1,1) = {"
+MN
+Ns
+mw
+mw
+mw
+mw
+Gy
+MN
+qQ
+Kh
+Kh
+Kh
+UR
+Jt
+Kh
+Kh
+Kh
+Bj
+"}
+(5,1,1) = {"
+MN
+Ns
+mw
+mw
+mw
+mw
+fo
+zY
+MZ
+TD
+rW
+rW
+pa
+MZ
+xH
+nG
+nG
+Eq
+"}
+(6,1,1) = {"
+MN
+bi
+Cl
+vy
+Ou
+mw
+mw
+MN
+cV
+Kh
+Kh
+Kh
+Bn
+Gf
+Kh
+Mi
+Mi
+MN
+"}
+(7,1,1) = {"
+zY
+nG
+nG
+nG
+nG
+gd
+nG
+MN
+xQ
+Kh
+hN
+Kh
+Pe
+Kh
+Kh
+Kh
+oj
+MN
+"}
+(8,1,1) = {"
+RM
+oY
+dH
+dH
+dH
+dH
+Ur
+kf
+vW
+al
+aI
+LK
+TF
+Kh
+Kh
+Kh
+fQ
+mq
+"}
+(9,1,1) = {"
+UX
+dH
+dH
+dH
+dH
+dH
+dH
+EQ
+dH
+dH
+dH
+dH
+rb
+Kh
+Kh
+Kh
+fQ
+jn
+"}
+(10,1,1) = {"
+Gx
+dH
+dH
+dH
+dH
+dH
+dH
+EQ
+dH
+dH
+dH
+dH
+Ke
+Kh
+Kh
+Kh
+fQ
+jn
+"}
+(11,1,1) = {"
+uz
+oY
+dH
+dH
+dH
+dH
+Hc
+ae
+ir
+pQ
+pQ
+pQ
+uY
+Kh
+Kh
+Kh
+BZ
+MN
+"}
+(12,1,1) = {"
+zY
+MZ
+Bq
+yg
+Lh
+yg
+yF
+pa
+bm
+bm
+bm
+MZ
+MZ
+xK
+VC
+NF
+MZ
+mM
+"}
+(13,1,1) = {"
+MN
+wG
+wH
+eL
+Kh
+eL
+Kh
+PR
+PV
+PS
+Fo
+PE
+VQ
+Bc
+Kh
+Kh
+AH
+MN
+"}
+(14,1,1) = {"
+mq
+xF
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+jU
+mq
+"}
+(15,1,1) = {"
+mq
+Du
+Kh
+Gn
+Mo
+df
+Kh
+eo
+le
+HQ
+Kh
+Az
+Hv
+kO
+Kh
+Kh
+jU
+mq
+"}
+(16,1,1) = {"
+mq
+Fd
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+Kh
+jU
+mq
+"}
+(17,1,1) = {"
+MN
+fF
+FT
+Ki
+Ni
+Pn
+XL
+XL
+iz
+yu
+sq
+WV
+xU
+ce
+jB
+jU
+de
+MN
+"}
+(18,1,1) = {"
+PL
+KM
+uW
+uW
+KM
+IC
+IC
+KM
+uW
+uW
+KM
+IC
+IC
+KM
+uW
+uW
+KM
+LP
+"}
+(19,1,1) = {"
+xZ
+PL
+pK
+pK
+LP
+xZ
+xZ
+PL
+pK
+pK
+LP
+xZ
+xZ
+PL
+pK
+pK
+LP
+xZ
+"}
diff --git a/_maps/map_files/shuttles/admin_hospital.dmm b/_maps/map_files/shuttles/admin_hospital.dmm
index 9e3b48a11c73f..ddf2d089fd96c 100644
--- a/_maps/map_files/shuttles/admin_hospital.dmm
+++ b/_maps/map_files/shuttles/admin_hospital.dmm
@@ -1,1673 +1,1374 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/space,
-/area/space)
-"ab" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall_s6";
- dir = 2
- },
-/area/shuttle/administration)
-"ac" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- dir = 2
- },
-/area/shuttle/administration)
-"ad" = (
-/obj/structure/shuttle/window{
- tag = "icon-window5_end";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- dir = 2
- },
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 1;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/turf/space,
-/area/shuttle/administration)
-"ae" = (
-/obj/structure/shuttle/window{
- tag = "icon-window5_mid";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- dir = 2
- },
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 1;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/turf/space,
-/area/shuttle/administration)
-"af" = (
-/obj/structure/shuttle/window{
- tag = "icon-window5_end (NORTH)";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- dir = 1
- },
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 1;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/turf/space,
-/area/shuttle/administration)
-"ag" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall14";
- dir = 2
- },
-/area/shuttle/administration)
-"ah" = (
-/obj/structure/sign/redcross{
- desc = "The Star of Life, a symbol of Medical Aid.";
- icon_state = "lifestar";
- name = "NHV Asclepius"
- },
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall8";
- tag = "icon-swall12"
- },
-/area/shuttle/administration)
-"ai" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/airlock/external,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "asclblast";
- name = "Blast Door";
- opacity = 0
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aj" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/airlock/external,
-/obj/docking_port/mobile{
- dir = 2;
- dwidth = 9;
- height = 18;
- id = "admin";
- name = "hospital";
- roundstart_move = "cc_bay_1";
- timid = 1;
- width = 19
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "asclblast";
- name = "Blast Door";
- opacity = 0
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"ak" = (
-/obj/structure/sign/redcross{
- desc = "The Star of Life, a symbol of Medical Aid.";
- icon_state = "lifestar";
- name = "NHV Asclepius"
- },
-/turf/simulated/shuttle/wall{
- tag = "icon-swall14";
- icon_state = "swall4";
- dir = 2
- },
-/area/shuttle/administration)
-"al" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 1;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- tag = "icon-window5_mid";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- dir = 2
- },
-/turf/space,
-/area/shuttle/administration)
-"am" = (
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 1;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/shuttle/window{
- tag = "icon-window5_end (NORTH)";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- dir = 1
- },
-/turf/space,
-/area/shuttle/administration)
-"an" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall_s10";
- dir = 2
- },
-/area/shuttle/administration)
-"ao" = (
-/turf/simulated/shuttle/wall{
- tag = "icon-swall3";
- icon_state = "swall3";
- dir = 2
- },
-/area/shuttle/administration)
-"ap" = (
-/obj/machinery/chem_master,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aq" = (
-/obj/machinery/chem_dispenser,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"ar" = (
-/obj/machinery/chem_heater,
-/obj/machinery/light{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"as" = (
-/obj/structure/closet/secure_closet/reagents,
-/obj/item/storage/bag/chemistry,
-/obj/item/storage/bag/chemistry,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"at" = (
-/obj/structure/closet/secure_closet/chemical,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"au" = (
-/obj/structure/sign/chemistry{
- pixel_y = 1
- },
-/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- dir = 2
- },
-/area/shuttle/administration)
-"av" = (
-/obj/structure/chair{
- tag = "icon-chair (EAST)";
- icon_state = "chair";
- dir = 4
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aw" = (
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"ax" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/camera{
- dir = 8;
- icon_state = "camera";
- name = "NHV Asclepius Lobby";
- network = list("NHV Asclepius")
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"ay" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"az" = (
-/obj/machinery/clonepod{
- biomass = 300
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aA" = (
-/obj/machinery/computer/cloning,
-/obj/machinery/light{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aB" = (
-/obj/machinery/dna_scannernew,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aC" = (
-/obj/machinery/atmospherics/unary/cryo_cell,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aD" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall7";
- dir = 2
- },
-/area/shuttle/administration)
-"aE" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- dir = 2
- },
-/area/shuttle/administration)
-"aF" = (
-/obj/structure/reagent_dispensers/fueltank/chem{
- pixel_x = -32
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aG" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aH" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- req_access_txt = "33"
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aI" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aJ" = (
-/obj/structure/sign/nosmoking_2,
-/turf/simulated/shuttle/wall{
- tag = "icon-swall1";
- icon_state = "swall1";
- dir = 2
- },
-/area/shuttle/administration)
-"aK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aL" = (
-/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
- dir = 4
- },
-/obj/structure/window/plasmareinforced{
- dir = 8
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/administration)
-"aM" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion"
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/administration)
-"aN" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/dropper,
-/obj/item/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
- name = "Chemistry Cleaner"
- },
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/reagent_containers/glass/bucket,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aO" = (
-/obj/structure/closet/crate/can,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aP" = (
-/obj/structure/shuttle/window,
-/obj/structure/grille,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aQ" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aR" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aS" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/syringes,
-/obj/item/storage/box/beakers,
-/obj/machinery/reagentgrinder,
-/obj/machinery/camera{
- dir = 4;
- icon_state = "camera";
- name = "NHV Asclepius Chemistry";
- network = list("NHV Asclepius")
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aT" = (
-/obj/machinery/door/airlock/shuttle/glass{
- name = "Chemistry";
- req_access_txt = "33"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aU" = (
-/obj/machinery/door/airlock/shuttle/glass,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aV" = (
-/obj/machinery/camera{
- dir = 8;
- icon_state = "camera";
- name = "NHV Asclepius Cloning";
- network = list("NHV Asclepius")
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aW" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall_s9";
- dir = 2
- },
-/area/shuttle/administration)
-"aX" = (
-/obj/machinery/iv_drip,
-/obj/item/reagent_containers/iv_bag,
-/obj/structure/reagent_dispensers/fueltank/chem{
- pixel_x = -32
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aY" = (
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"aZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"ba" = (
-/obj/machinery/chem_heater,
-/obj/machinery/light,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bb" = (
-/obj/machinery/status_display,
-/turf/simulated/shuttle/wall{
- icon_state = "swall3";
- dir = 2
- },
-/area/shuttle/administration)
-"bc" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bd" = (
-/obj/machinery/vending/coffee,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"be" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/item/storage/box/gloves,
-/obj/item/storage/box/masks,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bg" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid,
-/obj/item/storage/firstaid,
-/obj/item/storage/firstaid/adv,
-/obj/item/storage/firstaid/adv,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bh" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/belt/medical,
-/obj/item/storage/belt/medical,
-/obj/item/storage/belt/medical,
-/obj/item/clothing/glasses/hud/health,
-/obj/item/clothing/glasses/hud/health,
-/obj/item/clothing/glasses/hud/health,
-/obj/machinery/light,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bi" = (
-/obj/machinery/atmospherics/unary/cold_sink/freezer{
- dir = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bj" = (
-/obj/machinery/smartfridge/medbay,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bk" = (
-/turf/simulated/shuttle/wall{
- tag = "icon-swall13";
- icon_state = "swall13";
- dir = 2
- },
-/area/shuttle/administration)
-"bl" = (
-/obj/structure/shuttle/window,
-/obj/structure/grille,
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall8";
- tag = "icon-swall12"
- },
-/area/shuttle/administration)
-"bm" = (
-/obj/structure/shuttle/window,
-/obj/structure/grille,
-/turf/simulated/shuttle/wall{
- tag = "icon-swall14";
- icon_state = "swall4";
- dir = 2
- },
-/area/shuttle/administration)
-"bn" = (
-/turf/simulated/shuttle/wall{
- tag = "icon-swall15";
- icon_state = "swall15";
- dir = 2
- },
-/area/shuttle/administration)
-"bo" = (
-/obj/structure/shuttle/window{
- tag = "icon-window5_end (WEST)";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- dir = 8
- },
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 8;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/turf/space,
-/area/shuttle/administration)
-"bp" = (
-/obj/machinery/computer/pandemic,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bq" = (
-/obj/machinery/camera{
- c_tag = "Tech Storage";
- dir = 2;
- name = "NHV Asclepius Command Center";
- network = list("NHV Asclepius")
- },
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/door_control{
- dir = 4;
- id = "Asclshutters";
- name = "remote shutter control";
- pixel_x = -5;
- pixel_y = 35;
- req_access = list(101);
- req_access_txt = "0"
- },
-/obj/machinery/keycard_auth{
- pixel_y = 24
- },
-/obj/machinery/door_control{
- dir = 2;
- id = "asclblast";
- name = "blast door control";
- pixel_x = 5;
- pixel_y = 35;
- pixel_z = 0;
- req_access = list(101);
- req_access_txt = "0"
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"br" = (
-/obj/machinery/recharger/wallcharger{
- pixel_y = 25
- },
-/obj/machinery/recharger/wallcharger{
- pixel_y = 35
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bs" = (
-/turf/simulated/shuttle/wall{
- tag = "icon-swall1";
- icon_state = "swall1";
- dir = 2
- },
-/area/shuttle/administration)
-"bt" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bu" = (
-/obj/machinery/light{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
- },
-/obj/structure/closet/walllocker/emerglocker{
- pixel_y = 32
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bv" = (
-/obj/machinery/vending/medical,
-/obj/machinery/light{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bw" = (
-/obj/structure/table/tray,
-/obj/item/stack/medical/bruise_pack/advanced,
-/obj/item/scalpel,
-/obj/item/hemostat,
-/obj/item/retractor,
-/obj/item/circular_saw,
-/obj/item/bonegel,
-/obj/item/bonesetter,
-/obj/item/cautery,
-/obj/item/FixOVein,
-/obj/item/surgicaldrill,
-/obj/item/storage/backpack/duffel/medical,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bx" = (
-/obj/machinery/optable,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"by" = (
-/obj/machinery/computer/operating,
-/obj/machinery/light{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bz" = (
-/obj/structure/closet/secure_closet/medical3,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bA" = (
-/obj/structure/closet/secure_closet/medical2,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bB" = (
-/obj/structure/shuttle/window{
- dir = 4;
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- tag = "icon-window5 (EAST)"
- },
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 8;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/turf/space,
-/area/shuttle/administration)
-"bC" = (
-/obj/machinery/computer/shuttle/admin{
- name = "NHV Asclepius shuttle console"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bD" = (
-/obj/machinery/door/airlock/command{
- name = "Command Center";
- req_access = null;
- req_access_txt = "19"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bE" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bF" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall1";
- dir = 2
- },
-/area/shuttle/administration)
-"bG" = (
-/obj/machinery/camera{
- dir = 4;
- icon_state = "camera";
- name = "NHV Asclepius OR 1";
- network = list("NHV Asclepius")
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bH" = (
-/obj/machinery/computer/camera_advanced/shuttle_docker/admin{
- name = "NHV Asclepius navigation computer"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bI" = (
-/obj/machinery/door/airlock/shuttle/glass{
- name = "Operating Room";
- req_access = null;
- req_access_txt = "45"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bJ" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bK" = (
-/obj/structure/shuttle/window{
- tag = "icon-window5_end (EAST)";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 8;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/turf/space,
-/area/shuttle/administration)
-"bL" = (
-/obj/machinery/computer/communications{
- name = "NHV Asclepius Communications Console"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bM" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/light,
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bN" = (
-/turf/simulated/shuttle/wall{
- tag = "icon-swall2";
- icon_state = "swall2";
- dir = 2
- },
-/area/shuttle/administration)
-"bO" = (
-/obj/machinery/sleeper,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bP" = (
-/obj/machinery/sleeper{
- dir = 4
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bQ" = (
-/obj/structure/bed{
- name = "Triage: High Priority"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bR" = (
-/obj/machinery/bodyscanner,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bT" = (
-/obj/machinery/light,
-/obj/structure/closet/crate/can,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bU" = (
-/obj/item/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
- name = "Surgery Cleaner"
- },
-/obj/structure/table/glass,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bV" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/machinery/iv_drip,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"bW" = (
-/obj/machinery/status_display,
-/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- dir = 2
- },
-/area/shuttle/administration)
-"bX" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall13";
- dir = 2
- },
-/area/shuttle/administration)
-"bY" = (
-/obj/structure/sign/examroom,
-/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- dir = 2
- },
-/area/shuttle/administration)
-"bZ" = (
-/obj/machinery/defibrillator_mount/loaded,
-/turf/simulated/shuttle/wall{
- dir = 2;
- icon_state = "swall8";
- tag = "icon-swall12"
- },
-/area/shuttle/administration)
-"ca" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera{
- dir = 5;
- icon_state = "camera";
- name = "NHV Asclepius Central";
- network = list("NHV Asclepius")
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cb" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/bed{
- name = "Triage: High Priority"
- },
-/obj/machinery/iv_drip,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cc" = (
-/obj/structure/sign/nosmoking_2,
-/turf/simulated/shuttle/wall{
- icon_state = "swall7";
- dir = 2
- },
-/area/shuttle/administration)
-"cd" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall11";
- dir = 2
- },
-/area/shuttle/administration)
-"ce" = (
-/obj/machinery/portable_atmospherics/canister/oxygen{
- name = "Canister: \[O2] (CRYO)"
- },
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cf" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cg" = (
-/obj/machinery/portable_atmospherics/canister/oxygen{
- name = "Canister: \[O2] (CRYO)"
- },
-/obj/machinery/light{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
- },
-/obj/machinery/camera{
- dir = 4;
- icon_state = "camera";
- name = "NHV Asclepius Cryo";
- network = list("NHV Asclepius")
- },
-/obj/machinery/atmospherics/unary/portables_connector,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"ch" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
- name = "Surgery Cleaner"
- },
-/obj/machinery/cell_charger,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"ci" = (
-/obj/structure/bed{
- name = "Triage: High Priority"
- },
-/obj/machinery/iv_drip,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cj" = (
-/obj/machinery/atmospherics/unary/cold_sink/freezer,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"ck" = (
-/obj/machinery/camera{
- dir = 4;
- icon_state = "camera";
- name = "NHV Asclepius OR 2";
- network = list("NHV Asclepius")
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cl" = (
-/obj/structure/closet/radiation,
-/obj/item/clothing/head/radiation,
-/obj/item/clothing/head/radiation,
-/obj/item/clothing/head/radiation,
-/obj/item/clothing/suit/radiation,
-/obj/item/clothing/suit/radiation,
-/obj/item/clothing/suit/radiation,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cm" = (
-/obj/structure/closet/l3closet,
-/obj/item/clothing/head/bio_hood,
-/obj/item/clothing/head/bio_hood,
-/obj/item/clothing/head/bio_hood,
-/obj/item/clothing/suit/bio_suit,
-/obj/item/clothing/suit/bio_suit,
-/obj/item/clothing/suit/bio_suit,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cn" = (
-/obj/structure/closet/secure_closet/medical1,
-/obj/item/clothing/head/beret/med,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"co" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cp" = (
-/obj/machinery/suit_storage_unit/cmo/secure/sec_storage,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cq" = (
-/obj/machinery/light,
-/obj/machinery/suit_storage_unit/cmo/secure/sec_storage,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cr" = (
-/obj/structure/dispenser/oxygen,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cs" = (
-/obj/machinery/vending/medical,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"ct" = (
-/turf/simulated/shuttle/wall{
- icon_state = "swall_s5";
- dir = 2
- },
-/area/shuttle/administration)
-"cu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cv" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden,
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"cx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
- },
-/turf/simulated/shuttle/floor{
- icon_state = "floor3"
- },
-/area/shuttle/administration)
-"hL" = (
-/obj/structure/shuttle/window{
- tag = "icon-window5_mid";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_mid";
- dir = 2
- },
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/turf/space,
-/area/shuttle/administration)
-"qa" = (
-/obj/structure/shuttle/window{
- tag = "icon-window5_end";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- dir = 2
- },
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/turf/space,
-/area/shuttle/administration)
-"Kq" = (
-/obj/structure/shuttle/window{
- tag = "icon-window5_end";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- dir = 2
- },
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/turf/space,
-/area/shuttle/administration)
-"Vi" = (
-/obj/structure/shuttle/window{
- tag = "icon-window5_end (NORTH)";
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "window5_end";
- dir = 1
- },
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "open";
- id_tag = "Asclshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/turf/space,
-/area/shuttle/administration)
-
-(1,1,1) = {"
-ab
-ao
-aE
-aE
-aE
-aE
-aE
-aD
-bo
-bB
-bB
-bK
-aD
-aE
-aE
-aE
-aE
-ct
-"}
-(2,1,1) = {"
-ac
-ap
-aF
-aN
-aS
-aX
-ap
-ac
-bp
-bC
-bH
-bL
-ac
-cg
-cu
-aw
-cl
-ac
-"}
-(3,1,1) = {"
-ad
-aq
-aG
-aw
-aw
-aY
-aq
-ac
-bq
-aR
-aR
-bM
-ac
-aC
-cv
-aw
-cm
-qa
-"}
-(4,1,1) = {"
-ae
-ar
-aw
-aw
-aw
-aw
-ba
-ac
-br
-aw
-aw
-aw
-bW
-cf
-cw
-aw
-cn
-hL
-"}
-(5,1,1) = {"
-af
-as
-aw
-aw
-aw
-aw
-aw
-ag
-bs
-bD
-aP
-bN
-bX
-aC
-cv
-aw
-co
-Vi
-"}
-(6,1,1) = {"
-ac
-at
-aw
-aO
-aw
-aw
-aw
-bj
-bt
-aw
-aw
-bO
-bY
-cj
-cx
-aw
-cp
-ac
-"}
-(7,1,1) = {"
-ag
-au
-aH
-aP
-aT
-aP
-bb
-bk
-bu
-aw
-aw
-bP
-bZ
-ch
-aw
-aw
-cq
-ac
-"}
-(8,1,1) = {"
-ah
-av
-aw
-aQ
-aw
-aQ
-bc
-bl
-aw
-aw
-aw
-aw
-ca
-aw
-aw
-aw
-cr
-ac
-"}
-(9,1,1) = {"
-ai
-aw
-aw
-aw
-aw
-aw
-aw
-aU
-aw
-aw
-aw
-aw
-aw
-aw
-aw
-aw
-bR
-ac
-"}
-(10,1,1) = {"
-aj
-aw
-aw
-aw
-aw
-aw
-aw
-aU
-aw
-aw
-aw
-aw
-aw
-aw
-aw
-aw
-aw
-ac
-"}
-(11,1,1) = {"
-ak
-ax
-aI
-aR
-aw
-aR
-bd
-bm
-bv
-bE
-aw
-bQ
-cb
-ci
-bQ
-aw
-cs
-ac
-"}
-(12,1,1) = {"
-ag
-ao
-aJ
-aP
-aU
-aP
-bb
-bn
-aP
-bF
-bI
-bN
-cc
-aP
-bF
-bI
-bN
-bX
-"}
-(13,1,1) = {"
-ac
-ay
-aw
-aw
-aw
-aw
-be
-ac
-bw
-bG
-aw
-bR
-ac
-bw
-ck
-aw
-bR
-ac
-"}
-(14,1,1) = {"
-ad
-az
-aw
-aw
-aw
-aw
-bg
-ac
-bx
-aw
-aw
-aw
-ac
-bx
-aw
-aw
-aw
-Kq
-"}
-(15,1,1) = {"
-al
-aA
-aw
-aw
-aw
-aw
-bh
-ac
-by
-aw
-aw
-bT
-ac
-by
-aw
-aw
-bT
-hL
-"}
-(16,1,1) = {"
-am
-aB
-aw
-aw
-aw
-aZ
-bi
-ac
-bz
-aw
-aw
-bU
-ac
-bz
-aw
-aw
-bU
-Vi
-"}
-(17,1,1) = {"
-ac
-aC
-aK
-aK
-aV
-bf
-ce
-ac
-bA
-aw
-bJ
-bV
-ac
-bA
-aw
-bJ
-bV
-ac
-"}
-(18,1,1) = {"
-an
-aD
-aL
-aL
-aD
-aE
-aE
-bn
-aL
-aL
-aD
-aE
-cd
-aD
-aL
-aL
-aD
-aW
-"}
-(19,1,1) = {"
-aa
-an
-aM
-aM
-aW
-aa
-aa
-an
-aM
-aM
-aW
-aa
-aa
-an
-aM
-aM
-aW
-aa
-"}
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/space,
+/area/space)
+"ab" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s6"
+ },
+/area/shuttle/administration)
+"ac" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12"
+ },
+/area/shuttle/administration)
+"ag" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall14"
+ },
+/area/shuttle/administration)
+"ah" = (
+/obj/structure/sign/redcross{
+ desc = "The Star of Life, a symbol of Medical Aid.";
+ icon_state = "lifestar";
+ name = "NHV Asclepius"
+ },
+/turf/simulated/shuttle/wall{
+ icon_state = "swall8";
+ tag = "icon-swall12"
+ },
+/area/shuttle/administration)
+"ai" = (
+/obj/structure/fans/tiny,
+/obj/machinery/door/airlock/external,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "asclblast";
+ name = "Blast Door";
+ opacity = 0
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aj" = (
+/obj/structure/fans/tiny,
+/obj/machinery/door/airlock/external,
+/obj/docking_port/mobile{
+ dir = 2;
+ dwidth = 9;
+ height = 18;
+ id = "admin";
+ name = "hospital";
+ roundstart_move = "cc_bay_1";
+ timid = 1;
+ width = 19
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "asclblast";
+ name = "Blast Door";
+ opacity = 0
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"ak" = (
+/obj/structure/sign/redcross{
+ desc = "The Star of Life, a symbol of Medical Aid.";
+ icon_state = "lifestar";
+ name = "NHV Asclepius"
+ },
+/turf/simulated/shuttle/wall{
+ icon_state = "swall4";
+ tag = "icon-swall14"
+ },
+/area/shuttle/administration)
+"an" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s10"
+ },
+/area/shuttle/administration)
+"ao" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3";
+ tag = "icon-swall3"
+ },
+/area/shuttle/administration)
+"ap" = (
+/obj/machinery/chem_master,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aq" = (
+/obj/machinery/chem_dispenser/supgraded,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"ar" = (
+/obj/machinery/chem_heater,
+/obj/machinery/light{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"as" = (
+/obj/structure/closet/secure_closet/reagents,
+/obj/item/storage/bag/chemistry,
+/obj/item/storage/bag/chemistry,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"at" = (
+/obj/structure/closet/secure_closet/chemical,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"au" = (
+/obj/structure/sign/chemistry{
+ pixel_y = 1
+ },
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
+ },
+/area/shuttle/administration)
+"av" = (
+/obj/structure/chair{
+ dir = 4;
+ tag = "icon-chair (EAST)"
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aw" = (
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"ax" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/camera{
+ dir = 8;
+ name = "NHV Asclepius Lobby";
+ network = list("NHV Asclepius")
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"ay" = (
+/obj/machinery/clonepod{
+ biomass = 300
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"az" = (
+/obj/machinery/computer/cloning,
+/obj/machinery/light{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aA" = (
+/obj/machinery/dna_scannernew,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aC" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aD" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall7"
+ },
+/area/shuttle/administration)
+"aE" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
+ },
+/area/shuttle/administration)
+"aG" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aH" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/westleft{
+ req_access_txt = "33"
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aI" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aJ" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall1";
+ tag = "icon-swall1"
+ },
+/area/shuttle/administration)
+"aK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aL" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 4
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/administration)
+"aM" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/administration)
+"aN" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
+ name = "Chemistry Cleaner"
+ },
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aO" = (
+/obj/structure/closet/crate/can,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aP" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aQ" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aR" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aS" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/syringes,
+/obj/item/storage/box/beakers,
+/obj/machinery/reagentgrinder,
+/obj/machinery/camera{
+ dir = 4;
+ name = "NHV Asclepius Chemistry";
+ network = list("NHV Asclepius")
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aT" = (
+/obj/machinery/door/airlock/shuttle/glass{
+ name = "Chemistry";
+ req_access_txt = "33"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aU" = (
+/obj/machinery/door/airlock/shuttle/glass,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aV" = (
+/obj/machinery/camera{
+ dir = 8;
+ name = "NHV Asclepius Cloning";
+ network = list("NHV Asclepius")
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aW" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s9"
+ },
+/area/shuttle/administration)
+"aX" = (
+/obj/structure/reagent_dispensers/fueltank/chem{
+ pixel_x = -32
+ },
+/obj/structure/table/reinforced,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aY" = (
+/obj/structure/chair/comfy/shuttle,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"aZ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"ba" = (
+/obj/machinery/chem_heater,
+/obj/machinery/light,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bb" = (
+/obj/machinery/status_display,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall3"
+ },
+/area/shuttle/administration)
+"bc" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bd" = (
+/obj/machinery/vending/coffee,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"be" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/belt/medical,
+/obj/item/storage/belt/medical,
+/obj/item/storage/belt/medical,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
+/obj/machinery/light,
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bf" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bg" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid,
+/obj/item/storage/firstaid,
+/obj/item/storage/firstaid/adv,
+/obj/item/storage/firstaid/adv,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bh" = (
+/obj/machinery/atmospherics/unary/cold_sink/freezer{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bi" = (
+/obj/item/reagent_containers/iv_bag,
+/obj/machinery/iv_drip,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bj" = (
+/obj/machinery/smartfridge/medbay,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bk" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall13";
+ tag = "icon-swall13"
+ },
+/area/shuttle/administration)
+"bl" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall8";
+ tag = "icon-swall12"
+ },
+/area/shuttle/administration)
+"bm" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall4";
+ tag = "icon-swall14"
+ },
+/area/shuttle/administration)
+"bn" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall15";
+ tag = "icon-swall15"
+ },
+/area/shuttle/administration)
+"bp" = (
+/obj/machinery/computer/pandemic,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bq" = (
+/obj/machinery/camera{
+ c_tag = "Tech Storage";
+ name = "NHV Asclepius Command Center";
+ network = list("NHV Asclepius")
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/door_control{
+ dir = 4;
+ id = "Asclshutters";
+ name = "remote shutter control";
+ pixel_x = -5;
+ pixel_y = 35;
+ req_access = list(101)
+ },
+/obj/machinery/keycard_auth{
+ pixel_y = 24
+ },
+/obj/machinery/door_control{
+ id = "asclblast";
+ name = "blast door control";
+ pixel_x = 5;
+ pixel_y = 35;
+ req_access = list(101)
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"br" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 25
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 35
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bs" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall1";
+ tag = "icon-swall1"
+ },
+/area/shuttle/administration)
+"bt" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bu" = (
+/obj/machinery/light{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bv" = (
+/obj/machinery/vending/medical,
+/obj/machinery/light{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bw" = (
+/obj/structure/closet/secure_closet/medical3,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bx" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner"
+ },
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"by" = (
+/obj/machinery/light{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/machinery/bodyscanner,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bC" = (
+/obj/machinery/computer/shuttle/admin{
+ name = "NHV Asclepius shuttle console"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bD" = (
+/obj/machinery/door/airlock/command{
+ name = "Command Center";
+ req_access = null;
+ req_access_txt = "19"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bE" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bF" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall1"
+ },
+/area/shuttle/administration)
+"bG" = (
+/obj/machinery/camera{
+ dir = 4;
+ name = "NHV Asclepius OR 1";
+ network = list("NHV Asclepius")
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bH" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/admin{
+ name = "NHV Asclepius navigation computer"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bI" = (
+/obj/machinery/door/airlock/shuttle/glass{
+ name = "Operating Room";
+ req_access = null;
+ req_access_txt = "45"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bJ" = (
+/obj/item/stack/medical/bruise_pack/advanced,
+/obj/item/scalpel,
+/obj/item/hemostat,
+/obj/item/retractor,
+/obj/item/circular_saw,
+/obj/item/bonegel,
+/obj/item/bonesetter,
+/obj/item/cautery,
+/obj/item/FixOVein,
+/obj/item/surgicaldrill,
+/obj/item/storage/backpack/duffel/medical,
+/obj/structure/table/reinforced,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bL" = (
+/obj/machinery/computer/communications{
+ name = "NHV Asclepius Communications Console"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bM" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bN" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall2";
+ tag = "icon-swall2"
+ },
+/area/shuttle/administration)
+"bO" = (
+/obj/machinery/sleeper,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bP" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bQ" = (
+/obj/structure/bed{
+ name = "Triage: High Priority"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bR" = (
+/obj/machinery/bodyscanner,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bT" = (
+/obj/machinery/light,
+/obj/machinery/bodyscanner,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bU" = (
+/obj/machinery/optable,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bV" = (
+/obj/machinery/computer/operating,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"bW" = (
+/obj/machinery/status_display,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12"
+ },
+/area/shuttle/administration)
+"bX" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall13"
+ },
+/area/shuttle/administration)
+"bY" = (
+/obj/structure/sign/examroom,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall12"
+ },
+/area/shuttle/administration)
+"bZ" = (
+/obj/machinery/defibrillator_mount/loaded,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall8";
+ tag = "icon-swall12"
+ },
+/area/shuttle/administration)
+"ca" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera{
+ dir = 5;
+ name = "NHV Asclepius Central";
+ network = list("NHV Asclepius")
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"cb" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed{
+ name = "Triage: High Priority"
+ },
+/obj/machinery/iv_drip,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"cc" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/shuttle/wall{
+ icon_state = "swall7"
+ },
+/area/shuttle/administration)
+"cd" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall11"
+ },
+/area/shuttle/administration)
+"ce" = (
+/obj/machinery/portable_atmospherics/canister/oxygen{
+ name = "Canister: \[O2] (CRYO)"
+ },
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"cf" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/storage/box/gloves,
+/obj/item/storage/box/masks,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"cg" = (
+/obj/machinery/light{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/machinery/camera{
+ dir = 4;
+ name = "NHV Asclepius Cryo";
+ network = list("NHV Asclepius")
+ },
+/obj/machinery/suit_storage_unit/cmo/secure/sec_storage,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"ch" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"ci" = (
+/obj/structure/bed{
+ name = "Triage: High Priority"
+ },
+/obj/machinery/iv_drip,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"cj" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"ck" = (
+/obj/machinery/camera{
+ dir = 4;
+ name = "NHV Asclepius OR 2";
+ network = list("NHV Asclepius")
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"cl" = (
+/obj/structure/closet/radiation,
+/obj/item/clothing/head/radiation,
+/obj/item/clothing/head/radiation,
+/obj/item/clothing/head/radiation,
+/obj/item/clothing/suit/radiation,
+/obj/item/clothing/suit/radiation,
+/obj/item/clothing/suit/radiation,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"cm" = (
+/obj/structure/closet/l3closet,
+/obj/item/clothing/head/bio_hood,
+/obj/item/clothing/head/bio_hood,
+/obj/item/clothing/head/bio_hood,
+/obj/item/clothing/suit/bio_suit,
+/obj/item/clothing/suit/bio_suit,
+/obj/item/clothing/suit/bio_suit,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"cn" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/item/clothing/head/beret/med,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"co" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"cp" = (
+/obj/machinery/suit_storage_unit/cmo/secure/sec_storage,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"cq" = (
+/obj/machinery/light,
+/obj/machinery/suit_storage_unit/cmo/secure/sec_storage,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"cr" = (
+/obj/structure/dispenser/oxygen,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"cs" = (
+/obj/machinery/vending/medical,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"ct" = (
+/turf/simulated/shuttle/wall{
+ icon_state = "swall_s5"
+ },
+/area/shuttle/administration)
+"cu" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/item/reagent_containers/iv_bag/blood/OMinus,
+/obj/machinery/iv_drip,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+"cv" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor3"
+ },
+/area/shuttle/administration)
+
+(1,1,1) = {"
+ab
+ao
+aE
+aE
+aE
+aE
+aE
+aD
+aP
+aP
+aP
+aP
+aD
+aE
+aE
+aE
+aE
+ct
+"}
+(2,1,1) = {"
+ac
+ap
+aX
+aN
+aS
+aX
+ap
+ac
+bp
+bC
+bH
+bL
+ac
+cg
+aw
+aw
+cl
+ac
+"}
+(3,1,1) = {"
+aP
+aq
+aG
+aw
+aw
+aY
+aq
+ac
+bq
+aR
+aR
+bM
+ac
+cp
+aw
+aw
+cm
+aP
+"}
+(4,1,1) = {"
+aP
+ar
+aw
+aw
+aw
+aw
+ba
+ac
+br
+aw
+aw
+aw
+bW
+cp
+aw
+aw
+cn
+aP
+"}
+(5,1,1) = {"
+aP
+as
+aw
+aw
+aw
+aw
+aw
+ag
+bs
+bD
+aP
+bN
+bX
+cp
+aw
+aw
+co
+aP
+"}
+(6,1,1) = {"
+ac
+at
+aw
+aO
+aw
+bi
+aw
+bj
+bt
+aw
+cj
+bO
+bY
+cp
+aw
+aw
+cp
+ac
+"}
+(7,1,1) = {"
+ag
+au
+aH
+aP
+aT
+aP
+bb
+bk
+bu
+aw
+aw
+bP
+bZ
+cp
+aw
+aw
+cq
+ac
+"}
+(8,1,1) = {"
+ah
+av
+aw
+aQ
+aw
+aQ
+bc
+bl
+aw
+aw
+aw
+aw
+ca
+aw
+aw
+aw
+cr
+ac
+"}
+(9,1,1) = {"
+ai
+aw
+aw
+aw
+aw
+aw
+aw
+aU
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+bR
+ac
+"}
+(10,1,1) = {"
+aj
+aw
+aw
+aw
+aw
+aw
+aw
+aU
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cs
+ac
+"}
+(11,1,1) = {"
+ak
+ax
+aI
+aR
+aw
+aR
+bd
+bm
+bv
+bE
+aw
+bQ
+cb
+ci
+bQ
+aw
+cs
+ac
+"}
+(12,1,1) = {"
+ag
+ao
+aJ
+aP
+aU
+aP
+bb
+bn
+aP
+bF
+bI
+bN
+cc
+aP
+bF
+bI
+bN
+bX
+"}
+(13,1,1) = {"
+ac
+ay
+aw
+aw
+aw
+cf
+be
+ac
+bw
+bG
+aw
+cu
+ac
+bw
+ck
+aw
+cu
+ac
+"}
+(14,1,1) = {"
+aP
+az
+aw
+aw
+aw
+aw
+bg
+ac
+bx
+aw
+aw
+cv
+ac
+bx
+aw
+aw
+cv
+aP
+"}
+(15,1,1) = {"
+aP
+aA
+aw
+aw
+aw
+ch
+bh
+ac
+by
+aw
+aw
+bT
+ac
+by
+aw
+aw
+bT
+aP
+"}
+(16,1,1) = {"
+aP
+aC
+aB
+aw
+aw
+aZ
+ce
+ac
+bU
+aw
+aw
+bU
+ac
+bU
+aw
+aw
+bU
+aP
+"}
+(17,1,1) = {"
+ac
+aC
+bf
+aK
+aV
+bf
+ce
+ac
+bV
+bJ
+bJ
+bV
+ac
+bV
+bJ
+bJ
+bV
+ac
+"}
+(18,1,1) = {"
+an
+aD
+aL
+aL
+aD
+aE
+aE
+bn
+aL
+aL
+aD
+aE
+cd
+aD
+aL
+aL
+aD
+aW
+"}
+(19,1,1) = {"
+aa
+an
+aM
+aM
+aW
+aa
+aa
+an
+aM
+aM
+aW
+aa
+aa
+an
+aM
+aM
+aW
+aa
+"}
diff --git a/_maps/map_files/shuttles/ferry_base.dmm b/_maps/map_files/shuttles/ferry_base.dmm
index 658633d421a54..23359aab13d6b 100644
--- a/_maps/map_files/shuttles/ferry_base.dmm
+++ b/_maps/map_files/shuttles/ferry_base.dmm
@@ -1,23 +1,20 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
-/turf/space,
-/area/space)
-"b" = (
/obj/structure/shuttle/engine/propulsion{
dir = 8;
- icon_state = "propulsion";
tag = "icon-propulsion (EAST)"
},
+/turf/simulated/shuttle/plating,
+/area/shuttle/transport)
+"b" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f6";
- dir = 2
+ icon_state = "swall12"
},
/area/shuttle/transport)
"c" = (
/turf/simulated/shuttle/wall{
- icon_state = "swall12";
- dir = 2
+ icon_state = "swall12"
},
/area/shuttle/transport)
"d" = (
@@ -33,49 +30,43 @@
"f" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f10";
- dir = 2
+ icon_state = "swall_f10"
},
/area/shuttle/transport)
"g" = (
-/turf/simulated/shuttle/floor,
-/turf/simulated/shuttle/wall/interior{
- tag = "icon-swall_f9";
- icon_state = "swall_f9"
- },
-/area/shuttle/transport)
-"h" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
},
/obj/structure/chair/comfy/shuttle{
dir = 4
},
+/obj/structure/window/plasmareinforced{
+ dir = 8;
+ layer = 2.9
+ },
+/turf/space,
/turf/simulated/shuttle/floor,
/area/shuttle/transport)
-"i" = (
+"h" = (
/obj/machinery/computer/shuttle/ferry/request,
/turf/simulated/shuttle/floor,
/area/shuttle/transport)
-"j" = (
-/obj/structure/chair/comfy/shuttle,
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
"k" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
- dir = 1
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
},
-/obj/structure/chair/comfy/shuttle,
/turf/simulated/shuttle/floor,
/area/shuttle/transport)
"l" = (
/obj/machinery/door/airlock/shuttle{
id_tag = "s_docking_airlock"
},
+/obj/structure/fans/tiny,
/turf/simulated/shuttle/floor,
/area/shuttle/transport)
"m" = (
@@ -95,60 +86,64 @@
timid = 1;
width = 5
},
+/obj/structure/fans/tiny,
/turf/simulated/shuttle/floor,
/area/shuttle/transport)
"o" = (
/obj/structure/shuttle/engine/propulsion{
dir = 8;
- icon_state = "propulsion";
tag = "icon-propulsion (EAST)"
},
+/turf/simulated/shuttle/plating,
/turf/space,
-/turf/simulated/shuttle/wall{
- icon_state = "swall_f5";
- dir = 2
- },
/area/shuttle/transport)
"p" = (
-/turf/simulated/shuttle/floor,
-/turf/simulated/shuttle/wall/interior{
- tag = "icon-swall_f10";
- icon_state = "swall_f10"
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 8;
+ layer = 2.9
},
-/area/shuttle/transport)
-"q" = (
-/obj/structure/closet/crate,
-/obj/machinery/light/spot,
-/turf/simulated/shuttle/floor,
-/area/shuttle/transport)
-"r" = (
-/obj/structure/closet/crate,
/turf/simulated/shuttle/floor,
+/turf/space,
/area/shuttle/transport)
"s" = (
/obj/structure/chair/comfy/shuttle{
- dir = 1
+ dir = 4
},
/turf/simulated/shuttle/floor,
/area/shuttle/transport)
"t" = (
/obj/machinery/light/spot,
/obj/structure/chair/comfy/shuttle{
- dir = 1
+ dir = 4
},
/turf/simulated/shuttle/floor,
/area/shuttle/transport)
"u" = (
/turf/space,
/turf/simulated/shuttle/wall{
- icon_state = "swall_f9";
- dir = 2
+ icon_state = "swall_f9"
},
/area/shuttle/transport)
+"B" = (
+/obj/machinery/light/spot,
+/obj/structure/closet/crate,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport)
+"G" = (
+/obj/machinery/light/spot{
+ dir = 1;
+ tag = "icon-tube1 (NORTH)"
+ },
+/obj/structure/closet/crate,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport)
(1,1,1) = {"
a
-b
+o
l
o
a
@@ -158,32 +153,32 @@ b
g
m
p
-o
+b
"}
(3,1,1) = {"
c
h
m
-q
+t
c
"}
(4,1,1) = {"
c
-i
+s
m
-r
+s
c
"}
(5,1,1) = {"
d
-j
+s
m
s
d
"}
(6,1,1) = {"
c
-j
+s
m
s
c
@@ -197,30 +192,30 @@ c
"}
(8,1,1) = {"
c
-j
+s
m
s
c
"}
(9,1,1) = {"
e
-j
+s
m
s
e
"}
(10,1,1) = {"
c
-j
+s
m
s
c
"}
(11,1,1) = {"
c
-k
+G
m
-t
+B
c
"}
(12,1,1) = {"
diff --git a/code/ATMOSPHERICS/components/trinary_devices/mixer.dm b/code/ATMOSPHERICS/components/trinary_devices/mixer.dm
index 5db62c29b7f3b..80fdeb96de70a 100644
--- a/code/ATMOSPHERICS/components/trinary_devices/mixer.dm
+++ b/code/ATMOSPHERICS/components/trinary_devices/mixer.dm
@@ -109,27 +109,44 @@
//No need to mix if target is already full!
return 1
+ /*
+ Pump mode:
+ If mixing ratio is set to 100:0 or 0:100, mixer will act like a gas pump, avoiding unnecessary checks for actual mixing process
+ pump = 0 - pump mode is OFF
+ pump = 1 - pump mode is ON, transfers gas from intake 1 to outlet (node 1 -> node 3)
+ pump = 2 - pump mode is ON, transfers gas from intake 2 to outlet (node 2 -> node 3)
+ */
+
+ var/pump = 0
+
+ if(!node1_concentration)
+ pump = 2
+
+ if(!node2_concentration)
+ pump = 1
+
//Calculate necessary moles to transfer using PV=nRT
var/pressure_delta = target_pressure - output_starting_pressure
var/transfer_moles1 = 0
var/transfer_moles2 = 0
- if(air1.temperature > 0)
+ if((air1.temperature > 0) && ((pump == 0) || (pump == 1)))
transfer_moles1 = (node1_concentration*pressure_delta)*air3.volume/(air1.temperature * R_IDEAL_GAS_EQUATION)
- if(air2.temperature > 0)
+ if((air2.temperature > 0) && ((pump == 0) || (pump == 2)))
transfer_moles2 = (node2_concentration*pressure_delta)*air3.volume/(air2.temperature * R_IDEAL_GAS_EQUATION)
- var/air1_moles = air1.total_moles()
- var/air2_moles = air2.total_moles()
+ if(pump == 0)
+ var/air1_moles = air1.total_moles()
+ var/air2_moles = air2.total_moles()
- if((air1_moles < transfer_moles1) || (air2_moles < transfer_moles2))
- if(!transfer_moles1 || !transfer_moles2) return
- var/ratio = min(air1_moles/transfer_moles1, air2_moles/transfer_moles2)
+ if((air1_moles < transfer_moles1) || (air2_moles < transfer_moles2))
+ if(!transfer_moles1 || !transfer_moles2) return
+ var/ratio = min(air1_moles/transfer_moles1, air2_moles/transfer_moles2)
- transfer_moles1 *= ratio
- transfer_moles2 *= ratio
+ transfer_moles1 *= ratio
+ transfer_moles2 *= ratio
//Actually transfer the gas
diff --git a/code/ATMOSPHERICS/datum_pipeline.dm b/code/ATMOSPHERICS/datum_pipeline.dm
index ff9fb9a4ab1d8..156320981caa4 100644
--- a/code/ATMOSPHERICS/datum_pipeline.dm
+++ b/code/ATMOSPHERICS/datum_pipeline.dm
@@ -5,7 +5,7 @@
var/list/obj/machinery/atmospherics/pipe/members = list()
var/list/obj/machinery/atmospherics/other_atmosmch = list()
- var/update = 1
+ var/update = TRUE
var/alert_pressure = 0
@@ -24,7 +24,7 @@
/datum/pipeline/process()//This use to be called called from the pipe networks
if(update)
- update = 0
+ update = FALSE
reconcile_air()
return
@@ -111,6 +111,7 @@ GLOBAL_VAR_INIT(pipenetwarnings, 10)
other_airs.Add(E.other_airs)
E.members.Cut()
E.other_atmosmch.Cut()
+ update = TRUE
qdel(E)
/obj/machinery/atmospherics/proc/addMember(obj/machinery/atmospherics/A)
@@ -186,7 +187,7 @@ GLOBAL_VAR_INIT(pipenetwarnings, 10)
(partial_heat_capacity*target.heat_capacity/(partial_heat_capacity+target.heat_capacity))
air.temperature -= heat/total_heat_capacity
- update = 1
+ update = TRUE
/datum/pipeline/proc/reconcile_air()
var/list/datum/gas_mixture/GL = list()
diff --git a/code/LINDA/LINDA_turf_tile.dm b/code/LINDA/LINDA_turf_tile.dm
index 6c7e0e5d49570..cb7baf9f03c47 100644
--- a/code/LINDA/LINDA_turf_tile.dm
+++ b/code/LINDA/LINDA_turf_tile.dm
@@ -233,7 +233,7 @@
if(!excited_group)
var/datum/excited_group/EG = new
EG.add_turf(src)
- air.share(G, atmos_adjacent_turfs_amount)
+ air.share(G, 0)
LAST_SHARE_CHECK
air.react()
diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm
index 6e677b02e495e..a41bb30989310 100644
--- a/code/__DEFINES/layers.dm
+++ b/code/__DEFINES/layers.dm
@@ -46,12 +46,12 @@
#define BELOW_OBJ_LAYER 2.9
#define LOW_ITEM_LAYER 2.95
//#define OBJ_LAYER 3 //For easy recordkeeping; this is a byond define
-#define CLOSED_BLASTDOOR_LAYER 3.05
#define CLOSED_DOOR_LAYER 3.1
#define CLOSED_FIREDOOR_LAYER 3.11
#define SHUTTER_LAYER 3.12 // HERE BE DRAGONS
#define ABOVE_OBJ_LAYER 3.2
#define ABOVE_WINDOW_LAYER 3.3
+#define CLOSED_BLASTDOOR_LAYER 3.35
#define SIGN_LAYER 3.4
#define NOT_HIGH_OBJ_LAYER 3.5
#define HIGH_OBJ_LAYER 3.6
diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm
index 70eec6d21e453..bcb5677c5fffc 100644
--- a/code/__DEFINES/misc.dm
+++ b/code/__DEFINES/misc.dm
@@ -136,6 +136,8 @@
#define SOUTH_OF_TURF(T) locate(T.x, T.y - 1, T.z)
#define WEST_OF_TURF(T) locate(T.x - 1, T.y, T.z)
+#define ATOM_COORDS(A) list(A.x, A.y, A.z)
+
#define MIN_SUPPLIED_LAW_NUMBER 15
#define MAX_SUPPLIED_LAW_NUMBER 50
@@ -269,6 +271,7 @@
"blue" = "grey", \
"green" = "grey", \
"orange" = "light grey", \
+ "yellow" = "light grey", \
"brown" = "grey", \
"gold" = "light grey", \
"cyan" = "silver", \
@@ -283,8 +286,9 @@
"red" = "darkolivegreen", \
"green" = "darkslategrey", \
"orange" = "goldenrod", \
- "gold" = "goldenrod", \
+ "yellow" = "goldenrod", \
"brown" = "darkolivegreen", \
+ "gold" = "goldenrod", \
"cyan" = "steelblue", \
"magenta" = "blue", \
"purple" = "darkslategrey", \
@@ -298,8 +302,9 @@
"blue" = "darkslateblue", \
"green" = "darkolivegreen", \
"orange" = "darkkhaki", \
- "gold" = "darkkhaki", \
+ "yellow" = "darkkhaki", \
"brown" = "rebeccapurple", \
+ "gold" = "darkkhaki", \
"cyan" = "darkseagreen", \
"magenta" = "darkslateblue", \
"purple" = "darkslateblue", \
diff --git a/code/__DEFINES/subsystems.dm b/code/__DEFINES/subsystems.dm
index 66ee12d74f7b1..fb0cac5c0da86 100644
--- a/code/__DEFINES/subsystems.dm
+++ b/code/__DEFINES/subsystems.dm
@@ -1,22 +1,25 @@
//Timing subsystem
//Don't run if there is an identical unique timer active
//if the arguments to addtimer are the same as an existing timer, it doesn't create a new timer, and returns the id of the existing timer
-#define TIMER_UNIQUE 1
+#define TIMER_UNIQUE (1<<0)
//For unique timers: Replace the old timer rather then not start this one
-#define TIMER_OVERRIDE 2
+#define TIMER_OVERRIDE (1<<1)
//Timing should be based on how timing progresses on clients, not the sever.
// tracking this is more expensive,
// should only be used in conjuction with things that have to progress client side, such as animate() or sound()
-#define TIMER_CLIENT_TIME 4
+#define TIMER_CLIENT_TIME (1<<2)
//Timer can be stopped using deltimer()
-#define TIMER_STOPPABLE 8
+#define TIMER_STOPPABLE (1<<3)
//To be used with TIMER_UNIQUE
//prevents distinguishing identical timers with the wait variable
-#define TIMER_NO_HASH_WAIT 16
+#define TIMER_NO_HASH_WAIT (1<<4)
//Loops the timer repeatedly until qdeleted
//In most cases you want a subsystem instead
-#define TIMER_LOOP 32
+#define TIMER_LOOP (1<<5)
+
+///Delete the timer on parent datum Destroy() and when deltimer'd
+#define TIMER_DELETE_ME (1<<6)
#define TIMER_ID_NULL -1
diff --git a/code/__HELPERS/_logging.dm b/code/__HELPERS/_logging.dm
index 495fbea9c224e..442bdcce934d8 100644
--- a/code/__HELPERS/_logging.dm
+++ b/code/__HELPERS/_logging.dm
@@ -119,8 +119,17 @@ GLOBAL_PROTECT(log_end)
/proc/log_misc(text)
rustg_log_write(GLOB.world_game_log, "MISC: [text][GLOB.log_end]")
+/proc/log_antag_objectives(datum/mind/Mind)
+ rustg_log_write(GLOB.world_game_log, "GAME: Start objective log for [html_decode(Mind.key)]/[html_decode(Mind.name)][GLOB.log_end]")
+ var/count = 1
+ for(var/datum/objective/objective in Mind.objectives)
+ rustg_log_write(GLOB.world_game_log, "GAME: Objective #[count]: [objective.explanation_text][GLOB.log_end]")
+ count++
+ rustg_log_write(GLOB.world_game_log, "GAME: End objective log for [html_decode(Mind.key)]/[html_decode(Mind.name)][GLOB.log_end]")
+
/proc/log_world(text)
- SEND_TEXT(world.log, text)
+ if(config && !config.disable_root_log)
+ SEND_TEXT(world.log, text)
if(config && config.log_world_output)
rustg_log_write(GLOB.world_game_log, "WORLD: [html_decode(text)][GLOB.log_end]")
diff --git a/code/__HELPERS/lists.dm b/code/__HELPERS/lists.dm
index aab920f55fd4d..f7021e4d55bbb 100644
--- a/code/__HELPERS/lists.dm
+++ b/code/__HELPERS/lists.dm
@@ -37,6 +37,46 @@
LIST.Insert(__BIN_MID, IN);\
}
+/// Passed into BINARY_INSERT to compare keys
+#define COMPARE_KEY __BIN_LIST[__BIN_MID]
+/// Passed into BINARY_INSERT to compare values
+#define COMPARE_VALUE __BIN_LIST[__BIN_LIST[__BIN_MID]]
+
+/****
+ * Binary search sorted insert from TG
+ * INPUT: Object to be inserted
+ * LIST: List to insert object into
+ * TYPECONT: The typepath of the contents of the list
+ * COMPARE: The object to compare against, usualy the same as INPUT
+ * COMPARISON: The variable on the objects to compare
+ * COMPTYPE: How should the values be compared? Either COMPARE_KEY or COMPARE_VALUE.
+ */
+#define BINARY_INSERT_TG(INPUT, LIST, TYPECONT, COMPARE, COMPARISON, COMPTYPE) \
+ do {\
+ var/list/__BIN_LIST = LIST;\
+ var/__BIN_CTTL = length(__BIN_LIST);\
+ if(!__BIN_CTTL) {\
+ __BIN_LIST += INPUT;\
+ } else {\
+ var/__BIN_LEFT = 1;\
+ var/__BIN_RIGHT = __BIN_CTTL;\
+ var/__BIN_MID = (__BIN_LEFT + __BIN_RIGHT) >> 1;\
+ var ##TYPECONT/__BIN_ITEM;\
+ while(__BIN_LEFT < __BIN_RIGHT) {\
+ __BIN_ITEM = COMPTYPE;\
+ if(__BIN_ITEM.##COMPARISON <= COMPARE.##COMPARISON) {\
+ __BIN_LEFT = __BIN_MID + 1;\
+ } else {\
+ __BIN_RIGHT = __BIN_MID;\
+ };\
+ __BIN_MID = (__BIN_LEFT + __BIN_RIGHT) >> 1;\
+ };\
+ __BIN_ITEM = COMPTYPE;\
+ __BIN_MID = __BIN_ITEM.##COMPARISON > COMPARE.##COMPARISON ? __BIN_MID : __BIN_MID + 1;\
+ __BIN_LIST.Insert(__BIN_MID, INPUT);\
+ };\
+ } while(FALSE)
+
//Returns a list in plain english as a string
/proc/english_list(var/list/input, nothing_text = "nothing", and_text = " and ", comma_text = ", ", final_comma_text = "" )
diff --git a/code/__HELPERS/text.dm b/code/__HELPERS/text.dm
index 7d921e2b32322..4eef3fa9dc28f 100644
--- a/code/__HELPERS/text.dm
+++ b/code/__HELPERS/text.dm
@@ -34,6 +34,8 @@
//Removes a few problematic characters
/proc/sanitize_simple(var/t,var/list/repl_chars = list("\n"="#","\t"="#"))
+ if(config && config.twitch_censor)
+ repl_chars += config.twich_censor_list
for(var/char in repl_chars)
t = replacetext(t, char, repl_chars[char])
return t
@@ -505,6 +507,9 @@
text = replacetext(text, "\[row\]", "")
text = replacetext(text, "\[cell\]", "")
text = replacetext(text, "\[logo\]", "")
+ text = replacetext(text, "\[time\]", "")
+ text = replacetext(text, "\[date\]", "")
+ text = replacetext(text, "\[station\]", "")
if(istype(P, /obj/item/toy/crayon))
text = "[text]"
else // They are using "not a crayon" - formatting is OK and such
@@ -522,6 +527,8 @@
text = replacetext(text, "\[cell\]", "")
text = replacetext(text, "\[logo\]", "​ ")
text = replacetext(text, "\[time\]", "[station_time_timestamp()]") // TO DO
+ text = replacetext(text, "\[date\]", "[GLOB.current_date_string]")
+ text = replacetext(text, "\[station\]", "[station_name()]")
if(!no_font)
if(P)
text = "[text]"
diff --git a/code/_globalvars/sensitive.dm b/code/_globalvars/sensitive.dm
index 4c04b2d480b52..f2b268a8d646c 100644
--- a/code/_globalvars/sensitive.dm
+++ b/code/_globalvars/sensitive.dm
@@ -6,6 +6,7 @@
GLOBAL_REAL_VAR(sqladdress) = "localhost"
GLOBAL_REAL_VAR(sqlport) = "3306"
GLOBAL_REAL_VAR(sqlfdbkdb) = "test"
+GLOBAL_REAL_VAR(sqlfdbkdbutil) = "test"
GLOBAL_REAL_VAR(sqlfdbklogin) = "root"
GLOBAL_REAL_VAR(sqlfdbkpass) = ""
GLOBAL_REAL_VAR(sqlfdbktableprefix) = "erro_"
diff --git a/code/_onclick/other_mobs.dm b/code/_onclick/other_mobs.dm
index 4497f170a2d87..89eed62a8309e 100644
--- a/code/_onclick/other_mobs.dm
+++ b/code/_onclick/other_mobs.dm
@@ -12,10 +12,6 @@
if(proximity && istype(G) && G.Touch(A, 1))
return
- if(HULK in mutations)
- if(proximity) //no telekinetic hulk attack
- if(A.attack_hulk(src))
- return
if(buckled && isstructure(buckled))
var/obj/structure/S = buckled
diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm
index b03f033013228..78c45ff4d315d 100644
--- a/code/controllers/configuration.dm
+++ b/code/controllers/configuration.dm
@@ -8,6 +8,9 @@
var/nudge_script_path = "nudge.py" // where the nudge.py script is located
+ var/twitch_censor = FALSE
+ var/list/twich_censor_list = list()
+
var/log_ooc = 0 // log OOC channel
var/log_access = 0 // log login/logout
var/log_say = 0 // log client say
@@ -23,7 +26,9 @@
var/log_pda = 0 // log pda messages
var/log_world_output = 0 // log world.log << messages
var/log_runtimes = 0 // logs world.log to a file
+ var/disable_root_log = 0 // disable writing world.log to log panel / root logger of DreamDaemon
var/log_hrefs = 0 // logs all links clicked in-game. Could be used for debugging and tracking down exploits
+ var/log_timers_on_bucket_reset = 0 // logs all timers in buckets on automatic bucket reset (Useful for timer debugging)
var/sql_enabled = 0 // for sql switching
var/allow_admin_ooccolor = 0 // Allows admins with relevant permissions to have their own ooc colour
var/pregame_timestart = 240 // Time it takes for the server to start the game
@@ -61,6 +66,8 @@
var/guest_jobban = 1
var/panic_bunker_threshold = 150 // above this player count threshold, never-before-seen players are blocked from connecting
var/usewhitelist = 0
+ var/usewhitelist_database = 0
+ var/usewhitelist_nojobbanned = FALSE
var/mods_are_mentors = 0
var/load_jobs_from_txt = 0
var/automute_on = 0 //enables automuting/spam prevention
@@ -286,6 +293,8 @@
var/full_day_logs = FALSE
+ var/allow_head_of_departaments_assign_civilian = FALSE
+
/datum/configuration/New()
for(var/T in subtypesof(/datum/game_mode))
var/datum/game_mode/M = T
@@ -446,9 +455,15 @@
if("log_hrefs")
config.log_hrefs = 1
+ if("disable_root_log")
+ config.disable_root_log = 1
+
if("log_runtime")
config.log_runtimes = 1
+ if("log_timers_on_bucket_reset")
+ config.log_timers_on_bucket_reset = 1
+
if("mentors")
config.mods_are_mentors = 1
@@ -551,6 +566,12 @@
if("usewhitelist")
config.usewhitelist = 1
+ if("usewhitelist_database")
+ config.usewhitelist_database = 1
+
+ if("usewhitelist_nojobbanned")
+ config.usewhitelist_nojobbanned = TRUE
+
if("feature_object_spell_system")
config.feature_object_spell_system = 1
@@ -817,9 +838,14 @@
if ("full_day_logs")
config.full_day_logs = TRUE
+ if ("allow_head_of_departaments_assign_civilian")
+ config.allow_head_of_departaments_assign_civilian = TRUE
+
else
log_config("Unknown setting in configuration: '[name]'")
+ else if(type == "twitch_censor")
+ twich_censor_list[name] = value
else if(type == "game_options")
value = text2num(value)
@@ -922,6 +948,8 @@
sqlport = value
if("feedback_database")
sqlfdbkdb = value
+ if("utility_database")
+ sqlfdbkdbutil = value
if("feedback_login")
sqlfdbklogin = value
if("feedback_password")
diff --git a/code/controllers/subsystem/jobs.dm b/code/controllers/subsystem/jobs.dm
index 69bd3e44d804c..19d412db95198 100644
--- a/code/controllers/subsystem/jobs.dm
+++ b/code/controllers/subsystem/jobs.dm
@@ -441,23 +441,23 @@ SUBSYSTEM_DEF(jobs)
to_chat(H, "Вы [alt_title ? alt_title : rank].")
to_chat(H, "На этой должности вы отвечаете непосредственно перед [replacetext(job.supervisors,"the ","")]. Особые обстоятельства могут это изменить.")
- to_chat(H, "Для получения дополнительной информации о работе на станции, см. Стандартные Рабочие Процедуры (СРП)")
+ to_chat(H, "Для получения дополнительной информации о работе на станции, см. Стандартные Рабочие Процедуры (СРП)")
if(job.is_service)
- to_chat(H, "Будучи работником отдела Обслуживания, убедитесь что прочли СРП своего отдела")
+ to_chat(H, "Будучи работником отдела Обслуживания, убедитесь что прочли СРП своего отдела")
if(job.is_supply)
- to_chat(H, "Будучи работником отдела Снабжения, убедитесь что прочли СРП своего отдела")
+ to_chat(H, "Будучи работником отдела Снабжения, убедитесь что прочли СРП своего отдела")
if(job.is_command)
- to_chat(H, "Будучи важным членом Командования, убедитесь что прочли СРП своего отдела")
+ to_chat(H, "Будучи важным членом Командования, убедитесь что прочли СРП своего отдела")
if(job.is_legal)
- to_chat(H, "Ваша должность требует полного знания Космического Закона и Правовых Стандартных Рабочих Процедур")
+ to_chat(H, "Ваша должность требует полного знания Космического Закона и Правовых Стандартных Рабочих Процедур")
if(job.is_engineering)
- to_chat(H, "Будучи работником Инженерного отдела, убедитесь что прочли СРП своего отдела")
+ to_chat(H, "Будучи работником Инженерного отдела, убедитесь что прочли СРП своего отдела")
if(job.is_medical)
- to_chat(H, "Будучи работником Медицинского отдела, убедитесь что прочли СРП своего отдела")
+ to_chat(H, "Будучи работником Медицинского отдела, убедитесь что прочли СРП своего отдела")
if(job.is_science)
- to_chat(H, "Будучи работником Научного отдела, убедитесь что прочли СРП своего отдела")
+ to_chat(H, "Будучи работником Научного отдела, убедитесь что прочли СРП своего отдела")
if(job.is_security)
- to_chat(H, "Будучи работником Службы Безопасности, вам необходимо знание Космического Закона, Правовых СРП, а также СРП своего отдела")
+ to_chat(H, "Будучи работником Службы Безопасности, вам необходимо знание Космического Закона, Правовых СРП, а также СРП своего отдела")
if(job.req_admin_notify)
to_chat(H, "Вы играете на важной для игрового процесса должности. Если вам необходимо покинуть игру, пожалуйста, используйте крио и проинформируйте командование. Если вы не можете это сделать, пожалуйста, проинформируйте админов через админхэлп.")
diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm
index 533e3c6c0245e..dc05f1bbd3b58 100644
--- a/code/controllers/subsystem/mapping.dm
+++ b/code/controllers/subsystem/mapping.dm
@@ -71,7 +71,7 @@ SUBSYSTEM_DEF(mapping)
// World name
if(config && config.server_name)
- world.name = "[config.server_name]: [station_name()]"
+ world.name = "[config.server_name] — [station_name()]"
else
world.name = station_name()
diff --git a/code/controllers/subsystem/runechat.dm b/code/controllers/subsystem/runechat.dm
index 350523724ac23..da53432d55d1c 100644
--- a/code/controllers/subsystem/runechat.dm
+++ b/code/controllers/subsystem/runechat.dm
@@ -1,5 +1,5 @@
/// Controls how many buckets should be kept, each representing a tick. (30 seconds worth)
-#define BUCKET_LEN (world.fps * 1 * 30)
+#define BUCKET_LEN (world.fps * 1 * 60)
/// Helper for getting the correct bucket for a given chatmessage
#define BUCKET_POS(scheduled_destruction) (((round((scheduled_destruction - SSrunechat.head_offset) / world.tick_lag) + 1) % BUCKET_LEN) || BUCKET_LEN)
/// Gets the maximum time at which messages will be handled in buckets, used for deferring to secondary queue
@@ -63,16 +63,11 @@ SUBSYSTEM_DEF(runechat)
practical_offset = 1
resumed = FALSE
- if((length(bucket_list) != BUCKET_LEN) || (world.tick_lag != bucket_resolution))
- bucket_list.len = 0
- bucket_list.len = BUCKET_LEN
- practical_offset = 1
- bucket_count = 0
- head_offset = world.time
- bucket_resolution = world.tick_lag
+ // Check for when we have to reset buckets, typically from auto-reset
+ if ((length(bucket_list) != BUCKET_LEN) || (world.tick_lag != bucket_resolution))
+ reset_buckets()
bucket_list = src.bucket_list
resumed = FALSE
-
// Store a reference to the 'working' chatmessage so that we can resume if the MC
// has us stop mid-way through processing
var/static/datum/chatmessage/cm
@@ -135,6 +130,11 @@ SUBSYSTEM_DEF(runechat)
bucket_list |= SSrunechat.bucket_list
second_queue |= SSrunechat.second_queue
+/datum/controller/subsystem/runechat/proc/reset_buckets()
+ bucket_list.len = BUCKET_LEN
+ head_offset = world.time
+ bucket_resolution = world.tick_lag
+
/**
* Enters the runechat subsystem with this chatmessage, inserting it into the end-of-life queue
*
@@ -174,7 +174,7 @@ SUBSYSTEM_DEF(runechat)
// Handle insertion into the secondary queue if the required time is outside our tracked amounts
if (scheduled_destruction >= BUCKET_LIMIT)
- BINARY_INSERT(src, SSrunechat.second_queue, datum/chatmessage, scheduled_destruction)
+ BINARY_INSERT_TG(src, SSrunechat.second_queue, /datum/chatmessage, src, scheduled_destruction, COMPARE_KEY)
return
// Get bucket position and a local reference to the datum var, it's faster to access this way
diff --git a/code/controllers/subsystem/timer.dm b/code/controllers/subsystem/timer.dm
index 53d77e8fad605..6f68e769a3344 100644
--- a/code/controllers/subsystem/timer.dm
+++ b/code/controllers/subsystem/timer.dm
@@ -1,33 +1,56 @@
-#define BUCKET_LEN (world.fps*1*60) //how many ticks should we keep in the bucket. (1 minutes worth)
+/// Controls how many buckets should be kept, each representing a tick. (1 minutes worth)
+#define BUCKET_LEN (world.fps*1*60)
+/// Helper for getting the correct bucket for a given timer
#define BUCKET_POS(timer) (((round((timer.timeToRun - SStimer.head_offset) / world.tick_lag)+1) % BUCKET_LEN)||BUCKET_LEN)
+/// Gets the maximum time at which timers will be invoked from buckets, used for deferring to secondary queue
#define TIMER_MAX (world.time + TICKS2DS(min(BUCKET_LEN-(SStimer.practical_offset-DS2TICKS(world.time - SStimer.head_offset))-1, BUCKET_LEN-1)))
-#define TIMER_ID_MAX (2**24) //max float with integer precision
-
+/// Max float with integer precision
+#define TIMER_ID_MAX (2**24)
+
+/**
+ * # Timer Subsystem
+ *
+ * Handles creation, callbacks, and destruction of timed events.
+ *
+ * It is important to understand the buckets used in the timer subsystem are just a series of circular doubly-linked
+ * lists. The object at a given index in bucket_list is a /datum/timedevent, the head of a circular list, which has prev
+ * and next references for the respective elements in that bucket's circular list.
+ */
SUBSYSTEM_DEF(timer)
name = "Timer"
- wait = 1 //SS_TICKER subsystem, so wait is in ticks
+ wait = 1 // SS_TICKER subsystem, so wait is in ticks
init_order = INIT_ORDER_TIMER
flags = SS_TICKER|SS_NO_INIT
offline_implications = "The game will no longer process timers. Immediate server restart recommended."
- var/list/second_queue = list() //awe, yes, you've had first queue, but what about second queue?
+ /// Queue used for storing timers that do not fit into the current buckets
+ var/list/datum/timedevent/second_queue = list()
+ /// A hashlist dictionary used for storing unique timers
var/list/hashes = list()
-
- var/head_offset = 0 //world.time of the first entry in the the bucket.
- var/practical_offset = 1 //index of the first non-empty item in the bucket.
- var/bucket_resolution = 0 //world.tick_lag the bucket was designed for
- var/bucket_count = 0 //how many timers are in the buckets
-
- var/list/bucket_list = list() //list of buckets, each bucket holds every timer that has to run that byond tick.
-
- var/list/timer_id_dict = list() //list of all active timers assoicated to their timer id (for easy lookup)
-
- var/list/clienttime_timers = list() //special snowflake timers that run on fancy pansy "client time"
-
+ /// world.time of the first entry in the bucket list, effectively the 'start time' of the current buckets
+ var/head_offset = 0
+ /// Index of the wrap around pivot for buckets. buckets before this are later running buckets wrapped around from the end of the bucket list.
+ var/practical_offset = 1
+ /// world.tick_lag the bucket was designed for
+ var/bucket_resolution = 0
+ /// How many timers are in the buckets
+ var/bucket_count = 0
+ /// List of buckets, each bucket holds every timer that has to run that byond tick
+ var/list/bucket_list = list()
+ /// List of all active timers associated to their timer ID (for easy lookup)
+ var/list/timer_id_dict = list()
+ /// Special timers that run in real-time, not BYOND time; these are more expensive to run and maintain
+ var/list/clienttime_timers = list()
+ /// Contains the last time that a timer's callback was invoked, or the last tick the SS fired if no timers are being processed
var/last_invoke_tick = 0
+ /// Keeps track of the next index to work on for client timers
+ var/next_clienttime_timer_index = 0
+ /// Contains the last time that a warning was issued for not invoking callbacks
var/static/last_invoke_warning = 0
+ /// Boolean operator controlling if the timer SS will automatically reset buckets if it fails to invoke callbacks for an extended period of time
var/static/bucket_auto_reset = TRUE
+ var/bucket_reset_count = 0
/datum/controller/subsystem/timer/PreInit()
bucket_list.len = BUCKET_LEN
@@ -35,59 +58,70 @@ SUBSYSTEM_DEF(timer)
bucket_resolution = world.tick_lag
/datum/controller/subsystem/timer/stat_entry(msg)
- ..("B:[bucket_count] P:[length(second_queue)] H:[length(hashes)] C:[length(clienttime_timers)] S:[length(timer_id_dict)]")
+ ..("B:[bucket_count] P:[length(second_queue)] H:[length(hashes)] C:[length(clienttime_timers)] S:[length(timer_id_dict)] RST:[bucket_reset_count]")
+
+/datum/controller/subsystem/timer/proc/dump_timer_buckets(full = TRUE)
+ var/list/to_log = list("Timer bucket reset. world.time: [world.time], head_offset: [head_offset], practical_offset: [practical_offset]")
+ if (full)
+ for (var/i in 1 to length(bucket_list))
+ var/datum/timedevent/bucket_head = bucket_list[i]
+ if (!bucket_head)
+ continue
+
+ to_log += "Active timers at index [i]:"
+ var/datum/timedevent/bucket_node = bucket_head
+ var/anti_loop_check = 1
+ do
+ to_log += get_timer_debug_string(bucket_node)
+ bucket_node = bucket_node.next
+ anti_loop_check--
+ while(bucket_node && bucket_node != bucket_head && anti_loop_check)
+
+ to_log += "Active timers in the second_queue queue:"
+ for(var/I in second_queue)
+ to_log += get_timer_debug_string(I)
+
+ // Dump all the logged data to the world log
+ log_world(to_log.Join("\n"))
/datum/controller/subsystem/timer/fire(resumed = FALSE)
+ // Store local references to datum vars as it is faster to access them
var/lit = last_invoke_tick
- var/last_check = world.time - TICKS2DS(BUCKET_LEN*1.5)
var/list/bucket_list = src.bucket_list
+ var/last_check = world.time - TICKS2DS(BUCKET_LEN * 1.5)
+ // If there are no timers being tracked, then consider now to be the last invoked time
if(!bucket_count)
last_invoke_tick = world.time
+ // Check that we have invoked a callback in the last 1.5 minutes of BYOND time,
+ // and throw a warning and reset buckets if this is true
if(lit && lit < last_check && head_offset < last_check && last_invoke_warning < last_check)
last_invoke_warning = world.time
- var/msg = "No regular timers processed in the last [BUCKET_LEN*1.5] ticks[bucket_auto_reset ? ", resetting buckets" : ""]!"
+ var/msg = "No regular timers processed in the last [BUCKET_LEN * 1.5] ticks[bucket_auto_reset ? ", resetting buckets" : ""]!"
message_admins(msg)
WARNING(msg)
if(bucket_auto_reset)
bucket_resolution = 0
+ dump_timer_buckets(config.log_timers_on_bucket_reset)
- log_world("Timer bucket reset. world.time: [world.time], head_offset: [head_offset], practical_offset: [practical_offset]")
- for(var/i in 1 to length(bucket_list))
- var/datum/timedevent/bucket_head = bucket_list[i]
- if(!bucket_head)
- continue
-
- log_world("Active timers at index [i]:")
-
- var/datum/timedevent/bucket_node = bucket_head
- var/anti_loop_check = 1000
- do
- log_world(get_timer_debug_string(bucket_node))
- bucket_node = bucket_node.next
- anti_loop_check--
- while(bucket_node && bucket_node != bucket_head && anti_loop_check)
- log_world("Active timers in the second_queue queue:")
- for(var/I in second_queue)
- log_world(get_timer_debug_string(I))
-
- var/next_clienttime_timer_index = 0
- var/len = length(clienttime_timers)
-
- for(next_clienttime_timer_index in 1 to len)
- if(MC_TICK_CHECK)
+ // Process client-time timers
+ if (next_clienttime_timer_index)
+ clienttime_timers.Cut(1, next_clienttime_timer_index+1)
+ next_clienttime_timer_index = 0
+ for (next_clienttime_timer_index in 1 to length(clienttime_timers))
+ if (MC_TICK_CHECK)
next_clienttime_timer_index--
break
var/datum/timedevent/ctime_timer = clienttime_timers[next_clienttime_timer_index]
- if(ctime_timer.timeToRun > REALTIMEOFDAY)
+ if (ctime_timer.timeToRun > REALTIMEOFDAY)
next_clienttime_timer_index--
break
var/datum/callback/callBack = ctime_timer.callBack
- if(!callBack)
- clienttime_timers.Cut(next_clienttime_timer_index,next_clienttime_timer_index+1)
- CRASH("Invalid timer: [get_timer_debug_string(ctime_timer)] world.time: [world.time], head_offset: [head_offset], practical_offset: [practical_offset], REALTIMEOFDAY: [REALTIMEOFDAY]")
+ if (!callBack)
+ CRASH("Invalid timer: [get_timer_debug_string(ctime_timer)] world.time: [world.time], \
+ head_offset: [head_offset], practical_offset: [practical_offset], REALTIMEOFDAY: [REALTIMEOFDAY]")
ctime_timer.spent = REALTIMEOFDAY
callBack.InvokeAsync()
@@ -95,135 +129,93 @@ SUBSYSTEM_DEF(timer)
if(ctime_timer.flags & TIMER_LOOP)
ctime_timer.spent = 0
ctime_timer.timeToRun = REALTIMEOFDAY + ctime_timer.wait
- BINARY_INSERT(ctime_timer, clienttime_timers, datum/timedevent, timeToRun)
+ BINARY_INSERT_TG(ctime_timer, clienttime_timers, /datum/timedevent, ctime_timer, timeToRun, COMPARE_KEY)
else
qdel(ctime_timer)
-
- if(next_clienttime_timer_index)
+ // Remove invoked client-time timers
+ if (next_clienttime_timer_index)
clienttime_timers.Cut(1, next_clienttime_timer_index+1)
+ next_clienttime_timer_index = 0
- if(MC_TICK_CHECK)
- return
-
- var/static/list/spent = list()
- var/static/datum/timedevent/timer
- if(practical_offset > BUCKET_LEN)
+ // Check for when we need to loop the buckets, this occurs when
+ // the head_offset is approaching BUCKET_LEN ticks in the past
+ if (practical_offset > BUCKET_LEN)
head_offset += TICKS2DS(BUCKET_LEN)
practical_offset = 1
resumed = FALSE
- if((length(bucket_list) != BUCKET_LEN) || (world.tick_lag != bucket_resolution))
+ // Check for when we have to reset buckets, typically from auto-reset
+ if ((length(bucket_list) != BUCKET_LEN) || (world.tick_lag != bucket_resolution))
reset_buckets()
bucket_list = src.bucket_list
resumed = FALSE
- if(!resumed)
- timer = null
-
- while(practical_offset <= BUCKET_LEN && head_offset + ((practical_offset-1)*world.tick_lag) <= world.time)
- var/datum/timedevent/head = bucket_list[practical_offset]
- if(!timer || !head || timer == head)
- head = bucket_list[practical_offset]
- timer = head
- while(timer)
+ // Iterate through each bucket starting from the practical offset
+ while (practical_offset <= BUCKET_LEN && head_offset + ((practical_offset - 1) * world.tick_lag) <= world.time)
+ var/datum/timedevent/timer
+ while ((timer = bucket_list[practical_offset]))
var/datum/callback/callBack = timer.callBack
- if(!callBack)
- bucket_resolution = null //force bucket recreation
- CRASH("Invalid timer: [get_timer_debug_string(timer)] world.time: [world.time], head_offset: [head_offset], practical_offset: [practical_offset]")
+ if (!callBack)
+ stack_trace("Invalid timer: [get_timer_debug_string(timer)] world.time: [world.time], \
+ head_offset: [head_offset], practical_offset: [practical_offset], bucket_joined: [timer.bucket_joined]")
+ if (!timer.spent)
+ bucket_resolution = null // force bucket recreation
+ return
+
+ timer.bucketEject() //pop the timer off of the bucket list.
- if(!timer.spent)
- spent += timer
+ // Invoke callback if possible
+ if (!timer.spent)
timer.spent = world.time
callBack.InvokeAsync()
last_invoke_tick = world.time
- if(MC_TICK_CHECK)
- return
-
- timer = timer.next
- if(timer == head)
- break
-
-
- bucket_list[practical_offset++] = null
+ if (timer.flags & TIMER_LOOP) // Prepare looping timers to re-enter the queue
+ timer.spent = 0
+ timer.timeToRun = world.time + timer.wait
+ timer.bucketJoin()
+ else
+ qdel(timer)
- //we freed up a bucket, lets see if anything in second_queue needs to be shifted to that bucket.
- var/i = 0
- var/L = length(second_queue)
- for(i in 1 to L)
- timer = second_queue[i]
- if(timer.timeToRun >= TIMER_MAX)
- i--
+ if (MC_TICK_CHECK)
break
- if(timer.timeToRun < head_offset)
- bucket_resolution = null //force bucket recreation
- stack_trace("[i] Invalid timer state: Timer in long run queue with a time to run less then head_offset. [get_timer_debug_string(timer)] world.time: [world.time], head_offset: [head_offset], practical_offset: [practical_offset]")
-
- if(timer.callBack && !timer.spent)
- timer.callBack.InvokeAsync()
- spent += timer
- bucket_count++
- else if(!QDELETED(timer))
- qdel(timer)
- continue
-
- if(timer.timeToRun < head_offset + TICKS2DS(practical_offset-1))
- bucket_resolution = null //force bucket recreation
- stack_trace("[i] Invalid timer state: Timer in long run queue that would require a backtrack to transfer to short run queue. [get_timer_debug_string(timer)] world.time: [world.time], head_offset: [head_offset], practical_offset: [practical_offset]")
- if(timer.callBack && !timer.spent)
- timer.callBack.InvokeAsync()
- spent += timer
- bucket_count++
- else if(!QDELETED(timer))
- qdel(timer)
- continue
-
- bucket_count++
- var/bucket_pos = max(1, BUCKET_POS(timer))
-
- var/datum/timedevent/bucket_head = bucket_list[bucket_pos]
- if(!bucket_head)
- bucket_list[bucket_pos] = timer
- timer.next = null
- timer.prev = null
- continue
-
- if(!bucket_head.prev)
- bucket_head.prev = bucket_head
- timer.next = bucket_head
- timer.prev = bucket_head.prev
- timer.next.prev = timer
- timer.prev.next = timer
- if(i)
- second_queue.Cut(1, i+1)
-
- timer = null
-
- bucket_count -= length(spent)
-
- for(var/i in spent)
- var/datum/timedevent/qtimer = i
- if(QDELETED(qtimer))
- bucket_count++
- continue
- if(!(qtimer.flags & TIMER_LOOP))
- qdel(qtimer)
- else
- bucket_count++
- qtimer.spent = 0
- qtimer.bucketEject()
- if(qtimer.flags & TIMER_CLIENT_TIME)
- qtimer.timeToRun = REALTIMEOFDAY + qtimer.wait
- else
- qtimer.timeToRun = world.time + qtimer.wait
- qtimer.bucketJoin()
-
- spent.len = 0
+ if (!bucket_list[practical_offset])
+ // Empty the bucket, check if anything in the secondary queue should be shifted to this bucket
+ bucket_list[practical_offset] = null // Just in case
+ practical_offset++
+ var/i = 0
+ for (i in 1 to length(second_queue))
+ timer = second_queue[i]
+ if (timer.timeToRun >= TIMER_MAX)
+ i--
+ break
+
+ // Check for timers that are scheduled to run in the past
+ if (timer.timeToRun < head_offset)
+ bucket_resolution = null // force bucket recreation
+ stack_trace("[i] Invalid timer state: Timer in long run queue with a time to run less then head_offset. \
+ [get_timer_debug_string(timer)] world.time: [world.time], head_offset: [head_offset], practical_offset: [practical_offset]")
+ break
+
+ // Check for timers that are not capable of being scheduled to run without rebuilding buckets
+ if (timer.timeToRun < head_offset + TICKS2DS(practical_offset - 1))
+ bucket_resolution = null // force bucket recreation
+ stack_trace("[i] Invalid timer state: Timer in long run queue that would require a backtrack to transfer to \
+ short run queue. [get_timer_debug_string(timer)] world.time: [world.time], head_offset: [head_offset], practical_offset: [practical_offset]")
+ break
+
+ timer.bucketJoin()
+ if (i)
+ second_queue.Cut(1, i+1)
+ if (MC_TICK_CHECK)
+ break
-//formated this way to be runtime resistant
+/**
+ * Generates a string with details about the timed event for debugging purposes
+ */
/datum/controller/subsystem/timer/proc/get_timer_debug_string(datum/timedevent/TE)
. = "Timer: [TE]"
. += "Prev: [TE.prev ? TE.prev : "NULL"], Next: [TE.next ? TE.next : "NULL"]"
@@ -234,12 +226,19 @@ SUBSYSTEM_DEF(timer)
if(!TE.callBack)
. += ", NO CALLBACK"
+/**
+ * Destroys the existing buckets and creates new buckets from the existing timed events
+ */
/datum/controller/subsystem/timer/proc/reset_buckets()
- var/list/bucket_list = src.bucket_list
+ WARNING("Timer buckets has been reset, this may cause timer to lag")
+ bucket_reset_count++
+
+ var/list/bucket_list = src.bucket_list // Store local reference to datum var, this is faster
var/list/alltimers = list()
- //collect the timers currently in the bucket
- for(var/bucket_head in bucket_list)
- if(!bucket_head)
+
+ // Get all timers currently in the buckets
+ for (var/bucket_head in bucket_list)
+ if (!bucket_head) // if bucket is empty for this tick
continue
var/datum/timedevent/bucket_node = bucket_head
do
@@ -247,60 +246,78 @@ SUBSYSTEM_DEF(timer)
bucket_node = bucket_node.next
while(bucket_node && bucket_node != bucket_head)
+ // Empty the list by zeroing and re-assigning the length
bucket_list.len = 0
bucket_list.len = BUCKET_LEN
+ // Reset values for the subsystem to their initial values
practical_offset = 1
bucket_count = 0
head_offset = world.time
bucket_resolution = world.tick_lag
+ // Add all timed events from the secondary queue as well
alltimers += second_queue
- if(!length(alltimers))
+
+ // If there are no timers being tracked by the subsystem,
+ // there is no need to do any further rebuilding
+ if (!length(alltimers))
return
+ // Sort all timers by time to run
sortTim(alltimers, .proc/cmp_timer)
+ // Get the earliest timer, and if the TTR is earlier than the current world.time,
+ // then set the head offset appropriately to be the earliest time tracked by the
+ // current set of buckets
var/datum/timedevent/head = alltimers[1]
-
- if(head.timeToRun < head_offset)
+ if (head.timeToRun < head_offset)
head_offset = head.timeToRun
+ // Iterate through each timed event and insert it into an appropriate bucket,
+ // up unto the point that we can no longer insert into buckets as the TTR
+ // is outside the range we are tracking, then insert the remainder into the
+ // secondary queue
var/new_bucket_count
var/i = 1
- for(i in 1 to length(alltimers))
+ for (i in 1 to length(alltimers))
var/datum/timedevent/timer = alltimers[i]
- if(!timer)
+ if (!timer)
continue
- var/bucket_pos = BUCKET_POS(timer)
- if(timer.timeToRun >= TIMER_MAX)
+ // Check that the TTR is within the range covered by buckets, when exceeded we've finished
+ if (timer.timeToRun >= TIMER_MAX)
i--
break
-
- if(!timer.callBack || timer.spent)
- WARNING("Invalid timer: [get_timer_debug_string(timer)] world.time: [world.time], head_offset: [head_offset], practical_offset: [practical_offset]")
- if(timer.callBack)
+ // Check that timer has a valid callback and hasn't been invoked
+ if (!timer.callBack || timer.spent)
+ WARNING("Invalid timer: [get_timer_debug_string(timer)] world.time: [world.time], \
+ head_offset: [head_offset], practical_offset: [practical_offset]")
+ if (timer.callBack)
qdel(timer)
continue
+ // Insert the timer into the bucket, and perform necessary circular doubly-linked list operations
new_bucket_count++
+ var/bucket_pos = BUCKET_POS(timer)
+ timer.bucket_pos = bucket_pos
+
var/datum/timedevent/bucket_head = bucket_list[bucket_pos]
- if(!bucket_head)
+ if (!bucket_head)
bucket_list[bucket_pos] = timer
timer.next = null
timer.prev = null
continue
- if(!bucket_head.prev)
- bucket_head.prev = bucket_head
+ bucket_head.prev = timer
timer.next = bucket_head
- timer.prev = bucket_head.prev
- timer.next.prev = timer
- timer.prev.next = timer
- if(i)
- alltimers.Cut(1, i+1)
+ timer.prev = null
+ bucket_list[bucket_pos] = timer
+
+ // Cut the timers that are tracked by the buckets from the secondary queue
+ if (i)
+ alltimers.Cut(1, i + 1)
second_queue = alltimers
bucket_count = new_bucket_count
@@ -311,186 +328,255 @@ SUBSYSTEM_DEF(timer)
timer_id_dict |= SStimer.timer_id_dict
bucket_list |= SStimer.bucket_list
+/**
+ * # Timed Event
+ *
+ * This is the actual timer, it contains the callback and necessary data to maintain
+ * the timer.
+ *
+ * See the documentation for the timer subsystem for an explanation of the buckets referenced
+ * below in next and prev
+ */
/datum/timedevent
+ /// ID used for timers when the TIMER_STOPPABLE flag is present
var/id
+ /// The callback to invoke after the timer completes
var/datum/callback/callBack
+ /// The time at which the callback should be invoked at
var/timeToRun
+ /// The length of the timer
var/wait
+ /// Unique hash generated when TIMER_UNIQUE flag is present
var/hash
+ /// The source of the timedevent, whatever called addtimer
+ var/source
+ /// Flags associated with the timer, see _DEFINES/subsystems.dm
var/list/flags
- var/spent = 0 //time we ran the timer.
- var/name //for easy debugging.
- //cicular doublely linked list
+ /// Time at which the timer was invoked or destroyed
+ var/spent = 0
+ /// An informative name generated for the timer as its representation in strings, useful for debugging
+ var/name
+ /// Next timed event in the bucket
var/datum/timedevent/next
+ /// Previous timed event in the bucket
var/datum/timedevent/prev
+ var/bucket_joined = FALSE
+ var/bucket_pos = -1
-/datum/timedevent/New(datum/callback/callBack, wait, flags, hash)
+/datum/timedevent/New(datum/callback/callBack, wait, flags, hash, source)
var/static/nextid = 1
id = TIMER_ID_NULL
src.callBack = callBack
src.wait = wait
src.flags = flags
src.hash = hash
+ src.source = source
- if(flags & TIMER_CLIENT_TIME)
- timeToRun = REALTIMEOFDAY + wait
- else
- timeToRun = world.time + wait
+ // Determine time at which the timer's callback should be invoked
+ timeToRun = (flags & TIMER_CLIENT_TIME ? REALTIMEOFDAY : world.time) + wait
- if(flags & TIMER_UNIQUE)
+ // Include the timer in the hash table if the timer is unique
+ if (flags & TIMER_UNIQUE)
SStimer.hashes[hash] = src
- if(flags & TIMER_STOPPABLE)
+ // Generate ID for the timer if the timer is stoppable, include in the timer id dictionary
+ if (flags & TIMER_STOPPABLE)
id = num2text(nextid, 100)
- if(nextid >= SHORT_REAL_LIMIT)
- nextid += min(1, 2**round(nextid/SHORT_REAL_LIMIT))
+ if (nextid >= SHORT_REAL_LIMIT)
+ nextid += min(1, 2 ** round(nextid / SHORT_REAL_LIMIT))
else
nextid++
SStimer.timer_id_dict[id] = src
- name = "Timer: [id] (\ref[src]), TTR: [timeToRun], Flags: [jointext(bitfield2list(flags, list("TIMER_UNIQUE", "TIMER_OVERRIDE", "TIMER_CLIENT_TIME", "TIMER_STOPPABLE", "TIMER_NO_HASH_WAIT", "TIMER_LOOP")), ", ")], callBack: \ref[callBack], callBack.object: [callBack.object]\ref[callBack.object]([getcallingtype()]), callBack.delegate:[callBack.delegate]([callBack.arguments ? callBack.arguments.Join(", ") : ""])"
-
- if((timeToRun < world.time || timeToRun < SStimer.head_offset) && !(flags & TIMER_CLIENT_TIME))
+ if ((timeToRun < world.time || timeToRun < SStimer.head_offset) && !(flags & TIMER_CLIENT_TIME))
CRASH("Invalid timer state: Timer created that would require a backtrack to run (addtimer would never let this happen): [SStimer.get_timer_debug_string(src)]")
- if(callBack.object != GLOBAL_PROC && !QDESTROYING(callBack.object))
+ if (callBack.object != GLOBAL_PROC && !QDESTROYING(callBack.object))
LAZYADD(callBack.object.active_timers, src)
bucketJoin()
/datum/timedevent/Destroy()
..()
- if(flags & TIMER_UNIQUE && hash)
+ if (flags & TIMER_UNIQUE && hash)
SStimer.hashes -= hash
- if(callBack && callBack.object && callBack.object != GLOBAL_PROC && callBack.object.active_timers)
+ if (callBack && callBack.object && callBack.object != GLOBAL_PROC && callBack.object.active_timers)
callBack.object.active_timers -= src
UNSETEMPTY(callBack.object.active_timers)
callBack = null
- if(flags & TIMER_STOPPABLE)
+ if (flags & TIMER_STOPPABLE)
SStimer.timer_id_dict -= id
- if(flags & TIMER_CLIENT_TIME)
- if(!spent)
+ if (flags & TIMER_CLIENT_TIME)
+ if (!spent)
spent = world.time
SStimer.clienttime_timers -= src
return QDEL_HINT_IWILLGC
- if(!spent)
+ if (!spent)
spent = world.time
bucketEject()
else
- if(prev && prev.next == src)
+ if (prev && prev.next == src)
prev.next = next
- if(next && next.prev == src)
+ if (next && next.prev == src)
next.prev = prev
next = null
prev = null
return QDEL_HINT_IWILLGC
+/**
+ * Removes this timed event from any relevant buckets, or the secondary queue
+ */
/datum/timedevent/proc/bucketEject()
- var/bucketpos = BUCKET_POS(src)
+ // Store local references for the bucket list and secondary queue
+ // This is faster than referencing them from the datum itself
var/list/bucket_list = SStimer.bucket_list
var/list/second_queue = SStimer.second_queue
+
+ // Attempt to get the head of the bucket
var/datum/timedevent/buckethead
- if(bucketpos > 0)
- buckethead = bucket_list[bucketpos]
+ if(bucket_pos > 0)
+ buckethead = bucket_list[bucket_pos]
+
+ // Decrement the number of timers in buckets if the timed event is
+ // the head of the bucket, or has a TTR less than TIMER_MAX implying it fits
+ // into an existing bucket, or is otherwise not present in the secondary queue
if(buckethead == src)
- bucket_list[bucketpos] = next
+ bucket_list[bucket_pos] = next
SStimer.bucket_count--
- else if(timeToRun < TIMER_MAX || next || prev)
+ else if(timeToRun < TIMER_MAX)
SStimer.bucket_count--
else
var/l = length(second_queue)
second_queue -= src
if(l == length(second_queue))
SStimer.bucket_count--
- if(prev != next)
+
+ // Remove the timed event from the bucket, ensuring to maintain
+ // the integrity of the bucket's list if relevant
+ if (prev && prev.next == src)
prev.next = next
+ if (next && next.prev == src)
next.prev = prev
- else
- prev?.next = null
- next?.prev = null
prev = next = null
-
+ bucket_pos = -1
+ bucket_joined = FALSE
+
+/**
+ * Attempts to add this timed event to a bucket, will enter the secondary queue
+ * if there are no appropriate buckets at this time.
+ *
+ * Secondary queueing of timed events will occur when the timespan covered by the existing
+ * buckets is exceeded by the time at which this timed event is scheduled to be invoked.
+ * If the timed event is tracking client time, it will be added to a special bucket.
+ */
/datum/timedevent/proc/bucketJoin()
- var/list/L
+ // Generate debug-friendly name for timer
+ var/static/list/bitfield_flags = list("TIMER_UNIQUE", "TIMER_OVERRIDE", "TIMER_CLIENT_TIME", "TIMER_STOPPABLE", "TIMER_NO_HASH_WAIT", "TIMER_LOOP")
+ name = "Timer: [id] (\ref[src]), TTR: [timeToRun], wait:[wait] Flags: [jointext(bitfield2list(flags, bitfield_flags), ", ")], \
+ callBack: \ref[callBack], callBack.object: [callBack.object]\ref[callBack.object]([getcallingtype()]), \
+ callBack.delegate:[callBack.delegate]([callBack.arguments ? callBack.arguments.Join(", ") : ""]), source: [source]"
+
+ if (bucket_joined)
+ stack_trace("Bucket already joined! [name]")
- if(flags & TIMER_CLIENT_TIME)
+ // Check if this timed event should be diverted to the client time bucket, or the secondary queue
+ var/list/L
+ if (flags & TIMER_CLIENT_TIME)
L = SStimer.clienttime_timers
- else if(timeToRun >= TIMER_MAX)
+ else if (timeToRun >= TIMER_MAX)
L = SStimer.second_queue
-
if(L)
- BINARY_INSERT(src, L, datum/timedevent, timeToRun)
+ BINARY_INSERT_TG(src, L, /datum/timedevent, src, timeToRun, COMPARE_KEY)
return
- //get the list of buckets
+ // Get a local reference to the bucket list, this is faster than referencing the datum
var/list/bucket_list = SStimer.bucket_list
- //calculate our place in the bucket list
- var/bucket_pos = BUCKET_POS(src)
+ // Find the correct bucket for this timed event
+ bucket_pos = BUCKET_POS(src)
+
+ if (bucket_pos < SStimer.practical_offset && timeToRun < (SStimer.head_offset + TICKS2DS(BUCKET_LEN)))
+ WARNING("Bucket pos in past: bucket_pos = [bucket_pos] < practical_offset = [SStimer.practical_offset] \
+ && timeToRun = [timeToRun] < [SStimer.head_offset + TICKS2DS(BUCKET_LEN)], Timer: [name]")
+ bucket_pos = SStimer.practical_offset // Recover bucket_pos to avoid timer blocking queue
- //get the bucket for our tick
var/datum/timedevent/bucket_head = bucket_list[bucket_pos]
SStimer.bucket_count++
- //empty bucket, we will just add ourselves
- if(!bucket_head)
+
+ // If there is no timed event at this position, then the bucket is 'empty'
+ // and we can just set this event to that position
+ if (!bucket_head)
+ bucket_joined = TRUE
bucket_list[bucket_pos] = src
return
- //other wise, lets do a simplified linked list add.
- if(!bucket_head.prev)
- bucket_head.prev = bucket_head
+
+ // Otherwise, we merely add this timed event into the bucket, which is a
+ // doubly-linked list
+ bucket_joined = TRUE
+ bucket_head.prev = src
next = bucket_head
- prev = bucket_head.prev
- next.prev = src
- prev.next = src
+ prev = null
+ bucket_list[bucket_pos] = src
+/**
+ * Returns a string of the type of the callback for this timer
+ */
/datum/timedevent/proc/getcallingtype()
. = "ERROR"
- if(callBack.object == GLOBAL_PROC)
+ if (callBack.object == GLOBAL_PROC)
. = "GLOBAL_PROC"
else
. = "[callBack.object.type]"
+/**
+ * Create a new timer and insert it in the queue.
+ * You should not call this directly, and should instead use the addtimer macro, which includes source information.
+ *
+ * Arguments:
+ * * callback the callback to call on timer finish
+ * * wait deciseconds to run the timer for
+ * * flags flags for this timer, see: code\__DEFINES\subsystems.dm
+ */
/proc/addtimer(datum/callback/callback, wait = 0, flags = 0)
- if(!callback)
+ if (!callback)
CRASH("addtimer called without a callback")
- if(wait < 0)
+ if (wait < 0)
stack_trace("addtimer called with a negative wait. Converting to [world.tick_lag]")
- if(callback.object != GLOBAL_PROC && QDELETED(callback.object) && !QDESTROYING(callback.object))
- stack_trace("addtimer called with a callback assigned to a qdeleted object. In the future such timers will not be supported and may refuse to run or run with a 0 wait")
+ if (callback.object != GLOBAL_PROC && QDELETED(callback.object) && !QDESTROYING(callback.object))
+ stack_trace("addtimer called with a callback assigned to a qdeleted object. In the future such timers will not \
+ be supported and may refuse to run or run with a 0 wait")
wait = max(CEILING(wait, world.tick_lag), world.tick_lag)
if(wait >= INFINITY)
CRASH("Attempted to create timer with INFINITY delay")
+ // Generate hash if relevant for timed events with the TIMER_UNIQUE flag
var/hash
-
- if(flags & TIMER_UNIQUE)
- var/list/hashlist
- if(flags & TIMER_NO_HASH_WAIT)
- hashlist = list(callback.object, "(\ref[callback.object])", callback.delegate, flags & TIMER_CLIENT_TIME)
- else
- hashlist = list(callback.object, "(\ref[callback.object])", callback.delegate, wait, flags & TIMER_CLIENT_TIME)
+ if (flags & TIMER_UNIQUE)
+ var/list/hashlist = list(callback.object, "(\ref[callback.object])", callback.delegate, flags & TIMER_CLIENT_TIME)
+ if(!(flags & TIMER_NO_HASH_WAIT))
+ hashlist += wait
hashlist += callback.arguments
hash = hashlist.Join("|||||||")
var/datum/timedevent/hash_timer = SStimer.hashes[hash]
if(hash_timer)
- if(hash_timer.spent) //it's pending deletion, pretend it doesn't exist.
- hash_timer.hash = null //but keep it from accidentally deleting us
+ if (hash_timer.spent) // it's pending deletion, pretend it doesn't exist.
+ hash_timer.hash = null // but keep it from accidentally deleting us
else
- if(flags & TIMER_OVERRIDE)
- hash_timer.hash = null //no need having it delete it's hash if we are going to replace it
+ if (flags & TIMER_OVERRIDE)
+ hash_timer.hash = null // no need having it delete it's hash if we are going to replace it
qdel(hash_timer)
else
- if(hash_timer.flags & TIMER_STOPPABLE)
+ if (hash_timer.flags & TIMER_STOPPABLE)
. = hash_timer.id
return
else if(flags & TIMER_OVERRIDE)
@@ -499,18 +585,23 @@ SUBSYSTEM_DEF(timer)
var/datum/timedevent/timer = new(callback, wait, flags, hash)
return timer.id
+/**
+ * Delete a timer
+ *
+ * Arguments:
+ * * id a timerid or a /datum/timedevent
+ */
/proc/deltimer(id)
- if(!id)
+ if (!id)
return FALSE
- if(id == TIMER_ID_NULL)
+ if (id == TIMER_ID_NULL)
CRASH("Tried to delete a null timerid. Use TIMER_STOPPABLE flag")
- if(!istext(id))
- if(istype(id, /datum/timedevent))
- qdel(id)
- return TRUE
+ if (istype(id, /datum/timedevent))
+ qdel(id)
+ return TRUE
//id is string
var/datum/timedevent/timer = SStimer.timer_id_dict[id]
- if(timer && !timer.spent)
+ if (timer && (!timer.spent || timer.flags & TIMER_DELETE_ME))
qdel(timer)
return TRUE
return FALSE
diff --git a/code/datums/cache/crew.dm b/code/datums/cache/crew.dm
index 343c975520bf6..8eba4030d4a7b 100644
--- a/code/datums/cache/crew.dm
+++ b/code/datums/cache/crew.dm
@@ -49,6 +49,7 @@ GLOBAL_DATUM_INIT(crew_repository, /datum/repository/crew, new())
if(C.sensor_mode >= SUIT_SENSOR_VITAL)
crewmemberData["stat"] = H.stat
+ crewmemberData["health"] = H.health
crewmemberData["oxy"] = round(H.getOxyLoss(), 1)
crewmemberData["tox"] = round(H.getToxLoss(), 1)
crewmemberData["fire"] = round(H.getFireLoss(), 1)
diff --git a/code/datums/datacore.dm b/code/datums/datacore.dm
index 5756d3cb6e38e..04756632e40e9 100644
--- a/code/datums/datacore.dm
+++ b/code/datums/datacore.dm
@@ -7,6 +7,7 @@
/datum/datacore/proc/get_manifest(monochrome, OOC)
var/list/heads = new()
+ var/list/pro = new()
var/list/sec = new()
var/list/eng = new()
var/list/med = new()
@@ -54,6 +55,9 @@
if(real_rank in GLOB.command_positions)
heads[name] = rank
department = 1
+ if((real_rank == "Magistrate") || (real_rank == "Internal Affairs Agent") || (real_rank == "Nanotrasen Representative"))
+ pro[name] = rank
+ department = 1
if(real_rank in GLOB.security_positions)
sec[name] = rank
department = 1
@@ -82,6 +86,11 @@
for(var/name in heads)
dat += " | | [name] | [heads[name]] | [isactive[name]] |
"
even = !even
+ if(pro.len > 0)
+ dat += "| Procedure |
"
+ for(var/name in pro)
+ dat += "| [name] | [pro[name]] | [isactive[name]] |
"
+ even = !even
if(sec.len > 0)
dat += "| Security |
"
for(var/name in sec)
diff --git a/code/datums/datum.dm b/code/datums/datum.dm
index 8d3ec92cf406c..e5022240a87cd 100644
--- a/code/datums/datum.dm
+++ b/code/datums/datum.dm
@@ -26,7 +26,7 @@
active_timers = null
for(var/thing in timers)
var/datum/timedevent/timer = thing
- if(timer.spent)
+ if(timer.spent && !(timer.flags & TIMER_DELETE_ME))
continue
qdel(timer)
diff --git a/code/datums/diseases/_disease.dm b/code/datums/diseases/_disease.dm
index d099da71bf9c5..94efb17f630b2 100644
--- a/code/datums/diseases/_disease.dm
+++ b/code/datums/diseases/_disease.dm
@@ -50,6 +50,10 @@ GLOBAL_LIST_INIT(diseases, subtypesof(/datum/disease))
var/stage = 1
var/max_stages = 0
var/stage_prob = 4
+ /// The fraction of stages the virus must at least be at to show up on medical HUDs. Rounded up.
+ var/discovery_threshold = 0.5
+ /// If TRUE, this virus will show up on medical HUDs. Automatically set when it reaches mid-stage.
+ var/discovered = FALSE
//Other
var/list/viable_mobtypes = list() //typepaths of viable mobs
@@ -82,6 +86,9 @@ GLOBAL_LIST_INIT(diseases, subtypesof(/datum/disease))
if(!cure)
if(prob(stage_prob))
stage = min(stage + 1,max_stages)
+ if(!discovered && stage >= CEILING(max_stages * discovery_threshold, 1)) // Once we reach a late enough stage, medical HUDs can pick us up even if we regress
+ discovered = TRUE
+ affected_mob.med_hud_set_status()
else
if(prob(cure_chance))
stage = max(stage - 1, 1)
diff --git a/code/datums/diseases/advance/symptoms/blood.dm b/code/datums/diseases/advance/symptoms/blood.dm
new file mode 100644
index 0000000000000..17978f1122939
--- /dev/null
+++ b/code/datums/diseases/advance/symptoms/blood.dm
@@ -0,0 +1,41 @@
+/*
+//////////////////////////////////////
+
+Viral hematopoiesis
+
+ Lowers resistance .
+ Decreases stage tremendously.
+ Decreases transmittablity slightly.
+
+Bonus
+ Restores blood at the cost of saturation
+
+//////////////////////////////////////
+*/
+
+/datum/symptom/blood
+
+ name = "Viral Hematopoiesis"
+ stealth = -2
+ resistance = -2
+ stage_speed = -4
+ transmittable = -1
+ level = 5
+ var/check = FALSE
+
+/datum/symptom/blood/Activate(datum/disease/advance/A)
+ ..()
+ var/mob/living/M = A.affected_mob
+ if(prob(SYMPTOM_ACTIVATION_PROB))
+ switch(A.stage)
+ if(3,4)
+ to_chat(M, "You feel hungry")
+ if(5)
+ if(prob(10))
+ to_chat(M, "You can hear own heartbeat")
+ check = TRUE
+ if(check == TRUE && (M.blood_volume < BLOOD_VOLUME_NORMAL) && !(NO_BLOOD in M.dna.species.species_traits))
+ M.blood_volume += 0.4
+ M.adjust_nutrition(-2)
+ return
+
diff --git a/code/datums/diseases/advance/symptoms/booze.dm b/code/datums/diseases/advance/symptoms/booze.dm
new file mode 100644
index 0000000000000..33e007da3b3ef
--- /dev/null
+++ b/code/datums/diseases/advance/symptoms/booze.dm
@@ -0,0 +1,36 @@
+/*
+//////////////////////////////////////
+
+Alcochlorians
+
+ Decreases Stealth
+ Improves resistance significantly.
+ Improves stage speed significantly.
+ Decreases transmittablity.
+
+Bonus
+ The body generates alcohol.
+ From Bacchus with love
+//////////////////////////////////////
+*/
+
+/datum/symptom/booze
+
+ name = "Alco-chlorians"
+ stealth = -4
+ resistance = 4
+ stage_speed = 3
+ transmittable = -2
+ level = 3
+
+/datum/symptom/booze/Activate(datum/disease/advance/A)
+ ..()
+ if(prob(SYMPTOM_ACTIVATION_PROB * 2))
+ var/mob/living/M = A.affected_mob
+ switch(A.stage)
+ if(4, 5)
+ M.reagents.add_reagent(pick("rum", "vodka", "whiskey", "ale", "cider", "mead", "tequila", "wine", "beer"), 5) //somewhat safe drinks
+ else
+ if(prob(SYMPTOM_ACTIVATION_PROB * 5))
+ to_chat(M, "[pick("You feel warmth.", "You feel joyful.", "You relax for a moment")]") //span class notice because this is a drunkeness. Epic mind games ensues
+ return
diff --git a/code/datums/diseases/advance/symptoms/epinephrine.dm b/code/datums/diseases/advance/symptoms/epinephrine.dm
new file mode 100644
index 0000000000000..766f891432e5f
--- /dev/null
+++ b/code/datums/diseases/advance/symptoms/epinephrine.dm
@@ -0,0 +1,38 @@
+/*
+//////////////////////////////////////
+
+Inotropical hyperfunction
+ Lowers stealth
+ Lowers resistance.
+ Decreases stage speed slightly.
+ Decreases transmittablity.
+ Fatal Level.
+
+Bonus
+ The body generates epinephrine at low health slowly overdosing host
+
+//////////////////////////////////////
+*/
+
+/datum/symptom/epinephrine
+
+ name = "Inotropical Hyperfunction"
+ stealth = -5
+ resistance = -4
+ stage_speed = -1
+ transmittable = -2
+ level = 5
+ var/check = FALSE
+
+/datum/symptom/epinephrine/Activate(datum/disease/advance/A)
+ ..()
+ var/mob/living/M = A.affected_mob
+ if(prob(SYMPTOM_ACTIVATION_PROB * 5))
+ switch(A.stage)
+ if(5)
+ if(prob(10))
+ to_chat(M, "[pick("Your body feels tough.", "You are feeling on edge.")]")
+ check = TRUE
+ if(check == TRUE && M.health <= HEALTH_THRESHOLD_CRIT)
+ M.reagents.add_reagent("epinephrine", 0.6)
+ return
\ No newline at end of file
diff --git a/code/datums/diseases/advance/symptoms/painkiller.dm b/code/datums/diseases/advance/symptoms/painkiller.dm
new file mode 100644
index 0000000000000..612112b0a56c4
--- /dev/null
+++ b/code/datums/diseases/advance/symptoms/painkiller.dm
@@ -0,0 +1,37 @@
+/*
+//////////////////////////////////////
+
+Self-Respiration
+
+ Lowers resistance.
+ Decreases stage speed slightly.
+ Decreases transmittablity.
+ Fatal Level.
+
+Bonus
+ The body generates hydrocodone
+
+//////////////////////////////////////
+*/
+
+/datum/symptom/painkiller
+
+ name = "Neural Blockade"
+ stealth = -3
+ resistance = -2
+ stage_speed = -1
+ transmittable = -2
+ level = 6
+
+/datum/symptom/painkiller/Activate(datum/disease/advance/A)
+ ..()
+ if(prob(SYMPTOM_ACTIVATION_PROB * 5))
+ var/mob/living/M = A.affected_mob
+ switch(A.stage)
+ if(4, 5)
+ if(M.reagents.get_reagent_amount("hydrocodone") < 20)
+ M.reagents.add_reagent("hydrocodone", 10)
+ else
+ if(prob(SYMPTOM_ACTIVATION_PROB * 5))
+ to_chat(M, "[pick("Your body feels numb.", "You realize you feel nothing.", "You can't feel your body.")]")
+ return
diff --git a/code/datums/diseases/transformation.dm b/code/datums/diseases/transformation.dm
index fdfafa89314ce..116c704fd5413 100644
--- a/code/datums/diseases/transformation.dm
+++ b/code/datums/diseases/transformation.dm
@@ -53,6 +53,8 @@
if(istype(W, /obj/item/implant))
qdel(W)
continue
+ if(affected_mob.unEquip(W)) //Если вещь снимается - снимаем
+ affected_mob.unEquip(W)
W.layer = initial(W.layer)
W.plane = initial(W.plane)
W.loc = affected_mob.loc
diff --git a/code/datums/helper_datums/construction_datum.dm b/code/datums/helper_datums/construction_datum.dm
index be341a2074530..463d67a5b1f47 100644
--- a/code/datums/helper_datums/construction_datum.dm
+++ b/code/datums/helper_datums/construction_datum.dm
@@ -6,6 +6,7 @@
var/list/steps
var/atom/holder
var/result
+ var/index
var/list/steps_desc
var/taskpath = null // Path of job objective completed.
@@ -128,7 +129,6 @@
return TRUE
/datum/construction/reversible
- var/index
/datum/construction/reversible/New(atom)
..()
@@ -168,7 +168,6 @@
#define state_prev "prev"
/datum/construction/reversible2
- var/index
var/base_icon = "durand"
/datum/construction/reversible2/New(atom)
diff --git a/code/datums/mind.dm b/code/datums/mind.dm
index 2abecc57e9f05..b13080f31585e 100644
--- a/code/datums/mind.dm
+++ b/code/datums/mind.dm
@@ -591,7 +591,7 @@
var/new_target
if(length(possible_targets) > 0)
if(alert(usr, "Do you want to pick the objective yourself? No will randomise it", "Pick objective", "Yes", "No") == "Yes")
- possible_targets += "Free objective"
+ possible_targets += "Free Objective."
new_target = input("Select target:", "Objective target", def_target) as null|anything in possible_targets
else
new_target = pick(possible_targets)
@@ -600,14 +600,14 @@
return
else
to_chat(usr, "No possible target found. Defaulting to a Free objective.")
- new_target = "Free objective"
+ new_target = "Free Objective."
var/objective_path = text2path("/datum/objective/[new_obj_type]")
- if(new_target == "Free objective")
+ if(new_target == "Free Objective.")
new_objective = new objective_path
new_objective.owner = src
new_objective:target = null
- new_objective.explanation_text = "Free objective"
+ new_objective.explanation_text = "Free Objective."
else
new_objective = new objective_path
new_objective.owner = src
@@ -691,7 +691,7 @@
if((possible_target != src) && ishuman(possible_target.current))
possible_targets += possible_target
possible_targets = sortAtom(possible_targets)
- possible_targets += "Free objective"
+ possible_targets += "Free Objective."
var/new_target = input("Select target:", "Objective target") as null|anything in possible_targets
if(!new_target)
return
diff --git a/code/datums/revision.dm b/code/datums/revision.dm
index 50c616fc94f21..4d809a279cb04 100644
--- a/code/datums/revision.dm
+++ b/code/datums/revision.dm
@@ -13,9 +13,12 @@ GLOBAL_PROTECT(revision_info) // Dont mess with this
var/commit_date
/datum/code_revision/New()
- commit_hash = rustg_git_revparse("HEAD")
- if(commit_hash)
- commit_date = rustg_git_commit_date(commit_hash)
+ commit_hash = "-"
+ commit_date = "-"
+ return
+ // commit_hash = rustg_git_revparse("HEAD")
+ // if(commit_hash)
+ // commit_date = rustg_git_commit_date(commit_hash)
/**
* Code Revision Logging Helper
diff --git a/code/datums/spells/shapeshift.dm b/code/datums/spells/shapeshift.dm
index 7b72b5a42c42a..576f0314a9848 100644
--- a/code/datums/spells/shapeshift.dm
+++ b/code/datums/spells/shapeshift.dm
@@ -16,7 +16,6 @@
var/list/current_casters = list()
var/list/possible_shapes = list(/mob/living/simple_animal/mouse,
/mob/living/simple_animal/pet/dog/corgi,
- /mob/living/simple_animal/bot/ed209,
/mob/living/simple_animal/hostile/construct/armoured)
/obj/effect/proc_holder/spell/targeted/shapeshift/cast(list/targets, mob/user = usr)
diff --git a/code/datums/supplypacks.dm b/code/datums/supplypacks.dm
index 0e079e5441b19..9664ef7298e08 100644
--- a/code/datums/supplypacks.dm
+++ b/code/datums/supplypacks.dm
@@ -180,6 +180,17 @@ GLOBAL_LIST_INIT(all_supply_groups, list(SUPPLY_EMERGENCY,SUPPLY_SECURITY,SUPPLY
containername = "plasmaman life support supplies crate"
access = ACCESS_EVA
+/datum/supply_packs/emergency/plasmamanextinguisher
+ name = "Plasmaman Extinguisher Cartridges"
+ contains = list(/obj/item/extinguisher_refill,
+ /obj/item/extinguisher_refill,
+ /obj/item/extinguisher_refill,
+ /obj/item/extinguisher_refill)
+ cost = 20
+ containertype = /obj/structure/closet/crate/secure/plasma
+ containername = "plasmaman extinguisher cartridges crate"
+ access = ACCESS_CARGO
+
/datum/supply_packs/emergency/specialops
name = "Special Ops Supplies"
contains = list(/obj/item/storage/box/emps,
@@ -390,7 +401,7 @@ GLOBAL_LIST_INIT(all_supply_groups, list(SUPPLY_EMERGENCY,SUPPLY_SECURITY,SUPPLY
containertype = /obj/structure/closet/crate/secure/plasma
containername = "ablative armor crate"
-/datum/supply_packs/security/armory/laserarmor
+/datum/supply_packs/security/armory/sibyl
name = "Sibyl Attachments Crate"
contains = list(/obj/item/sibyl_system_mod,
/obj/item/sibyl_system_mod,
@@ -487,10 +498,19 @@ GLOBAL_LIST_INIT(all_supply_groups, list(SUPPLY_EMERGENCY,SUPPLY_SECURITY,SUPPLY
contains = list(/obj/item/ammo_box/magazine/wt550m9,
/obj/item/ammo_box/magazine/wt550m9,
/obj/item/ammo_box/magazine/wt550m9,
- /obj/item/ammo_box/magazine/wt550m9,)
+ /obj/item/ammo_box/magazine/wt550m9)
cost = 30
containername = "auto rifle ammo crate"
+/datum/supply_packs/security/armory/wt550ammobox
+ name = "WT-550 Rifle Ammobox Crate"
+ contains = list(/obj/item/ammo_box/c46x30mm,
+ /obj/item/ammo_box/c46x30mm,
+ /obj/item/ammo_box/c46x30mm,
+ /obj/item/ammo_box/c46x30mm)
+ cost = 60
+ containername = "auto rifle ammobox crate"
+
/////// Implants & etc
/datum/supply_packs/security/armory/mindshield
@@ -1342,7 +1362,7 @@ GLOBAL_LIST_INIT(all_supply_groups, list(SUPPLY_EMERGENCY,SUPPLY_SECURITY,SUPPLY
name = "50 Plasteel Sheets Crate"
contains = list(/obj/item/stack/sheet/plasteel/lowplasma)
amount = 50
- cost = 50
+ cost = 60
containername = "plasteel sheets crate"
/datum/supply_packs/materials/glass50
diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm
index 8c1e767ef990e..194ba411e8b92 100644
--- a/code/datums/uplink_item.dm
+++ b/code/datums/uplink_item.dm
@@ -170,7 +170,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "A grenade that explodes into HONK! brand banana peels that are genetically modified to be extra slippery and extrude caustic acid when stepped on"
reference = "BG"
item = /obj/item/grenade/clown_grenade
- cost = 5
+ cost = 2
job = list("Clown")
/datum/uplink_item/jobspecific/clownmagboots
@@ -227,7 +227,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "A mean looking meat cleaver that does damage comparable to an Energy Sword but with the added benefit of chopping your victim into hunks of meat after they've died."
reference = "MC"
item = /obj/item/kitchen/knife/butcher/meatcleaver
- cost = 10
+ cost = 4
job = list("Chef")
/datum/uplink_item/jobspecific/syndidonk
@@ -245,7 +245,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "A doll created by Syndicate Witch Doctors. Ingredients: Something of the Thread, Something of the Head, Something of the Body, Something of the Dead, Secret Voodoo herbs, and Monosodium glutamate."
reference = "VD"
item = /obj/item/voodoo
- cost = 13
+ cost = 4
job = list("Chaplain")
/datum/uplink_item/jobspecific/missionary_kit
@@ -342,7 +342,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "A seemingly innocent briefcase full of not-so-innocent Syndicate-bred bees. Inject the case with blood to train the bees to ignore the donor(s). It also wirelessly taps into station intercomms to broadcast a message of TERROR."
reference = "BEE"
item = /obj/item/bee_briefcase
- cost = 10
+ cost = 6
job = list("Botanist")
//Engineer
@@ -399,7 +399,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "A highly flexible jumpsuit that will help you navigate the ventilation loops of the station internally. Comes with pockets and ID slot, but can't be used without stripping off most gear, including backpack, belt, helmet, and exosuit. Free hands are also necessary to crawl around inside."
reference = "AIRJ"
item = /obj/item/clothing/under/contortionist
- cost = 6
+ cost = 10
job = list("Life Support Specialist")
/datum/uplink_item/jobspecific/energizedfireaxe
@@ -407,7 +407,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "A fire axe with a massive energy charge built into it. Upon striking someone while charged it will throw them backwards while stunning them briefly, but will take some time to charge up again. It is also much sharper than a regular axe and can pierce light armor."
reference = "EFA"
item = /obj/item/twohanded/fireaxe/energized
- cost = 10
+ cost = 4
job = list("Life Support Specialist")
//Stimulants
@@ -417,7 +417,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "A highly illegal compound contained within a compact auto-injector; when injected it makes the user extremely resistant to incapacitation and greatly enhances the body's ability to repair itself."
reference = "ST"
item = /obj/item/reagent_containers/hypospray/autoinjector/stimulants
- cost = 7
+ cost = 5
job = list("Scientist", "Research Director", "Geneticist", "Chief Medical Officer", "Medical Doctor", "Psychiatrist", "Chemist", "Paramedic", "Coroner", "Virologist")
//Tator Poison Bottles
@@ -459,7 +459,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
reference = "SR"
desc = "A brutally simple syndicate revolver that fires .357 Magnum cartridges and has 7 chambers."
item = /obj/item/gun/projectile/revolver
- cost = 13
+ cost = 10
surplus = 50
/datum/uplink_item/dangerous/smg
@@ -494,7 +494,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "These gloves let the user punch people very fast. Does not improve weapon attack speed."
reference = "RPGD"
item = /obj/item/clothing/gloves/fingerless/rapid
- cost = 8
+ cost = 4
/datum/uplink_item/dangerous/sniper
name = "Sniper Rifle"
@@ -510,7 +510,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "A compact, unscoped version of the operative sniper rifle. Packs a powerful punch, but ammo is limited."
reference = "CSR"
item = /obj/item/gun/projectile/automatic/sniper_rifle/compact
- cost = 16
+ cost = 8
surplus = 0
cant_discount = TRUE
excludefrom = list(/datum/game_mode/nuclear)
@@ -548,14 +548,14 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
deal extra damage and hit targets further. Use a screwdriver to take out any attached tanks."
reference = "PF"
item = /obj/item/melee/powerfist
- cost = 8
+ cost = 4
/datum/uplink_item/dangerous/chainsaw
name = "Chainsaw"
desc = "A high powered chainsaw for cutting up ...you know...."
reference = "CH"
item = /obj/item/twohanded/chainsaw
- cost = 13
+ cost = 12
/datum/uplink_item/dangerous/batterer
name = "Mind Batterer"
@@ -831,7 +831,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "A speed loader that contains seven additional .357 Magnum rounds for the syndicate revolver. For when you really need a lot of things dead."
reference = "357"
item = /obj/item/ammo_box/a357
- cost = 3
+ cost = 1
// STEALTHY WEAPONS
@@ -844,7 +844,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
will instantly put them in your grasp and silence them, as well as causing rapid suffocation. Does not work on those who do not need to breathe."
reference = "GAR"
item = /obj/item/twohanded/garrote
- cost = 6
+ cost = 8
/datum/uplink_item/stealthy_weapons/martialarts
name = "Martial Arts Scroll"
@@ -863,7 +863,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "A manual that teaches a single user tactical Close-Quarters Combat before self-destructing. Does not restrict weapon usage, but cannot be used alongside Gloves of the North Star."
reference = "CQC"
item = /obj/item/CQC_manual
- cost = 13
+ cost = 12
/datum/uplink_item/stealthy_weapons/cameraflash
name = "Camera Flash"
@@ -1038,7 +1038,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "A pizza box with a bomb taped inside of it. The timer needs to be set by opening the box; afterwards, opening the box again will trigger the detonation."
reference = "PB"
item = /obj/item/pizza_bomb
- cost = 5
+ cost = 3
surplus = 80
/datum/uplink_item/explosives/grenadier
@@ -1063,7 +1063,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "A box of two (2) grenades that spread knockout gas over a large area. Equip internals before using one of these."
reference = "ANG"
item = /obj/item/storage/box/syndie_kit/atmosn2ogrenades
- cost = 8
+ cost = 4
/datum/uplink_item/explosives/atmosfiregrenades
name = "Plasma Fire Grenades"
@@ -1179,7 +1179,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "Projects an image across a user, disguising them as an object scanned with it, as long as they don't move the projector from their hand. The disguised user cannot run and projectiles pass over them."
reference = "CP"
item = /obj/item/chameleon
- cost = 7
+ cost = 5
/datum/uplink_item/stealthy_tools/camera_bug
name = "Camera Bug"
@@ -1210,7 +1210,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
Useful for disrupting headsets, cameras, and borgs during stealth operations."
reference = "EMPL"
item = /obj/item/flashlight/emp
- cost = 2
+ cost = 4
surplus = 30
/datum/uplink_item/stealthy_tools/syndigaloshes
@@ -1264,7 +1264,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "The cryptographic sequencer, also known as an emag, is a small card that unlocks hidden functions in electronic devices, subverts intended functions and characteristically breaks security mechanisms."
reference = "EMAG"
item = /obj/item/card/emag
- cost = 6
+ cost = 10 // No brainrot allowed
/datum/uplink_item/device_tools/access_tuner
name = "Access Tuner"
@@ -1402,7 +1402,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "When used with an upload console, this module allows you to upload priority laws to an artificial intelligence. Be careful with their wording, as artificial intelligences may look for loopholes to exploit."
reference = "HAI"
item = /obj/item/aiModule/syndicate
- cost = 10
+ cost = 8
/datum/uplink_item/device_tools/magboots
name = "Blood-Red Magboots"
@@ -1461,7 +1461,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "This device will disrupt any nearby outgoing radio communication when activated."
reference = "RJ"
item = /obj/item/jammer
- cost = 5
+ cost = 2
/datum/uplink_item/device_tools/teleporter
name = "Teleporter Circuit Board"
@@ -1516,7 +1516,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "An implant injected into the body, and later activated manually to open an uplink with 10 telecrystals. The ability for an agent to open an uplink after their possessions have been stripped from them makes this implant excellent for escaping confinement."
reference = "UI"
item = /obj/item/implanter/uplink
- cost = 14
+ cost = 12
surplus = 0
cant_discount = TRUE
@@ -1525,7 +1525,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
desc = "An implant injected into the body, and later activated at the user's will. It will open a small subspace pocket capable of storing two items."
reference = "ESI"
item = /obj/item/implanter/storage
- cost = 8
+ cost = 6
/datum/uplink_item/implants/mindslave
name = "Mindslave Implant"
diff --git a/code/datums/weather/weather_types/solar_flare.dm b/code/datums/weather/weather_types/solar_flare.dm
index 97e4d82596e5a..e56361cb20a9f 100644
--- a/code/datums/weather/weather_types/solar_flare.dm
+++ b/code/datums/weather/weather_types/solar_flare.dm
@@ -5,7 +5,7 @@
telegraph_duration = 30 SECONDS
telegraph_message = null // handled via event announcement
- weather_message = "A solar flare has arrived! Find shelter!"
+ weather_message = "Началась солнечная вспышка! Найдите укрытие!"
weather_overlay = "light_ash"
weather_duration_lower = 5 MINUTES
weather_duration_upper = 10 MINUTES
@@ -38,11 +38,11 @@
/datum/weather/solar_flare/weather_act(mob/living/L)
L.adjustFireLoss(1)
if(prob(10))
- to_chat(L, "The solar flare burns you! Seek shelter!")
+ to_chat(L, "")
/datum/weather/solar_flare/end()
if(..())
return
- GLOB.event_announcement.Announce("The solar flare has passed.", "Solar Flare Advisory")
+ GLOB.event_announcement.Announce("Солнечная вспышка прошла", "ОПОВЕЩЕНИЕ: СОЛНЕЧНАЯ ВСПЫШКА")
// Ends the temporary 40x increase that happened during the weather event
SSsun.solar_gen_rate = initial(SSsun.solar_gen_rate)
diff --git a/code/game/area/ss13_areas.dm b/code/game/area/ss13_areas.dm
index c1174709c96e7..24f4cf8be8d5f 100644
--- a/code/game/area/ss13_areas.dm
+++ b/code/game/area/ss13_areas.dm
@@ -405,59 +405,62 @@ NOTE: there are two lists of areas in the end of this file: centcom and station
dynamic_lighting = DYNAMIC_LIGHTING_DISABLED
nad_allowed = TRUE
-/area/centcom/control
- name = "\improper Centcom Control"
- icon_state = "centcom_ctrl"
+// New CC
+/area/centcom/bridge
+ name = "\improper Centcom Bridge"
+ icon_state = "centcom_bridge"
-/area/centcom/evac
- name = "\improper Centcom Emergency Shuttle"
- icon_state = "centcom_evac"
-
-/area/centcom/suppy
- name = "\improper Centcom Supply Shuttle"
- icon_state = "centcom_supply"
+/area/centcom/court
+ name = "\improper Centcom Court"
+ icon_state = "centcom_court"
/area/centcom/ferry
- name = "\improper Centcom Transport Shuttle"
+ name = "\improper Centcom Ferry Shuttle"
icon_state = "centcom_ferry"
-/area/centcom/shuttle
- name = "\improper Centcom Administration Shuttle"
-
-/area/centcom/test
- name = "\improper Centcom Testing Facility"
-
-/area/centcom/living
- name = "\improper Centcom Living Quarters"
-
-/area/centcom/specops
- name = "\improper Centcom Special Ops"
- icon_state = "centcom_specops"
-
/area/centcom/gamma
name = "\improper Centcom Gamma Armory"
icon_state = "centcom_gamma"
-/area/centcom/holding
- name = "\improper Holding Facility"
+/area/centcom/supply
+ name = "\improper Centcom Supply Shuttle"
+ icon_state = "centcom_supply"
-/area/centcom/bathroom
- name = "\improper Centcom Emergency Shuttle Bathrooms"
+/area/centcom/jail
+ name = "\improper Centcom Jail"
+ icon_state = "centcom_jail"
-/area/centcom/ertarmory
- name = "\improper Centcom Ert Armory"
+/area/centcom/zone3
+ name = "\improper Centcom Zone 3"
+ icon_state = "centcom_zone3"
-/area/centcom/reset
- name = "\improper reset armory"
+/area/centcom/zone2
+ name = "\improper Centcom Zone 2"
+ icon_state = "centcom_zone2"
-/area/centcom/reset1
- name = "\improper reset armory"
+/area/centcom/zone1
+ name = "\improper Centcom Zone 1"
+ icon_state = "centcom_zone1"
-/area/centcom/reset2
- name = "\improper reset armory"
+/area/centcom/evac
+ name = "\improper Centcom Evacuation Emergency Shuttle"
+ icon_state = "centcom_evac"
+ dynamic_lighting = DYNAMIC_LIGHTING_FORCED
+
+/area/centcom/specops
+ name = "\improper Centcom Special Operations Forces"
+ icon_state = "centcom_specops"
-/area/centcom/reset3
- name = "\improper reset armory"
+/area/centcom/srtops
+ name = "\improper Centcom Special Reaction Team"
+ icon_state = "centcom_srtops"
+
+/area/centcom/blops
+ name = "\improper Centcom Black Operations Squad"
+ icon_state = "centcom_blops"
+
+/area/centcom/shuttle
+ name = "\improper Centcom Administration Shuttle"
//SYNDICATES
@@ -484,8 +487,33 @@ NOTE: there are two lists of areas in the end of this file: centcom and station
/area/syndicate_mothership/jail
name = "\improper Syndicate Jail"
+// USSP
+
+/area/ussp_ship
+ name = "\improper USSP Ship Project 28u"
+ icon_state = "ussp_ship"
+ requires_power = TRUE
+ dynamic_lighting = DYNAMIC_LIGHTING_FORCED
+ ambientsounds = HIGHSEC_SOUNDS
+
+// Chrono
+
+/area/chrono_ship
+ name = "\improper Chrono Ship"
+ icon_state = "chrono_ship"
+ requires_power = FALSE
+ dynamic_lighting = DYNAMIC_LIGHTING_DISABLED
+ nad_allowed = TRUE
+
//EXTRA
+/area/event_zone
+ name = "\improper Event Zone"
+ icon_state = "event_zone"
+ requires_power = FALSE
+ dynamic_lighting = DYNAMIC_LIGHTING_DISABLED
+ nad_allowed = TRUE
+
/area/asteroid // -- TLE
name = "\improper Asteroid"
icon_state = "asteroid"
@@ -1183,8 +1211,12 @@ NOTE: there are two lists of areas in the end of this file: centcom and station
name = "\improper Mechanic Workshop"
icon_state = "engine"
-/area/engine/mechanic_workshop/hanger
- name = "\improper Hanger Bay"
+/area/engine/mechanic_workshop/expedition
+ name = "\improper Hangar Expedition"
+ icon_state = "engine"
+
+/area/engine/mechanic_workshop/hangar
+ name = "\improper Hangаr Bay"
icon_state = "engine"
/area/engine/supermatter
@@ -1360,6 +1392,18 @@ NOTE: there are two lists of areas in the end of this file: centcom and station
name = "\improper Medical Research"
icon_state = "medresearch"
+/area/medical/research/nhallway
+ name = "\improper RnD North Hallway"
+ icon_state = "medresearch"
+
+/area/medical/research/shallway
+ name = "\improper RnD South Hallway"
+ icon_state = "medresearch"
+
+/area/medical/research/restroom
+ name = "\improper RnD Restroom"
+ icon_state = "medresearch"
+
/area/medical/research_shuttle_dock
name = "\improper Research Shuttle Dock"
icon_state = "medresearch"
@@ -1482,11 +1526,19 @@ NOTE: there are two lists of areas in the end of this file: centcom and station
name = "\improper Prison Cell Block C"
icon_state = "brig"
+/area/security/reception
+ name = "\improper Brig Reception"
+ icon_state = "brig"
+
/area/security/execution
name = "\improper Execution"
icon_state = "execution"
can_get_auto_cryod = FALSE
+/area/security/permahallway
+ name = "\improper Permabrig Hallway"
+ icon_state = "sec_prison_perma"
+
/area/security/processing
name = "\improper Prisoner Processing"
icon_state = "prisonerprocessing"
@@ -1501,6 +1553,10 @@ NOTE: there are two lists of areas in the end of this file: centcom and station
name = "\improper Security Equipment Storage"
icon_state = "securityequipmentstorage"
+/area/security/brigstaff
+ name = "\improper Brig Staff Room"
+ icon_state = "brig"
+
/area/security/interrogationhallway
name = "\improper Interrogation Hallway"
icon_state = "interrogationhall"
diff --git a/code/game/atoms.dm b/code/game/atoms.dm
index 1ff66c1bf0fef..232f160abce9a 100644
--- a/code/game/atoms.dm
+++ b/code/game/atoms.dm
@@ -200,13 +200,6 @@
/atom/proc/mech_melee_attack(obj/mecha/M)
return
-/atom/proc/attack_hulk(mob/living/carbon/human/user, does_attack_animation = FALSE)
- SEND_SIGNAL(src, COMSIG_ATOM_HULK_ATTACK, user)
- if(does_attack_animation)
- user.changeNext_move(CLICK_CD_MELEE)
- add_attack_logs(user, src, "Punched with hulk powers")
- user.do_attack_animation(src, ATTACK_EFFECT_SMASH)
-
/atom/proc/CheckParts(list/parts_list)
for(var/A in parts_list)
if(istype(A, /datum/reagent))
diff --git a/code/game/data_huds.dm b/code/game/data_huds.dm
index 121838ee30427..d49bc1cb87005 100644
--- a/code/game/data_huds.dm
+++ b/code/game/data_huds.dm
@@ -90,6 +90,8 @@
/mob/living/carbon/proc/has_virus()
for(var/thing in viruses)
var/datum/disease/D = thing
+ if(!D.discovered) // Early-stage viruses should not show up on med HUD (though health analywers can still pick them up)
+ continue
if((!(D.visibility_flags & HIDDEN_SCANNER)) && (D.severity != NONTHREAT))
return TRUE
return FALSE
diff --git a/code/game/dna/genes/disabilities.dm b/code/game/dna/genes/disabilities.dm
index b1737f923b365..56e0a5409ec4f 100644
--- a/code/game/dna/genes/disabilities.dm
+++ b/code/game/dna/genes/disabilities.dm
@@ -223,7 +223,7 @@
block = GLOB.lispblock
/datum/dna/gene/disability/lisp/OnSay(mob/M, message)
- return replacetext(message,"s","th")
+ return replacetext(message,"с",pick("щ","ш","ф"))
/datum/dna/gene/disability/comic
name = "Comic"
diff --git a/code/game/dna/genes/powers.dm b/code/game/dna/genes/powers.dm
index d893c64565cab..d973026c6134d 100644
--- a/code/game/dna/genes/powers.dm
+++ b/code/game/dna/genes/powers.dm
@@ -136,14 +136,13 @@
..()
block = GLOB.hulkblock
-/datum/dna/gene/basic/hulk/activate(mob/M, connected, flags)
+/datum/dna/gene/basic/hulk/activate(mob/M)
..()
- var/status = CANSTUN | CANWEAKEN | CANPARALYSE | CANPUSH
- M.status_flags &= ~status
+ M.AddSpell(new /obj/effect/proc_holder/spell/aoe_turf/hulk/hulk_transform)
-/datum/dna/gene/basic/hulk/deactivate(mob/M, connected, flags)
+/datum/dna/gene/basic/hulk/deactivate(mob/M)
..()
- M.status_flags |= CANSTUN | CANWEAKEN | CANPARALYSE | CANPUSH
+ M.RemoveSpell(/obj/effect/proc_holder/spell/aoe_turf/hulk/hulk_transform)
/datum/dna/gene/basic/hulk/OnDrawUnderlays(mob/M, g)
if(HULK in M.mutations)
diff --git a/code/game/gamemodes/blob/blob_finish.dm b/code/game/gamemodes/blob/blob_finish.dm
index d14069b9d24d7..cc54187544347 100644
--- a/code/game/gamemodes/blob/blob_finish.dm
+++ b/code/game/gamemodes/blob/blob_finish.dm
@@ -11,20 +11,14 @@
/datum/game_mode/blob/declare_completion()
if(blobwincount <= GLOB.blobs.len)
SSticker.mode_result = "blob win - blob took over"
- to_chat(world, "The blob has taken over the station!")
- to_chat(world, "The entire station was eaten by the Blob")
log_game("Blob mode completed with a blob victory.")
else if(station_was_nuked)
SSticker.mode_result = "blob halfwin - nuke"
- to_chat(world, "Partial Win: The station has been destroyed!")
- to_chat(world, "Directive 7-12 has been successfully carried out preventing the Blob from spreading.")
log_game("Blob mode completed with a tie (station destroyed).")
else if(!GLOB.blob_cores.len)
SSticker.mode_result = "blob loss - blob eliminated"
- to_chat(world, "The staff has won!")
- to_chat(world, "The alien organism has been eradicated from the station")
log_game("Blob mode completed with a crew victory.")
to_chat(world, "Rebooting in 30s")
..()
diff --git a/code/game/gamemodes/blob/theblob.dm b/code/game/gamemodes/blob/theblob.dm
index afe8e3fabe721..1ab65845d7e01 100644
--- a/code/game/gamemodes/blob/theblob.dm
+++ b/code/game/gamemodes/blob/theblob.dm
@@ -147,8 +147,6 @@
..()
take_damage(power / 400, BURN, "energy")
-/obj/structure/blob/hulk_damage()
- return 15
/obj/structure/blob/attack_animal(mob/living/simple_animal/M)
if(ROLE_BLOB in M.faction) //sorry, but you can't kill the blob as a blobbernaut
diff --git a/code/game/gamemodes/changeling/changeling.dm b/code/game/gamemodes/changeling/changeling.dm
index c33b5eb6d8c27..35c4e70000d40 100644
--- a/code/game/gamemodes/changeling/changeling.dm
+++ b/code/game/gamemodes/changeling/changeling.dm
@@ -207,19 +207,17 @@ GLOBAL_LIST_INIT(possible_changeling_IDs, list("Alpha","Beta","Gamma","Delta","E
var/count = 1
for(var/datum/objective/objective in changeling.objectives)
if(objective.check_completion())
- text += "
Objective #[count]: [objective.explanation_text] Success!"
+ text += "
Objective #[count]: [objective.explanation_text]"
SSblackbox.record_feedback("nested tally", "changeling_objective", 1, list("[objective.type]", "SUCCESS"))
else
- text += "
Objective #[count]: [objective.explanation_text] Fail."
+ text += "
Objective #[count]: [objective.explanation_text]"
SSblackbox.record_feedback("nested tally", "changeling_objective", 1, list("[objective.type]", "FAIL"))
changelingwin = 0
count++
if(changelingwin)
- text += "
The changeling was successful!"
SSblackbox.record_feedback("tally", "changeling_success", 1, "SUCCESS")
else
- text += "
The changeling has failed."
SSblackbox.record_feedback("tally", "changeling_success", 1, "FAIL")
to_chat(world, text)
diff --git a/code/game/gamemodes/cult/cult.dm b/code/game/gamemodes/cult/cult.dm
index e4d94ecb69f56..4962829595e5f 100644
--- a/code/game/gamemodes/cult/cult.dm
+++ b/code/game/gamemodes/cult/cult.dm
@@ -299,13 +299,10 @@ GLOBAL_LIST_EMPTY(all_cults)
/datum/game_mode/cult/declare_completion()
if(cult_objs.cult_status == NARSIE_HAS_RISEN)
SSticker.mode_result = "cult win - cult win"
- to_chat(world, " The cult wins! It has succeeded in summoning [SSticker.cultdat.entity_name]!")
else if(cult_objs.cult_status == NARSIE_HAS_FALLEN)
SSticker.mode_result = "cult draw - narsie died, nobody wins"
- to_chat(world, " Nobody wins! [SSticker.cultdat.entity_name] was summoned, but banished!")
else
SSticker.mode_result = "cult loss - staff stopped the cult"
- to_chat(world, " The staff managed to stop the cult!")
var/endtext
endtext += "
The cultists' objectives were:"
diff --git a/code/game/gamemodes/devil/objectives.dm b/code/game/gamemodes/devil/objectives.dm
index 04d0217b59988..a94359bcf9026 100644
--- a/code/game/gamemodes/devil/objectives.dm
+++ b/code/game/gamemodes/devil/objectives.dm
@@ -83,7 +83,7 @@
if(target)
explanation_text = "Purchase and retain the soul of [target.name], the [target.assigned_role]."
else
- explanation_text = "Free objective."
+ explanation_text = "Free Objective.."
/datum/objective/devil/buy_target/check_completion()
return target.soulOwner == owner
diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm
index 27b1ddcb94ffb..76c9716d5c4ed 100644
--- a/code/game/gamemodes/game_mode.dm
+++ b/code/game/gamemodes/game_mode.dm
@@ -478,10 +478,7 @@
var/list/objective_parts = list()
var/count = 1
for(var/datum/objective/objective in ply.objectives)
- if(objective.check_completion())
- objective_parts += "Objective #[count]: [objective.explanation_text] Success!"
- else
- objective_parts += "Objective #[count]: [objective.explanation_text] Fail."
+ objective_parts += "Objective #[count]: [objective.explanation_text]"
count++
return objective_parts.Join("
")
diff --git a/code/game/gamemodes/heist/heist.dm b/code/game/gamemodes/heist/heist.dm
index 54faf90fef895..85b888cfd1d83 100644
--- a/code/game/gamemodes/heist/heist.dm
+++ b/code/game/gamemodes/heist/heist.dm
@@ -234,17 +234,15 @@ GLOBAL_LIST_EMPTY(cortical_stacks) //Stacks for 'leave nobody behind' objective.
else
win_msg += "The Vox Raiders were repelled!"
- to_chat(world, "[win_type] [win_group] victory!")
- to_chat(world, "[win_msg]")
SSticker.mode_result = "heist - [win_type] [win_group]"
var/count = 1
for(var/datum/objective/objective in raid_objectives)
if(objective.check_completion())
- to_chat(world, "
Objective #[count]: [objective.explanation_text] Success!")
+ to_chat(world, "
Objective #[count]: [objective.explanation_text]")
SSblackbox.record_feedback("nested tally", "traitor_objective", 1, list("[objective.type]", "SUCCESS"))
else
- to_chat(world, "
Objective #[count]: [objective.explanation_text] Fail.")
+ to_chat(world, "
Objective #[count]: [objective.explanation_text]")
SSblackbox.record_feedback("nested tally", "traitor_objective", 1, list("[objective.type]", "FAIL"))
count++
diff --git a/code/game/gamemodes/meteor/meteor.dm b/code/game/gamemodes/meteor/meteor.dm
index 8aced721dca65..b34eb27bb5cbb 100644
--- a/code/game/gamemodes/meteor/meteor.dm
+++ b/code/game/gamemodes/meteor/meteor.dm
@@ -31,28 +31,17 @@
sendmeteors()
/datum/game_mode/meteor/declare_completion()
- var/text
- var/survivors = 0
for(var/mob/living/player in GLOB.player_list)
if(player.stat != DEAD)
var/turf/location = get_turf(player.loc)
if(!location) continue
if(location.loc.type == SSshuttle.emergency.areaInstance.type) //didn't work in the switch for some reason
- text += "
[player.real_name] escaped on the emergency shuttle"
else
switch(location.loc.type)
if( /area/shuttle/escape_pod1/centcom, /area/shuttle/escape_pod2/centcom, /area/shuttle/escape_pod3/centcom, /area/shuttle/escape_pod5/centcom )
- text += "
[player.real_name] escaped in a life pod."
else
- text += "
[player.real_name] survived but is stranded without any hope of rescue."
- survivors++
-
- if(survivors)
- to_chat(world, "The following survived the meteor storm:[text]")
- else
- to_chat(world, "Nobody survived the meteor storm!")
SSticker.mode_result = "meteor end - evacuation"
diff --git a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm
index a0519fcbe5625..ed812dc0d3241 100644
--- a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm
+++ b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm
@@ -737,6 +737,7 @@ Congratulations! You are now trained for invasive xenobiology research!"}
icon_closed = "abductor"
icon_opened = "abductoropen"
material_drop = /obj/item/stack/sheet/mineral/abductor
+ material_drop_amount = 1
/obj/structure/door_assembly/door_assembly_abductor
name = "alien airlock assembly"
diff --git a/code/game/gamemodes/nuclear/nuclear.dm b/code/game/gamemodes/nuclear/nuclear.dm
index dff473d63bcbb..fe912e9a7b9dd 100644
--- a/code/game/gamemodes/nuclear/nuclear.dm
+++ b/code/game/gamemodes/nuclear/nuclear.dm
@@ -337,48 +337,30 @@
if(!disk_rescued && station_was_nuked && !syndies_didnt_escape)
SSticker.mode_result = "nuclear win - syndicate nuke"
- to_chat(world, "Syndicate Major Victory!")
- to_chat(world, "[syndicate_name()] operatives have destroyed [station_name()]!")
else if(!disk_rescued && station_was_nuked && syndies_didnt_escape)
SSticker.mode_result = "nuclear halfwin - syndicate nuke - did not evacuate in time"
- to_chat(world, "Total Annihilation")
- to_chat(world, "[syndicate_name()] operatives destroyed [station_name()] but did not leave the area in time and got caught in the explosion. Next time, don't lose the disk!")
else if(!disk_rescued && !station_was_nuked && nuke_off_station && !syndies_didnt_escape)
SSticker.mode_result = "nuclear halfwin - blew wrong station"
- to_chat(world, "Crew Minor Victory")
- to_chat(world, "[syndicate_name()] operatives secured the authentication disk but blew up something that wasn't [station_name()]. Next time, don't lose the disk!")
else if(!disk_rescued && !station_was_nuked && nuke_off_station && syndies_didnt_escape)
SSticker.mode_result = "nuclear halfwin - blew wrong station - did not evacuate in time"
- to_chat(world, "[syndicate_name()] operatives have earned Darwin Award!")
- to_chat(world, "[syndicate_name()] operatives blew up something that wasn't [station_name()] and got caught in the explosion. Next time, don't lose the disk!")
else if(disk_rescued && is_operatives_are_dead())
SSticker.mode_result = "nuclear loss - evacuation - disk secured - syndi team dead"
- to_chat(world, "Crew Major Victory!")
- to_chat(world, "The Research Staff has saved the disc and killed the [syndicate_name()] Operatives")
else if(disk_rescued)
SSticker.mode_result = "nuclear loss - evacuation - disk secured"
- to_chat(world, "Crew Major Victory")
- to_chat(world, "The Research Staff has saved the disc and stopped the [syndicate_name()] Operatives!")
else if(!disk_rescued && is_operatives_are_dead())
SSticker.mode_result = "nuclear loss - evacuation - disk not secured"
- to_chat(world, "Syndicate Minor Victory!")
- to_chat(world, "The Research Staff failed to secure the authentication disk but did manage to kill most of the [syndicate_name()] Operatives!")
else if(!disk_rescued && crew_evacuated)
SSticker.mode_result = "nuclear halfwin - detonation averted"
- to_chat(world, "Syndicate Minor Victory!")
- to_chat(world, "[syndicate_name()] operatives recovered the abandoned authentication disk but detonation of [station_name()] was averted. Next time, don't lose the disk!")
else if(!disk_rescued && !crew_evacuated)
SSticker.mode_result = "nuclear halfwin - interrupted"
- to_chat(world, "Neutral Victory")
- to_chat(world, "Round was mysteriously interrupted!")
..()
return
diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm
index 39691d231cb3c..bb832436615e9 100644
--- a/code/game/gamemodes/objective.dm
+++ b/code/game/gamemodes/objective.dm
@@ -83,7 +83,7 @@ GLOBAL_LIST_INIT(potential_theft_objectives, (subtypesof(/datum/theft_objective)
if(target && target.current)
explanation_text = "Assassinate [target.current.real_name], the [target.assigned_role]."
else
- explanation_text = "Free Objective"
+ explanation_text = "Free Objective."
return target
/datum/objective/assassinate/check_completion()
@@ -106,7 +106,7 @@ GLOBAL_LIST_INIT(potential_theft_objectives, (subtypesof(/datum/theft_objective)
if(target && target.current)
explanation_text = "Assassinate [target.current.real_name], the [target.assigned_role]."
else
- explanation_text = "Free Objective"
+ explanation_text = "Free Objective."
return target
/datum/objective/mutiny/check_completion()
@@ -132,7 +132,7 @@ GLOBAL_LIST_INIT(potential_theft_objectives, (subtypesof(/datum/theft_objective)
if(target && target.current)
explanation_text = "Prevent [target.current.real_name], the [target.assigned_role] from escaping alive."
else
- explanation_text = "Free Objective"
+ explanation_text = "Free Objective."
return target
/datum/objective/maroon/check_completion()
@@ -160,7 +160,7 @@ GLOBAL_LIST_INIT(potential_theft_objectives, (subtypesof(/datum/theft_objective)
if(target && target.current)
explanation_text = "Steal the brain of [target.current.real_name] the [target.assigned_role]."
else
- explanation_text = "Free Objective"
+ explanation_text = "Free Objective."
return target
@@ -187,7 +187,7 @@ GLOBAL_LIST_INIT(potential_theft_objectives, (subtypesof(/datum/theft_objective)
if(target && target.current)
explanation_text = "Protect [target.current.real_name], the [target.assigned_role]."
else
- explanation_text = "Free Objective"
+ explanation_text = "Free Objective."
return target
/datum/objective/protect/check_completion()
@@ -325,7 +325,7 @@ GLOBAL_LIST_INIT(potential_theft_objectives, (subtypesof(/datum/theft_objective)
target_real_name = target.current.real_name
explanation_text = "Escape on the shuttle or an escape pod with the identity of [target_real_name], the [target.assigned_role] while wearing [target.p_their()] identification card."
else
- explanation_text = "Free Objective"
+ explanation_text = "Free Objective."
/datum/objective/escape/escape_with_identity/check_completion()
if(!target_real_name)
@@ -398,7 +398,7 @@ GLOBAL_LIST_INIT(potential_theft_objectives, (subtypesof(/datum/theft_objective)
if(islist(O.protected_jobs) && O.protected_jobs.len)
explanation_text += "It may also be in the possession of the [jointext(O.protected_jobs, ", ")]."
return
- explanation_text = "Free Objective."
+ explanation_text = "Free Objective.."
/datum/objective/steal/proc/select_target()
@@ -423,7 +423,7 @@ GLOBAL_LIST_INIT(potential_theft_objectives, (subtypesof(/datum/theft_objective)
/datum/objective/steal/check_completion()
if(!steal_target)
- return 1 // Free Objective
+ return 1 // Free Objective.
if(!owner.current)
return FALSE
@@ -525,7 +525,7 @@ GLOBAL_LIST_INIT(potential_theft_objectives, (subtypesof(/datum/theft_objective)
target_real_name = target.current.real_name
explanation_text = "Destroy [target_real_name], the AI."
else
- explanation_text = "Free Objective"
+ explanation_text = "Free Objective."
return target
/datum/objective/destroy/check_completion()
@@ -632,7 +632,7 @@ GLOBAL_LIST_INIT(potential_theft_objectives, (subtypesof(/datum/theft_objective)
if(target && target.current)
explanation_text = "The Shoal has a need for [target.current.real_name], the [target.assigned_role]. Take [target.current.p_them()] alive."
else
- explanation_text = "Free Objective"
+ explanation_text = "Free Objective."
return target
/datum/objective/heist/kidnap/check_completion()
diff --git a/code/game/gamemodes/revolution/revolution.dm b/code/game/gamemodes/revolution/revolution.dm
index a920aa97905cb..aaf1377edb507 100644
--- a/code/game/gamemodes/revolution/revolution.dm
+++ b/code/game/gamemodes/revolution/revolution.dm
@@ -368,10 +368,8 @@
/datum/game_mode/revolution/declare_completion()
if(finished == 1)
SSticker.mode_result = "revolution win - heads killed"
- to_chat(world, "The heads of staff were killed or exiled! The revolutionaries win!")
else if(finished == 2)
SSticker.mode_result = "revolution loss - rev heads killed"
- to_chat(world, "The heads of staff managed to stop the revolution!")
..()
return TRUE
diff --git a/code/game/gamemodes/scoreboard.dm b/code/game/gamemodes/scoreboard.dm
index 51507f1ac5ea2..a5d89dc59ac03 100644
--- a/code/game/gamemodes/scoreboard.dm
+++ b/code/game/gamemodes/scoreboard.dm
@@ -32,6 +32,11 @@
for(var/i in total_antagonists)
log_game("[i]s[total_antagonists[i]].")
+ //log antags and their objectives
+ for(var/datum/mind/Mind in SSticker.minds)
+ log_antag_objectives(Mind)
+
+
// Score Calculation and Display
// Who is alive/dead, who escaped
diff --git a/code/game/gamemodes/shadowling/shadowling.dm b/code/game/gamemodes/shadowling/shadowling.dm
index 8eb5c2af8380b..516d90a6ad28d 100644
--- a/code/game/gamemodes/shadowling/shadowling.dm
+++ b/code/game/gamemodes/shadowling/shadowling.dm
@@ -267,20 +267,12 @@ Made by Xhuis
/datum/game_mode/shadowling/declare_completion()
if(check_shadow_victory() && SSshuttle.emergency.mode >= SHUTTLE_ESCAPE) //Doesn't end instantly - this is hacky and I don't know of a better way ~X
SSticker.mode_result = "shadowling win - shadowling ascension"
- to_chat(world, "Shadowling Victory")
- to_chat(world, "The shadowlings have ascended and taken over the station!")
else if(shadowling_dead && !check_shadow_victory()) //If the shadowlings have ascended, they can not lose the round
SSticker.mode_result = "shadowling loss - shadowling killed"
- to_chat(world, "Crew Major Victory")
- to_chat(world, "The shadowlings have been killed by the crew!")
else if(!check_shadow_victory() && SSshuttle.emergency.mode >= SHUTTLE_ESCAPE)
SSticker.mode_result = "shadowling loss - crew escaped"
- to_chat(world, "Crew Minor Victory")
- to_chat(world, "The crew escaped the station before the shadowlings could ascend!")
else
SSticker.mode_result = "shadowling loss - generic failure"
- to_chat(world, "Crew Major Victory")
- to_chat(world, "The shadowlings have failed!")
..()
return 1
diff --git a/code/game/gamemodes/traitor/traitor.dm b/code/game/gamemodes/traitor/traitor.dm
index 4c6d6139b6d41..77ac03d777ca7 100644
--- a/code/game/gamemodes/traitor/traitor.dm
+++ b/code/game/gamemodes/traitor/traitor.dm
@@ -99,7 +99,7 @@
var/text = "The traitors were:
"
for(var/datum/mind/traitor in traitors)
var/traitorwin = 1
- text += printplayer(traitor)
+ text += printplayer(traitor) + "
"
var/TC_uses = 0
var/uplink_true = 0
@@ -117,20 +117,14 @@
var/count = 1
for(var/datum/objective/objective in traitor.objectives)
if(objective.check_completion())
- text += "
Objective #[count]: [objective.explanation_text] Success!"
+ text += "
Objective #[count]: [objective.explanation_text]"
SSblackbox.record_feedback("nested tally", "traitor_objective", 1, list("[objective.type]", "SUCCESS"))
else
- text += "
Objective #[count]: [objective.explanation_text] Fail."
+ text += "
Objective #[count]: [objective.explanation_text]"
SSblackbox.record_feedback("nested tally", "traitor_objective", 1, list("[objective.type]", "FAIL"))
traitorwin = 0
count++
- var/special_role_text
- if(traitor.special_role)
- special_role_text = lowertext(traitor.special_role)
- else
- special_role_text = "antagonist"
-
var/datum/antagonist/traitor/contractor/contractor = traitor.has_antag_datum(/datum/antagonist/traitor/contractor)
if(istype(contractor) && contractor.contractor_uplink)
var/count = 1
@@ -154,10 +148,8 @@
text += "
[earned_tc] TC were earned from the contracts."
if(traitorwin)
- text += "
The [special_role_text] was successful!
"
SSblackbox.record_feedback("tally", "traitor_success", 1, "SUCCESS")
else
- text += "
The [special_role_text] has failed!
"
SSblackbox.record_feedback("tally", "traitor_success", 1, "FAIL")
if(length(SSticker.mode.implanted))
diff --git a/code/game/gamemodes/vampire/vampire.dm b/code/game/gamemodes/vampire/vampire.dm
index 9db30a4f4c696..4b45d9c842779 100644
--- a/code/game/gamemodes/vampire/vampire.dm
+++ b/code/game/gamemodes/vampire/vampire.dm
@@ -98,25 +98,17 @@
var/count = 1
for(var/datum/objective/objective in vampire.objectives)
if(objective.check_completion())
- text += "
Objective #[count]: [objective.explanation_text] Success!"
+ text += "
Objective #[count]: [objective.explanation_text]"
SSblackbox.record_feedback("nested tally", "traitor_objective", 1, list("[objective.type]", "SUCCESS"))
else
- text += "
Objective #[count]: [objective.explanation_text] Fail."
+ text += "
Objective #[count]: [objective.explanation_text]"
SSblackbox.record_feedback("nested tally", "traitor_objective", 1, list("[objective.type]", "FAIL"))
traitorwin = 0
count++
- var/special_role_text
- if(vampire.special_role)
- special_role_text = lowertext(vampire.special_role)
- else
- special_role_text = "antagonist"
-
if(traitorwin)
- text += "
The [special_role_text] was successful!"
SSblackbox.record_feedback("tally", "traitor_success", 1, "SUCCESS")
else
- text += "
The [special_role_text] has failed!"
SSblackbox.record_feedback("tally", "traitor_success", 1, "FAIL")
to_chat(world, text)
return 1
diff --git a/code/game/gamemodes/wizard/raginmages.dm b/code/game/gamemodes/wizard/raginmages.dm
index 5c5960a1fe32f..953c5af000493 100644
--- a/code/game/gamemodes/wizard/raginmages.dm
+++ b/code/game/gamemodes/wizard/raginmages.dm
@@ -158,5 +158,4 @@
/datum/game_mode/wizard/raginmages/declare_completion()
if(finished)
SSticker.mode_result = "raging wizard loss - wizard killed"
- to_chat(world, " The crew has managed to hold off the Wizard attack! The Space Wizard Federation has been taught a lesson they will not soon forget!")
..(1)
diff --git a/code/game/gamemodes/wizard/spellbook.dm b/code/game/gamemodes/wizard/spellbook.dm
index 563412b00d602..63f1433284d06 100644
--- a/code/game/gamemodes/wizard/spellbook.dm
+++ b/code/game/gamemodes/wizard/spellbook.dm
@@ -98,6 +98,7 @@
//Main category - Spells
//Offensive
+
/datum/spellbook_entry/blind
name = "Blind"
spell_type = /obj/effect/proc_holder/spell/targeted/trigger/blind
@@ -267,6 +268,14 @@
category = "Mobility"
//Assistance
+
+/datum/spellbook_entry/shapeshift
+ name = "Shapechange"
+ spell_type = /obj/effect/proc_holder/spell/targeted/shapeshift
+ log_name = "SH"
+ category = "Assistance"
+ cost = 2
+
/datum/spellbook_entry/charge
name = "Charge"
spell_type = /obj/effect/proc_holder/spell/targeted/charge
diff --git a/code/game/gamemodes/wizard/wizard.dm b/code/game/gamemodes/wizard/wizard.dm
index 2917e37c8d1c1..49c9e34f17547 100644
--- a/code/game/gamemodes/wizard/wizard.dm
+++ b/code/game/gamemodes/wizard/wizard.dm
@@ -201,7 +201,6 @@
/datum/game_mode/wizard/declare_completion(var/ragin = 0)
if(finished && !ragin)
SSticker.mode_result = "wizard loss - wizard killed"
- to_chat(world, " The wizard[(wizards.len>1)?"s":""] has been killed by the crew! The Space Wizards Federation has been taught a lesson they will not soon forget!")
..()
return 1
@@ -227,19 +226,17 @@
var/wizardwin = 1
for(var/datum/objective/objective in wizard.objectives)
if(objective.check_completion())
- text += "
Objective #[count]: [objective.explanation_text] Success!"
+ text += "
Objective #[count]: [objective.explanation_text]"
SSblackbox.record_feedback("nested tally", "wizard_objective", 1, list("[objective.type]", "SUCCESS"))
else
- text += "
Objective #[count]: [objective.explanation_text] Fail."
+ text += "
Objective #[count]: [objective.explanation_text]"
SSblackbox.record_feedback("nested tally", "wizard_objective", 1, list("[objective.type]", "FAIL"))
wizardwin = 0
count++
if(wizard.current && wizard.current.stat!=DEAD && wizardwin)
- text += "
The wizard was successful!"
SSblackbox.record_feedback("tally", "wizard_success", 1, "SUCCESS")
else
- text += "
The wizard has failed!"
SSblackbox.record_feedback("tally", "wizard_success", 1, "FAIL")
if(wizard.spell_list)
text += "
[wizard.name] used the following spells: "
diff --git a/code/game/jobs/job/engineering.dm b/code/game/jobs/job/engineering.dm
index 66fcf6a6efb5b..5c544adf701bc 100644
--- a/code/game/jobs/job/engineering.dm
+++ b/code/game/jobs/job/engineering.dm
@@ -34,7 +34,8 @@
head = /obj/item/clothing/head/hardhat/white
l_ear = /obj/item/radio/headset/heads/ce
id = /obj/item/card/id/ce
- l_pocket = /obj/item/t_scanner
+ l_pocket = /obj/item/lighter/zippo/ce
+ r_pocket = /obj/item/t_scanner
pda = /obj/item/pda/heads/ce
backpack_contents = list(
/obj/item/melee/classic_baton/telescopic = 1
diff --git a/code/game/jobs/job/medical.dm b/code/game/jobs/job/medical.dm
index 1162e00cd99a2..2e488fcb2e5e4 100644
--- a/code/game/jobs/job/medical.dm
+++ b/code/game/jobs/job/medical.dm
@@ -30,6 +30,7 @@
shoes = /obj/item/clothing/shoes/brown
l_ear = /obj/item/radio/headset/heads/cmo
id = /obj/item/card/id/cmo
+ l_pocket = /obj/item/lighter/zippo/cmo
suit_store = /obj/item/flashlight/pen
l_hand = /obj/item/storage/firstaid/doctor
pda = /obj/item/pda/heads/cmo
@@ -289,8 +290,8 @@
supervisors = "the chief medical officer"
department_head = list("Chief Medical Officer")
selection_color = "#ffeef0"
- access = list(ACCESS_PARAMEDIC, ACCESS_MEDICAL, ACCESS_MAINT_TUNNELS, ACCESS_EXTERNAL_AIRLOCKS, ACCESS_MORGUE)
- minimal_access=list(ACCESS_PARAMEDIC, ACCESS_MEDICAL, ACCESS_MAINT_TUNNELS, ACCESS_EXTERNAL_AIRLOCKS, ACCESS_MORGUE)
+ access = list(ACCESS_PARAMEDIC, ACCESS_MEDICAL, ACCESS_MAINT_TUNNELS, ACCESS_EXTERNAL_AIRLOCKS, ACCESS_MORGUE, ACCESS_SURGERY)
+ minimal_access=list(ACCESS_PARAMEDIC, ACCESS_MEDICAL, ACCESS_MAINT_TUNNELS, ACCESS_EXTERNAL_AIRLOCKS, ACCESS_MORGUE, ACCESS_SURGERY)
minimal_player_age = 3
exp_requirements = 180
exp_type = EXP_TYPE_CREW
diff --git a/code/game/jobs/job/science.dm b/code/game/jobs/job/science.dm
index fc40383f4e2a0..2ee77135ce2be 100644
--- a/code/game/jobs/job/science.dm
+++ b/code/game/jobs/job/science.dm
@@ -37,6 +37,7 @@
shoes = /obj/item/clothing/shoes/brown
l_ear = /obj/item/radio/headset/heads/rd
id = /obj/item/card/id/rd
+ l_pocket = /obj/item/lighter/zippo/rd
l_hand = /obj/item/clipboard
pda = /obj/item/pda/heads/rd
backpack_contents = list(
diff --git a/code/game/jobs/job/security.dm b/code/game/jobs/job/security.dm
index 2f2069f8e969d..47fdb7df7bf73 100644
--- a/code/game/jobs/job/security.dm
+++ b/code/game/jobs/job/security.dm
@@ -36,6 +36,7 @@
l_ear = /obj/item/radio/headset/heads/hos/alt
glasses = /obj/item/clothing/glasses/hud/security/sunglasses
id = /obj/item/card/id/hos
+ l_pocket = /obj/item/lighter/zippo/hos
suit_store = /obj/item/gun/energy/gun
pda = /obj/item/pda/heads/hos
l_hand = /obj/item/storage/lockbox/sibyl_system_mod
@@ -83,7 +84,7 @@
glasses = /obj/item/clothing/glasses/hud/security/sunglasses
id = /obj/item/card/id/security
l_pocket = /obj/item/flash
- suit_store = /obj/item/gun/energy/gun/advtaser
+ suit_store = /obj/item/gun/energy/dominator
pda = /obj/item/pda/warden
l_hand = /obj/item/storage/lockbox/sibyl_system_mod
backpack_contents = list(
@@ -127,7 +128,7 @@
shoes = /obj/item/clothing/shoes/brown
head = /obj/item/clothing/head/det_hat
l_ear = /obj/item/radio/headset/headset_sec/alt
- glasses = /obj/item/clothing/glasses/sunglasses/noir/thermal
+ glasses = /obj/item/clothing/glasses/hud/security/sunglasses/aviators
id = /obj/item/card/id/security
l_pocket = /obj/item/toy/crayon/white
r_pocket = /obj/item/lighter/zippo
@@ -185,7 +186,7 @@
l_ear = /obj/item/radio/headset/headset_sec/alt
id = /obj/item/card/id/security
l_pocket = /obj/item/flash
- suit_store = /obj/item/gun/energy/gun/advtaser
+ suit_store = /obj/item/gun/energy/dominator
pda = /obj/item/pda/security
backpack_contents = list(
/obj/item/restraints/handcuffs = 1
@@ -256,7 +257,7 @@
l_ear = /obj/item/radio/headset/headset_sec/alt
id = /obj/item/card/id/security
l_pocket = /obj/item/flash
- suit_store = /obj/item/gun/energy/gun/advtaser
+ suit_store = /obj/item/gun/energy/dominator
pda = /obj/item/pda/security
backpack_contents = list(
/obj/item/restraints/handcuffs = 1
diff --git a/code/game/jobs/job/silicon.dm b/code/game/jobs/job/silicon.dm
index fef9c2302b391..ecb9798c1c7b4 100644
--- a/code/game/jobs/job/silicon.dm
+++ b/code/game/jobs/job/silicon.dm
@@ -9,7 +9,7 @@
department_head = list("Captain")
req_admin_notify = 1
minimal_player_age = 30
- exp_requirements = 300
+ exp_requirements = 3000
exp_type = EXP_TYPE_SILICON
/datum/job/ai/equip(mob/living/carbon/human/H)
diff --git a/code/game/jobs/job/supervisor.dm b/code/game/jobs/job/supervisor.dm
index 834ed7d2b8165..d147612790946 100644
--- a/code/game/jobs/job/supervisor.dm
+++ b/code/game/jobs/job/supervisor.dm
@@ -36,6 +36,7 @@ GLOBAL_DATUM_INIT(captain_announcement, /datum/announcement/minor, new(do_newsca
l_ear = /obj/item/radio/headset/heads/captain/alt
glasses = /obj/item/clothing/glasses/hud/skills/sunglasses
id = /obj/item/card/id/gold
+ l_pocket = /obj/item/lighter/zippo/cap
pda = /obj/item/pda/captain
backpack_contents = list(
/obj/item/storage/box/ids = 1,
@@ -94,6 +95,7 @@ GLOBAL_DATUM_INIT(captain_announcement, /datum/announcement/minor, new(do_newsca
glasses = /obj/item/clothing/glasses/hud/skills/sunglasses
l_ear = /obj/item/radio/headset/heads/hop
id = /obj/item/card/id/silver
+ l_pocket = /obj/item/lighter/zippo/hop
pda = /obj/item/pda/heads/hop
backpack_contents = list(
/obj/item/storage/box/ids = 1,
diff --git a/code/game/machinery/OpTable.dm b/code/game/machinery/OpTable.dm
index 551f58594bb6c..3759d09ce6903 100644
--- a/code/game/machinery/OpTable.dm
+++ b/code/game/machinery/OpTable.dm
@@ -31,13 +31,6 @@
patient = null
return ..()
-/obj/machinery/optable/attack_hulk(mob/living/carbon/human/user, does_attack_animation = FALSE)
- if(user.a_intent == INTENT_HARM)
- ..(user, TRUE)
- visible_message("[user] destroys the operating table!")
- qdel(src)
- return TRUE
-
/obj/machinery/optable/CanPass(atom/movable/mover, turf/target, height=0)
if(height == 0)
return TRUE
diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm
index 8a800e9a29fd4..d04b356d16302 100644
--- a/code/game/machinery/autolathe.dm
+++ b/code/game/machinery/autolathe.dm
@@ -491,3 +491,15 @@
/obj/machinery/autolathe/proc/check_disabled_callback()
if(!wires.is_cut(WIRE_AUTOLATHE_DISABLE))
disabled = FALSE
+
+/obj/machinery/autolathe/security
+ name = "Security Autolathe"
+ desc = "Autolathe with preloaded open recipes"
+ icon = 'icons/obj/sec_autolathe.dmi'
+
+/obj/machinery/autolathe/security/New()
+ . = ..()
+ for (wires)
+ wires.cut(WIRE_AUTOLATHE_HACK)
+ adjust_hacked(TRUE)
+
diff --git a/code/game/machinery/computer/camera.dm b/code/game/machinery/computer/camera.dm
index 58ff6388c2dc9..970e8016eb7f3 100644
--- a/code/game/machinery/computer/camera.dm
+++ b/code/game/machinery/computer/camera.dm
@@ -76,7 +76,7 @@
user.client.register_map_obj(plane)
user.client.register_map_obj(cam_background)
// Open UI
- ui = new(user, src, ui_key, "CameraConsole", name, 870, 708, master_ui, state)
+ ui = new(user, src, ui_key, "CameraConsole", name, 1200, 600, master_ui, state)
ui.open()
/obj/machinery/computer/security/ui_data()
@@ -88,20 +88,23 @@
name = active_camera.c_tag,
status = active_camera.status,
)
- return data
-
-/obj/machinery/computer/security/ui_static_data()
- var/list/data = list()
- data["mapRef"] = map_name
var/list/cameras = get_available_cameras()
data["cameras"] = list()
for(var/i in cameras)
var/obj/machinery/camera/C = cameras[i]
data["cameras"] += list(list(
name = C.c_tag,
+ x = C.x,
+ y = C.y,
+ z = C.z,
+ status = C.status
))
return data
+/obj/machinery/computer/security/ui_static_data()
+ var/list/data = list()
+ data["mapRef"] = map_name
+ return data
/obj/machinery/computer/security/ui_act(action, params)
if(..())
diff --git a/code/game/machinery/computer/card.dm b/code/game/machinery/computer/card.dm
index 03e1023461e8b..2fe962c7c586c 100644
--- a/code/game/machinery/computer/card.dm
+++ b/code/game/machinery/computer/card.dm
@@ -452,7 +452,7 @@ GLOBAL_VAR_INIT(time_last_changed_position, 0)
playsound(get_turf(src), 'sound/machines/buzz-sigh.ogg', 50, 0)
visible_message("[src]: Reassigning a demoted individual requires a full ID computer.")
return FALSE
- if(!job_in_department(SSjobs.GetJob(modify.rank), FALSE))
+ if(!job_in_department(SSjobs.GetJob(modify.rank), config.allow_head_of_departaments_assign_civilian))
playsound(get_turf(src), 'sound/machines/buzz-sigh.ogg', 50, 0)
visible_message("[src]: Reassigning someone outside your department requires a full ID computer.")
return FALSE
diff --git a/code/game/machinery/constructable_frame.dm b/code/game/machinery/constructable_frame.dm
index e955eb0279566..1f39d7dcdfb95 100644
--- a/code/game/machinery/constructable_frame.dm
+++ b/code/game/machinery/constructable_frame.dm
@@ -523,7 +523,8 @@ to destroy them and players will be able to make replacements.
"\improper Smart Chemical Storage" = /obj/machinery/smartfridge/secure/chemistry,
"smart virus storage" = /obj/machinery/smartfridge/secure/chemistry/virology,
"\improper Drink Showcase" = /obj/machinery/smartfridge/drinks,
- "\improper Disk Storage" = /obj/machinery/smartfridge/disks
+ "\improper Disk Storage" = /obj/machinery/smartfridge/disks,
+ "\improper Dish Showcase" = /obj/machinery/smartfridge/dish
)
diff --git a/code/game/machinery/cryo.dm b/code/game/machinery/cryo.dm
index 8c11ea9618d24..6b8d271fd37ac 100644
--- a/code/game/machinery/cryo.dm
+++ b/code/game/machinery/cryo.dm
@@ -23,6 +23,7 @@
var/next_trans = 0
var/current_heat_capacity = 50
var/efficiency
+ var/conduction_coefficient = 1
var/running_bob_animation = 0 // This is used to prevent threads from building up if update_icons is called multiple times
@@ -380,11 +381,6 @@
if(air_contents.total_moles() < 10)
return
if(occupant)
- if(occupant.stat == 2 || (occupant.health >= 100 && !occupant.has_mutated_organs())) //Why waste energy on dead or healthy people
- occupant.bodytemperature = T0C
- return
- occupant.bodytemperature += 2*(air_contents.temperature - occupant.bodytemperature)*current_heat_capacity/(current_heat_capacity + air_contents.heat_capacity())
- occupant.bodytemperature = max(occupant.bodytemperature, air_contents.temperature) // this is so ugly i'm sorry for doing it i'll fix it later i promise
if(occupant.bodytemperature < T0C)
occupant.Sleeping(max(5/efficiency, (1/occupant.bodytemperature)*2000/efficiency))
occupant.Paralyse(max(5/efficiency, (1/occupant.bodytemperature)*3000/efficiency))
@@ -404,13 +400,21 @@
next_trans = 0
/obj/machinery/atmospherics/unary/cryo_cell/proc/heat_gas_contents()
- if(air_contents.total_moles() < 1)
- return
- var/air_heat_capacity = air_contents.heat_capacity()
- var/combined_heat_capacity = current_heat_capacity + air_heat_capacity
- if(combined_heat_capacity > 0)
- var/combined_energy = T20C*current_heat_capacity + air_heat_capacity*air_contents.temperature
- air_contents.temperature = combined_energy/combined_heat_capacity
+ var/cold_protection = 0
+ var/temperature_delta = air_contents.temperature - occupant.bodytemperature // The only semi-realistic thing here: share temperature between the cell and the occupant.
+
+ if(ishuman(occupant))
+ var/mob/living/carbon/human/H = occupant
+ cold_protection = H.get_cold_protection(air_contents.temperature)
+
+ if(abs(temperature_delta) > 1)
+ var/air_heat_capacity = air_contents.heat_capacity()
+
+ var/heat = (1 - cold_protection) * conduction_coefficient * temperature_delta * \
+ (air_heat_capacity * current_heat_capacity / (air_heat_capacity + current_heat_capacity))
+
+ air_contents.temperature = clamp(air_contents.temperature - heat / air_heat_capacity, TCMB, INFINITY)
+ occupant.adjust_bodytemperature(heat / current_heat_capacity, TCMB)
/obj/machinery/atmospherics/unary/cryo_cell/proc/go_out()
if(!occupant)
diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm
index d670c42e5a863..2cc2598bdba1c 100644
--- a/code/game/machinery/doors/airlock.dm
+++ b/code/game/machinery/doors/airlock.dm
@@ -85,6 +85,7 @@ GLOBAL_LIST_EMPTY(airlock_overlays)
var/normal_integrity = AIRLOCK_INTEGRITY_N
var/prying_so_hard = FALSE
var/paintable = TRUE // If the airlock type can be painted with an airlock painter
+ var/id //ID for tint controlle
var/image/old_frame_overlay //keep those in order to prevent unnecessary updating
var/image/old_filling_overlay
@@ -714,6 +715,11 @@ About the new airlock wires panel:
if(isElectrified())
shock(user, 100)
+/obj/machinery/door/airlock/attack_animal(mob/user)
+ if(istype(user, /mob/living/simple_animal/hulk))
+ var/mob/living/simple_animal/hulk/H = user
+ H.attack_hulk(src)
+
/obj/machinery/door/airlock/attack_hand(mob/user)
if(shock_user(user, 100))
return
diff --git a/code/game/machinery/doors/firedoor.dm b/code/game/machinery/doors/firedoor.dm
index b19888ba90716..fccee5086077e 100644
--- a/code/game/machinery/doors/firedoor.dm
+++ b/code/game/machinery/doors/firedoor.dm
@@ -185,6 +185,11 @@
return
open()
+/obj/machinery/door/firedoor/attack_animal(mob/user)
+ if(istype(user, /mob/living/simple_animal/hulk))
+ var/mob/living/simple_animal/hulk/H = user
+ H.attack_hulk(src)
+
/obj/machinery/door/firedoor/do_animate(animation)
switch(animation)
if("opening")
diff --git a/code/game/machinery/machinery.dm b/code/game/machinery/machinery.dm
index 5358a1206b8c0..f43e51e97afea 100644
--- a/code/game/machinery/machinery.dm
+++ b/code/game/machinery/machinery.dm
@@ -523,15 +523,21 @@ Class Procs:
break
for(var/obj/item/stock_parts/B in W.contents)
if(istype(B, P) && istype(A, P))
- if(B.rating > A.rating)
- W.remove_from_storage(B, src)
- W.handle_item_insertion(A, 1)
- component_parts -= A
- component_parts += B
- B.loc = null
- to_chat(user, "[A.name] replaced with [B.name].")
- shouldplaysound = 1
- break
+ if(ispath(B.type, /obj/item/stock_parts/cell))
+ var/obj/item/stock_parts/cell/tA = A
+ var/obj/item/stock_parts/cell/tB = B
+ if(!(tB.maxcharge > tA.maxcharge) && !((tB.maxcharge == tA.maxcharge) && (tB.charge > tA.charge)))
+ continue
+ else if(B.rating <= A.rating)
+ continue
+ W.remove_from_storage(B, src)
+ W.handle_item_insertion(A, 1)
+ component_parts -= A
+ component_parts += B
+ B.loc = null
+ to_chat(user, "[A.name] replaced with [B.name].")
+ shouldplaysound = 1
+ break
RefreshParts()
else
to_chat(user, display_parts(user))
diff --git a/code/game/machinery/rechargestation.dm b/code/game/machinery/rechargestation.dm
index 5530a735dfe2a..fcd5d1c817ff4 100644
--- a/code/game/machinery/rechargestation.dm
+++ b/code/game/machinery/rechargestation.dm
@@ -28,6 +28,16 @@
RefreshParts()
build_icon()
+/obj/machinery/recharge_station/ert/New()
+ ..()
+ component_parts = list()
+ component_parts += new /obj/item/circuitboard/cyborgrecharger(null)
+ component_parts += new /obj/item/stock_parts/capacitor(null)
+ component_parts += new /obj/item/stock_parts/capacitor/adv(null)
+ component_parts += new /obj/item/stock_parts/manipulator/femto(null)
+ component_parts += new /obj/item/stock_parts/cell/super(null)
+ RefreshParts()
+
/obj/machinery/recharge_station/upgraded/New()
..()
component_parts = list()
diff --git a/code/game/machinery/syndicatebeacon.dm b/code/game/machinery/syndicatebeacon.dm
index 01562d2c60d50..6f01f42156a03 100644
--- a/code/game/machinery/syndicatebeacon.dm
+++ b/code/game/machinery/syndicatebeacon.dm
@@ -57,7 +57,7 @@
return
if(istype(M, /mob/living/carbon/human))
var/mob/living/carbon/human/N = M
- var/objective = "Free Objective"
+ var/objective = "Free Objective."
switch(rand(1,100))
if(1 to 50)
objective = "Steal [pick("a hand teleporter", "the Captain's antique laser gun", "a jetpack", "the Captain's ID", "the Captain's jumpsuit")]."
diff --git a/code/game/mecha/equipment/mecha_equipment.dm b/code/game/mecha/equipment/mecha_equipment.dm
index 17d1b0b3a4f47..06aecf33717fe 100644
--- a/code/game/mecha/equipment/mecha_equipment.dm
+++ b/code/game/mecha/equipment/mecha_equipment.dm
@@ -93,7 +93,7 @@
var/C = chassis.loc
set_ready_state(0)
chassis.use_power(energy_drain)
- . = do_after(chassis.occupant, equip_cooldown, target = target)
+ . = do_after(chassis.occupant, equip_cooldown, needhand = FALSE, target = target)
set_ready_state(1)
if(!chassis || chassis.loc != C || src != chassis.selected || !(get_dir(chassis, target) & chassis.dir))
return FALSE
diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm
index 64e490b85a6e3..ab13a8de34296 100644
--- a/code/game/mecha/mecha.dm
+++ b/code/game/mecha/mecha.dm
@@ -569,15 +569,6 @@
attack_generic(user, animal_damage, user.melee_damage_type, "melee", play_soundeffect)
return TRUE
-/obj/mecha/hulk_damage()
- return 15
-
-/obj/mecha/attack_hulk(mob/living/carbon/human/user)
- . = ..()
- if(.)
- log_message("Attack by hulk. Attacker - [user].", 1)
- add_attack_logs(user, OCCUPANT_LOGGING, "Hulk punched mech [src]")
-
/obj/mecha/blob_act(obj/structure/blob/B)
log_message("Attack by blob. Attacker - [B].")
take_damage(30, BRUTE, "melee", 0, get_dir(src, B))
diff --git a/code/game/mecha/mecha_construction_paths.dm b/code/game/mecha/mecha_construction_paths.dm
index bce8dc4c9a671..4e2b75f26c872 100644
--- a/code/game/mecha/mecha_construction_paths.dm
+++ b/code/game/mecha/mecha_construction_paths.dm
@@ -767,13 +767,13 @@
/datum/construction/mecha/honker_chassis/spawn_result()
..("Honker")
var/obj/item/mecha_parts/chassis/const_holder = holder
- const_holder.construct = new /datum/construction/mecha/honker(const_holder)
+ const_holder.construct = new /datum/construction/reversible/mecha/honker(const_holder)
const_holder.density = 1
qdel(src)
return
-/datum/construction/mecha/honker
+/datum/construction/reversible/mecha/honker
result = "/obj/mecha/combat/honker"
steps = list(list("key"=/obj/item/bikehorn),//1
list("key"=/obj/item/clothing/shoes/clown_shoes),//2
@@ -788,10 +788,10 @@
list("key"=/obj/item/bikehorn),//11
)
-/datum/construction/mecha/honker/action(atom/used_atom,mob/user as mob)
+/datum/construction/reversible/mecha/honker/action(atom/used_atom,mob/user as mob)
return check_step(used_atom,user)
-/datum/construction/mecha/honker/custom_action(step, atom/used_atom, mob/user)
+/datum/construction/reversible/mecha/honker/custom_action(index, diff, atom/used_atom, mob/user)
if(!..())
return 0
@@ -800,7 +800,7 @@
user.visible_message("HONK!")
//TODO: better messages.
- switch(step)
+ switch(index)
if(10)
user.visible_message("[user] installs the central control module into the [holder].", "You install the central control module into the [holder].")
qdel(used_atom)
@@ -839,12 +839,12 @@
/datum/construction/mecha/reticence_chassis/spawn_result()
..("Reticence")
var/obj/item/mecha_parts/chassis/const_holder = holder
- const_holder.construct = new /datum/construction/mecha/reticence(const_holder)
+ const_holder.construct = new /datum/construction/reversible/mecha/reticence(const_holder)
const_holder.density = 1
qdel(src)
return
-/datum/construction/mecha/reticence
+/datum/construction/reversible/mecha/reticence
result = "/obj/mecha/combat/reticence"
steps = list(list("key"=/obj/effect/dummy/mecha_emote_step),//1
list("key"=/obj/item/clothing/suit/suspenders),//2
@@ -857,10 +857,10 @@
list("key"=/obj/item/circuitboard/mecha/reticence/main),//9
)
-/datum/construction/mecha/reticence/action(atom/used_atom,mob/user)
+/datum/construction/reversible/mecha/reticence/action(atom/used_atom,mob/user)
return check_step(used_atom,user)
-/datum/construction/mecha/reticence/custom_action(step, atom/used_atom, mob/user)
+/datum/construction/reversible/mecha/reticence/custom_action(index, diff, atom/used_atom, mob/user)
if(!..())
return 0
@@ -870,7 +870,7 @@
qdel(used_atom)
//TODO: better messages.
- switch(step)
+ switch(index)
if(9)
user.visible_message("[user] installs the central control module into the [holder].", "You install the central control module into the [holder].")
qdel(used_atom)
diff --git a/code/game/mecha/mecha_parts.dm b/code/game/mecha/mecha_parts.dm
index c8151d58565bb..a0240c5ccd16f 100644
--- a/code/game/mecha/mecha_parts.dm
+++ b/code/game/mecha/mecha_parts.dm
@@ -263,11 +263,11 @@
emote = e
/obj/item/mecha_parts/chassis/reticence/hear_message(mob/living/M, msg)
- if(!istype(M) || !istype(construct, /datum/construction/mecha/reticence))
+ if(!istype(M) || !istype(construct, /datum/construction/reversible/mecha/reticence))
return
// is the current step the dummy emote object?
var/list/steps = construct.steps
- if(steps[steps.len]["key"] == /obj/effect/dummy/mecha_emote_step)
+ if(steps[construct.index]["key"] == /obj/effect/dummy/mecha_emote_step)
construct.action(new /obj/effect/dummy/mecha_emote_step(msg), M)
/obj/item/mecha_parts/part/reticence_torso
diff --git a/code/game/objects/effects/decals/turfdecals/markings.dm b/code/game/objects/effects/decals/turfdecals/markings.dm
index 196d22b580cb7..b726d066e634b 100644
--- a/code/game/objects/effects/decals/turfdecals/markings.dm
+++ b/code/game/objects/effects/decals/turfdecals/markings.dm
@@ -150,3 +150,7 @@
/obj/effect/turf_decal/plaque
icon_state = "plaque"
+
+/obj/effect/turf_decal/mech
+ icon_state = "mech_floor"
+ icon_state = "mech_floor"
diff --git a/code/game/objects/effects/effects.dm b/code/game/objects/effects/effects.dm
index 625d2ad8fd9d3..a403615df9d90 100644
--- a/code/game/objects/effects/effects.dm
+++ b/code/game/objects/effects/effects.dm
@@ -12,9 +12,6 @@
/obj/effect/take_damage(damage_amount, damage_type = BRUTE, damage_flag = 0, sound_effect = 1, attack_dir)
return
-/obj/effect/attack_hulk(mob/living/carbon/human/user, does_attack_animation = FALSE)
- return FALSE
-
/obj/effect/singularity_act()
qdel(src)
return FALSE
diff --git a/code/game/objects/effects/spawners/lootdrop.dm b/code/game/objects/effects/spawners/lootdrop.dm
index dcdcff81313ca..53115d0420a83 100644
--- a/code/game/objects/effects/spawners/lootdrop.dm
+++ b/code/game/objects/effects/spawners/lootdrop.dm
@@ -387,18 +387,18 @@
lootcount = 3
lootdoubles = FALSE
var/soups = list(
- /obj/item/reagent_containers/food/snacks/beetsoup,
- /obj/item/reagent_containers/food/snacks/stew,
- /obj/item/reagent_containers/food/snacks/hotchili,
- /obj/item/reagent_containers/food/snacks/nettlesoup,
- /obj/item/reagent_containers/food/snacks/meatballsoup)
+ /obj/item/reagent_containers/food/snacks/soup/beetsoup,
+ /obj/item/reagent_containers/food/snacks/soup/stew,
+ /obj/item/reagent_containers/food/snacks/soup/hotchili,
+ /obj/item/reagent_containers/food/snacks/soup/nettlesoup,
+ /obj/item/reagent_containers/food/snacks/soup/meatballsoup)
var/salads = list(
/obj/item/reagent_containers/food/snacks/herbsalad,
/obj/item/reagent_containers/food/snacks/validsalad,
/obj/item/reagent_containers/food/snacks/aesirsalad)
var/mains = list(
/obj/item/reagent_containers/food/snacks/enchiladas,
- /obj/item/reagent_containers/food/snacks/stewedsoymeat,
+ /obj/item/reagent_containers/food/snacks/soup/stewedsoymeat,
/obj/item/reagent_containers/food/snacks/bigbiteburger,
/obj/item/reagent_containers/food/snacks/superbiteburger)
diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm
index 5052874f5cc2e..50293709322a4 100644
--- a/code/game/objects/items.dm
+++ b/code/game/objects/items.dm
@@ -620,9 +620,6 @@ GLOBAL_DATUM_INIT(fire_overlay, /image, image("icon" = 'icons/goonstation/effect
/obj/item/hitby(atom/movable/AM, skipcatch, hitpush, blocked, datum/thrownthing/throwingdatum)
return
-/obj/item/attack_hulk(mob/living/carbon/human/user)
- return FALSE
-
/obj/item/attack_animal(mob/living/simple_animal/M)
if(can_be_hit)
return ..()
diff --git a/code/game/objects/items/devices/flash.dm b/code/game/objects/items/devices/flash.dm
index 998b369a8f0f9..f74cc105d12aa 100644
--- a/code/game/objects/items/devices/flash.dm
+++ b/code/game/objects/items/devices/flash.dm
@@ -13,43 +13,43 @@
origin_tech = "magnets=2;combat=1"
var/times_used = 0 //Number of times it's been used.
- var/broken = 0 //Is the flash burnt out?
+ var/broken = FALSE //Is the flash burnt out?
var/last_used = 0 //last world.time it was used.
- var/battery_panel = 0 //whether the flash can be modified with a cell or not
- var/overcharged = 0 //if overcharged the flash will set people on fire then immediately burn out (does so even if it doesn't blind them).
+ var/battery_panel = FALSE //whether the flash can be modified with a cell or not
+ var/overcharged = FALSE //if overcharged the flash will set people on fire then immediately burn out (does so even if it doesn't blind them).
var/can_overcharge = TRUE //set this to FALSE if you don't want your flash to be overcharge capable
var/use_sound = 'sound/weapons/flash.ogg'
/obj/item/flash/proc/clown_check(mob/user)
if(user && (CLUMSY in user.mutations) && prob(50))
- flash_carbon(user, user, 15, 0)
- return 0
- return 1
+ flash_carbon(user, user, 15, FALSE)
+ return FALSE
+ return TRUE
/obj/item/flash/attackby(obj/item/W, mob/user, params)
if(can_overcharge)
if(istype(W, /obj/item/screwdriver))
if(battery_panel)
to_chat(user, "You close the battery compartment on the [src].")
- battery_panel = 0
+ battery_panel = FALSE
else
to_chat(user, "You open the battery compartment on the [src].")
- battery_panel = 1
+ battery_panel = TRUE
if(battery_panel && !overcharged)
if(istype(W, /obj/item/stock_parts/cell))
to_chat(user, "You jam the cell into battery compartment on the [src].")
qdel(W)
- overcharged = 1
+ overcharged = TRUE
overlays += "overcharge"
/obj/item/flash/random/New()
..()
if(prob(25))
- broken = 1
+ broken = TRUE
icon_state = "[initial(icon_state)]burnt"
/obj/item/flash/proc/burn_out() //Made so you can override it if you want to have an invincible flash from R&D or something.
- broken = 1
+ broken = TRUE
icon_state = "[initial(icon_state)]burnt"
visible_message("The [src.name] burns out!")
@@ -57,7 +57,7 @@
/obj/item/flash/proc/flash_recharge(var/mob/user)
if(prob(times_used * 2)) //if you use it 5 times in a minute it has a 10% chance to break!
burn_out()
- return 0
+ return FALSE
var/deciseconds_passed = world.time - last_used
for(var/seconds = deciseconds_passed/10, seconds>=10, seconds-=10) //get 1 charge every 10 seconds
@@ -111,36 +111,36 @@
/obj/item/flash/attack(mob/living/M, mob/user)
if(!try_use_flash(user))
- return 0
+ return FALSE
if(iscarbon(M))
flash_carbon(M, user, 5, 1)
if(overcharged)
M.adjust_fire_stacks(6)
M.IgniteMob()
burn_out()
- return 1
+ return TRUE
else if(issilicon(M))
add_attack_logs(user, M, "Flashed with [src]")
- if(M.flash_eyes(affect_silicon = 1))
+ if(M.flash_eyes(affect_silicon = TRUE))
M.Weaken(rand(5,10))
user.visible_message("[user] overloads [M]'s sensors with the [src.name]!", "You overload [M]'s sensors with the [src.name]!")
- return 1
+ return TRUE
user.visible_message("[user] fails to blind [M] with the [src.name]!", "You fail to blind [M] with the [src.name]!")
-/obj/item/flash/attack_self(mob/living/carbon/user, flag = 0, emp = 0)
+/obj/item/flash/attack_self(mob/living/carbon/user, flag = 0, emp = FALSE)
if(!try_use_flash(user))
- return 0
+ return FALSE
user.visible_message("[user]'s [src.name] emits a blinding light!", "Your [src.name] emits a blinding light!")
for(var/mob/living/carbon/M in oviewers(3, null))
- flash_carbon(M, user, 3, 0)
+ flash_carbon(M, user, 3, FALSE)
/obj/item/flash/emp_act(severity)
if(!try_use_flash())
- return 0
+ return FALSE
for(var/mob/living/carbon/M in viewers(3, null))
- flash_carbon(M, null, 10, 0)
+ flash_carbon(M, null, 10, FALSE)
burn_out()
..()
@@ -206,17 +206,11 @@
to_chat(user, "\The [src] needs time to recharge!")
return
-/obj/item/flash/memorizer
- name = "memorizer"
- desc = "If you see this, you're not likely to remember it any time soon."
- icon_state = "memorizer"
- item_state = "nullrod"
-
/obj/item/flash/armimplant
name = "photon projector"
desc = "A high-powered photon projector implant normally used for lighting purposes, but also doubles as a flashbulb weapon. Self-repair protocols fix the flashbulb if it ever burns out."
var/flashcd = 20
- var/overheat = 0
+ var/overheat = FALSE
var/obj/item/organ/internal/cyberimp/arm/flash/I = null
/obj/item/flash/armimplant/Destroy()
diff --git a/code/game/objects/items/devices/laserpointer.dm b/code/game/objects/items/devices/laserpointer.dm
index cfaea9f32f9d9..ae0a1caa06de5 100644
--- a/code/game/objects/items/devices/laserpointer.dm
+++ b/code/game/objects/items/devices/laserpointer.dm
@@ -79,12 +79,6 @@
if(!user.IsAdvancedToolUser())
to_chat(user, "You don't have the dexterity to do this!")
return
- if(ishuman(user))
- var/mob/living/carbon/human/H = user
- if((HULK in H.mutations) || (NOGUNS in H.dna.species.species_traits))
- user << "Your fingers can't press the button!"
- return
-
add_fingerprint(user)
//nothing happens if the battery is drained
diff --git a/code/game/objects/items/devices/memorizer.dm b/code/game/objects/items/devices/memorizer.dm
new file mode 100644
index 0000000000000..c5be6cf2afe24
--- /dev/null
+++ b/code/game/objects/items/devices/memorizer.dm
@@ -0,0 +1,135 @@
+/obj/item/memorizer
+ name = "memorizer"
+ desc = "If you see this, you're not likely to remember it any time soon."
+ icon = 'icons/obj/device.dmi'
+ icon_state = "memorizer"
+ item_state = "nullrod"
+ throwforce = 0
+ w_class = WEIGHT_CLASS_TINY
+ throw_speed = 3
+ throw_range = 7
+ flags = CONDUCT
+
+ var/times_used = 0 //Number of times it's been used.
+ var/broken = FALSE //Is the flash burnt out?
+ var/last_used = 0 //last world.time it was used.
+ var/battery_panel = FALSE //whether the flash can be modified with a cell or not
+ var/overcharged = FALSE //if overcharged the flash will set people on fire then immediately burn out (does so even if it doesn't blind them).
+ var/can_overcharge = FALSE //set this to FALSE if you don't want your flash to be overcharge capable
+ var/use_sound = 'sound/weapons/flash.ogg'
+
+/obj/item/memorizer/proc/clown_check(mob/user)
+ if(user && (CLUMSY in user.mutations) && prob(50))
+ memorize_carbon(user, user, 15, FALSE)
+ return FALSE
+ return TRUE
+
+/obj/item/memorizer/attackby(obj/item/W, mob/user, params)
+ if(can_overcharge)
+ if(istype(W, /obj/item/screwdriver))
+ if(battery_panel)
+ to_chat(user, "You close the battery compartment on the [src].")
+ battery_panel = FALSE
+ else
+ to_chat(user, "You open the battery compartment on the [src].")
+ battery_panel = TRUE
+ if(battery_panel && !overcharged)
+ if(istype(W, /obj/item/stock_parts/cell))
+ to_chat(user, "You jam the cell into battery compartment on the [src].")
+ qdel(W)
+ overcharged = TRUE
+ overlays += "overcharge"
+
+/obj/item/memorizer/proc/burn_out() //Made so you can override it if you want to have an invincible flash from R&D or something.
+ broken = TRUE
+ icon_state = "[initial(icon_state)]burnt"
+ visible_message("The [src.name] burns out!")
+
+
+/obj/item/memorizer/proc/flash_recharge(var/mob/user)
+ if(prob(times_used * 2)) //if you use it 5 times in a minute it has a 10% chance to break!
+ return FALSE
+
+ var/deciseconds_passed = world.time - last_used
+ for(var/seconds = deciseconds_passed/10, seconds>=10, seconds-=10) //get 1 charge every 10 seconds
+ times_used--
+
+ last_used = world.time
+ times_used = max(0, times_used) //sanity
+
+
+/obj/item/memorizer/proc/try_use_flash(mob/user = null)
+ flash_recharge(user)
+
+ if(broken)
+ return FALSE
+
+ playsound(loc, use_sound, 100, 1)
+ flick("[initial(icon_state)]2", src)
+ set_light(2, 1, COLOR_WHITE)
+ addtimer(CALLBACK(src, /atom./proc/set_light, 0), 2)
+ times_used++
+
+ if(user && !clown_check(user))
+ return FALSE
+
+ return TRUE
+
+
+/obj/item/memorizer/proc/memorize_carbon(var/mob/living/carbon/M, var/mob/user = null, var/power = 5, targeted = 1)
+ if(user)
+ add_attack_logs(user, M, "memorized with [src]")
+ if(targeted)
+ if(M.weakeyes)
+ M.Weaken(3) //quick weaken bypasses eye protection but has no eye flash
+ if(M.flash_eyes(1, 1))
+ M.AdjustConfused(power)
+ M.Stun(1)
+ visible_message("[user] erases [M] memory with the memorizer!")
+ to_chat(user, "You erased [M] memory with the memorizer!")
+ to_chat(M, "Your memory about last events has been erased!")
+ if(M.weakeyes)
+ M.Stun(2)
+ M.visible_message("[M] gasps and shields [M.p_their()] eyes!", "You gasp and shield your eyes!")
+ else
+ visible_message("[user] fails to erase [M] memory with the memorizer!")
+ to_chat(user, "You fail to erase [M] memory with the memorizer!")
+ to_chat(M, "[user] fails to erase your memory with the memorizer!")
+ return
+
+ if(M.flash_eyes())
+ M.AdjustConfused(power)
+
+/obj/item/memorizer/attack(mob/living/M, mob/user)
+ if(!try_use_flash(user))
+ return FALSE
+ if(iscarbon(M))
+ memorize_carbon(M, user, 5, TRUE)
+ if(overcharged)
+ M.adjust_fire_stacks(6)
+ M.IgniteMob()
+ burn_out()
+ return TRUE
+ else if(issilicon(M))
+ add_attack_logs(user, M, "Flashed with [src]")
+ if(M.flash_eyes(affect_silicon = TRUE))
+ M.Weaken(rand(5,10))
+ user.visible_message("[user] overloads [M]'s sensors with the [src.name]!", "You overload [M]'s sensors with the [src.name]!")
+ return TRUE
+ user.visible_message("[user] fails to blind [M] with the [src.name]!", "You fail to blind [M] with the [src.name]!")
+
+
+/obj/item/memorizer/attack_self(mob/living/carbon/user, flag = 0, emp = FALSE)
+ if(!try_use_flash(user))
+ return FALSE
+ user.visible_message("[user]'s [src.name] emits a blinding light!", "Your [src.name] emits a blinding light!")
+ for(var/mob/living/carbon/M in oviewers(3, null))
+ memorize_carbon(M, user, 3, FALSE)
+
+
+/obj/item/memorizer/emp_act(severity)
+ if(!try_use_flash())
+ return FALSE
+ for(var/mob/living/carbon/M in viewers(3, null))
+ memorize_carbon(M, null, 10, TRUE)
+ burn_out()
diff --git a/code/game/objects/items/devices/pizza_bomb.dm b/code/game/objects/items/devices/pizza_bomb.dm
index e5c237938d6f5..d292a601095d4 100644
--- a/code/game/objects/items/devices/pizza_bomb.dm
+++ b/code/game/objects/items/devices/pizza_bomb.dm
@@ -3,6 +3,7 @@
desc = "A box suited for pizzas."
icon = 'icons/obj/food/pizza.dmi'
icon_state = "pizzabox1"
+ throw_range = 1
var/timer = 10 //Adjustable timer
var/timer_set = 0
var/primed = 0
diff --git a/code/game/objects/items/robot/robot_upgrades.dm b/code/game/objects/items/robot/robot_upgrades.dm
index 56a6d452e2af4..f29c7fb7ba9ac 100644
--- a/code/game/objects/items/robot/robot_upgrades.dm
+++ b/code/game/objects/items/robot/robot_upgrades.dm
@@ -387,3 +387,50 @@
msg_cooldown = world.time
else
deactivate()
+
+/obj/item/borg/upgrade/storageincreaser
+ name = "storage increaser"
+ desc = "Improves cyborg storage with bluespace technology to store more medicines"
+ icon_state = "cyborg_upgrade2"
+ origin_tech = "bluespace=4;materials=5;engineering=3"
+ require_module = TRUE
+
+/obj/item/borg/upgrade/storageincreaser/action(mob/living/silicon/robot/R)
+ if(..())
+ return
+ if(R.increased_storage)
+ to_chat(usr, "This unit is already equipped with a storage increaser upgrade.")
+ return 0
+ var/obj/item/robot_module/M = locate() in R
+ if(!M)
+ return
+ for(var/datum/robot_energy_storage/ES in M.storages)
+ ES.max_energy *= 3
+ ES.recharge_rate *= 2
+ ES.energy = ES.max_energy
+ R.increased_storage = TRUE
+ return TRUE
+
+/obj/item/borg/upgrade/hypospray
+ name = "cyborg hypospray upgrade"
+ desc = "Adds and replaces some reagents with better ones"
+ icon_state = "cyborg_upgrade2"
+ origin_tech = "biotech=6;materials=5"
+ require_module = TRUE
+ module_type = /obj/item/robot_module/medical
+
+/obj/item/borg/upgrade/hypospray/action(mob/living/silicon/robot/R)
+ if(..())
+ return
+
+ if(locate(/obj/item/borg/upgrade/hypospray) in R)
+ to_chat(usr, "This unit is already equipped with a cyborg hypospray upgrade.")
+ return 0
+
+ var/obj/item/reagent_containers/borghypo/H = locate() in R.module.modules
+ if(H)
+ R.module.modules.Remove(H)
+ qdel(H)
+ R.module.modules += new /obj/item/reagent_containers/borghypo/upgraded(R.module)
+ R.module.rebuild()
+ return TRUE
diff --git a/code/game/objects/items/tools/crowbar.dm b/code/game/objects/items/tools/crowbar.dm
index 134194bf4a771..8d461ff355b08 100644
--- a/code/game/objects/items/tools/crowbar.dm
+++ b/code/game/objects/items/tools/crowbar.dm
@@ -9,7 +9,6 @@
slot_flags = SLOT_BELT
force = 5
throwforce = 7
- item_state = "crowbar"
w_class = WEIGHT_CLASS_SMALL
materials = list(MAT_METAL=50)
origin_tech = "engineering=1;combat=1"
diff --git a/code/game/objects/items/weapons/defib.dm b/code/game/objects/items/weapons/defib.dm
index 2aecdf536ec04..9d05ad3884f57 100644
--- a/code/game/objects/items/weapons/defib.dm
+++ b/code/game/objects/items/weapons/defib.dm
@@ -428,8 +428,8 @@
H.adjustBruteLoss(tobehealed)
user.visible_message("[defib] pings: Resuscitation successful.")
playsound(get_turf(src), 'sound/machines/defib_success.ogg', 50, 0)
- H.update_revive(FALSE)
- H.KnockOut(FALSE)
+ H.update_revive()
+ H.KnockOut()
H.Paralyse(5)
H.emote("gasp")
if(tplus > tloss)
diff --git a/code/game/objects/items/weapons/grenades/chem_grenade.dm b/code/game/objects/items/weapons/grenades/chem_grenade.dm
index f756929e5ab99..19b5e0ccf7597 100644
--- a/code/game/objects/items/weapons/grenades/chem_grenade.dm
+++ b/code/game/objects/items/weapons/grenades/chem_grenade.dm
@@ -125,6 +125,7 @@
return 1 //It hit the grenade, not them
/obj/item/grenade/chem_grenade/attackby(obj/item/I, mob/user, params)
+ add_fingerprint(user)
if(istype(I,/obj/item/hand_labeler))
var/obj/item/hand_labeler/HL = I
if(length(HL.label))
@@ -222,6 +223,8 @@
nadeassembly.master = null
nadeassembly = null
qdel(GetComponent(/datum/component/proximity_monitor))
+ else
+ new /obj/item/stack/cable_coil(get_turf(src), 1)
if(beakers.len)
for(var/obj/O in beakers)
O.loc = get_turf(src)
diff --git a/code/game/objects/items/weapons/lighters.dm b/code/game/objects/items/weapons/lighters.dm
index 1bfeeabae0396..01f7d7b59026f 100644
--- a/code/game/objects/items/weapons/lighters.dm
+++ b/code/game/objects/items/weapons/lighters.dm
@@ -166,6 +166,48 @@
icon_on = "gonzozippoon"
icon_off = "gonzozippo"
+/obj/item/lighter/zippo/cap
+ name = "Captain's zippo"
+ desc = "A limited edition gold Zippo espesially for NT Captains. Looks extremely expensive."
+ icon_state = "zippo_cap"
+ icon_on = "zippo_cap_on"
+ icon_off = "zippo_cap"
+
+/obj/item/lighter/zippo/hop
+ name = "Head of personnel zippo"
+ desc = "A limited edition Zippo for NT Heads. Tries it best to look like captain's."
+ icon_state = "zippo_hop"
+ icon_on = "zippo_hop_on"
+ icon_off = "zippo_hop"
+
+/obj/item/lighter/zippo/hos
+ name = "Head of Security zippo"
+ desc = "A limited edition Zippo for NT Heads. Fuel it with clown's tears."
+ icon_state = "zippo_hos"
+ icon_on = "zippo_hos_on"
+ icon_off = "zippo_hos"
+
+/obj/item/lighter/zippo/cmo
+ name = "Chief Medical Officer zippo"
+ desc = "A limited edition Zippo for NT Heads. Made of hypoallergenic steel."
+ icon_state = "zippo_cmo"
+ icon_on = "zippo_cmo_on"
+ icon_off = "zippo_cmo"
+
+/obj/item/lighter/zippo/ce
+ name = "Chief Engineer zippo"
+ desc = "A limited edition Zippo for NT Heads. Somebody've tried to repair cover with blue tape."
+ icon_state = "zippo_ce"
+ icon_on = "zippo_ce_on"
+ icon_off = "zippo_ce"
+
+/obj/item/lighter/zippo/rd
+ name = "Research Director zippo"
+ desc = "A limited edition Zippo for NT Heads. Uses advanced tech to make fire from plasma."
+ icon_state = "zippo_rd"
+ icon_on = "zippo_rd_on"
+ icon_off = "zippo_rd"
+
///////////
//MATCHES//
///////////
diff --git a/code/game/objects/items/weapons/manuals.dm b/code/game/objects/items/weapons/manuals.dm
index 6cdd3b0de5faa..3fbdaebd1c9cc 100644
--- a/code/game/objects/items/weapons/manuals.dm
+++ b/code/game/objects/items/weapons/manuals.dm
@@ -19,7 +19,7 @@
-
+